Showing preview only (6,458K chars total). Download the full file or copy to clipboard to get everything.
Repository: plotly/dash-daq
Branch: master
Commit: c6be5941d9ce
Files: 154
Total size: 6.1 MB
Directory structure:
gitextract_v6o4ev20/
├── .Rbuildignore
├── .circleci/
│ └── config.yml
├── .eslintignore
├── .eslintrc
├── .github/
│ ├── CODEOWNERS
│ └── FUNDING.yml
├── .gitignore
├── .npmignore
├── .prettierrc
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── DESCRIPTION
├── LICENSE
├── MANIFEST.in
├── NAMESPACE
├── R/
│ ├── daqBooleanSwitch.R
│ ├── daqColorPicker.R
│ ├── daqDarkThemeProvider.R
│ ├── daqGauge.R
│ ├── daqGraduatedBar.R
│ ├── daqIndicator.R
│ ├── daqJoystick.R
│ ├── daqKnob.R
│ ├── daqLEDDisplay.R
│ ├── daqNumericInput.R
│ ├── daqPowerButton.R
│ ├── daqPrecisionInput.R
│ ├── daqSlider.R
│ ├── daqStopButton.R
│ ├── daqTank.R
│ ├── daqThermometer.R
│ ├── daqToggleSwitch.R
│ └── internal.R
├── README.md
├── babel.config.js
├── bin/
│ └── generateDocs
├── dash-info.yaml
├── dash_daq/
│ ├── BooleanSwitch.py
│ ├── ColorPicker.py
│ ├── DarkThemeProvider.py
│ ├── Gauge.py
│ ├── GraduatedBar.py
│ ├── Indicator.py
│ ├── Joystick.py
│ ├── Knob.py
│ ├── LEDDisplay.py
│ ├── NumericInput.py
│ ├── PowerButton.py
│ ├── PrecisionInput.py
│ ├── Slider.py
│ ├── StopButton.py
│ ├── Tank.py
│ ├── Thermometer.py
│ ├── ToggleSwitch.py
│ ├── __init__.py
│ ├── _imports_.py
│ ├── async-colorpicker.js
│ ├── dash_daq.dev.js
│ └── package-info.json
├── demo/
│ ├── Demo.react.js
│ ├── index.html
│ └── index.js
├── demo.py
├── get_version_info.py
├── inst/
│ └── deps/
│ ├── async-colorpicker.js
│ ├── bundle.js
│ └── dash_daq.dev.js
├── man/
│ ├── daqBooleanSwitch.Rd
│ ├── daqColorPicker.Rd
│ ├── daqDarkThemeProvider.Rd
│ ├── daqGauge.Rd
│ ├── daqGraduatedBar.Rd
│ ├── daqIndicator.Rd
│ ├── daqJoystick.Rd
│ ├── daqKnob.Rd
│ ├── daqLEDDisplay.Rd
│ ├── daqNumericInput.Rd
│ ├── daqPowerButton.Rd
│ ├── daqPrecisionInput.Rd
│ ├── daqSlider.Rd
│ ├── daqStopButton.Rd
│ ├── daqTank.Rd
│ ├── daqThermometer.Rd
│ ├── daqToggleSwitch.Rd
│ └── dashDaq-package.Rd
├── package.json
├── requirements.txt
├── setup.py
├── src/
│ ├── components/
│ │ ├── BooleanSwitch.react.js
│ │ ├── ColorPicker.react.js
│ │ ├── DarkThemeProvider.react.js
│ │ ├── Gauge.react.js
│ │ ├── GraduatedBar.react.js
│ │ ├── Indicator.react.js
│ │ ├── Joystick.react.js
│ │ ├── Knob.react.js
│ │ ├── LEDDisplay.react.js
│ │ ├── NumericInput.react.js
│ │ ├── PowerButton.react.js
│ │ ├── PrecisionInput.react.js
│ │ ├── Slider.react.js
│ │ ├── StopButton.react.js
│ │ ├── Tank.react.js
│ │ ├── Thermometer.react.js
│ │ ├── ToggleSwitch.react.js
│ │ └── __tests__/
│ │ ├── .eslintrc
│ │ ├── BooleanSwitch.test.js
│ │ ├── ColorPicker.test.js
│ │ ├── Gauge.test.js
│ │ ├── GraduatedBar.test.js
│ │ ├── Indicator.test.js
│ │ ├── Knob.test.js
│ │ ├── LEDDisplay.test.js
│ │ ├── NumericInput.test.js
│ │ ├── PowerButton.test.js
│ │ ├── PrecisionInput.test.js
│ │ ├── Slider.test.js
│ │ ├── StopButton.test.js
│ │ ├── Tank.test.js
│ │ ├── Thermometer.test.js
│ │ └── ToggleSwitch.test.js
│ ├── fragments/
│ │ ├── ColorPicker.react.js
│ │ └── Slider.react.js
│ ├── helpers/
│ │ ├── GaugeSvg.react.js
│ │ ├── KnobSvg.react.js
│ │ ├── LEDDisplaySvg.react.js
│ │ ├── NumericInput.js
│ │ ├── PowerButtonSvg.react.js
│ │ ├── classNameGenerator.js
│ │ ├── colorRanges.js
│ │ ├── logarithm.js
│ │ ├── scale.js
│ │ ├── shared/
│ │ │ └── TrackSvg.js
│ │ └── util.js
│ ├── index.js
│ └── styled/
│ ├── ColorPicker.styled.js
│ ├── CurrentValue.styled.js
│ ├── Gauge.styled.js
│ ├── GraduatedBar.styled.js
│ ├── Knob.styled.js
│ ├── LEDDisplay.styled.js
│ ├── PowerButton.styled.js
│ ├── PrecisionInput.styled.js
│ ├── Slider.styled.js
│ ├── StopButton.styled.js
│ ├── Tank.styled.js
│ ├── Thermometer.styled.js
│ ├── ToggleSwitch.styled.js
│ ├── constants.js
│ └── shared/
│ ├── DarkGradient.js
│ ├── Indicator.styled.js
│ ├── Label.styled.js
│ └── LabelContainer.styled.js
└── webpack.config.js
================================================
FILE CONTENTS
================================================
================================================
FILE: .Rbuildignore
================================================
# ignore JS config files/folders
node_modules/
coverage/
src/
lib/
.babelrc
.builderrc
.eslintrc
.npmignore
.editorconfig
.eslintignore
.prettierrc
.circleci
.github
# demo folder has special meaning in R
# this should hopefully make it still
# allow for the possibility to make R demos
demo/.*\.js
demo/.*\.html
demo/.*\.css
# ignore Python files/folders
setup.py
usage.py
setup.py
requirements.txt
MANIFEST.in
CHANGELOG.md
test/
# CRAN has weird LICENSE requirements
LICENSE.txt
^.*\.Rproj$
^\.Rproj\.user$
================================================
FILE: .circleci/config.yml
================================================
version: 2
jobs:
build_and_test_node:
docker:
- image: circleci/python:3.7-stretch-node
auth:
username: dashautomation
password: $DASH_PAT_DOCKERHUB
steps:
- checkout
- run:
name: Check current version of node
command: node -v
- restore_cache:
key: deps1-{{ .Branch }}-{{ checksum "package-lock.json" }}
- run:
name: Install package.json
command: npm ci
- save_cache:
key: deps1-{{ .Branch }}-{{ checksum "package-lock.json" }}
paths:
- node_modules
- run:
name: Install Dash for package build and build package
command: |
python -m venv venv
. venv/bin/activate
pip install --upgrade dash[dev,testing]
- run:
name: Run unit tests
command: |
npm run test
workflows:
version: 2
build:
jobs:
- build_and_test_node
================================================
FILE: .eslintignore
================================================
build/
coverage/
dist/
lib/
lib/*.js*
node_modules/
dash_daq/metadata.json
dash_daq/*.js*
inst/deps/*.js*
babel.config.js
webpack.config.js
.npm
vv/
venv/
*.pyc
*.egg-info
*.log
.DS_Store
================================================
FILE: .eslintrc
================================================
{
"extends": [
"./node_modules/dash-components-archetype/config/eslint/eslintrc-react.json"
],
"parser": "babel-eslint",
"plugins": [
"react",
"import"
],
"settings": {
"import/extensions": [
".css$"
]
}
}
================================================
FILE: .github/CODEOWNERS
================================================
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence
* @Marc-Andre-Rivet @shammamah
================================================
FILE: .github/FUNDING.yml
================================================
custom: https://plotly.com/products/consulting-and-oem/
================================================
FILE: .gitignore
================================================
build/
coverage/
dist/
lib/
lib/bundle.js*
node_modules/
dash_daq/metadata.json
dash_daq/bundle.js*
.npm
vv/
venv/
*.pyc
*.egg-info
*.log
.DS_Store
.vscode
================================================
FILE: .npmignore
================================================
node_modules/
.npm
.git/
vv/
venv/
*.pyc
*.log
.DS_Store
build/
coverage/
dist/
lib/
lib/bundle.js*
node_modules/
*.egg-info
================================================
FILE: .prettierrc
================================================
{
"singleQuote": true
}
================================================
FILE: CHANGELOG.md
================================================
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a
Changelog](http://keepachangelog.com/en/1.0.0/) and this project
adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Added
- [#117](https://github.com/plotly/dash-daq/pull/117) Added `digits` prop to `Gauge` component.
## [0.5.0] - 2020-04-27
### Added
- [#105](https://github.com/plotly/dash-daq/pull/105) Added [persistence](https://dash.plotly.com/persistence) for
components BooleanSwitch, ColorPicker, Knob, NumericInput, PowerButton, PrecisionInput, Slider and ToggleSwitch
### Changed
- [#92](https://github.com/plotly/dash-daq/pull/92) Update from React 16.8.6 to 16.13.0
## [0.4.0] - 2020-03-04
### Added
- [#80](https://github.com/plotly/dash-daq/pull/80) Added `theme` prop to `GraduatedBar` component.
### Changed
- [#91](https://github.com/plotly/dash-daq/pull/91) Renamed async modules with hyphen `-` instead of tilde `~`
- [#80](https://github.com/plotly/dash-daq/pull/80) Changed class names for components according to BEM conventions.
### Fixed
- [#80](https://github.com/plotly/dash-daq/pull/80) Fixed color problems for dark-theme buttons and inputs.
## [0.3.3] - 2020-01-23
### Changed
- [#82](https://github.com/plotly/dash-daq/pull/82) Updated `rc-slider` package and `daq.Slider` styling.
## [0.3.2] - 2020-01-22
### Fixed
- [#84](https://github.com/plotly/dash-daq/pull/84) Fixed JS map not being included in the `js_dist` for the Python package.
## [0.3.1] - 2019-11-14
### Fixed
- [#73](https://github.com/plotly/dash-daq/pull/73) Fix IE11 compatibility issues and ES5 compatibility and validation
## [0.3.0] - 2019-11-05
### Added
- [#70](https://github.com/plotly/dash-daq/pull/70) Async ColorPicker and Slider components
## [0.2.2] - 2019-10-04
### Fixed
- Fixed ThemeProvider warning by updating `styled-components` to `v4.4.0`.
## [0.2.1] - 2019-09-24
### Fixed
- Fixed "Cannot read property 'subscribe' of undefined" JavaScript
error.
## [0.2.0] - 2019-09-24
### Added
- Added `height` and `width` parameters to `daq.Tank` and
`daq.Thermometer`.
## [0.1.7] - 2019-07-24
### Changed
- Updated library to React 16 for compatibility with `dash-1.0.0`.
## [0.1.6] - 2019-07-16
### Added
- Added ability for LEDDisplay to handle negative numbers.
## [0.1.5] - 2019-05-09
### Fixed
- Fixed missing locationSlider entry in Slider.propTypes.
### Added
- Updated package.json with additional metadata for R package
building.
- Added JavaScript bundle and source map to dash_daq subfolder.
- Initial commit of dashDaq R package.
## [0.1.4] - 2019-02-18
### Fixed
- Fixed init file to include the correct bundle location.
- Fixed NPM package to include bundle, and updated Python package
version accordingly.
## [0.1.2] - 2019-02-15
### Fixed
- Fixed version to correspond to the correct/published npm version.
## [0.1.1] - 2019-02-14
### Fixed
- Fixed version to correspond to the correct/published npm version.
## [0.1.0] - 2019-01-28
### Fixed
- Fixed incompatibility issue with Dash `0.36.0`.
### Removed
- Removed unused headers in CHANGELOG.
- Removed all mentioned of `fireEvent` and anything else that used
Dash events (which have been removed). The `n_clicks` and `value`
props should be used instead to determine when something has been
updated.
## [0.0.2] - 2018-06-04
### Fixed
- Error on Windows when generating tarball. Fixed dependency problems
with import dash_daq.
## [0.0.1] - 2018-05-28
### Fixed
- Display error on ColorPicker Light component fixed
- Gauge component error with default values fixed
- Knob component error with JavaScript split method fixed
================================================
FILE: CODE_OF_CONDUCT.md
================================================
# Contributor Covenant Code of Conduct
## Our Pledge
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
## Our Standards
Examples of behavior that contributes to creating a positive environment include:
* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members
Examples of unacceptable behavior by participants include:
* The use of sexualized language or imagery and unwelcome sexual attention or advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a professional setting
## Our Responsibilities
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
## Scope
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at accounts@plot.ly. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.4, available at [http://contributor-covenant.org/version/1/4](http://contributor-covenant.org/version/1/4/), and may also be found online at <https://community.plotly.com/pub/code-of-conduct>.
================================================
FILE: DESCRIPTION
================================================
Package: dashDaq
Title: Interactive Data Acquisition and Control Components for Dash
Version: 0.5.1
Description: A robust set of controls that make it simpler to integrate data acquisition and controls into your Dash applications.
Depends: R (>= 3.0.2)
Imports:
Suggests:
Authors@R: person("The", "Team", role = c("aut", "cre"), email = "dashdaq@plotly.com")
License: MIT + file LICENSE
URL: https://github.com/plotly/dash-daq
BugReports: https://github.com/plotly/dash-daq/issues
Encoding: UTF-8
LazyData: true
KeepSource: true
================================================
FILE: LICENSE
================================================
MIT License
Copyright (c) 2019-2024 Plotly Technologies Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: MANIFEST.in
================================================
include dash_daq/dash_daq.min.js
include dash_daq/dash_daq.min.js.map
include dash_daq/async-*.js
include dash_daq/async-*.js.map
include dash_daq/metadata.json
include dash_daq/package-info.json
include README.md
include LICENSE
================================================
FILE: NAMESPACE
================================================
# AUTO GENERATED FILE - DO NOT EDIT
export(daqBooleanSwitch)
export(daqColorPicker)
export(daqDarkThemeProvider)
export(daqGauge)
export(daqGraduatedBar)
export(daqIndicator)
export(daqJoystick)
export(daqKnob)
export(daqLEDDisplay)
export(daqNumericInput)
export(daqPowerButton)
export(daqPrecisionInput)
export(daqSlider)
export(daqStopButton)
export(daqTank)
export(daqThermometer)
export(daqToggleSwitch)
================================================
FILE: R/daqBooleanSwitch.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqBooleanSwitch <- function(id=NULL, className=NULL, color=NULL, disabled=NULL, label=NULL, labelPosition=NULL, on=NULL, persisted_props=NULL, persistence=NULL, persistence_type=NULL, size=NULL, style=NULL, theme=NULL, vertical=NULL) {
props <- list(id=id, className=className, color=color, disabled=disabled, label=label, labelPosition=labelPosition, on=on, persisted_props=persisted_props, persistence=persistence, persistence_type=persistence_type, size=size, style=style, theme=theme, vertical=vertical)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'BooleanSwitch',
namespace = 'dash_daq',
propNames = c('id', 'className', 'color', 'disabled', 'label', 'labelPosition', 'on', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme', 'vertical'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqColorPicker.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqColorPicker <- function(id=NULL, className=NULL, disabled=NULL, label=NULL, labelPosition=NULL, persisted_props=NULL, persistence=NULL, persistence_type=NULL, size=NULL, style=NULL, theme=NULL, value=NULL) {
props <- list(id=id, className=className, disabled=disabled, label=label, labelPosition=labelPosition, persisted_props=persisted_props, persistence=persistence, persistence_type=persistence_type, size=size, style=style, theme=theme, value=value)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'ColorPicker',
namespace = 'dash_daq',
propNames = c('id', 'className', 'disabled', 'label', 'labelPosition', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme', 'value'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqDarkThemeProvider.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqDarkThemeProvider <- function(children=NULL, theme=NULL) {
props <- list(children=children, theme=theme)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'DarkThemeProvider',
namespace = 'dash_daq',
propNames = c('children', 'theme'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqGauge.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqGauge <- function(id=NULL, base=NULL, className=NULL, color=NULL, digits=NULL, exceedMessage=NULL, label=NULL, labelPosition=NULL, lagingMessage=NULL, logarithmic=NULL, max=NULL, min=NULL, scale=NULL, showCurrentValue=NULL, size=NULL, style=NULL, textColor=NULL, theme=NULL, units=NULL, value=NULL) {
props <- list(id=id, base=base, className=className, color=color, digits=digits, exceedMessage=exceedMessage, label=label, labelPosition=labelPosition, lagingMessage=lagingMessage, logarithmic=logarithmic, max=max, min=min, scale=scale, showCurrentValue=showCurrentValue, size=size, style=style, textColor=textColor, theme=theme, units=units, value=value)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'Gauge',
namespace = 'dash_daq',
propNames = c('id', 'base', 'className', 'color', 'digits', 'exceedMessage', 'label', 'labelPosition', 'lagingMessage', 'logarithmic', 'max', 'min', 'scale', 'showCurrentValue', 'size', 'style', 'textColor', 'theme', 'units', 'value'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqGraduatedBar.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqGraduatedBar <- function(id=NULL, className=NULL, color=NULL, label=NULL, labelPosition=NULL, max=NULL, min=NULL, showCurrentValue=NULL, size=NULL, step=NULL, style=NULL, theme=NULL, value=NULL, vertical=NULL) {
props <- list(id=id, className=className, color=color, label=label, labelPosition=labelPosition, max=max, min=min, showCurrentValue=showCurrentValue, size=size, step=step, style=style, theme=theme, value=value, vertical=vertical)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'GraduatedBar',
namespace = 'dash_daq',
propNames = c('id', 'className', 'color', 'label', 'labelPosition', 'max', 'min', 'showCurrentValue', 'size', 'step', 'style', 'theme', 'value', 'vertical'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqIndicator.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqIndicator <- function(id=NULL, className=NULL, color=NULL, height=NULL, label=NULL, labelPosition=NULL, size=NULL, style=NULL, theme=NULL, value=NULL, width=NULL) {
props <- list(id=id, className=className, color=color, height=height, label=label, labelPosition=labelPosition, size=size, style=style, theme=theme, value=value, width=width)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'Indicator',
namespace = 'dash_daq',
propNames = c('id', 'className', 'color', 'height', 'label', 'labelPosition', 'size', 'style', 'theme', 'value', 'width'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqJoystick.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqJoystick <- function(id=NULL, angle=NULL, className=NULL, force=NULL, label=NULL, labelPosition=NULL, size=NULL, style=NULL, theme=NULL) {
props <- list(id=id, angle=angle, className=className, force=force, label=label, labelPosition=labelPosition, size=size, style=style, theme=theme)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'Joystick',
namespace = 'dash_daq',
propNames = c('id', 'angle', 'className', 'force', 'label', 'labelPosition', 'size', 'style', 'theme'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqKnob.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqKnob <- function(id=NULL, className=NULL, color=NULL, digits=NULL, disabled=NULL, label=NULL, labelPosition=NULL, max=NULL, min=NULL, persisted_props=NULL, persistence=NULL, persistence_type=NULL, scale=NULL, showCurrentValue=NULL, size=NULL, style=NULL, textColor=NULL, theme=NULL, value=NULL) {
props <- list(id=id, className=className, color=color, digits=digits, disabled=disabled, label=label, labelPosition=labelPosition, max=max, min=min, persisted_props=persisted_props, persistence=persistence, persistence_type=persistence_type, scale=scale, showCurrentValue=showCurrentValue, size=size, style=style, textColor=textColor, theme=theme, value=value)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'Knob',
namespace = 'dash_daq',
propNames = c('id', 'className', 'color', 'digits', 'disabled', 'label', 'labelPosition', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'scale', 'showCurrentValue', 'size', 'style', 'textColor', 'theme', 'value'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqLEDDisplay.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqLEDDisplay <- function(id=NULL, backgroundColor=NULL, className=NULL, color=NULL, label=NULL, labelPosition=NULL, size=NULL, style=NULL, theme=NULL, value=NULL) {
props <- list(id=id, backgroundColor=backgroundColor, className=className, color=color, label=label, labelPosition=labelPosition, size=size, style=style, theme=theme, value=value)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'LEDDisplay',
namespace = 'dash_daq',
propNames = c('id', 'backgroundColor', 'className', 'color', 'label', 'labelPosition', 'size', 'style', 'theme', 'value'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqNumericInput.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqNumericInput <- function(id=NULL, className=NULL, disabled=NULL, label=NULL, labelPosition=NULL, max=NULL, min=NULL, persisted_props=NULL, persistence=NULL, persistence_type=NULL, size=NULL, style=NULL, theme=NULL, value=NULL) {
props <- list(id=id, className=className, disabled=disabled, label=label, labelPosition=labelPosition, max=max, min=min, persisted_props=persisted_props, persistence=persistence, persistence_type=persistence_type, size=size, style=style, theme=theme, value=value)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'NumericInput',
namespace = 'dash_daq',
propNames = c('id', 'className', 'disabled', 'label', 'labelPosition', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme', 'value'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqPowerButton.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqPowerButton <- function(id=NULL, className=NULL, color=NULL, disabled=NULL, label=NULL, labelPosition=NULL, offButtonStyle=NULL, on=NULL, onButtonStyle=NULL, persisted_props=NULL, persistence=NULL, persistence_type=NULL, size=NULL, style=NULL, theme=NULL) {
props <- list(id=id, className=className, color=color, disabled=disabled, label=label, labelPosition=labelPosition, offButtonStyle=offButtonStyle, on=on, onButtonStyle=onButtonStyle, persisted_props=persisted_props, persistence=persistence, persistence_type=persistence_type, size=size, style=style, theme=theme)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'PowerButton',
namespace = 'dash_daq',
propNames = c('id', 'className', 'color', 'disabled', 'label', 'labelPosition', 'offButtonStyle', 'on', 'onButtonStyle', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqPrecisionInput.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqPrecisionInput <- function(id=NULL, className=NULL, disabled=NULL, label=NULL, labelPosition=NULL, max=NULL, min=NULL, persisted_props=NULL, persistence=NULL, persistence_type=NULL, precision=NULL, size=NULL, style=NULL, theme=NULL, value=NULL) {
props <- list(id=id, className=className, disabled=disabled, label=label, labelPosition=labelPosition, max=max, min=min, persisted_props=persisted_props, persistence=persistence, persistence_type=persistence_type, precision=precision, size=size, style=style, theme=theme, value=value)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'PrecisionInput',
namespace = 'dash_daq',
propNames = c('id', 'className', 'disabled', 'label', 'labelPosition', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'precision', 'size', 'style', 'theme', 'value'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqSlider.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqSlider <- function(id=NULL, className=NULL, color=NULL, disabled=NULL, dots=NULL, fullSize=NULL, handleLabel=NULL, included=NULL, labelPosition=NULL, marks=NULL, max=NULL, min=NULL, persisted_props=NULL, persistence=NULL, persistence_type=NULL, size=NULL, step=NULL, style=NULL, targets=NULL, theme=NULL, updatemode=NULL, value=NULL, vertical=NULL) {
props <- list(id=id, className=className, color=color, disabled=disabled, dots=dots, fullSize=fullSize, handleLabel=handleLabel, included=included, labelPosition=labelPosition, marks=marks, max=max, min=min, persisted_props=persisted_props, persistence=persistence, persistence_type=persistence_type, size=size, step=step, style=style, targets=targets, theme=theme, updatemode=updatemode, value=value, vertical=vertical)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'Slider',
namespace = 'dash_daq',
propNames = c('id', 'className', 'color', 'disabled', 'dots', 'fullSize', 'handleLabel', 'included', 'labelPosition', 'marks', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'size', 'step', 'style', 'targets', 'theme', 'updatemode', 'value', 'vertical'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqStopButton.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqStopButton <- function(children=NULL, id=NULL, buttonText=NULL, className=NULL, disabled=NULL, label=NULL, labelPosition=NULL, n_clicks=NULL, size=NULL, style=NULL, theme=NULL) {
props <- list(children=children, id=id, buttonText=buttonText, className=className, disabled=disabled, label=label, labelPosition=labelPosition, n_clicks=n_clicks, size=size, style=style, theme=theme)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'StopButton',
namespace = 'dash_daq',
propNames = c('children', 'id', 'buttonText', 'className', 'disabled', 'label', 'labelPosition', 'n_clicks', 'size', 'style', 'theme'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqTank.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqTank <- function(id=NULL, base=NULL, className=NULL, color=NULL, currentValueStyle=NULL, exceedMessage=NULL, height=NULL, label=NULL, labelPosition=NULL, lagingMessage=NULL, logarithmic=NULL, max=NULL, min=NULL, scale=NULL, showCurrentValue=NULL, style=NULL, textColor=NULL, theme=NULL, units=NULL, value=NULL, width=NULL) {
props <- list(id=id, base=base, className=className, color=color, currentValueStyle=currentValueStyle, exceedMessage=exceedMessage, height=height, label=label, labelPosition=labelPosition, lagingMessage=lagingMessage, logarithmic=logarithmic, max=max, min=min, scale=scale, showCurrentValue=showCurrentValue, style=style, textColor=textColor, theme=theme, units=units, value=value, width=width)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'Tank',
namespace = 'dash_daq',
propNames = c('id', 'base', 'className', 'color', 'currentValueStyle', 'exceedMessage', 'height', 'label', 'labelPosition', 'lagingMessage', 'logarithmic', 'max', 'min', 'scale', 'showCurrentValue', 'style', 'textColor', 'theme', 'units', 'value', 'width'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqThermometer.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqThermometer <- function(id=NULL, base=NULL, className=NULL, color=NULL, height=NULL, label=NULL, labelPosition=NULL, logarithmic=NULL, max=NULL, min=NULL, scale=NULL, showCurrentValue=NULL, style=NULL, theme=NULL, units=NULL, value=NULL, width=NULL) {
props <- list(id=id, base=base, className=className, color=color, height=height, label=label, labelPosition=labelPosition, logarithmic=logarithmic, max=max, min=min, scale=scale, showCurrentValue=showCurrentValue, style=style, theme=theme, units=units, value=value, width=width)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'Thermometer',
namespace = 'dash_daq',
propNames = c('id', 'base', 'className', 'color', 'height', 'label', 'labelPosition', 'logarithmic', 'max', 'min', 'scale', 'showCurrentValue', 'style', 'theme', 'units', 'value', 'width'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/daqToggleSwitch.R
================================================
# AUTO GENERATED FILE - DO NOT EDIT
daqToggleSwitch <- function(id=NULL, className=NULL, color=NULL, disabled=NULL, label=NULL, labelPosition=NULL, persisted_props=NULL, persistence=NULL, persistence_type=NULL, size=NULL, style=NULL, theme=NULL, value=NULL, vertical=NULL) {
props <- list(id=id, className=className, color=color, disabled=disabled, label=label, labelPosition=labelPosition, persisted_props=persisted_props, persistence=persistence, persistence_type=persistence_type, size=size, style=style, theme=theme, value=value, vertical=vertical)
if (length(props) > 0) {
props <- props[!vapply(props, is.null, logical(1))]
}
component <- list(
props = props,
type = 'ToggleSwitch',
namespace = 'dash_daq',
propNames = c('id', 'className', 'color', 'disabled', 'label', 'labelPosition', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme', 'value', 'vertical'),
package = 'dashDaq'
)
structure(component, class = c('dash_component', 'list'))
}
================================================
FILE: R/internal.R
================================================
.dashDaq_js_metadata <- function() {
deps_metadata <- list(`dash_daq` = structure(list(name = "dash_daq",
version = "0.5.1", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'async-colorpicker.js',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashDaq",
all_files = FALSE, async = TRUE), class = "html_dependency"),
`dash_daq` = structure(list(name = "dash_daq",
version = "0.5.1", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'async-slider.js',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashDaq",
all_files = FALSE, async = TRUE), class = "html_dependency"),
`dash_daq` = structure(list(name = "dash_daq",
version = "0.5.1", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'async-colorpicker.js.map',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashDaq",
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
`dash_daq` = structure(list(name = "dash_daq",
version = "0.5.1", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'async-slider.js.map',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashDaq",
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
`dash_daq` = structure(list(name = "dash_daq",
version = "0.5.1", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'dash_daq.min.js',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashDaq",
all_files = FALSE), class = "html_dependency"),
`dash_daq` = structure(list(name = "dash_daq",
version = "0.5.1", src = list(href = NULL,
file = "deps"), meta = NULL,
script = 'dash_daq.min.js.map',
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashDaq",
all_files = FALSE, dynamic = TRUE), class = "html_dependency"))
return(deps_metadata)
}
================================================
FILE: README.md
================================================
# dash_daq
DAQ components for Dash.
Docs: https://dash.plotly.com/dash-daq
<div align="center">
<a href="https://dash.plotly.com/project-maintenance">
<img src="https://dash.plotly.com/assets/images/maintained-by-plotly.png" width="400px" alt="Maintained by Plotly">
</a>
</div>
## Installation
`pip install dash_daq`
(Or for Python 3, `pip3 install dash_daq`)
## Getting started for contributors
The source code and all the subsequent changes should be done inside `src` folder/directory.
Create a python virtual environment and activate it. inside that virtual enviornment
```sh
pip install dash
pip install pyyaml
```
This will install necessary build tools for building and testing library.
```sh
# Clone this repository
git clone https://github.com/plotly/dash-daq.git
# Install dependencies
$ npm install --also=dev
# Watch source for changes and build to `lib/`
$ npm start
```
## Documentation
Component API documentation can be found at https://dash.plotly.com/dash-daq
## Development
### Demo server
You can start up a demo development server to see a demo of the rendered
components:
```sh
$ npm run dash-demo
```
You have to maintain the list of components in `demo/Demo.react.js`.
### Code quality and tests
#### To run lint and unit tests:
```sh
$ npm run test
```
### Testing your components in Dash
1. Build development bundle to `lib/`
```sh
$ npm run start
```
2. Install module locally (after every change) in virtual environment
```sh
# Generate metadata, and install the daq pacakage locally for testing
$ npm run install-local
```
3. Run the Dash demo
```sh
$ npm run dash-demo
```
## Installing python package locally
Before publishing to PyPi, you can test installing the module locally:
```sh
# Install in `site-packages` on your machine
$ yarn run install-local
```
## Uninstalling python package locally
```sh
$ yarn run uninstall-local
```
## Producing a new release as a tarball
```sh
vim dash_daq/version.py # and increase it to X.X.X
rm -rf node_modules dist build lib
yarn install
yarn build-tarball
ls dist/dash_daq-X.X.X.tar.gz # this is your tarball
```
## Demo applications
- Dash Daq HP Multimeter - [http://dash-gallery.plotly.host/dash-daq-hp-multimeter](http://dash-gallery.plotly.host/dash-daq-hp-multimeter)
- Dash Daq IV Tracer - [http://dash-gallery.plotly.host/dash-daq-iv-tracer](http://dash-gallery.plotly.host/dash-daq-iv-tracer)
- Dash Daq Pressure Gauge KJL - [http://dash-gallery.plotly.host/dash-daq-pressure-gauge-kjl](http://dash-gallery.plotly.host/dash-daq-pressure-gauge-kjl)
- Dash Daq Pressure Gauge Pfeiffer - [https://dash-gallery.plotly.host/dash-daq-pressure-gauge-pv](https://dash-gallery.plotly.host/dash-daq-pressure-gauge-pv)
- Dash Daq Sparki - [http://dash-gallery.plotly.host/dash-daq-sparki](http://dash-gallery.plotly.host/dash-daq-sparki)
- Dash Daq Stepper Motor - [http://dash-gallery.plotly.host/dash-daq-stepper-motor](http://dash-gallery.plotly.host/dash-daq-stepper-motor)
- Dash Tektronix 350 - [http://dash-gallery.plotly.host/dash-daq-tektronix350](http://dash-gallery.plotly.host/dash-daq-tektronix350)
- Dash Ocean Optics - [http://dash-gallery.plotly.host/dash-ocean-optics](http://dash-gallery.plotly.host/dash-ocean-optics)
================================================
FILE: babel.config.js
================================================
module.exports = {
presets: [
'@babel/preset-env',
'@babel/preset-react'
],
plugins: [
'@babel/plugin-syntax-dynamic-import'
]
}
================================================
FILE: bin/generateDocs
================================================
#!/usr/bin/env node
const path = require('path');
const fs = require('fs-extra');
const chalk = require('chalk');
const reactDocgen = require('react-docgen');
const ReactDocGenMarkdownRenderer = require('react-docgen-markdown-renderer');
const componentDir = path.join(__dirname, '..', 'src', 'components');
const documentationDir = path.join(__dirname, '..', 'docs');
const componentDocTemplate = `
## {{componentName}}
{{#if srcLink }}Component file: [\`{{srcLink}}\`]({{srcLink}}){{/if}}
{{#if description}}{{{description}}}{{/if}}
prop | type | default | description
---- | :----: | :-------: | -----------
{{#each props}}
**{{@key}}** | \`{{> (typePartial this) this}}\` | {{#if this.defaultValue}}\`{{{this.defaultValue}}}\`{{/if}} | {{#if this.description}}{{{this.description}}}{{/if}}
{{/each}}
`;
const renderer = new ReactDocGenMarkdownRenderer({ template: componentDocTemplate });
genDocumention()
.then(() => console.log(chalk.green('Documentation successfully generated.')))
.catch(console.error);
// helper
async function genDocumention () {
const componentFilenames = fs.readdirSync(componentDir).filter((filename) => filename.includes('.js'));
await genComponentDocs(componentFilenames);
await genIndexDoc(componentFilenames);
}
async function genComponentDocs (componentFilenames) {
const promises = componentFilenames.map((componentFilename) => {
const docFilename = getDocFilename(componentFilename);
const componentPath = path.join(componentDir, componentFilename);
const docPath = path.join(documentationDir, docFilename)
return documentComponent(componentPath, docPath);
});
return Promise.all(promises);
}
async function genIndexDoc (componentFilenames) {
const indexDocPath = path.join(documentationDir, 'README.md')
let content = '';
content += '## Component API Documentation\n\n';
componentFilenames.forEach((filename) => {
const componentName = getComponentName(filename);
const docFilename = getDocFilename(filename);
content += `\n - [${componentName}](/docs/${docFilename})\n`;
})
return fs.writeFile(indexDocPath, content);
}
async function documentComponent (componentPath, docPath) {
const componentName = getComponentName(componentPath);
const fileContent = await fs.readFile(componentPath);
const doc = reactDocgen.parse(fileContent);
const markdown = renderer.render(componentPath, doc, [])
.split('src/components').join('/src/components')
return fs.writeFile(docPath, markdown);
}
function getDocFilename (componentPath) {
return `${path.basename(componentPath).split('.').shift()}.md`;
}
function getComponentName (componentPath) {
return path.basename(componentPath).split('.').shift();
}
================================================
FILE: dash-info.yaml
================================================
pkg_help_description: >-
A robust set of controls that make it simpler to integrate data acquisition and controls into your Dash applications.
pkg_help_title: >-
Interactive Data Acquisition and Control Components for Dash
================================================
FILE: dash_daq/BooleanSwitch.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class BooleanSwitch(Component):
"""A BooleanSwitch component.
A switch component that toggles
between on and off.
Keyword arguments:
- id (string; optional):
The ID used to identify this component in Dash callbacks.
- className (string; optional):
Class to apply to the root component element.
- color (string; optional):
Color to highlight active switch background.
- disabled (boolean; optional):
If True, switch cannot be clicked.
- label (dict; optional):
Description to be displayed alongside the control. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the component label is positioned.
- on (boolean; default False):
Whether or not the switch is on.
- persisted_props (list of a value equal to: 'on's; default ['on']):
Properties whose user interactions will persist after refreshing
the component or the page. Since only `on` is allowed this prop
can normally be ignored.
- persistence (boolean | string | number; optional):
Used to allow user interactions in this component to be persisted
when the component - or the page - is refreshed. If `persisted` is
truthy and hasn't changed from its previous value, a `value` that
the user has changed while using the app will keep that change, as
long as the new `value` also matches what was given originally.
Used in conjunction with `persistence_type`.
- persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
Where persisted user changes will be stored: memory: only kept in
memory, reset on page refresh. local: window.localStorage, data is
kept after the browser quit. session: window.sessionStorage, data
is cleared once the browser quit.
- size (number; optional):
size of the switch.
- style (dict; optional):
Style to apply to the root object.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- vertical (boolean; default False):
If True, switch will be vertical instead of horizontal."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, on=Component.UNDEFINED, color=Component.UNDEFINED, vertical=Component.UNDEFINED, disabled=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, size=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'className', 'color', 'disabled', 'label', 'labelPosition', 'on', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme', 'vertical']
self._type = 'BooleanSwitch'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'className', 'color', 'disabled', 'label', 'labelPosition', 'on', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme', 'vertical']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(BooleanSwitch, self).__init__(**args)
================================================
FILE: dash_daq/ColorPicker.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class ColorPicker(Component):
"""A ColorPicker component.
A color picker.
Keyword arguments:
- id (string; optional):
The ID used to identify the color picker in Dash callbacks.
- className (string; optional):
Class to apply to the root component element.
- disabled (boolean; optional):
If True, color cannot be picked.
- label (dict; optional):
Description to be displayed alongside the control. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the indicator label is positioned.
- persisted_props (list of a value equal to: 'value's; default ['value']):
Properties whose user interactions will persist after refreshing
the component or the page. Since only `value` is allowed this prop
can normally be ignored.
- persistence (boolean | string | number; optional):
Used to allow user interactions in this component to be persisted
when the component - or the page - is refreshed. If `persisted` is
truthy and hasn't changed from its previous value, a `value` that
the user has changed while using the app will keep that change, as
long as the new `value` also matches what was given originally.
Used in conjunction with `persistence_type`.
- persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
Where persisted user changes will be stored: memory: only kept in
memory, reset on page refresh. local: window.localStorage, data is
kept after the browser quit. session: window.sessionStorage, data
is cleared once the browser quit.
- size (number; default 225):
Size (width) of the component in pixels.
- style (dict; optional):
Style to apply to the root component element.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- value (dict; optional):
Color value of the picker.
`value` is a dict with keys:
- hex (string; optional):
Hex string.
- rbg (dict; optional):
RGB/RGBA object.
`rbg` is a dict with keys:
- a (number; optional)
- b (number; optional)
- g (number; optional)
- r (number; optional)"""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, disabled=Component.UNDEFINED, size=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'className', 'disabled', 'label', 'labelPosition', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme', 'value']
self._type = 'ColorPicker'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'className', 'disabled', 'label', 'labelPosition', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme', 'value']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(ColorPicker, self).__init__(**args)
================================================
FILE: dash_daq/DarkThemeProvider.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class DarkThemeProvider(Component):
"""A DarkThemeProvider component.
DarkThemeProvider is a component that is placed at the root of
the component tree to make all components match the dark theme
Keyword arguments:
- children (list of a list of or a singular dash component, string or numbers | a list of or a singular dash component, string or number; optional):
The children of this component.
- theme (dict; optional):
Theme object to override with a custom theme.
`theme` is a dict with keys:
- dark (boolean; optional):
True for Dark mode, False for Light.
- detail (string; optional):
Color used for UI details, like borders.
- primary (string; optional):
Highlight color.
- secondary (string; optional):
Supporting color."""
@_explicitize_args
def __init__(self, children=None, theme=Component.UNDEFINED, **kwargs):
self._prop_names = ['children', 'theme']
self._type = 'DarkThemeProvider'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['children', 'theme']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(DarkThemeProvider, self).__init__(children=children, **args)
================================================
FILE: dash_daq/Gauge.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class Gauge(Component):
"""A Gauge component.
A Gauge component that points to
a value between some range.
Keyword arguments:
- id (string; optional):
The ID used to identify this compnent in Dash callbacks.
- base (number; default 10):
Base to be used in logarithmic scale.
- className (string; optional):
Class to apply to the root component element.
- color (dict; optional):
Color configuration for the gauge's track.
`color` is a string | dict with keys:
- default (string; optional):
Color used for current value text and other minor accents.
- gradient (boolean; optional):
Display ranges as a gradient between given colors.
- ranges (dict; optional):
Define multiple color ranges on the gauge's track. The key
determines the color of the range and the value is the
start,end of the range itself. Ranges must be contiguous along
the entirety of the gauge's range of values.
`ranges` is a dict with keys:
- color (list of number | list of numberss; optional)
- digits (number; default 1):
Number of digits for current value.
- exceedMessage (string; optional):
Warning message when value exceed max.
- label (dict; optional):
Description to be displayed alongside the control. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the component label is positioned.
- lagingMessage (string; optional):
Warning message when value is laging from min.
- logarithmic (boolean; optional):
If set to True, a logarithmic scale will be used.
- max (number; default 10):
The maximum value of the gauge. If logarithmic, represents the
maximum exponent.
- min (number; default 0):
The minimum value of the gauge. If logarithmic, represents the
minimum exponent.
- scale (dict; optional):
Configuration for the component scale.
`scale` is a dict with keys:
- custom (dict; optional):
Custom scale marks. The key determines the position and the
value determines what will show. If you want to set the style
of a specific mark point, the value should be an object which
contains style and label properties.
`custom` is a number
Or dict with keys:
- label (string; optional)
- style (string; optional)
- interval (number; optional):
Interval by which the scale goes up. Attempts to dynamically
divide min-max range by default.
- labelInterval (number; optional):
Interval by which labels are added to scale marks. Defaults to
2 (every other mark has a label).
- start (number; optional):
Value to start the scale from. Defaults to min.
- showCurrentValue (boolean; optional):
If True, the current value of the gauge will be displayed.
- size (number; default 208):
The size (diameter) of the gauge in pixels.
- style (dict; optional):
Style to apply to the root component element.
- textColor (string; optional):
text color for theme.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- units (string; optional):
Label for the current value.
- value (number; optional):
The value of gauge. If logarithmic, the displayed value will be
the logarithm of the inputted value."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, size=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, base=Component.UNDEFINED, logarithmic=Component.UNDEFINED, showCurrentValue=Component.UNDEFINED, digits=Component.UNDEFINED, units=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, scale=Component.UNDEFINED, color=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, exceedMessage=Component.UNDEFINED, lagingMessage=Component.UNDEFINED, textColor=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'base', 'className', 'color', 'digits', 'exceedMessage', 'label', 'labelPosition', 'lagingMessage', 'logarithmic', 'max', 'min', 'scale', 'showCurrentValue', 'size', 'style', 'textColor', 'theme', 'units', 'value']
self._type = 'Gauge'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'base', 'className', 'color', 'digits', 'exceedMessage', 'label', 'labelPosition', 'lagingMessage', 'logarithmic', 'max', 'min', 'scale', 'showCurrentValue', 'size', 'style', 'textColor', 'theme', 'units', 'value']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(Gauge, self).__init__(**args)
================================================
FILE: dash_daq/GraduatedBar.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class GraduatedBar(Component):
"""A GraduatedBar component.
A graduated bar component that displays
a value within some range as a
percentage.
Keyword arguments:
- id (string; optional):
The ID used to identify this compnent in Dash callbacks.
- className (string; optional):
Class to apply to the root component element.
- color (dict; default light.primary):
Color configuration for the graduated bar's progress blocks.
`color` is a string | dict with keys:
- default (string; optional):
Fallback color to use when color.ranges has gaps.
- gradient (boolean; optional):
Display ranges as a gradient between given colors. Requires
color.ranges to be contiguous along the entirety of the
graduated bar's range of values.
- ranges (dict; optional):
Define multiple color ranges on the graduated bar's track. The
key determines the color of the range and the value is the
start,end of the range itself.
`ranges` is a dict with keys:
- color (list of numbers; optional)
- label (dict; optional):
Description to be displayed alongside the control. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the component label is positioned.
- max (number; default 10):
The maximum value of the graduated bar.
- min (number; default 0):
The minimum value of the graduated bar.
- showCurrentValue (boolean; optional):
If True, the current percentage of the bar will be displayed.
- size (number; default 250):
The size (length) of the graduated bar in pixels.
- step (number; default 0.5):
Value by which progress blocks appear.
- style (dict; optional):
Style to apply to the root component element.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- value (number; optional):
The value of the graduated bar.
- vertical (boolean; optional):
If True, will display bar vertically instead of horizontally."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, color=Component.UNDEFINED, size=Component.UNDEFINED, vertical=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, showCurrentValue=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'className', 'color', 'label', 'labelPosition', 'max', 'min', 'showCurrentValue', 'size', 'step', 'style', 'theme', 'value', 'vertical']
self._type = 'GraduatedBar'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'className', 'color', 'label', 'labelPosition', 'max', 'min', 'showCurrentValue', 'size', 'step', 'style', 'theme', 'value', 'vertical']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(GraduatedBar, self).__init__(**args)
================================================
FILE: dash_daq/Indicator.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class Indicator(Component):
"""An Indicator component.
A boolean indicator LED.
Keyword arguments:
- id (string; optional):
The ID used to identify the indicator in Dash callbacks.
- className (string; optional):
Class to apply to the root component element.
- color (string; default colors.DARKER_PRIMARY):
Color of the indicator.
- height (number; optional):
Height of the component. Set both width and height for a
rectangular indicator.
- label (dict; optional):
Description to be displayed alongside the control. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom', 'right', 'left'; default 'top'):
Where the indicator label is positioned.
- size (number; default 15):
Size of the component. Either use this or width and height.
- style (dict; optional):
Style to apply to the root component element.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- value (boolean; optional):
If True, indicator is illuminated.
- width (number; optional):
Width of the component. Set both width and height for a
rectangular indicator."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, color=Component.UNDEFINED, size=Component.UNDEFINED, width=Component.UNDEFINED, height=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'className', 'color', 'height', 'label', 'labelPosition', 'size', 'style', 'theme', 'value', 'width']
self._type = 'Indicator'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'className', 'color', 'height', 'label', 'labelPosition', 'size', 'style', 'theme', 'value', 'width']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(Indicator, self).__init__(**args)
================================================
FILE: dash_daq/Joystick.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class Joystick(Component):
"""A Joystick component.
A joystick.
Keyword arguments:
- id (string; optional):
The ID used to identify the Joystick in Dash callbacks.
- angle (number; optional):
Joystick angle in degrees, 0 = right, 90 = up, 180 = left, 270 =
down.
- className (string; optional):
Class to apply to the root component element.
- force (number; optional):
Joystick force: distance between cursor and center in big-circle
radii.
- label (dict; optional):
Description to be displayed alongside the control. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the indicator label is positioned.
- size (number; default 100):
Size (width) of the component in pixels.
- style (dict; optional):
Style to apply to the root component element.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, angle=Component.UNDEFINED, force=Component.UNDEFINED, size=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'angle', 'className', 'force', 'label', 'labelPosition', 'size', 'style', 'theme']
self._type = 'Joystick'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'angle', 'className', 'force', 'label', 'labelPosition', 'size', 'style', 'theme']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(Joystick, self).__init__(**args)
================================================
FILE: dash_daq/Knob.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class Knob(Component):
"""A Knob component.
A knob component that can be turned
to a value between some range.
Keyword arguments:
- id (string; optional):
The ID used to identify this compnent in Dash callbacks.
- className (string; optional):
Class to apply to the root component element.
- color (dict; optional):
Color configuration for the knob's track.
`color` is a string | dict with keys:
- default (string; optional):
Color used for current value text and other minor accents.
- gradient (boolean; optional):
Display ranges as a gradient between given colors.
- ranges (dict; optional):
Define multiple color ranges on the knob's track. The key
determines the color of the range and the value is the
start,end of the range itself. Ranges must be contiguous along
the entirety of the knob's range of values.
`ranges` is a dict with keys:
- color (list of numbers; optional)
- digits (number; optional):
number of digits to show after decimal places.
- disabled (boolean; optional):
If True, knob cannot be moved.
- label (dict; optional):
Description to be displayed alongside the control. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the knob label is positioned.
- max (number; default 10):
The maximum value of the knob.
- min (number; default 0):
The minimum value of the knob.
- persisted_props (list of a value equal to: 'value's; default ['value']):
Properties whose user interactions will persist after refreshing
the component or the page. Since only `value` is allowed this prop
can normally be ignored.
- persistence (boolean | string | number; optional):
Used to allow user interactions in this component to be persisted
when the component - or the page - is refreshed. If `persisted` is
truthy and hasn't changed from its previous value, a `value` that
the user has changed while using the app will keep that change, as
long as the new `value` also matches what was given originally.
Used in conjunction with `persistence_type`.
- persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
Where persisted user changes will be stored: memory: only kept in
memory, reset on page refresh. local: window.localStorage, data is
kept after the browser quit. session: window.sessionStorage, data
is cleared once the browser quit.
- scale (dict; optional):
Configuration for the component scale.
`scale` is a dict with keys:
- custom (dict; optional):
Custom scale marks. The key determines the position and the
value determines what will show. If you want to set the style
of a specific mark point, the value should be an object which
contains style and label properties.
`custom` is a number
Or dict with keys:
- label (string; optional)
- style (string; optional)
- interval (number; optional):
Interval by which the scale goes up. Attempts to dynamically
divide min-max range by default.
- labelInterval (number; optional):
Interval by which labels are added to scale marks. Defaults to
2 (every other mark has a label).
- start (number; optional):
Value to start the scale from. Defaults to min.
- showCurrentValue (boolean; optional):
show current value of knob.
- size (number; default 114):
The size (diameter) of the knob in pixels.
- style (dict; optional):
Style to apply to the root component element.
- textColor (string; optional):
text color of scale.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- value (number; optional):
The value of knob."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, color=Component.UNDEFINED, size=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, disabled=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, scale=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, showCurrentValue=Component.UNDEFINED, textColor=Component.UNDEFINED, digits=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'className', 'color', 'digits', 'disabled', 'label', 'labelPosition', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'scale', 'showCurrentValue', 'size', 'style', 'textColor', 'theme', 'value']
self._type = 'Knob'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'className', 'color', 'digits', 'disabled', 'label', 'labelPosition', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'scale', 'showCurrentValue', 'size', 'style', 'textColor', 'theme', 'value']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(Knob, self).__init__(**args)
================================================
FILE: dash_daq/LEDDisplay.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class LEDDisplay(Component):
"""A LEDDisplay component.
A 7-bar LED display component.
Keyword arguments:
- id (string; optional):
The ID used to identify the display in Dash callbacks.
- backgroundColor (string; default '#fff'):
Color of the display's background.
- className (string; optional):
Class to apply to the root component element.
- color (string; default colors.PRIMARY):
Color of the display.
- label (dict; optional):
Description to be displayed alongside the control. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the display label is positioned.
- size (number; default 42):
Size of the display.
- style (dict; optional):
Style to apply to the root component element.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- value (number | string; optional):
Value to be displayed. A number or a string containing only digits
(0-9), periods, and colons, and possibly starting with a minus
sign."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, color=Component.UNDEFINED, backgroundColor=Component.UNDEFINED, size=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'backgroundColor', 'className', 'color', 'label', 'labelPosition', 'size', 'style', 'theme', 'value']
self._type = 'LEDDisplay'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'backgroundColor', 'className', 'color', 'label', 'labelPosition', 'size', 'style', 'theme', 'value']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(LEDDisplay, self).__init__(**args)
================================================
FILE: dash_daq/NumericInput.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class NumericInput(Component):
"""A NumericInput component.
A numeric input component that can be
set to a value between some range.
Keyword arguments:
- id (string; optional):
The ID used to identify this compnent in Dash callbacks.
- className (string; optional):
Class to apply to the root component element.
- disabled (boolean; optional):
If True, numeric input cannot changed.
- label (dict; optional):
Description to be displayed alongside the control. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the numeric input label is positioned.
- max (number; default 10):
The maximum value of the numeric input.
- min (number; default 0):
The minimum value of the numeric input.
- persisted_props (list of a value equal to: 'value's; default ['value']):
Properties whose user interactions will persist after refreshing
the component or the page. Since only `value` is allowed this prop
can normally be ignored.
- persistence (boolean | string | number; optional):
Used to allow user interactions in this component to be persisted
when the component - or the page - is refreshed. If `persisted` is
truthy and hasn't changed from its previous value, a `value` that
the user has changed while using the app will keep that change, as
long as the new `value` also matches what was given originally.
Used in conjunction with `persistence_type`.
- persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
Where persisted user changes will be stored: memory: only kept in
memory, reset on page refresh. local: window.localStorage, data is
kept after the browser quit. session: window.sessionStorage, data
is cleared once the browser quit.
- size (number; optional):
The size (length) of the numeric input in pixels.
- style (dict; default { display: 'flex', justifyContent: 'center' }):
Style to apply to the root component element.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- value (number; optional):
The value of numeric input."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, size=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, disabled=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'className', 'disabled', 'label', 'labelPosition', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme', 'value']
self._type = 'NumericInput'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'className', 'disabled', 'label', 'labelPosition', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme', 'value']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(NumericInput, self).__init__(**args)
================================================
FILE: dash_daq/PowerButton.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class PowerButton(Component):
"""A PowerButton component.
A power button component can be
turned on and off.
Keyword arguments:
- id (string; optional):
The ID used to identify this compnent in Dash callbacks.
- className (string; optional):
Class to apply to the root component element.
- color (string; optional):
The indicator color to display when power button is on.
- disabled (boolean; optional):
If True, power button cannot be clicked.
- label (dict; optional):
Description to be displayed alongside the button. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the button label is positioned.
- offButtonStyle (dict; optional):
style to apply on switch off button.
- on (boolean; default False):
Whether or not the power button is on.
- onButtonStyle (dict; optional):
style to apply on switch on button.
- persisted_props (list of a value equal to: 'on's; default ['on']):
Properties whose user interactions will persist after refreshing
the component or the page. Since only `on` is allowed this prop
can normally be ignored.
- persistence (boolean | string | number; optional):
Used to allow user interactions in this component to be persisted
when the component - or the page - is refreshed. If `persisted` is
truthy and hasn't changed from its previous value, a `value` that
the user has changed while using the app will keep that change, as
long as the new `value` also matches what was given originally.
Used in conjunction with `persistence_type`.
- persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
Where persisted user changes will be stored: memory: only kept in
memory, reset on page refresh. local: window.localStorage, data is
kept after the browser quit. session: window.sessionStorage, data
is cleared once the browser quit.
- size (number; default 48):
The size (diameter) of the power button in pixels.
- style (dict; optional):
Style to apply to the root component element.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, on=Component.UNDEFINED, color=Component.UNDEFINED, size=Component.UNDEFINED, disabled=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, onButtonStyle=Component.UNDEFINED, offButtonStyle=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'className', 'color', 'disabled', 'label', 'labelPosition', 'offButtonStyle', 'on', 'onButtonStyle', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme']
self._type = 'PowerButton'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'className', 'color', 'disabled', 'label', 'labelPosition', 'offButtonStyle', 'on', 'onButtonStyle', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(PowerButton, self).__init__(**args)
================================================
FILE: dash_daq/PrecisionInput.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class PrecisionInput(Component):
"""A PrecisionInput component.
A numeric input component that converts
an input value to the desired precision.
Keyword arguments:
- id (string; optional):
The ID used to identify this compnent in Dash callbacks.
- className (string; optional):
Class to apply to the root component element.
- disabled (boolean; optional):
If True, numeric input cannot be changed.
- label (dict; optional):
Description to be displayed alongside the scientific notation. To
control styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the numeric input label is positioned.
- max (number; default Number.MAX_SAFE_INTEGER):
The maximum value of the numeric input.
- min (number; default 0):
The minimum value of the numeric input.
- persisted_props (list of a value equal to: 'value's; default ['value']):
Properties whose user interactions will persist after refreshing
the component or the page. Since only `value` is allowed this prop
can normally be ignored.
- persistence (boolean | string | number; optional):
Used to allow user interactions in this component to be persisted
when the component - or the page - is refreshed. If `persisted` is
truthy and hasn't changed from its previous value, a `value` that
the user has changed while using the app will keep that change, as
long as the new `value` also matches what was given originally.
Used in conjunction with `persistence_type`.
- persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
Where persisted user changes will be stored: memory: only kept in
memory, reset on page refresh. local: window.localStorage, data is
kept after the browser quit. session: window.sessionStorage, data
is cleared once the browser quit.
- precision (number; default 2):
Number of significant figures.
- size (number; optional):
The size (length) of the numeric input in pixels.
- style (dict; optional):
Style to apply to the root component element.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- value (number; optional):
The value of numeric input."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, size=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, precision=Component.UNDEFINED, disabled=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'className', 'disabled', 'label', 'labelPosition', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'precision', 'size', 'style', 'theme', 'value']
self._type = 'PrecisionInput'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'className', 'disabled', 'label', 'labelPosition', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'precision', 'size', 'style', 'theme', 'value']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(PrecisionInput, self).__init__(**args)
================================================
FILE: dash_daq/Slider.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class Slider(Component):
"""A Slider component.
A slider component with support for
a target value.
Keyword arguments:
- id (string; optional):
The ID used to identify this component in Dash callbacks.
- className (string; optional):
Additional CSS class for the root DOM node.
- color (dict; default colors.DARKER_PRIMARY):
Color configuration for the slider's track.
`color` is a string | dict with keys:
- default (string; optional):
Fallback color to use when color.ranges has gaps.
- gradient (boolean; optional):
Display ranges as a gradient between given colors. Requires
color.ranges to be contiguous along the entirety of the
gauge's range of values.
- ranges (dict; optional):
Define multiple color ranges on the slider's track. The key
determines the color of the range and the value is the
start,end of the range itself.
`ranges` is a dict with keys:
- color (list of numbers; optional)
- disabled (boolean; optional):
If True, the handles can't be moved.
- dots (boolean; optional):
When the step value is greater than 1, you can set the dots to
True if you want to render the slider with dots. Note: dots are
disabled automatically when using color.ranges.
- fullSize (boolean; optional):
make slider same size of its parent.
- handleLabel (dict; optional):
Configuration of the slider handle's label. Passing falsy value
will disable the label.
`handleLabel` is a string | dict with keys:
- color (string; optional)
- label (string; optional)
- showCurrentValue (boolean; optional)
- style (dict; optional)
- included (boolean; optional):
If the value is True, it means a continuous value is included.
Otherwise, it is an independent value.
- labelPosition (a value equal to: 'top', 'bottom'; default 'bottom'):
Where the component label is positioned.
- marks (dict; optional):
Marks on the slider. The key determines the position, and the
value determines what will show. If you want to set the style of a
specific mark point, the value should be an object which contains
style and label properties.
`marks` is a dict with keys:
- number (dict; optional)
`number` is a string
Or dict with keys:
- label (string; optional)
- style (dict; optional)
- max (number; optional):
Maximum allowed value of the slider.
- min (number; default 0):
Minimum allowed value of the slider.
- persisted_props (list of a value equal to: 'value's; default ['value']):
Properties whose user interactions will persist after refreshing
the component or the page. Since only `value` is allowed this prop
can normally be ignored.
- persistence (boolean | string | number; optional):
Used to allow user interactions in this component to be persisted
when the component - or the page - is refreshed. If `persisted` is
truthy and hasn't changed from its previous value, a `value` that
the user has changed while using the app will keep that change, as
long as the new `value` also matches what was given originally.
Used in conjunction with `persistence_type`.
- persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
Where persisted user changes will be stored: memory: only kept in
memory, reset on page refresh. local: window.localStorage, data is
kept after the browser quit. session: window.sessionStorage, data
is cleared once the browser quit.
- size (number; default 265):
Size of the slider in pixels.
- step (number; optional):
Value by which increments or decrements are made.
- style (dict; default { display: 'flex', justifyContent: 'center' }):
Style to apply to the root component element.
- targets (dict; optional):
Targets on the slider. The key determines the position, and the
value determines what will show. If you want to set the style of a
specific target point, the value should be an object which
contains style and label properties.
`targets` is a dict with keys:
- number (dict; optional)
`number` is a string
Or dict with keys:
- color (string; optional)
- label (string; optional)
- showCurrentValue (boolean; optional)
- style (dict; optional)
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- updatemode (a value equal to: 'mouseup', 'drag'; default 'mouseup'):
Determines when the component should update its value. If
`mouseup`, then the slider will only trigger its value when the
user has finished dragging the slider. If `drag`, then the slider
will update its value continuously as it is being dragged. Only
use `drag` if your updates are fast.
- value (number; optional):
The value of the input.
- vertical (boolean; optional):
If True, the slider will be vertical."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, style=Component.UNDEFINED, marks=Component.UNDEFINED, color=Component.UNDEFINED, value=Component.UNDEFINED, className=Component.UNDEFINED, labelPosition=Component.UNDEFINED, disabled=Component.UNDEFINED, dots=Component.UNDEFINED, included=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, step=Component.UNDEFINED, vertical=Component.UNDEFINED, size=Component.UNDEFINED, targets=Component.UNDEFINED, theme=Component.UNDEFINED, handleLabel=Component.UNDEFINED, updatemode=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, fullSize=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'className', 'color', 'disabled', 'dots', 'fullSize', 'handleLabel', 'included', 'labelPosition', 'marks', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'size', 'step', 'style', 'targets', 'theme', 'updatemode', 'value', 'vertical']
self._type = 'Slider'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'className', 'color', 'disabled', 'dots', 'fullSize', 'handleLabel', 'included', 'labelPosition', 'marks', 'max', 'min', 'persisted_props', 'persistence', 'persistence_type', 'size', 'step', 'style', 'targets', 'theme', 'updatemode', 'value', 'vertical']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(Slider, self).__init__(**args)
================================================
FILE: dash_daq/StopButton.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class StopButton(Component):
"""A StopButton component.
A Stop button component
Keyword arguments:
- children (a list of or a singular dash component, string or number; optional):
The children of the button.
- id (string; optional):
The ID used to identify this compnent in Dash callbacks.
- buttonText (string; default 'Stop'):
Text displayed in the button.
- className (string; optional):
Class to apply to the root component element.
- disabled (boolean; optional):
If True, button cannot be pressesd.
- label (dict; optional):
Description to be displayed alongside the button. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the label is positioned.
- n_clicks (number; default 0):
Number of times the button was clicked.
- size (number; default 92):
The size (width) of the stop button in pixels.
- style (dict; optional):
Style to apply to the root component element.
- theme (dict; optional):
Theme configuration to be set by a ThemeProvider."""
@_explicitize_args
def __init__(self, children=None, id=Component.UNDEFINED, size=Component.UNDEFINED, buttonText=Component.UNDEFINED, n_clicks=Component.UNDEFINED, disabled=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, **kwargs):
self._prop_names = ['children', 'id', 'buttonText', 'className', 'disabled', 'label', 'labelPosition', 'n_clicks', 'size', 'style', 'theme']
self._type = 'StopButton'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['children', 'id', 'buttonText', 'className', 'disabled', 'label', 'labelPosition', 'n_clicks', 'size', 'style', 'theme']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(StopButton, self).__init__(children=children, **args)
================================================
FILE: dash_daq/Tank.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class Tank(Component):
"""A Tank component.
A Tank component that fills to
a value between some range.
Keyword arguments:
- id (string; optional):
The ID used to identify this component in Dash callbacks.
- base (number; default 10):
Base to be used in logarithmic scale.
- className (string; optional):
Class to apply to the root component element.
- color (string; optional):
The color of tank fill.
- currentValueStyle (dict; optional):
text style of current value.
- exceedMessage (string; optional):
Warning message when value exceed max.
- height (number; default 192):
The height of the tank in pixels.
- label (dict; optional):
Description to be displayed alongside the control. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the component label is positioned.
- lagingMessage (string; optional):
Warning message when value is laging from min.
- logarithmic (boolean; optional):
If set to True, a logarithmic scale will be used.
- max (number; default 10):
The maximum value of the tank. If logarithmic, represents the
maximum exponent.
- min (number; default 0):
The minimum value of the tank. If logarithmic, represents minimum
exponent.
- scale (dict; optional):
Configuration for the component scale.
`scale` is a dict with keys:
- custom (dict; optional):
Custom scale marks. The key determines the position and the
value determines what will show. If you want to set the style
of a specific mark point, the value should be an object which
contains style and label properties.
`custom` is a number
Or dict with keys:
- label (string; optional)
- style (string; optional)
- interval (number; optional):
Interval by which the scale goes up. Attempts to dynamically
divide min-max range by default.
- labelInterval (number; optional):
Interval by which labels are added to scale marks. Defaults to
2 (every other mark has a label).
- start (number; optional):
Value to start the scale from. Defaults to min.
- showCurrentValue (boolean; optional):
If True, the current value of the tank will be displayed.
- style (dict; optional):
Style to apply to the root component element.
- textColor (string; optional):
text color.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- units (string; optional):
Label for the current value.
- value (number; optional):
The value of tank. If logarithmic, the displayed value will be the
logarithm of the inputted value.
- width (number; default 112):
The width of the tank in pixels."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, height=Component.UNDEFINED, width=Component.UNDEFINED, color=Component.UNDEFINED, theme=Component.UNDEFINED, currentValueStyle=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, base=Component.UNDEFINED, logarithmic=Component.UNDEFINED, showCurrentValue=Component.UNDEFINED, units=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, scale=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, exceedMessage=Component.UNDEFINED, lagingMessage=Component.UNDEFINED, textColor=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'base', 'className', 'color', 'currentValueStyle', 'exceedMessage', 'height', 'label', 'labelPosition', 'lagingMessage', 'logarithmic', 'max', 'min', 'scale', 'showCurrentValue', 'style', 'textColor', 'theme', 'units', 'value', 'width']
self._type = 'Tank'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'base', 'className', 'color', 'currentValueStyle', 'exceedMessage', 'height', 'label', 'labelPosition', 'lagingMessage', 'logarithmic', 'max', 'min', 'scale', 'showCurrentValue', 'style', 'textColor', 'theme', 'units', 'value', 'width']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(Tank, self).__init__(**args)
================================================
FILE: dash_daq/Thermometer.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class Thermometer(Component):
"""A Thermometer component.
A thermometer component that
fills to a value between some
range
Keyword arguments:
- id (string; optional):
The ID used to identify this compnent in Dash callbacks.
- base (number; default 10):
Base to be used in logarithmic scale.
- className (string; optional):
Class to apply to the root component element.
- color (string; optional):
The color of the thermometer fill/current value text.
- height (number; default 192):
The height of the thermometer in pixels.
- label (dict; optional):
Description to be displayed alongside the control. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the component label is positioned.
- logarithmic (boolean; optional):
If set to True, a logarithmic scale will be used.
- max (number; default 10):
The maximum value of the thermometer. If logarithmic, represents
the maximum exponent.
- min (number; default 0):
The minimum value of the thermometer. If logarithmic, represents
the minimum exponent.
- scale (dict; optional):
Configuration for the component scale.
`scale` is a dict with keys:
- custom (dict; optional):
Custom scale marks. The key determines the position and the
value determines what will show. If you want to set the style
of a specific mark point, the value should be an object which
contains style and label properties.
`custom` is a number
Or dict with keys:
- label (string; optional)
- style (string; optional)
- interval (number; optional):
Interval by which the scale goes up. Attempts to dynamically
divide min-max range by default.
- labelInterval (number; optional):
Interval by which labels are added to scale marks. Defaults to
2 (every other mark has a label).
- start (number; optional):
Value to start the scale from. Defaults to min.
- showCurrentValue (boolean; optional):
If True, the current value of the thermometer will be displayed.
- style (dict; optional):
Style to apply to the root component element.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- units (string; optional):
Label for the current value.
- value (number; optional):
The value of thermometer. If logarthmic, the value displayed will
be the logarithm of the inputted value.
- width (number; default 20):
The width of the thermometer in pixels."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, height=Component.UNDEFINED, width=Component.UNDEFINED, color=Component.UNDEFINED, min=Component.UNDEFINED, max=Component.UNDEFINED, base=Component.UNDEFINED, logarithmic=Component.UNDEFINED, showCurrentValue=Component.UNDEFINED, units=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, scale=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'base', 'className', 'color', 'height', 'label', 'labelPosition', 'logarithmic', 'max', 'min', 'scale', 'showCurrentValue', 'style', 'theme', 'units', 'value', 'width']
self._type = 'Thermometer'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'base', 'className', 'color', 'height', 'label', 'labelPosition', 'logarithmic', 'max', 'min', 'scale', 'showCurrentValue', 'style', 'theme', 'units', 'value', 'width']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(Thermometer, self).__init__(**args)
================================================
FILE: dash_daq/ToggleSwitch.py
================================================
# AUTO GENERATED FILE - DO NOT EDIT
from dash.development.base_component import Component, _explicitize_args
class ToggleSwitch(Component):
"""A ToggleSwitch component.
A switch component that toggles between
two values.
Keyword arguments:
- id (string; optional):
The ID used to identify this compnent in Dash callbacks.
- className (string; optional):
Class to apply to the root component element.
- color (string; optional):
Color to highlight button/indicator.
- disabled (boolean; optional):
If True, switch cannot be clicked.
- label (dict; optional):
Description to be displayed alongside the control. To control
styling, pass an object with label and style properties.
`label` is a string | dict with keys:
- label (string; optional)
- style (dict; optional)
Or list of string | dict with keys:
- label (string; optional)
- style (dict; optional)s
- labelPosition (a value equal to: 'top', 'bottom'; default 'top'):
Where the component label is positioned.
- persisted_props (list of a value equal to: 'value's; default ['value']):
Properties whose user interactions will persist after refreshing
the component or the page. Since only `value` is allowed this prop
can normally be ignored.
- persistence (boolean | string | number; optional):
Used to allow user interactions in this component to be persisted
when the component - or the page - is refreshed. If `persisted` is
truthy and hasn't changed from its previous value, a `value` that
the user has changed while using the app will keep that change, as
long as the new `value` also matches what was given originally.
Used in conjunction with `persistence_type`.
- persistence_type (a value equal to: 'local', 'session', 'memory'; default 'local'):
Where persisted user changes will be stored: memory: only kept in
memory, reset on page refresh. local: window.localStorage, data is
kept after the browser quit. session: window.sessionStorage, data
is cleared once the browser quit.
- size (number; optional):
The size of the switch.
- style (dict; optional):
Style to apply to the root object.
- theme (dict; default light):
Theme configuration to be set by a ThemeProvider.
- value (boolean; default False):
The state of the switch.
- vertical (boolean; default False):
If True, switch will be vertical instead of horizontal."""
@_explicitize_args
def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, size=Component.UNDEFINED, color=Component.UNDEFINED, vertical=Component.UNDEFINED, disabled=Component.UNDEFINED, theme=Component.UNDEFINED, label=Component.UNDEFINED, labelPosition=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, persistence=Component.UNDEFINED, persisted_props=Component.UNDEFINED, persistence_type=Component.UNDEFINED, **kwargs):
self._prop_names = ['id', 'className', 'color', 'disabled', 'label', 'labelPosition', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme', 'value', 'vertical']
self._type = 'ToggleSwitch'
self._namespace = 'dash_daq'
self._valid_wildcard_attributes = []
self.available_properties = ['id', 'className', 'color', 'disabled', 'label', 'labelPosition', 'persisted_props', 'persistence', 'persistence_type', 'size', 'style', 'theme', 'value', 'vertical']
self.available_wildcard_properties = []
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
_locals.update(kwargs) # For wildcard attrs
args = {k: _locals[k] for k in _explicit_args if k != 'children'}
for k in []:
if k not in args:
raise TypeError(
'Required argument `' + k + '` was not specified.')
super(ToggleSwitch, self).__init__(**args)
================================================
FILE: dash_daq/__init__.py
================================================
import os as _os
import dash as _dash
import sys as _sys
import json
_basepath = _os.path.dirname(__file__)
_filepath = _os.path.abspath(_os.path.join(_basepath, 'package-info.json'))
with open(_filepath) as f:
__version__ = json.loads(f.read())['version']
from ._imports_ import * # noqa: F401, F403, E402
from ._imports_ import __all__ # noqa: E402
async_resources = [
'colorpicker',
'slider'
]
_js_dist = []
_js_dist.extend([{
'relative_package_path': 'async-{}.js'.format(async_resource),
'external_url': (
'https://unpkg.com/dash-daq@{}'
'/dash_daq/async-{}.js'
).format(__version__, async_resource),
'namespace': 'dash_daq',
'async': True
} for async_resource in async_resources])
_js_dist.extend([{
'relative_package_path': 'async-{}.js.map'.format(async_resource),
'external_url': (
'https://unpkg.com/dash-daq@{}'
'/dash_daq/async-{}.js.map'
).format(__version__, async_resource),
'namespace': 'dash_daq',
'dynamic': True
} for async_resource in async_resources])
_js_dist.extend([
{
"relative_package_path": "dash_daq.min.js",
"external_url": (
"https://unpkg.com/dash-daq@{}"
"/dash_daq/dash_daq.min.js"
).format(__version__),
"namespace": "dash_daq"
}
])
_js_dist.extend([
{
"relative_package_path": "dash_daq.min.js.map",
"external_url": (
"https://unpkg.com/dash-daq@{}"
"/dash_daq/dash_daq.min.js.map"
).format(__version__),
"namespace": "dash_daq",
'dynamic': True
}
])
_css_dist = []
for _component in __all__:
setattr(locals()[_component], '_js_dist', _js_dist)
================================================
FILE: dash_daq/_imports_.py
================================================
from .BooleanSwitch import BooleanSwitch
from .ColorPicker import ColorPicker
from .DarkThemeProvider import DarkThemeProvider
from .Gauge import Gauge
from .GraduatedBar import GraduatedBar
from .Indicator import Indicator
from .Joystick import Joystick
from .Knob import Knob
from .LEDDisplay import LEDDisplay
from .NumericInput import NumericInput
from .PowerButton import PowerButton
from .PrecisionInput import PrecisionInput
from .Slider import Slider
from .StopButton import StopButton
from .Tank import Tank
from .Thermometer import Thermometer
from .ToggleSwitch import ToggleSwitch
__all__ = [
"BooleanSwitch",
"ColorPicker",
"DarkThemeProvider",
"Gauge",
"GraduatedBar",
"Indicator",
"Joystick",
"Knob",
"LEDDisplay",
"NumericInput",
"PowerButton",
"PrecisionInput",
"Slider",
"StopButton",
"Tank",
"Thermometer",
"ToggleSwitch"
]
================================================
FILE: dash_daq/async-colorpicker.js
================================================
(window.webpackJsonpdash_daq=window.webpackJsonpdash_daq||[]).push([[0],Array(157).concat([function(e,t,r){"use strict";r.r(t);var n=r(1),o=r.n(n),a=r(273),i=r(2),u=r(29),l=r.n(u),c=r(3);function f(){var e=_(["\n box-shadow: 0px 0px 8px 2px rgba(100,100,100,0.075),\n 0px 0px 32px 2px rgba(255,255,255,0.05),\n 1px 1px 0px 0px rgba(25,25,25,0.6),\n -1px -1px 0px 0px rgba(255,255,255,0.2) !important;\n\n & .chrome-picker > div:first-child {\n border-radius: 0 !important;\n }\n\n & .chrome-picker > div:nth-child(2) {\n background: #0a0a0a !important;\n border-top: 1px solid rgba(255,255,255,0.075);\n }\n\n ","\n ","\n ","\n"]);return f=function(){return e},e}function s(){var e=_(["\n & .chrome-picker input {\n font-family: unset !important;\n color: #fff !important;\n border-radius: 0px !important;\n background-color: #22272a !important;\n background-image: linear-gradient(\n 145deg,\n rgba(255, 255, 255, 0.05) 0%,\n rgba(0, 0, 0, 0.5) 100%\n ) !important;\n box-shadow: inset 0 0 8px -1px rgba(0, 0, 0, 0.7), inset 0 0 4px 0 rgba(0, 0, 0, 0.8),\n -1px -1px 0px 0px rgba(0, 0, 0, 0.8), 1px 1px 0px 0px rgba(255, 255, 255, 0.1) !important;\n }\n\n & .chrome-picker input:focus {\n outline: 0 !important;\n border: none !important;\n background-image: linear-gradient(\n 145deg,\n rgba(255, 255, 255, 0.2) 0%,\n rgba(0, 0, 0, 0.4) 100%\n ) !important;\n box-shadow: inset 0 0 8px -1px rgba(0, 0, 0, 0.6), inset 0 0 4px 0 rgba(0, 0, 0, 0.6),\n -1px -1px 0px 0px rgba(0, 0, 0, 0.6), 1px 1px 0px 0px rgba(255, 255, 255, 0.1) !important;\n }\n"]);return s=function(){return e},e}function p(){var e=_(["\n .chrome-picker .flexbox-fix div:nth-child(2) > div:nth-child(2) > div {\n background: #fff !important;\n }\n"]);return p=function(){return e},e}function d(){var e=_(["\n box-shadow: inset 0 0 1px 0 rgba(52, 52, 52, 0.4), inset 0 0 0 1px rgba(0, 0, 0, 0.2),\n 0 0 12px 4px "," !important;\n "]);return d=function(){return e},e}function h(){var e=_(["\n & .chrome-picker .hue-horizontal > div > div,\n .chrome-picker\n > div:nth-child(2)\n > div:nth-child(1)\n > div:nth-child(2)\n > div:nth-child(2)\n > div\n > div:nth-child(3)\n > div\n > div {\n border-radius: 100% !important;\n border: none !important;\n background: #101010 !important;\n background-image: linear-gradient(\n 135deg,\n rgba(255, 255, 255, 0.3) -50%,\n rgba(0, 0, 0, 0.7) 100%\n ) !important;\n transition: all 0.3s ease-in !important;\n ",";\n }\n"]);return h=function(){return e},e}function b(){var e=_(["\n border: 1px solid ",";\n "]);return b=function(){return e},e}function v(){var e=_(["\n border-radius: 3px !important;\n\n "," ",";\n"]);return v=function(){return e},e}function g(){var e=_(["\n border: 1px solid "," !important;\n "]);return g=function(){return e},e}function x(){var e=_(["\n & .chrome-picker .hue-horizontal > div > div,\n .chrome-picker\n > div:nth-child(2)\n > div:nth-child(1)\n > div:nth-child(2)\n > div:nth-child(2)\n > div\n > div:nth-child(3)\n > div\n > div {\n box-shadow: none !important;\n background-color: #fff;\n border-radius: 100% !important;\n ",";\n }\n"]);return x=function(){return e},e}function y(){var e=_(["\n width: ","px !important;\n "]);return y=function(){return e},e}function m(){var e=_(["\n opacity: ",";\n cursor: not-allowed !important;\n & .chrome-picker {\n pointer-events: none !important;\n }\n "]);return m=function(){return e},e}function w(){var e=_(["\n "," & .chrome-picker {\n font-family: unset !important;\n box-shadow: none !important;\n ",";\n }\n\n & .chrome-picker svg {\n background: unset !important;\n }\n\n & .chrome-picker svg:hover path {\n fill: ",";\n }\n\n ",";\n"]);return w=function(){return e},e}function _(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}var j=i.c.div(w(),(function(e){var t=e.disabled,r=e.theme;return t&&Object(i.b)(m(),r.dark?1:.65)}),(function(e){var t=e.size;return Object(i.b)(y(),t)}),(function(e){var t=e.theme;return e.color||t.primary}),(function(e){return e.theme.dark?P:E})),O=Object(i.b)(x(),(function(e){var t=e.theme;return Object(i.b)(g(),t.detail)})),E=Object(i.b)(v(),O,(function(e){var t=e.theme;return Object(i.b)(b(),t.detail)})),C=Object(i.b)(h(),(function(e){var t=e.glow;return Object(i.b)(d(),t)})),k=Object(i.b)(p()),S=Object(i.b)(s()),P=Object(i.b)(f(),C,S,k);j.defaultProps={theme:c.e};var M=r(7),B=r(61),A=r(4);function F(e){return(F="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function R(){return(R=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}function T(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function z(e){return(z=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function H(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function D(e,t){return(D=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var L=c.c.PRIMARY,G=function(e){if((e=e||{}).rgb){var t=Object.values(e.rgb);return"rgba(".concat(t[0],", ").concat(t[1],", ").concat(t[2],", ").concat(t[3],")")}return e.hex?l()(e.hex).rgb().string():L},I=function(e){function t(e){var r;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(r=function(e,t){return!t||"object"!==F(t)&&"function"!=typeof t?H(e):t}(this,z(t).call(this,e))).state={value:e.value},r.calcHandleGlow=r.calcHandleGlow.bind(H(r)),r.setValue=r.setValue.bind(H(r)),r}var r,n,i;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&D(e,t)}(t,e),r=t,(n=[{key:"UNSAFE_componentWillReceiveProps",value:function(e){e.value!==this.state.value&&this.setState({value:e.value})}},{key:"calcHandleGlow",value:function(){return l()(G(this.state.value)).fade(.5).string()}},{key:"setValue",value:function(e){if(null!=e){var t={hex:e.hex,rgb:e.rgb};this.setState({value:t}),this.props.setProps&&this.props.setProps({value:t})}}},{key:"render",value:function(){var e=this.props,t=e.id,r=e.className,n=e.style,i=e.theme,u=Object(A.a)("colorpicker",i),l=Object(A.b)(this.props);return o.a.createElement("div",{id:t,className:u+(r?" "+r:""),style:n},o.a.createElement(M.a,R({className:u+"__label"},l),o.a.createElement(j,R({className:u+"__container"},l,{glow:this.calcHandleGlow}),o.a.createElement(a.ChromePicker,{className:u+"__chromepicker",color:G(this.state.value),onChangeComplete:this.setValue}))))}}])&&T(r.prototype,n),i&&T(r,i),t}(n.Component);I.defaultProps=B.b,I.propTypes=B.c;t.default=Object(i.d)(I)},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ReactCSS=t.loop=t.handleActive=t.handleHover=t.hover=void 0;var n=c(r(275)),o=c(r(351)),a=c(r(377)),i=c(r(378)),u=c(r(379)),l=c(r(380));function c(e){return e&&e.__esModule?e:{default:e}}t.hover=i.default,t.handleHover=i.default,t.handleActive=u.default,t.loop=l.default;var f=t.ReactCSS=function(e){for(var t=arguments.length,r=Array(t>1?t-1:0),i=1;i<t;i++)r[i-1]=arguments[i];var u=(0,n.default)(r),l=(0,o.default)(e,u);return(0,a.default)(l)};t.default=f},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(381);Object.defineProperty(t,"Alpha",{enumerable:!0,get:function(){return s(n).default}});var o=r(212);Object.defineProperty(t,"Checkboard",{enumerable:!0,get:function(){return s(o).default}});var a=r(384);Object.defineProperty(t,"EditableInput",{enumerable:!0,get:function(){return s(a).default}});var i=r(385);Object.defineProperty(t,"Hue",{enumerable:!0,get:function(){return s(i).default}});var u=r(387);Object.defineProperty(t,"Raised",{enumerable:!0,get:function(){return s(u).default}});var l=r(447);Object.defineProperty(t,"Saturation",{enumerable:!0,get:function(){return s(l).default}});var c=r(263);Object.defineProperty(t,"ColorWrap",{enumerable:!0,get:function(){return s(c).default}});var f=r(462);function s(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"Swatch",{enumerable:!0,get:function(){return s(f).default}})},function(e,t,r){var n=r(388),o=r(438)((function(e,t,r){n(e,t,r)}));e.exports=o},function(e,t){var r=Array.isArray;e.exports=r},function(e,t,r){var n=r(251),o="object"==typeof self&&self&&self.Object===Object&&self,a=n||o||Function("return this")();e.exports=a},function(e,t){e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},function(e,t){var r=Array.isArray;e.exports=r},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.red=t.getContrastingColor=t.isValidHex=t.toState=t.simpleCheckForValidColor=void 0;var n=a(r(454)),o=a(r(62));function a(e){return e&&e.__esModule?e:{default:e}}t.simpleCheckForValidColor=function(e){var t=0,r=0;return(0,n.default)(["r","g","b","a","h","s","l","v"],(function(n){if(e[n]&&(t+=1,isNaN(e[n])||(r+=1),"s"===n||"l"===n)){/^\d+%$/.test(e[n])&&(r+=1)}})),t===r&&e};var i=t.toState=function(e,t){var r=e.hex?(0,o.default)(e.hex):(0,o.default)(e),n=r.toHsl(),a=r.toHsv(),i=r.toRgb(),u=r.toHex();return 0===n.s&&(n.h=t||0,a.h=t||0),{hsl:n,hex:"000000"===u&&0===i.a?"transparent":"#"+u,rgb:i,hsv:a,oldHue:e.h||t||n.h,source:e.source}};t.isValidHex=function(e){var t="#"===String(e).charAt(0)?1:0;return e.length!==4+t&&e.length<7+t&&(0,o.default)(e).isValid()},t.getContrastingColor=function(e){if(!e)return"#fff";var t=i(e);return"transparent"===t.hex?"rgba(0,0,0,0.4)":(299*t.rgb.r+587*t.rgb.g+114*t.rgb.b)/1e3>=128?"#000":"#fff"},t.red={hsl:{a:1,h:0,l:.5,s:1},hex:"#ff0000",rgb:{r:255,g:0,b:0,a:1},hsv:{h:0,s:1,v:1,a:1}};t.default=t},function(e,t,r){var n=r(226),o="object"==typeof self&&self&&self.Object===Object&&self,a=n||o||Function("return this")();e.exports=a},function(e,t){e.exports=function(e){return null!=e&&"object"==typeof e}},function(e,t,r){var n=r(177),o=r(277),a=r(278),i=n?n.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":i&&i in Object(e)?o(e):a(e)}},function(e,t,r){var n=r(303),o=r(306);e.exports=function(e,t){var r=o(e,t);return n(r)?r:void 0}},function(e,t,r){var n=r(399),o=r(404);e.exports=function(e,t){var r=o(e,t);return n(r)?r:void 0}},function(e,t){e.exports=function(e){return null!=e&&"object"==typeof e}},function(e,t,r){var n=r(265),o=r(467),a=r(505),i=r(164);e.exports=function(e,t){return(i(e)?n:a)(e,o(t,3))}},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t){e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},function(e,t,r){var n=r(190),o=r(400),a=r(401),i=n?n.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":i&&i in Object(e)?o(e):a(e)}},function(e,t,r){var n=r(215),o=r(220);e.exports=function(e){return null!=e&&o(e.length)&&!n(e)}},function(e,t,r){var n=r(166).Symbol;e.exports=n},function(e,t,r){var n=r(228),o=r(285),a=r(180);e.exports=function(e){return a(e)?n(e):o(e)}},function(e,t){e.exports=function(e,t){return e===t||e!=e&&t!=t}},function(e,t,r){var n=r(233),o=r(198);e.exports=function(e){return null!=e&&o(e.length)&&!n(e)}},function(e,t,r){var n=r(293),o=r(294),a=r(295),i=r(296),u=r(297);function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}l.prototype.clear=n,l.prototype.delete=o,l.prototype.get=a,l.prototype.has=i,l.prototype.set=u,e.exports=l},function(e,t,r){var n=r(204);e.exports=function(e,t){for(var r=e.length;r--;)if(n(e[r][0],t))return r;return-1}},function(e,t,r){var n=r(169)(Object,"create");e.exports=n},function(e,t,r){var n=r(315);e.exports=function(e,t){var r=e.__data__;return n(t)?r["string"==typeof t?"string":"hash"]:r.map}},function(e,t,r){var n=r(330),o=r(205),a=r(331),i=r(332),u=r(333),l=r(168),c=r(236),f=c(n),s=c(o),p=c(a),d=c(i),h=c(u),b=l;(n&&"[object DataView]"!=b(new n(new ArrayBuffer(1)))||o&&"[object Map]"!=b(new o)||a&&"[object Promise]"!=b(a.resolve())||i&&"[object Set]"!=b(new i)||u&&"[object WeakMap]"!=b(new u))&&(b=function(e){var t=l(e),r="[object Object]"==t?e.constructor:void 0,n=r?c(r):"";if(n)switch(n){case f:return"[object DataView]";case s:return"[object Map]";case p:return"[object Promise]";case d:return"[object Set]";case h:return"[object WeakMap]"}return t}),e.exports=b},function(e,t,r){var n=r(209);e.exports=function(e){if("string"==typeof e||n(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}},function(e,t,r){var n=r(248),o=r(249);e.exports=function(e,t,r,a){var i=!r;r||(r={});for(var u=-1,l=t.length;++u<l;){var c=t[u],f=a?a(r[c],e[c],c,r,e):void 0;void 0===f&&(f=e[c]),i?o(r,c,f):n(r,c,f)}return r}},function(e,t,r){var n=r(389),o=r(390),a=r(391),i=r(392),u=r(393);function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}l.prototype.clear=n,l.prototype.delete=o,l.prototype.get=a,l.prototype.has=i,l.prototype.set=u,e.exports=l},function(e,t,r){var n=r(179);e.exports=function(e,t){for(var r=e.length;r--;)if(n(e[r][0],t))return r;return-1}},function(e,t,r){var n=r(162).Symbol;e.exports=n},function(e,t,r){var n=r(170)(Object,"create");e.exports=n},function(e,t,r){var n=r(413);e.exports=function(e,t){var r=e.__data__;return n(t)?r["string"==typeof t?"string":"hash"]:r.map}},function(e,t){e.exports=function(e){return e}},function(e,t,r){var n=r(175),o=r(171);e.exports=function(e){return"symbol"==typeof e||o(e)&&"[object Symbol]"==n(e)}},function(e,t,r){var n=r(194);e.exports=function(e){if("string"==typeof e||n(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}},function(e,t,r){var n=r(227),o=r(287);e.exports=function(e,t){return e&&n(e,o(t))}},function(e,t,r){(function(e){var n=r(166),o=r(283),a=t&&!t.nodeType&&t,i=a&&"object"==typeof e&&e&&!e.nodeType&&e,u=i&&i.exports===a?n.Buffer:void 0,l=(u?u.isBuffer:void 0)||o;e.exports=l}).call(this,r(173)(e))},function(e,t){e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}},function(e,t){e.exports=function(e){return function(t){return e(t)}}},function(e,t,r){(function(e){var n=r(226),o=t&&!t.nodeType&&t,a=o&&"object"==typeof e&&e&&!e.nodeType&&e,i=a&&a.exports===o&&n.process,u=function(){try{var e=a&&a.require&&a.require("util").types;return e||i&&i.binding&&i.binding("util")}catch(e){}}();e.exports=u}).call(this,r(173)(e))},function(e,t){var r=Object.prototype;e.exports=function(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||r)}},function(e,t,r){var n=r(232)(Object.getPrototypeOf,Object);e.exports=n},function(e,t,r){var n=r(181),o=r(298),a=r(299),i=r(300),u=r(301),l=r(302);function c(e){var t=this.__data__=new n(e);this.size=t.size}c.prototype.clear=o,c.prototype.delete=a,c.prototype.get=i,c.prototype.has=u,c.prototype.set=l,e.exports=c},function(e,t){e.exports=function(e,t){return e===t||e!=e&&t!=t}},function(e,t,r){var n=r(169)(r(166),"Map");e.exports=n},function(e,t,r){var n=r(307),o=r(314),a=r(316),i=r(317),u=r(318);function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}l.prototype.clear=n,l.prototype.delete=o,l.prototype.get=a,l.prototype.has=i,l.prototype.set=u,e.exports=l},function(e,t,r){var n=r(329),o=r(243),a=Object.prototype.propertyIsEnumerable,i=Object.getOwnPropertySymbols,u=i?function(e){return null==e?[]:(e=Object(e),n(i(e),(function(t){return a.call(e,t)})))}:o;e.exports=u},function(e,t,r){var n=r(161),o=r(209),a=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,i=/^\w*$/;e.exports=function(e,t){if(n(e))return!1;var r=typeof e;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!o(e))||(i.test(e)||!a.test(e)||null!=t&&e in Object(t))}},function(e,t,r){var n=r(168),o=r(167);e.exports=function(e){return"symbol"==typeof e||o(e)&&"[object Symbol]"==n(e)}},function(e,t,r){var n=r(228),o=r(358),a=r(180);e.exports=function(e){return a(e)?n(e,!0):o(e)}},function(e,t,r){var n=r(239);e.exports=function(e){var t=new e.constructor(e.byteLength);return new n(t).set(new n(e)),t}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Checkboard=void 0;var n=i(r(1)),o=i(r(158)),a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t.default=e,t}(r(383));function i(e){return e&&e.__esModule?e:{default:e}}var u=t.Checkboard=function(e){var t=e.white,r=e.grey,i=e.size,u=e.renderers,l=e.borderRadius,c=e.boxShadow,f=(0,o.default)({default:{grid:{borderRadius:l,boxShadow:c,absolute:"0px 0px 0px 0px",background:"url("+a.get(t,r,i,u.canvas)+") center left"}}});return n.default.createElement("div",{style:f.grid})};u.defaultProps={size:8,white:"transparent",grey:"rgba(0,0,0,.08)",renderers:{}},t.default=u},function(e,t,r){var n=r(188),o=r(394),a=r(395),i=r(396),u=r(397),l=r(398);function c(e){var t=this.__data__=new n(e);this.size=t.size}c.prototype.clear=o,c.prototype.delete=a,c.prototype.get=i,c.prototype.has=u,c.prototype.set=l,e.exports=c},function(e,t,r){var n=r(170)(r(162),"Map");e.exports=n},function(e,t,r){var n=r(175),o=r(163);e.exports=function(e){if(!o(e))return!1;var t=n(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}},function(e,t,r){var n=r(405),o=r(412),a=r(414),i=r(415),u=r(416);function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}l.prototype.clear=n,l.prototype.delete=o,l.prototype.get=a,l.prototype.has=i,l.prototype.set=u,e.exports=l},function(e,t,r){var n=r(254);e.exports=function(e,t,r){"__proto__"==t&&n?n(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}},function(e,t){var r=Object.prototype;e.exports=function(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||r)}},function(e,t,r){var n=r(425),o=r(171),a=Object.prototype,i=a.hasOwnProperty,u=a.propertyIsEnumerable,l=n(function(){return arguments}())?n:function(e){return o(e)&&i.call(e,"callee")&&!u.call(e,"callee")};e.exports=l},function(e,t){e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}},function(e,t,r){(function(e){var n=r(162),o=r(427),a=t&&!t.nodeType&&t,i=a&&"object"==typeof e&&e&&!e.nodeType&&e,u=i&&i.exports===a?n.Buffer:void 0,l=(u?u.isBuffer:void 0)||o;e.exports=l}).call(this,r(173)(e))},function(e,t,r){var n=r(429),o=r(430),a=r(431),i=a&&a.isTypedArray,u=i?o(i):n;e.exports=u},function(e,t){var r=/^(?:0|[1-9]\d*)$/;e.exports=function(e,t){var n=typeof e;return!!(t=null==t?9007199254740991:t)&&("number"==n||"symbol"!=n&&r.test(e))&&e>-1&&e%1==0&&e<t}},function(e,t,r){var n=r(261),o=r(458),a=r(176);e.exports=function(e){return a(e)?n(e):o(e)}},function(e,t,r){var n=r(164),o=r(194),a=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,i=/^\w*$/;e.exports=function(e,t){if(n(e))return!1;var r=typeof e;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!o(e))||(i.test(e)||!a.test(e)||null!=t&&e in Object(t))}},function(e,t,r){(function(t){var r="object"==typeof t&&t&&t.Object===Object&&t;e.exports=r}).call(this,r(60))},function(e,t,r){var n=r(279),o=r(178);e.exports=function(e,t){return e&&n(e,t,o)}},function(e,t,r){var n=r(281),o=r(229),a=r(161),i=r(197),u=r(230),l=r(231),c=Object.prototype.hasOwnProperty;e.exports=function(e,t){var r=a(e),f=!r&&o(e),s=!r&&!f&&i(e),p=!r&&!f&&!s&&l(e),d=r||f||s||p,h=d?n(e.length,String):[],b=h.length;for(var v in e)!t&&!c.call(e,v)||d&&("length"==v||s&&("offset"==v||"parent"==v)||p&&("buffer"==v||"byteLength"==v||"byteOffset"==v)||u(v,b))||h.push(v);return h}},function(e,t,r){var n=r(282),o=r(167),a=Object.prototype,i=a.hasOwnProperty,u=a.propertyIsEnumerable,l=n(function(){return arguments}())?n:function(e){return o(e)&&i.call(e,"callee")&&!u.call(e,"callee")};e.exports=l},function(e,t){var r=/^(?:0|[1-9]\d*)$/;e.exports=function(e,t){var n=typeof e;return!!(t=null==t?9007199254740991:t)&&("number"==n||"symbol"!=n&&r.test(e))&&e>-1&&e%1==0&&e<t}},function(e,t,r){var n=r(284),o=r(199),a=r(200),i=a&&a.isTypedArray,u=i?o(i):n;e.exports=u},function(e,t){e.exports=function(e,t){return function(r){return e(t(r))}}},function(e,t,r){var n=r(168),o=r(174);e.exports=function(e){if(!o(e))return!1;var t=n(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}},function(e,t){e.exports=function(e){return e}},function(e,t){e.exports=function(e,t){for(var r=-1,n=null==e?0:e.length,o=Array(n);++r<n;)o[r]=t(e[r],r,e);return o}},function(e,t){var r=Function.prototype.toString;e.exports=function(e){if(null!=e){try{return r.call(e)}catch(e){}try{return e+""}catch(e){}}return""}},function(e,t,r){var n=r(319),o=r(167);e.exports=function e(t,r,a,i,u){return t===r||(null==t||null==r||!o(t)&&!o(r)?t!=t&&r!=r:n(t,r,a,i,e,u))}},function(e,t,r){var n=r(320),o=r(323),a=r(324);e.exports=function(e,t,r,i,u,l){var c=1&r,f=e.length,s=t.length;if(f!=s&&!(c&&s>f))return!1;var p=l.get(e),d=l.get(t);if(p&&d)return p==t&&d==e;var h=-1,b=!0,v=2&r?new n:void 0;for(l.set(e,t),l.set(t,e);++h<f;){var g=e[h],x=t[h];if(i)var y=c?i(x,g,h,t,e,l):i(g,x,h,e,t,l);if(void 0!==y){if(y)continue;b=!1;break}if(v){if(!o(t,(function(e,t){if(!a(v,t)&&(g===e||u(g,e,r,i,l)))return v.push(t)}))){b=!1;break}}else if(g!==x&&!u(g,x,r,i,l)){b=!1;break}}return l.delete(e),l.delete(t),b}},function(e,t,r){var n=r(166).Uint8Array;e.exports=n},function(e,t,r){var n=r(241),o=r(207),a=r(178);e.exports=function(e){return n(e,a,o)}},function(e,t,r){var n=r(242),o=r(161);e.exports=function(e,t,r){var a=t(e);return o(e)?a:n(a,r(e))}},function(e,t){e.exports=function(e,t){for(var r=-1,n=t.length,o=e.length;++r<n;)e[o+r]=t[r];return e}},function(e,t){e.exports=function(){return[]}},function(e,t,r){var n=r(174);e.exports=function(e){return e==e&&!n(e)}},function(e,t){e.exports=function(e,t){return function(r){return null!=r&&(r[e]===t&&(void 0!==t||e in Object(r)))}}},function(e,t,r){var n=r(247),o=r(186);e.exports=function(e,t){for(var r=0,a=(t=n(t,e)).length;null!=e&&r<a;)e=e[o(t[r++])];return r&&r==a?e:void 0}},function(e,t,r){var n=r(161),o=r(208),a=r(337),i=r(340);e.exports=function(e,t){return n(e)?e:o(e,t)?[e]:a(i(e))}},function(e,t,r){var n=r(249),o=r(204),a=Object.prototype.hasOwnProperty;e.exports=function(e,t,r){var i=e[t];a.call(e,t)&&o(i,r)&&(void 0!==r||t in e)||n(e,t,r)}},function(e,t,r){var n=r(355);e.exports=function(e,t,r){"__proto__"==t&&n?n(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}},function(e,t,r){var n=r(242),o=r(202),a=r(207),i=r(243),u=Object.getOwnPropertySymbols?function(e){for(var t=[];e;)n(t,a(e)),e=o(e);return t}:i;e.exports=u},function(e,t,r){(function(t){var r="object"==typeof t&&t&&t.Object===Object&&t;e.exports=r}).call(this,r(60))},function(e,t){var r=Function.prototype.toString;e.exports=function(e){if(null!=e){try{return r.call(e)}catch(e){}try{return e+""}catch(e){}}return""}},function(e,t,r){var n=r(217),o=r(179);e.exports=function(e,t,r){(void 0!==r&&!o(e[t],r)||void 0===r&&!(t in e))&&n(e,t,r)}},function(e,t,r){var n=r(170),o=function(){try{var e=n(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();e.exports=o},function(e,t,r){var n=r(417)();e.exports=n},function(e,t,r){var n=r(162).Uint8Array;e.exports=n},function(e,t,r){var n=r(258)(Object.getPrototypeOf,Object);e.exports=n},function(e,t){e.exports=function(e,t){return function(r){return e(t(r))}}},function(e,t){e.exports=function(e,t){if(("constructor"!==t||"function"!=typeof e[t])&&"__proto__"!=t)return e[t]}},function(e,t,r){var n=r(261),o=r(436),a=r(176);e.exports=function(e){return a(e)?n(e,!0):o(e)}},function(e,t,r){var n=r(435),o=r(219),a=r(164),i=r(221),u=r(223),l=r(222),c=Object.prototype.hasOwnProperty;e.exports=function(e,t){var r=a(e),f=!r&&o(e),s=!r&&!f&&i(e),p=!r&&!f&&!s&&l(e),d=r||f||s||p,h=d?n(e.length,String):[],b=h.length;for(var v in e)!t&&!c.call(e,v)||d&&("length"==v||s&&("offset"==v||"parent"==v)||p&&("buffer"==v||"byteLength"==v||"byteOffset"==v)||u(v,b))||h.push(v);return h}},function(e,t,r){var n=r(163),o=r(449),a=r(450),i=Math.max,u=Math.min;e.exports=function(e,t,r){var l,c,f,s,p,d,h=0,b=!1,v=!1,g=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function x(t){var r=l,n=c;return l=c=void 0,h=t,s=e.apply(n,r)}function y(e){return h=e,p=setTimeout(w,t),b?x(e):s}function m(e){var r=e-d;return void 0===d||r>=t||r<0||v&&e-h>=f}function w(){var e=o();if(m(e))return _(e);p=setTimeout(w,function(e){var r=t-(e-d);return v?u(r,f-(e-h)):r}(e))}function _(e){return p=void 0,g&&l?x(e):(l=c=void 0,s)}function j(){var e=o(),r=m(e);if(l=arguments,c=this,d=e,r){if(void 0===p)return y(d);if(v)return clearTimeout(p),p=setTimeout(w,t),x(d)}return void 0===p&&(p=setTimeout(w,t)),s}return t=a(t)||0,n(r)&&(b=!!r.leading,f=(v="maxWait"in r)?i(a(r.maxWait)||0,t):f,g="trailing"in r?!!r.trailing:g),j.cancel=function(){void 0!==p&&clearTimeout(p),h=0,l=d=c=p=void 0},j.flush=function(){return void 0===p?s:_(o())},j}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ColorWrap=void 0;var n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},o=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),a=r(1),i=c(a),u=c(r(262)),l=c(r(165));function c(e){return e&&e.__esModule?e:{default:e}}var f=t.ColorWrap=function(e){var t=function(t){function r(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,r);var t=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(r.__proto__||Object.getPrototypeOf(r)).call(this));return t.handleChange=function(e,r){if(l.default.simpleCheckForValidColor(e)){var n=l.default.toState(e,e.h||t.state.oldHue);t.setState(n),t.props.onChangeComplete&&t.debounce(t.props.onChangeComplete,n,r),t.props.onChange&&t.props.onChange(n,r)}},t.handleSwatchHover=function(e,r){if(l.default.simpleCheckForValidColor(e)){var n=l.default.toState(e,e.h||t.state.oldHue);t.props.onSwatchHover&&t.props.onSwatchHover(n,r)}},t.state=n({},l.default.toState(e.color,0)),t.debounce=(0,u.default)((function(e,t,r){e(t,r)}),100),t}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(r,t),o(r,[{key:"render",value:function(){var t={};return this.props.onSwatchHover&&(t.onSwatchHover=this.handleSwatchHover),i.default.createElement(e,n({},this.props,this.state,{onChange:this.handleChange},t))}}],[{key:"getDerivedStateFromProps",value:function(e,t){return n({},l.default.toState(e.color,t.oldHue))}}]),r}(a.PureComponent||a.Component);return t.propTypes=n({},e.propTypes),t.defaultProps=n({},e.defaultProps,{color:{h:250,s:.5,l:.2,a:1}}),t};t.default=f},function(e,t,r){var n=r(457),o=r(460)(n);e.exports=o},function(e,t){e.exports=function(e,t){for(var r=-1,n=null==e?0:e.length,o=Array(n);++r<n;)o[r]=t(e[r],r,e);return o}},function(e,t,r){var n=r(470),o=r(171);e.exports=function e(t,r,a,i,u){return t===r||(null==t||null==r||!o(t)&&!o(r)?t!=t&&r!=r:n(t,r,a,i,e,u))}},function(e,t,r){var n=r(471),o=r(474),a=r(475);e.exports=function(e,t,r,i,u,l){var c=1&r,f=e.length,s=t.length;if(f!=s&&!(c&&s>f))return!1;var p=l.get(e),d=l.get(t);if(p&&d)return p==t&&d==e;var h=-1,b=!0,v=2&r?new n:void 0;for(l.set(e,t),l.set(t,e);++h<f;){var g=e[h],x=t[h];if(i)var y=c?i(x,g,h,t,e,l):i(g,x,h,e,t,l);if(void 0!==y){if(y)continue;b=!1;break}if(v){if(!o(t,(function(e,t){if(!a(v,t)&&(g===e||u(g,e,r,i,l)))return v.push(t)}))){b=!1;break}}else if(g!==x&&!u(g,x,r,i,l)){b=!1;break}}return l.delete(e),l.delete(t),b}},function(e,t,r){var n=r(163);e.exports=function(e){return e==e&&!n(e)}},function(e,t){e.exports=function(e,t){return function(r){return null!=r&&(r[e]===t&&(void 0!==t||e in Object(r)))}}},function(e,t,r){var n=r(271),o=r(195);e.exports=function(e,t){for(var r=0,a=(t=n(t,e)).length;null!=e&&r<a;)e=e[o(t[r++])];return r&&r==a?e:void 0}},function(e,t,r){var n=r(164),o=r(225),a=r(494),i=r(497);e.exports=function(e,t){return n(e)?e:o(e,t)?[e]:a(i(e))}},function(e,t,r){"use strict";r.r(t),r.d(t,"red",(function(){return n})),r.d(t,"pink",(function(){return o})),r.d(t,"purple",(function(){return a})),r.d(t,"deepPurple",(function(){return i})),r.d(t,"indigo",(function(){return u})),r.d(t,"blue",(function(){return l})),r.d(t,"lightBlue",(function(){return c})),r.d(t,"cyan",(function(){return f})),r.d(t,"teal",(function(){return s})),r.d(t,"green",(function(){return p})),r.d(t,"lightGreen",(function(){return d})),r.d(t,"lime",(function(){return h})),r.d(t,"yellow",(function(){return b})),r.d(t,"amber",(function(){return v})),r.d(t,"orange",(function(){return g})),r.d(t,"deepOrange",(function(){return x})),r.d(t,"brown",(function(){return y})),r.d(t,"grey",(function(){return m})),r.d(t,"blueGrey",(function(){return w})),r.d(t,"darkText",(function(){return _})),r.d(t,"lightText",(function(){return j})),r.d(t,"darkIcons",(function(){return O})),r.d(t,"lightIcons",(function(){return E})),r.d(t,"white",(function(){return C})),r.d(t,"black",(function(){return k}));var n={50:"#ffebee",100:"#ffcdd2",200:"#ef9a9a",300:"#e57373",400:"#ef5350",500:"#f44336",600:"#e53935",700:"#d32f2f",800:"#c62828",900:"#b71c1c",a100:"#ff8a80",a200:"#ff5252",a400:"#ff1744",a700:"#d50000"},o={50:"#fce4ec",100:"#f8bbd0",200:"#f48fb1",300:"#f06292",400:"#ec407a",500:"#e91e63",600:"#d81b60",700:"#c2185b",800:"#ad1457",900:"#880e4f",a100:"#ff80ab",a200:"#ff4081",a400:"#f50057",a700:"#c51162"},a={50:"#f3e5f5",100:"#e1bee7",200:"#ce93d8",300:"#ba68c8",400:"#ab47bc",500:"#9c27b0",600:"#8e24aa",700:"#7b1fa2",800:"#6a1b9a",900:"#4a148c",a100:"#ea80fc",a200:"#e040fb",a400:"#d500f9",a700:"#aa00ff"},i={50:"#ede7f6",100:"#d1c4e9",200:"#b39ddb",300:"#9575cd",400:"#7e57c2",500:"#673ab7",600:"#5e35b1",700:"#512da8",800:"#4527a0",900:"#311b92",a100:"#b388ff",a200:"#7c4dff",a400:"#651fff",a700:"#6200ea"},u={50:"#e8eaf6",100:"#c5cae9",200:"#9fa8da",300:"#7986cb",400:"#5c6bc0",500:"#3f51b5",600:"#3949ab",700:"#303f9f",800:"#283593",900:"#1a237e",a100:"#8c9eff",a200:"#536dfe",a400:"#3d5afe",a700:"#304ffe"},l={50:"#e3f2fd",100:"#bbdefb",200:"#90caf9",300:"#64b5f6",400:"#42a5f5",500:"#2196f3",600:"#1e88e5",700:"#1976d2",800:"#1565c0",900:"#0d47a1",a100:"#82b1ff",a200:"#448aff",a400:"#2979ff",a700:"#2962ff"},c={50:"#e1f5fe",100:"#b3e5fc",200:"#81d4fa",300:"#4fc3f7",400:"#29b6f6",500:"#03a9f4",600:"#039be5",700:"#0288d1",800:"#0277bd",900:"#01579b",a100:"#80d8ff",a200:"#40c4ff",a400:"#00b0ff",a700:"#0091ea"},f={50:"#e0f7fa",100:"#b2ebf2",200:"#80deea",300:"#4dd0e1",400:"#26c6da",500:"#00bcd4",600:"#00acc1",700:"#0097a7",800:"#00838f",900:"#006064",a100:"#84ffff",a200:"#18ffff",a400:"#00e5ff",a700:"#00b8d4"},s={50:"#e0f2f1",100:"#b2dfdb",200:"#80cbc4",300:"#4db6ac",400:"#26a69a",500:"#009688",600:"#00897b",700:"#00796b",800:"#00695c",900:"#004d40",a100:"#a7ffeb",a200:"#64ffda",a400:"#1de9b6",a700:"#00bfa5"},p={50:"#e8f5e9",100:"#c8e6c9",200:"#a5d6a7",300:"#81c784",400:"#66bb6a",500:"#4caf50",600:"#43a047",700:"#388e3c",800:"#2e7d32",900:"#1b5e20",a100:"#b9f6ca",a200:"#69f0ae",a400:"#00e676",a700:"#00c853"},d={50:"#f1f8e9",100:"#dcedc8",200:"#c5e1a5",300:"#aed581",400:"#9ccc65",500:"#8bc34a",600:"#7cb342",700:"#689f38",800:"#558b2f",900:"#33691e",a100:"#ccff90",a200:"#b2ff59",a400:"#76ff03",a700:"#64dd17"},h={50:"#f9fbe7",100:"#f0f4c3",200:"#e6ee9c",300:"#dce775",400:"#d4e157",500:"#cddc39",600:"#c0ca33",700:"#afb42b",800:"#9e9d24",900:"#827717",a100:"#f4ff81",a200:"#eeff41",a400:"#c6ff00",a700:"#aeea00"},b={50:"#fffde7",100:"#fff9c4",200:"#fff59d",300:"#fff176",400:"#ffee58",500:"#ffeb3b",600:"#fdd835",700:"#fbc02d",800:"#f9a825",900:"#f57f17",a100:"#ffff8d",a200:"#ffff00",a400:"#ffea00",a700:"#ffd600"},v={50:"#fff8e1",100:"#ffecb3",200:"#ffe082",300:"#ffd54f",400:"#ffca28",500:"#ffc107",600:"#ffb300",700:"#ffa000",800:"#ff8f00",900:"#ff6f00",a100:"#ffe57f",a200:"#ffd740",a400:"#ffc400",a700:"#ffab00"},g={50:"#fff3e0",100:"#ffe0b2",200:"#ffcc80",300:"#ffb74d",400:"#ffa726",500:"#ff9800",600:"#fb8c00",700:"#f57c00",800:"#ef6c00",900:"#e65100",a100:"#ffd180",a200:"#ffab40",a400:"#ff9100",a700:"#ff6d00"},x={50:"#fbe9e7",100:"#ffccbc",200:"#ffab91",300:"#ff8a65",400:"#ff7043",500:"#ff5722",600:"#f4511e",700:"#e64a19",800:"#d84315",900:"#bf360c",a100:"#ff9e80",a200:"#ff6e40",a400:"#ff3d00",a700:"#dd2c00"},y={50:"#efebe9",100:"#d7ccc8",200:"#bcaaa4",300:"#a1887f",400:"#8d6e63",500:"#795548",600:"#6d4c41",700:"#5d4037",800:"#4e342e",900:"#3e2723"},m={50:"#fafafa",100:"#f5f5f5",200:"#eeeeee",300:"#e0e0e0",400:"#bdbdbd",500:"#9e9e9e",600:"#757575",700:"#616161",800:"#424242",900:"#212121"},w={50:"#eceff1",100:"#cfd8dc",200:"#b0bec5",300:"#90a4ae",400:"#78909c",500:"#607d8b",600:"#546e7a",700:"#455a64",800:"#37474f",900:"#263238"},_={primary:"rgba(0, 0, 0, 0.87)",secondary:"rgba(0, 0, 0, 0.54)",disabled:"rgba(0, 0, 0, 0.38)",dividers:"rgba(0, 0, 0, 0.12)"},j={primary:"rgba(255, 255, 255, 1)",secondary:"rgba(255, 255, 255, 0.7)",disabled:"rgba(255, 255, 255, 0.5)",dividers:"rgba(255, 255, 255, 0.12)"},O={active:"rgba(0, 0, 0, 0.54)",inactive:"rgba(0, 0, 0, 0.38)"},E={active:"rgba(255, 255, 255, 1)",inactive:"rgba(255, 255, 255, 0.5)"},C="#ffffff",k="#000000";t.default={red:n,pink:o,purple:a,deepPurple:i,indigo:u,blue:l,lightBlue:c,cyan:f,teal:s,green:p,lightGreen:d,lime:h,yellow:b,amber:v,orange:g,deepOrange:x,brown:y,grey:m,blueGrey:w,darkText:_,lightText:j,darkIcons:O,lightIcons:E,white:C,black:k}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CustomPicker=t.TwitterPicker=t.SwatchesPicker=t.SliderPicker=t.SketchPicker=t.PhotoshopPicker=t.MaterialPicker=t.HuePicker=t.GithubPicker=t.CompactPicker=t.ChromePicker=t.default=t.CirclePicker=t.BlockPicker=t.AlphaPicker=void 0;var n=r(274);Object.defineProperty(t,"AlphaPicker",{enumerable:!0,get:function(){return x(n).default}});var o=r(465);Object.defineProperty(t,"BlockPicker",{enumerable:!0,get:function(){return x(o).default}});var a=r(506);Object.defineProperty(t,"CirclePicker",{enumerable:!0,get:function(){return x(a).default}});var i=r(508);Object.defineProperty(t,"ChromePicker",{enumerable:!0,get:function(){return x(i).default}});var u=r(513);Object.defineProperty(t,"CompactPicker",{enumerable:!0,get:function(){return x(u).default}});var l=r(516);Object.defineProperty(t,"GithubPicker",{enumerable:!0,get:function(){return x(l).default}});var c=r(518);Object.defineProperty(t,"HuePicker",{enumerable:!0,get:function(){return x(c).default}});var f=r(520);Object.defineProperty(t,"MaterialPicker",{enumerable:!0,get:function(){return x(f).default}});var s=r(521);Object.defineProperty(t,"PhotoshopPicker",{enumerable:!0,get:function(){return x(s).default}});var p=r(527);Object.defineProperty(t,"SketchPicker",{enumerable:!0,get:function(){return x(p).default}});var d=r(530);Object.defineProperty(t,"SliderPicker",{enumerable:!0,get:function(){return x(d).default}});var h=r(534);Object.defineProperty(t,"SwatchesPicker",{enumerable:!0,get:function(){return x(h).default}});var b=r(538);Object.defineProperty(t,"TwitterPicker",{enumerable:!0,get:function(){return x(b).default}});var v=r(263);Object.defineProperty(t,"CustomPicker",{enumerable:!0,get:function(){return x(v).default}});var g=x(i);function x(e){return e&&e.__esModule?e:{default:e}}t.default=g.default},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AlphaPicker=void 0;var n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},o=l(r(1)),a=l(r(158)),i=r(159),u=l(r(464));function l(e){return e&&e.__esModule?e:{default:e}}var c=t.AlphaPicker=function(e){var t=e.rgb,r=e.hsl,u=e.width,l=e.height,c=e.onChange,f=e.direction,s=e.style,p=e.renderers,d=e.pointer,h=e.className,b=void 0===h?"":h,v=(0,a.default)({default:{picker:{position:"relative",width:u,height:l},alpha:{radius:"2px",style:s}}});return o.default.createElement("div",{style:v.picker,className:"alpha-picker "+b},o.default.createElement(i.Alpha,n({},v.alpha,{rgb:t,hsl:r,pointer:d,renderers:p,onChange:c,direction:f})))};c.defaultProps={width:"316px",height:"16px",direction:"horizontal",pointer:u.default},t.default=(0,i.ColorWrap)(c)},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.flattenNames=void 0;var n=u(r(276)),o=u(r(196)),a=u(r(288)),i=u(r(289));function u(e){return e&&e.__esModule?e:{default:e}}var l=t.flattenNames=function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],r=[];return(0,i.default)(t,(function(t){Array.isArray(t)?e(t).map((function(e){return r.push(e)})):(0,a.default)(t)?(0,o.default)(t,(function(e,t){!0===e&&r.push(t),r.push(t+"-"+e)})):(0,n.default)(t)&&r.push(t)})),r};t.default=l},function(e,t,r){var n=r(168),o=r(161),a=r(167);e.exports=function(e){return"string"==typeof e||!o(e)&&a(e)&&"[object String]"==n(e)}},function(e,t,r){var n=r(177),o=Object.prototype,a=o.hasOwnProperty,i=o.toString,u=n?n.toStringTag:void 0;e.exports=function(e){var t=a.call(e,u),r=e[u];try{e[u]=void 0;var n=!0}catch(e){}var o=i.call(e);return n&&(t?e[u]=r:delete e[u]),o}},function(e,t){var r=Object.prototype.toString;e.exports=function(e){return r.call(e)}},function(e,t,r){var n=r(280)();e.exports=n},function(e,t){e.exports=function(e){return function(t,r,n){for(var o=-1,a=Object(t),i=n(t),u=i.length;u--;){var l=i[e?u:++o];if(!1===r(a[l],l,a))break}return t}}},function(e,t){e.exports=function(e,t){for(var r=-1,n=Array(e);++r<e;)n[r]=t(r);return n}},function(e,t,r){var n=r(168),o=r(167);e.exports=function(e){return o(e)&&"[object Arguments]"==n(e)}},function(e,t){e.exports=function(){return!1}},function(e,t,r){var n=r(168),o=r(198),a=r(167),i={};i["[object Float32Array]"]=i["[object Float64Array]"]=i["[object Int8Array]"]=i["[object Int16Array]"]=i["[object Int32Array]"]=i["[object Uint8Array]"]=i["[object Uint8ClampedArray]"]=i["[object Uint16Array]"]=i["[object Uint32Array]"]=!0,i["[object Arguments]"]=i["[object Array]"]=i["[object ArrayBuffer]"]=i["[object Boolean]"]=i["[object DataView]"]=i["[object Date]"]=i["[object Error]"]=i["[object Function]"]=i["[object Map]"]=i["[object Number]"]=i["[object Object]"]=i["[object RegExp]"]=i["[object Set]"]=i["[object String]"]=i["[object WeakMap]"]=!1,e.exports=function(e){return a(e)&&o(e.length)&&!!i[n(e)]}},function(e,t,r){var n=r(201),o=r(286),a=Object.prototype.hasOwnProperty;e.exports=function(e){if(!n(e))return o(e);var t=[];for(var r in Object(e))a.call(e,r)&&"constructor"!=r&&t.push(r);return t}},function(e,t,r){var n=r(232)(Object.keys,Object);e.exports=n},function(e,t,r){var n=r(234);e.exports=function(e){return"function"==typeof e?e:n}},function(e,t,r){var n=r(168),o=r(202),a=r(167),i=Function.prototype,u=Object.prototype,l=i.toString,c=u.hasOwnProperty,f=l.call(Object);e.exports=function(e){if(!a(e)||"[object Object]"!=n(e))return!1;var t=o(e);if(null===t)return!0;var r=c.call(t,"constructor")&&t.constructor;return"function"==typeof r&&r instanceof r&&l.call(r)==f}},function(e,t,r){var n=r(235),o=r(290),a=r(348),i=r(161);e.exports=function(e,t){return(i(e)?n:a)(e,o(t,3))}},function(e,t,r){var n=r(291),o=r(335),a=r(234),i=r(161),u=r(345);e.exports=function(e){return"function"==typeof e?e:null==e?a:"object"==typeof e?i(e)?o(e[0],e[1]):n(e):u(e)}},function(e,t,r){var n=r(292),o=r(334),a=r(245);e.exports=function(e){var t=o(e);return 1==t.length&&t[0][2]?a(t[0][0],t[0][1]):function(r){return r===e||n(r,e,t)}}},function(e,t,r){var n=r(203),o=r(237);e.exports=function(e,t,r,a){var i=r.length,u=i,l=!a;if(null==e)return!u;for(e=Object(e);i--;){var c=r[i];if(l&&c[2]?c[1]!==e[c[0]]:!(c[0]in e))return!1}for(;++i<u;){var f=(c=r[i])[0],s=e[f],p=c[1];if(l&&c[2]){if(void 0===s&&!(f in e))return!1}else{var d=new n;if(a)var h=a(s,p,f,e,t,d);if(!(void 0===h?o(p,s,3,a,d):h))return!1}}return!0}},function(e,t){e.exports=function(){this.__data__=[],this.size=0}},function(e,t,r){var n=r(182),o=Array.prototype.splice;e.exports=function(e){var t=this.__data__,r=n(t,e);return!(r<0)&&(r==t.length-1?t.pop():o.call(t,r,1),--this.size,!0)}},function(e,t,r){var n=r(182);e.exports=function(e){var t=this.__data__,r=n(t,e);return r<0?void 0:t[r][1]}},function(e,t,r){var n=r(182);e.exports=function(e){return n(this.__data__,e)>-1}},function(e,t,r){var n=r(182);e.exports=function(e,t){var r=this.__data__,o=n(r,e);return o<0?(++this.size,r.push([e,t])):r[o][1]=t,this}},function(e,t,r){var n=r(181);e.exports=function(){this.__data__=new n,this.size=0}},function(e,t){e.exports=function(e){var t=this.__data__,r=t.delete(e);return this.size=t.size,r}},function(e,t){e.exports=function(e){return this.__data__.get(e)}},function(e,t){e.exports=function(e){return this.__data__.has(e)}},function(e,t,r){var n=r(181),o=r(205),a=r(206);e.exports=function(e,t){var r=this.__data__;if(r instanceof n){var i=r.__data__;if(!o||i.length<199)return i.push([e,t]),this.size=++r.size,this;r=this.__data__=new a(i)}return r.set(e,t),this.size=r.size,this}},function(e,t,r){var n=r(233),o=r(304),a=r(174),i=r(236),u=/^\[object .+?Constructor\]$/,l=Function.prototype,c=Object.prototype,f=l.toString,s=c.hasOwnProperty,p=RegExp("^"+f.call(s).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");e.exports=function(e){return!(!a(e)||o(e))&&(n(e)?p:u).test(i(e))}},function(e,t,r){var n,o=r(305),a=(n=/[^.]+$/.exec(o&&o.keys&&o.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"";e.exports=function(e){return!!a&&a in e}},function(e,t,r){var n=r(166)["__core-js_shared__"];e.exports=n},function(e,t){e.exports=function(e,t){return null==e?void 0:e[t]}},function(e,t,r){var n=r(308),o=r(181),a=r(205);e.exports=function(){this.size=0,this.__data__={hash:new n,map:new(a||o),string:new n}}},function(e,t,r){var n=r(309),o=r(310),a=r(311),i=r(312),u=r(313);function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}l.prototype.clear=n,l.prototype.delete=o,l.prototype.get=a,l.prototype.has=i,l.prototype.set=u,e.exports=l},function(e,t,r){var n=r(183);e.exports=function(){this.__data__=n?n(null):{},this.size=0}},function(e,t){e.exports=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}},function(e,t,r){var n=r(183),o=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;if(n){var r=t[e];return"__lodash_hash_undefined__"===r?void 0:r}return o.call(t,e)?t[e]:void 0}},function(e,t,r){var n=r(183),o=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;return n?void 0!==t[e]:o.call(t,e)}},function(e,t,r){var n=r(183);e.exports=function(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=n&&void 0===t?"__lodash_hash_undefined__":t,this}},function(e,t,r){var n=r(184);e.exports=function(e){var t=n(this,e).delete(e);return this.size-=t?1:0,t}},function(e,t){e.exports=function(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}},function(e,t,r){var n=r(184);e.exports=function(e){return n(this,e).get(e)}},function(e,t,r){var n=r(184);e.exports=function(e){return n(this,e).has(e)}},function(e,t,r){var n=r(184);e.exports=function(e,t){var r=n(this,e),o=r.size;return r.set(e,t),this.size+=r.size==o?0:1,this}},function(e,t,r){var n=r(203),o=r(238),a=r(325),i=r(328),u=r(185),l=r(161),c=r(197),f=r(231),s="[object Object]",p=Object.prototype.hasOwnProperty;e.exports=function(e,t,r,d,h,b){var v=l(e),g=l(t),x=v?"[object Array]":u(e),y=g?"[object Array]":u(t),m=(x="[object Arguments]"==x?s:x)==s,w=(y="[object Arguments]"==y?s:y)==s,_=x==y;if(_&&c(e)){if(!c(t))return!1;v=!0,m=!1}if(_&&!m)return b||(b=new n),v||f(e)?o(e,t,r,d,h,b):a(e,t,x,r,d,h,b);if(!(1&r)){var j=m&&p.call(e,"__wrapped__"),O=w&&p.call(t,"__wrapped__");if(j||O){var E=j?e.value():e,C=O?t.value():t;return b||(b=new n),h(E,C,r,d,b)}}return!!_&&(b||(b=new n),i(e,t,r,d,h,b))}},function(e,t,r){var n=r(206),o=r(321),a=r(322);function i(e){var t=-1,r=null==e?0:e.length;for(this.__data__=new n;++t<r;)this.add(e[t])}i.prototype.add=i.prototype.push=o,i.prototype.has=a,e.exports=i},function(e,t){e.exports=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this}},function(e,t){e.exports=function(e){return this.__data__.has(e)}},function(e,t){e.exports=function(e,t){for(var r=-1,n=null==e?0:e.length;++r<n;)if(t(e[r],r,e))return!0;return!1}},function(e,t){e.exports=function(e,t){return e.has(t)}},function(e,t,r){var n=r(177),o=r(239),a=r(204),i=r(238),u=r(326),l=r(327),c=n?n.prototype:void 0,f=c?c.valueOf:void 0;e.exports=function(e,t,r,n,c,s,p){switch(r){case"[object DataView]":if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case"[object ArrayBuffer]":return!(e.byteLength!=t.byteLength||!s(new o(e),new o(t)));case"[object Boolean]":case"[object Date]":case"[object Number]":return a(+e,+t);case"[object Error]":return e.name==t.name&&e.message==t.message;case"[object RegExp]":case"[object String]":return e==t+"";case"[object Map]":var d=u;case"[object Set]":var h=1&n;if(d||(d=l),e.size!=t.size&&!h)return!1;var b=p.get(e);if(b)return b==t;n|=2,p.set(e,t);var v=i(d(e),d(t),n,c,s,p);return p.delete(e),v;case"[object Symbol]":if(f)return f.call(e)==f.call(t)}return!1}},function(e,t){e.exports=function(e){var t=-1,r=Array(e.size);return e.forEach((function(e,n){r[++t]=[n,e]})),r}},function(e,t){e.exports=function(e){var t=-1,r=Array(e.size);return e.forEach((function(e){r[++t]=e})),r}},function(e,t,r){var n=r(240),o=Object.prototype.hasOwnProperty;e.exports=function(e,t,r,a,i,u){var l=1&r,c=n(e),f=c.length;if(f!=n(t).length&&!l)return!1;for(var s=f;s--;){var p=c[s];if(!(l?p in t:o.call(t,p)))return!1}var d=u.get(e),h=u.get(t);if(d&&h)return d==t&&h==e;var b=!0;u.set(e,t),u.set(t,e);for(var v=l;++s<f;){var g=e[p=c[s]],x=t[p];if(a)var y=l?a(x,g,p,t,e,u):a(g,x,p,e,t,u);if(!(void 0===y?g===x||i(g,x,r,a,u):y)){b=!1;break}v||(v="constructor"==p)}if(b&&!v){var m=e.constructor,w=t.constructor;m==w||!("constructor"in e)||!("constructor"in t)||"function"==typeof m&&m instanceof m&&"function"==typeof w&&w instanceof w||(b=!1)}return u.delete(e),u.delete(t),b}},function(e,t){e.exports=function(e,t){for(var r=-1,n=null==e?0:e.length,o=0,a=[];++r<n;){var i=e[r];t(i,r,e)&&(a[o++]=i)}return a}},function(e,t,r){var n=r(169)(r(166),"DataView");e.exports=n},function(e,t,r){var n=r(169)(r(166),"Promise");e.exports=n},function(e,t,r){var n=r(169)(r(166),"Set");e.exports=n},function(e,t,r){var n=r(169)(r(166),"WeakMap");e.exports=n},function(e,t,r){var n=r(244),o=r(178);e.exports=function(e){for(var t=o(e),r=t.length;r--;){var a=t[r],i=e[a];t[r]=[a,i,n(i)]}return t}},function(e,t,r){var n=r(237),o=r(336),a=r(342),i=r(208),u=r(244),l=r(245),c=r(186);e.exports=function(e,t){return i(e)&&u(t)?l(c(e),t):function(r){var i=o(r,e);return void 0===i&&i===t?a(r,e):n(t,i,3)}}},function(e,t,r){var n=r(246);e.exports=function(e,t,r){var o=null==e?void 0:n(e,t);return void 0===o?r:o}},function(e,t,r){var n=r(338),o=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,a=/\\(\\)?/g,i=n((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(o,(function(e,r,n,o){t.push(n?o.replace(a,"$1"):r||e)})),t}));e.exports=i},function(e,t,r){var n=r(339);e.exports=function(e){var t=n(e,(function(e){return 500===r.size&&r.clear(),e})),r=t.cache;return t}},function(e,t,r){var n=r(206);function o(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError("Expected a function");var r=function(){var n=arguments,o=t?t.apply(this,n):n[0],a=r.cache;if(a.has(o))return a.get(o);var i=e.apply(this,n);return r.cache=a.set(o,i)||a,i};return r.cache=new(o.Cache||n),r}o.Cache=n,e.exports=o},function(e,t,r){var n=r(341);e.exports=function(e){return null==e?"":n(e)}},function(e,t,r){var n=r(177),o=r(235),a=r(161),i=r(209),u=n?n.prototype:void 0,l=u?u.toString:void 0;e.exports=function e(t){if("string"==typeof t)return t;if(a(t))return o(t,e)+"";if(i(t))return l?l.call(t):"";var r=t+"";return"0"==r&&1/t==-1/0?"-0":r}},function(e,t,r){var n=r(343),o=r(344);e.exports=function(e,t){return null!=e&&o(e,t,n)}},function(e,t){e.exports=function(e,t){return null!=e&&t in Object(e)}},function(e,t,r){var n=r(247),o=r(229),a=r(161),i=r(230),u=r(198),l=r(186);e.exports=function(e,t,r){for(var c=-1,f=(t=n(t,e)).length,s=!1;++c<f;){var p=l(t[c]);if(!(s=null!=e&&r(e,p)))break;e=e[p]}return s||++c!=f?s:!!(f=null==e?0:e.length)&&u(f)&&i(p,f)&&(a(e)||o(e))}},function(e,t,r){var n=r(346),o=r(347),a=r(208),i=r(186);e.exports=function(e){return a(e)?n(i(e)):o(e)}},function(e,t){e.exports=function(e){return function(t){return null==t?void 0:t[e]}}},function(e,t,r){var n=r(246);e.exports=function(e){return function(t){return n(t,e)}}},function(e,t,r){var n=r(349),o=r(180);e.exports=function(e,t){var r=-1,a=o(e)?Array(e.length):[];return n(e,(function(e,n,o){a[++r]=t(e,n,o)})),a}},function(e,t,r){var n=r(227),o=r(350)(n);e.exports=o},function(e,t,r){var n=r(180);e.exports=function(e,t){return function(r,o){if(null==r)return r;if(!n(r))return e(r,o);for(var a=r.length,i=t?a:-1,u=Object(r);(t?i--:++i<a)&&!1!==o(u[i],i,u););return r}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.mergeClasses=void 0;var n=i(r(196)),o=i(r(352)),a=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e};function i(e){return e&&e.__esModule?e:{default:e}}var u=t.mergeClasses=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=e.default&&(0,o.default)(e.default)||{};return t.map((function(t){var o=e[t];return o&&(0,n.default)(o,(function(e,t){r[t]||(r[t]={}),r[t]=a({},r[t],o[t])})),t})),r};t.default=u},function(e,t,r){var n=r(353);e.exports=function(e){return n(e,5)}},function(e,t,r){var n=r(203),o=r(354),a=r(248),i=r(356),u=r(357),l=r(360),c=r(361),f=r(362),s=r(363),p=r(240),d=r(364),h=r(185),b=r(365),v=r(366),g=r(371),x=r(161),y=r(197),m=r(373),w=r(174),_=r(375),j=r(178),O=r(210),E={};E["[object Arguments]"]=E["[object Array]"]=E["[object ArrayBuffer]"]=E["[object DataView]"]=E["[object Boolean]"]=E["[object Date]"]=E["[object Float32Array]"]=E["[object Float64Array]"]=E["[object Int8Array]"]=E["[object Int16Array]"]=E["[object Int32Array]"]=E["[object Map]"]=E["[object Number]"]=E["[object Object]"]=E["[object RegExp]"]=E["[object Set]"]=E["[object String]"]=E["[object Symbol]"]=E["[object Uint8Array]"]=E["[object Uint8ClampedArray]"]=E["[object Uint16Array]"]=E["[object Uint32Array]"]=!0,E["[object Error]"]=E["[object Function]"]=E["[object WeakMap]"]=!1,e.exports=function e(t,r,C,k,S,P){var M,B=1&r,A=2&r,F=4&r;if(C&&(M=S?C(t,k,S,P):C(t)),void 0!==M)return M;if(!w(t))return t;var R=x(t);if(R){if(M=b(t),!B)return c(t,M)}else{var T=h(t),z="[object Function]"==T||"[object GeneratorFunction]"==T;if(y(t))return l(t,B);if("[object Object]"==T||"[object Arguments]"==T||z&&!S){if(M=A||z?{}:g(t),!B)return A?s(t,u(M,t)):f(t,i(M,t))}else{if(!E[T])return S?t:{};M=v(t,T,B)}}P||(P=new n);var H=P.get(t);if(H)return H;P.set(t,M),_(t)?t.forEach((function(n){M.add(e(n,r,C,n,t,P))})):m(t)&&t.forEach((function(n,o){M.set(o,e(n,r,C,o,t,P))}));var D=R?void 0:(F?A?d:p:A?O:j)(t);return o(D||t,(function(n,o){D&&(n=t[o=n]),a(M,o,e(n,r,C,o,t,P))})),M}},function(e,t){e.exports=function(e,t){for(var r=-1,n=null==e?0:e.length;++r<n&&!1!==t(e[r],r,e););return e}},function(e,t,r){var n=r(169),o=function(){try{var e=n(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();e.exports=o},function(e,t,r){var n=r(187),o=r(178);e.exports=function(e,t){return e&&n(t,o(t),e)}},function(e,t,r){var n=r(187),o=r(210);e.exports=function(e,t){return e&&n(t,o(t),e)}},function(e,t,r){var n=r(174),o=r(201),a=r(359),i=Object.prototype.hasOwnProperty;e.exports=function(e){if(!n(e))return a(e);var t=o(e),r=[];for(var u in e)("constructor"!=u||!t&&i.call(e,u))&&r.push(u);return r}},function(e,t){e.exports=function(e){var t=[];if(null!=e)for(var r in Object(e))t.push(r);return t}},function(e,t,r){(function(e){var n=r(166),o=t&&!t.nodeType&&t,a=o&&"object"==typeof e&&e&&!e.nodeType&&e,i=a&&a.exports===o?n.Buffer:void 0,u=i?i.allocUnsafe:void 0;e.exports=function(e,t){if(t)return e.slice();var r=e.length,n=u?u(r):new e.constructor(r);return e.copy(n),n}}).call(this,r(173)(e))},function(e,t){e.exports=function(e,t){var r=-1,n=e.length;for(t||(t=Array(n));++r<n;)t[r]=e[r];return t}},function(e,t,r){var n=r(187),o=r(207);e.exports=function(e,t){return n(e,o(e),t)}},function(e,t,r){var n=r(187),o=r(250);e.exports=function(e,t){return n(e,o(e),t)}},function(e,t,r){var n=r(241),o=r(250),a=r(210);e.exports=function(e){return n(e,a,o)}},function(e,t){var r=Object.prototype.hasOwnProperty;e.exports=function(e){var t=e.length,n=new e.constructor(t);return t&&"string"==typeof e[0]&&r.call(e,"index")&&(n.index=e.index,n.input=e.input),n}},function(e,t,r){var n=r(211),o=r(367),a=r(368),i=r(369),u=r(370);e.exports=function(e,t,r){var l=e.constructor;switch(t){case"[object ArrayBuffer]":return n(e);case"[object Boolean]":case"[object Date]":return new l(+e);case"[object DataView]":return o(e,r);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return u(e,r);case"[object Map]":return new l;case"[object Number]":case"[object String]":return new l(e);case"[object RegExp]":return a(e);case"[object Set]":return new l;case"[object Symbol]":return i(e)}}},function(e,t,r){var n=r(211);e.exports=function(e,t){var r=t?n(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.byteLength)}},function(e,t){var r=/\w*$/;e.exports=function(e){var t=new e.constructor(e.source,r.exec(e));return t.lastIndex=e.lastIndex,t}},function(e,t,r){var n=r(177),o=n?n.prototype:void 0,a=o?o.valueOf:void 0;e.exports=function(e){return a?Object(a.call(e)):{}}},function(e,t,r){var n=r(211);e.exports=function(e,t){var r=t?n(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.length)}},function(e,t,r){var n=r(372),o=r(202),a=r(201);e.exports=function(e){return"function"!=typeof e.constructor||a(e)?{}:n(o(e))}},function(e,t,r){var n=r(174),o=Object.create,a=function(){function e(){}return function(t){if(!n(t))return{};if(o)return o(t);e.prototype=t;var r=new e;return e.prototype=void 0,r}}();e.exports=a},function(e,t,r){var n=r(374),o=r(199),a=r(200),i=a&&a.isMap,u=i?o(i):n;e.exports=u},function(e,t,r){var n=r(185),o=r(167);e.exports=function(e){return o(e)&&"[object Map]"==n(e)}},function(e,t,r){var n=r(376),o=r(199),a=r(200),i=a&&a.isSet,u=i?o(i):n;e.exports=u},function(e,t,r){var n=r(185),o=r(167);e.exports=function(e){return o(e)&&"[object Set]"==n(e)}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.autoprefix=void 0;var n,o=r(196),a=(n=o)&&n.__esModule?n:{default:n},i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e};var u={borderRadius:function(e){return{msBorderRadius:e,MozBorderRadius:e,OBorderRadius:e,WebkitBorderRadius:e,borderRadius:e}},boxShadow:function(e){return{msBoxShadow:e,MozBoxShadow:e,OBoxShadow:e,WebkitBoxShadow:e,boxShadow:e}},userSelect:function(e){return{WebkitTouchCallout:e,KhtmlUserSelect:e,MozUserSelect:e,msUserSelect:e,WebkitUserSelect:e,userSelect:e}},flex:function(e){return{WebkitBoxFlex:e,MozBoxFlex:e,WebkitFlex:e,msFlex:e,flex:e}},flexBasis:function(e){return{WebkitFlexBasis:e,flexBasis:e}},justifyContent:function(e){return{WebkitJustifyContent:e,justifyContent:e}},transition:function(e){return{msTransition:e,MozTransition:e,OTransition:e,WebkitTransition:e,transition:e}},transform:function(e){return{msTransform:e,MozTransform:e,OTransform:e,WebkitTransform:e,transform:e}},absolute:function(e){var t=e&&e.split(" ");return{position:"absolute",top:t&&t[0],right:t&&t[1],bottom:t&&t[2],left:t&&t[3]}},extend:function(e,t){var r=t[e];return r||{extend:e}}},l=t.autoprefix=function(e){var t={};return(0,a.default)(e,(function(e,r){var n={};(0,a.default)(e,(function(e,t){var r=u[t];r?n=i({},n,r(e)):n[t]=e})),t[r]=n})),t};t.default=l},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hover=void 0;var n,o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},a=r(1),i=(n=a)&&n.__esModule?n:{default:n};function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function l(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var f=t.hover=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"span";return function(r){function n(){var r,a,c;u(this,n);for(var f=arguments.length,s=Array(f),p=0;p<f;p++)s[p]=arguments[p];return a=c=l(this,(r=n.__proto__||Object.getPrototypeOf(n)).call.apply(r,[this].concat(s))),c.state={hover:!1},c.handleMouseOver=function(){return c.setState({hover:!0})},c.handleMouseOut=function(){return c.setState({hover:!1})},c.render=function(){return i.default.createElement(t,{onMouseOver:c.handleMouseOver,onMouseOut:c.handleMouseOut},i.default.createElement(e,o({},c.props,c.state)))},l(c,a)}return c(n,r),n}(i.default.Component)};t.default=f},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.active=void 0;var n,o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},a=r(1),i=(n=a)&&n.__esModule?n:{default:n};function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function l(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}var f=t.active=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"span";return function(r){function n(){var r,a,c;u(this,n);for(var f=arguments.length,s=Array(f),p=0;p<f;p++)s[p]=arguments[p];return a=c=l(this,(r=n.__proto__||Object.getPrototypeOf(n)).call.apply(r,[this].concat(s))),c.state={active:!1},c.handleMouseDown=function(){return c.setState({active:!0})},c.handleMouseUp=function(){return c.setState({active:!1})},c.render=function(){return i.default.createElement(t,{onMouseDown:c.handleMouseDown,onMouseUp:c.handleMouseUp},i.default.createElement(e,o({},c.props,c.state)))},l(c,a)}return c(n,r),n}(i.default.Component)};t.default=f},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=function(e,t){var r={},n=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];r[e]=t};return 0===e&&n("first-child"),e===t-1&&n("last-child"),(0===e||e%2==0)&&n("even"),1===Math.abs(e%2)&&n("odd"),n("nth-child",e),r}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Alpha=void 0;var n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},o=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),a=r(1),i=f(a),u=f(r(158)),l=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t.default=e,t}(r(382)),c=f(r(212));function f(e){return e&&e.__esModule?e:{default:e}}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function p(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var d=t.Alpha=function(e){function t(){var e,r,n;s(this,t);for(var o=arguments.length,a=Array(o),i=0;i<o;i++)a[i]=arguments[i];return r=n=p(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),n.handleChange=function(e){var t=l.calculateChange(e,n.props.hsl,n.props.direction,n.props.a,n.container);t&&"function"==typeof n.props.onChange&&n.props.onChange(t,e)},n.handleMouseDown=function(e){n.handleChange(e),window.addEventListener("mousemove",n.handleChange),window.addEventListener("mouseup",n.handleMouseUp)},n.handleMouseUp=function(){n.unbindEventListeners()},n.unbindEventListeners=function(){window.removeEventListener("mousemove",n.handleChange),window.removeEventListener("mouseup",n.handleMouseUp)},p(n,r)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),o(t,[{key:"componentWillUnmount",value:function(){this.unbindEventListeners()}},{key:"render",value:function(){var e=this,t=this.props.rgb,r=(0,u.default)({default:{alpha:{absolute:"0px 0px 0px 0px",borderRadius:this.props.radius},checkboard:{absolute:"0px 0px 0px 0px",overflow:"hidden",borderRadius:this.props.radius},gradient:{absolute:"0px 0px 0px 0px",background:"linear-gradient(to right, rgba("+t.r+","+t.g+","+t.b+", 0) 0%,\n rgba("+t.r+","+t.g+","+t.b+", 1) 100%)",boxShadow:this.props.shadow,borderRadius:this.props.radius},container:{position:"relative",height:"100%",margin:"0 3px"},pointer:{position:"absolute",left:100*t.a+"%"},slider:{width:"4px",borderRadius:"1px",height:"8px",boxShadow:"0 0 2px rgba(0, 0, 0, .6)",background:"#fff",marginTop:"1px",transform:"translateX(-2px)"}},vertical:{gradient:{background:"linear-gradient(to bottom, rgba("+t.r+","+t.g+","+t.b+", 0) 0%,\n rgba("+t.r+","+t.g+","+t.b+", 1) 100%)"},pointer:{left:0,top:100*t.a+"%"}},overwrite:n({},this.props.style)},{vertical:"vertical"===this.props.direction,overwrite:!0});return i.default.createElement("div",{style:r.alpha},i.default.createElement("div",{style:r.checkboard},i.default.createElement(c.default,{renderers:this.props.renderers})),i.default.createElement("div",{style:r.gradient}),i.default.createElement("div",{style:r.container,ref:function(t){return e.container=t},onMouseDown:this.handleMouseDown,onTouchMove:this.handleChange,onTouchStart:this.handleChange},i.default.createElement("div",{style:r.pointer},this.props.pointer?i.default.createElement(this.props.pointer,this.props):i.default.createElement("div",{style:r.slider}))))}}]),t}(a.PureComponent||a.Component);t.default=d},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.calculateChange=function(e,t,r,n,o){var a=o.clientWidth,i=o.clientHeight,u="number"==typeof e.pageX?e.pageX:e.touches[0].pageX,l="number"==typeof e.pageY?e.pageY:e.touches[0].pageY,c=u-(o.getBoundingClientRect().left+window.pageXOffset),f=l-(o.getBoundingClientRect().top+window.pageYOffset);if("vertical"===r){var s=void 0;if(s=f<0?0:f>i?1:Math.round(100*f/i)/100,t.a!==s)return{h:t.h,s:t.s,l:t.l,a:s,source:"rgb"}}else{var p=void 0;if(n!==(p=c<0?0:c>a?1:Math.round(100*c/a)/100))return{h:t.h,s:t.s,l:t.l,a:p,source:"rgb"}}return null}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n={},o=t.render=function(e,t,r,n){if("undefined"==typeof document&&!n)return null;var o=n?new n:document.createElement("canvas");o.width=2*r,o.height=2*r;var a=o.getContext("2d");return a?(a.fillStyle=e,a.fillRect(0,0,o.width,o.height),a.fillStyle=t,a.fillRect(0,0,r,r),a.translate(r,r),a.fillRect(0,0,r,r),o.toDataURL()):null};t.get=function(e,t,r,a){var i=e+"-"+t+"-"+r+(a?"-server":"");if(n[i])return n[i];var u=o(e,t,r,a);return n[i]=u,u}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.EditableInput=void 0;var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),o=r(1),a=u(o),i=u(r(158));function u(e){return e&&e.__esModule?e:{default:e}}var l=[38,40],c=t.EditableInput=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this));return r.handleBlur=function(){r.state.blurValue&&r.setState({value:r.state.blurValue,blurValue:null})},r.handleChange=function(e){r.setUpdatedValue(e.target.value,e)},r.handleKeyDown=function(e){var t,n=function(e){return Number(String(e).replace(/%/g,""))}(e.target.value);if(!isNaN(n)&&(t=e.keyCode,l.indexOf(t)>-1)){var o=r.getArrowOffset(),a=38===e.keyCode?n+o:n-o;r.setUpdatedValue(a,e)}},r.handleDrag=function(e){if(r.props.dragLabel){var t=Math.round(r.props.value+e.movementX);t>=0&&t<=r.props.dragMax&&r.props.onChange&&r.props.onChange(r.getValueObjectWithLabel(t),e)}},r.handleMouseDown=function(e){r.props.dragLabel&&(e.preventDefault(),r.handleDrag(e),window.addEventListener("mousemove",r.handleDrag),window.addEventListener("mouseup",r.handleMouseUp))},r.handleMouseUp=function(){r.unbindEventListeners()},r.unbindEventListeners=function(){window.removeEventListener("mousemove",r.handleDrag),window.removeEventListener("mouseup",r.handleMouseUp)},r.state={value:String(e.value).toUpperCase(),blurValue:String(e.value).toUpperCase()},r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),n(t,[{key:"componentDidUpdate",value:function(e,t){this.props.value===this.state.value||e.value===this.props.value&&t.value===this.state.value||(this.input===document.activeElement?this.setState({blurValue:String(this.props.value).toUpperCase()}):this.setState({value:String(this.props.value).toUpperCase(),blurValue:!this.state.blurValue&&String(this.props.value).toUpperCase()}))}},{key:"componentWillUnmount",value:function(){this.unbindEventListeners()}},{key:"getValueObjectWithLabel",value:function(e){return function(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}({},this.props.label,e)}},{key:"getArrowOffset",value:function(){return this.props.arrowOffset||1}},{key:"setUpdatedValue",value:function(e,t){var r=this.props.label?this.getValueObjectWithLabel(e):e;this.props.onChange&&this.props.onChange(r,t);var n,o=function(e){return String(e).indexOf("%")>-1}(t.target.value);this.setState({value:o?(n=e,n+"%"):e})}},{key:"render",value:function(){var e=this,t=(0,i.default)({default:{wrap:{position:"relative"}},"user-override":{wrap:this.props.style&&this.props.style.wrap?this.props.style.wrap:{},input:this.props.style&&this.props.style.input?this.props.style.input:{},label:this.props.style&&this.props.style.label?this.props.style.label:{}},"dragLabel-true":{label:{cursor:"ew-resize"}}},{"user-override":!0},this.props);return a.default.createElement("div",{style:t.wrap},a.default.createElement("input",{style:t.input,ref:function(t){return e.input=t},value:this.state.value,onKeyDown:this.handleKeyDown,onChange:this.handleChange,onBlur:this.handleBlur,placeholder:this.props.placeholder,spellCheck:"false"}),this.props.label&&!this.props.hideLabel?a.default.createElement("span",{style:t.label,onMouseDown:this.handleMouseDown},this.props.label):null)}}]),t}(o.PureComponent||o.Component);t.default=c},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Hue=void 0;var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),o=r(1),a=l(o),i=l(r(158)),u=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r]);return t.default=e,t}(r(386));function l(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function f(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var s=t.Hue=function(e){function t(){var e,r,n;c(this,t);for(var o=arguments.length,a=Array(o),i=0;i<o;i++)a[i]=arguments[i];return r=n=f(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),n.handleChange=function(e){var t=u.calculateChange(e,n.props.direction,n.props.hsl,n.container);t&&"function"==typeof n.props.onChange&&n.props.onChange(t,e)},n.handleMouseDown=function(e){n.handleChange(e),window.addEventListener("mousemove",n.handleChange),window.addEventListener("mouseup",n.handleMouseUp)},n.handleMouseUp=function(){n.unbindEventListeners()},f(n,r)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),n(t,[{key:"componentWillUnmount",value:function(){this.unbindEventListeners()}},{key:"unbindEventListeners",value:function(){window.removeEventListener("mousemove",this.handleChange),window.removeEventListener("mouseup",this.handleMouseUp)}},{key:"render",value:function(){var e=this,t=this.props.direction,r=void 0===t?"horizontal":t,n=(0,i.default)({default:{hue:{absolute:"0px 0px 0px 0px",borderRadius:this.props.radius,boxShadow:this.props.shadow},container:{padding:"0 2px",position:"relative",height:"100%",borderRadius:this.props.radius},pointer:{position:"absolute",left:100*this.props.hsl.h/360+"%"},slider:{marginTop:"1px",width:"4px",borderRadius:"1px",height:"8px",boxShadow:"0 0 2px rgba(0, 0, 0, .6)",background:"#fff",transform:"translateX(-2px)"}},vertical:{pointer:{left:"0px",top:-100*this.props.hsl.h/360+100+"%"}}},{vertical:"vertical"===r});return a.default.createElement("div",{style:n.hue},a.default.createElement("div",{className:"hue-"+r,style:n.container,ref:function(t){return e.container=t},onMouseDown:this.handleMouseDown,onTouchMove:this.handleChange,onTouchStart:this.handleChange},a.default.createElement("style",null,"\n .hue-horizontal {\n background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0\n 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n background: -webkit-linear-gradient(to right, #f00 0%, #ff0\n 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n }\n\n .hue-vertical {\n background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%,\n #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n background: -webkit-linear-gradient(to top, #f00 0%, #ff0 17%,\n #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n }\n "),a.default.createElement("div",{style:n.pointer},this.props.pointer?a.default.createElement(this.props.pointer,this.props):a.default.createElement("div",{style:n.slider}))))}}]),t}(o.PureComponent||o.Component);t.default=s},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.calculateChange=function(e,t,r,n){var o=n.clientWidth,a=n.clientHeight,i="number"==typeof e.pageX?e.pageX:e.touches[0].pageX,u="number"==typeof e.pageY?e.pageY:e.touches[0].pageY,l=i-(n.getBoundingClientRect().left+window.pageXOffset),c=u-(n.getBoundingClientRect().top+window.pageYOffset);if("vertical"===t){var f=void 0;if(c<0)f=359;else if(c>a)f=0;else{f=360*(-100*c/a+100)/100}if(r.h!==f)return{h:f,s:r.s,l:r.l,a:r.a,source:"rgb"}}else{var s=void 0;if(l<0)s=0;else if(l>o)s=359;else{s=360*(100*l/o)/100}if(r.h!==s)return{h:s,s:r.s,l:r.l,a:r.a,source:"rgb"}}return null}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Raised=void 0;var n=u(r(1)),o=u(r(0)),a=u(r(158)),i=u(r(160));function u(e){return e&&e.__esModule?e:{default:e}}var l=t.Raised=function(e){var t=e.zDepth,r=e.radius,o=e.background,u=e.children,l=e.styles,c=void 0===l?{}:l,f=(0,a.default)((0,i.default)({default:{wrap:{position:"relative",display:"inline-block"},content:{position:"relative"},bg:{absolute:"0px 0px 0px 0px",boxShadow:"0 "+t+"px "+4*t+"px rgba(0,0,0,.24)",borderRadius:r,background:o}},"zDepth-0":{bg:{boxShadow:"none"}},"zDepth-1":{bg:{boxShadow:"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)"}},"zDepth-2":{bg:{boxShadow:"0 6px 20px rgba(0,0,0,.19), 0 8px 17px rgba(0,0,0,.2)"}},"zDepth-3":{bg:{boxShadow:"0 17px 50px rgba(0,0,0,.19), 0 12px 15px rgba(0,0,0,.24)"}},"zDepth-4":{bg:{boxShadow:"0 25px 55px rgba(0,0,0,.21), 0 16px 28px rgba(0,0,0,.22)"}},"zDepth-5":{bg:{boxShadow:"0 40px 77px rgba(0,0,0,.22), 0 27px 24px rgba(0,0,0,.2)"}},square:{bg:{borderRadius:"0"}},circle:{bg:{borderRadius:"50%"}}},c),{"zDepth-1":1===t});return n.default.createElement("div",{style:f.wrap},n.default.createElement("div",{style:f.bg}),n.default.createElement("div",{style:f.content},u))};l.propTypes={background:o.default.string,zDepth:o.default.oneOf([0,1,2,3,4,5]),radius:o.default.number,styles:o.default.object},l.defaultProps={background:"#fff",zDepth:1,radius:2,styles:{}},t.default=l},function(e,t,r){var n=r(213),o=r(253),a=r(255),i=r(418),u=r(163),l=r(260),c=r(259);e.exports=function e(t,r,f,s,p){t!==r&&a(r,(function(a,l){if(p||(p=new n),u(a))i(t,r,l,f,e,s,p);else{var d=s?s(c(t,l),a,l+"",t,r,p):void 0;void 0===d&&(d=a),o(t,l,d)}}),l)}},function(e,t){e.exports=function(){this.__data__=[],this.size=0}},function(e,t,r){var n=r(189),o=Array.prototype.splice;e.exports=function(e){var t=this.__data__,r=n(t,e);return!(r<0)&&(r==t.length-1?t.pop():o.call(t,r,1),--this.size,!0)}},function(e,t,r){var n=r(189);e.exports=function(e){var t=this.__data__,r=n(t,e);return r<0?void 0:t[r][1]}},function(e,t,r){var n=r(189);e.exports=function(e){return n(this.__data__,e)>-1}},function(e,t,r){var n=r(189);e.exports=function(e,t){var r=this.__data__,o=n(r,e);return o<0?(++this.size,r.push([e,t])):r[o][1]=t,this}},function(e,t,r){var n=r(188);e.exports=function(){this.__data__=new n,this.size=0}},function(e,t){e.exports=function(e){var t=this.__data__,r=t.delete(e);return this.size=t.size,r}},function(e,t){e.exports=function(e){return this.__data__.get(e)}},function(e,t){e.exports=function(e){return this.__data__.has(e)}},function(e,t,r){var n=r(188),o=r(214),a=r(216);e.exports=function(e,t){var r=this.__data__;if(r instanceof n){var i=r.__data__;if(!o||i.length<199)return i.push([e,t]),this.size=++r.size,this;r=this.__data__=new a(i)}return r.set(e,t),this.size=r.size,this}},function(e,t,r){var n=r(215),o=r(402),a=r(163),i=r(252),u=/^\[object .+?Constructor\]$/,l=Function.prototype,c=Object.prototype,f=l.toString,s=c.hasOwnProperty,p=RegExp("^"+f.call(s).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");e.exports=function(e){return!(!a(e)||o(e))&&(n(e)?p:u).test(i(e))}},function(e,t,r){var n=r(190),o=Object.prototype,a=o.hasOwnProperty,i=o.toString,u=n?n.toStringTag:void 0;e.exports=function(e){var t=a.call(e,u),r=e[u];try{e[u]=void 0;var n=!0}catch(e){}var o=i.call(e);return n&&(t?e[u]=r:delete e[u]),o}},function(e,t){var r=Object.prototype.toString;e.exports=function(e){return r.call(e)}},function(e,t,r){var n,o=r(403),a=(n=/[^.]+$/.exec(o&&o.keys&&o.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"";e.exports=function(e){return!!a&&a in e}},function(e,t,r){var n=r(162)["__core-js_shared__"];e.exports=n},function(e,t){e.exports=function(e,t){return null==e?void 0:e[t]}},function(e,t,r){var n=r(406),o=r(188),a=r(214);e.exports=function(){this.size=0,this.__data__={hash:new n,map:new(a||o),string:new n}}},function(e,t,r){var n=r(407),o=r(408),a=r(409),i=r(410),u=r(411);function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}l.prototype.clear=n,l.prototype.delete=o,l.prototype.get=a,l.prototype.has=i,l.prototype.set=u,e.exports=l},function(e,t,r){var n=r(191);e.exports=function(){this.__data__=n?n(null):{},this.size=0}},function(e,t){e.exports=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}},function(e,t,r){var n=r(191),o=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;if(n){var r=t[e];return"__lodash_hash_undefined__"===r?void 0:r}return o.call(t,e)?t[e]:void 0}},function(e,t,r){var n=r(191),o=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;return n?void 0!==t[e]:o.call(t,e)}},function(e,t,r){var n=r(191);e.exports=function(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=n&&void 0===t?"__lodash_hash_undefined__":t,this}},function(e,t,r){var n=r(192);e.exports=function(e){var t=n(this,e).delete(e);return this.size-=t?1:0,t}},function(e,t){e.exports=function(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}},function(e,t,r){var n=r(192);e.exports=function(e){return n(this,e).get(e)}},function(e,t,r){var n=r(192);e.exports=function(e){return n(this,e).has(e)}},function(e,t,r){var n=r(192);e.exports=function(e,t){var r=n(this,e),o=r.size;return r.set(e,t),this.size+=r.size==o?0:1,this}},function(e,t){e.exports=function(e){return function(t,r,n){for(var o=-1,a=Object(t),i=n(t),u=i.length;u--;){var l=i[e?u:++o];if(!1===r(a[l],l,a))break}return t}}},function(e,t,r){var n=r(253),o=r(419),a=r(420),i=r(422),u=r(423),l=r(219),c=r(164),f=r(426),s=r(221),p=r(215),d=r(163),h=r(428),b=r(222),v=r(259),g=r(432);e.exports=function(e,t,r,x,y,m,w){var _=v(e,r),j=v(t,r),O=w.get(j);if(O)n(e,r,O);else{var E=m?m(_,j,r+"",e,t,w):void 0,C=void 0===E;if(C){var k=c(j),S=!k&&s(j),P=!k&&!S&&b(j);E=j,k||S||P?c(_)?E=_:f(_)?E=i(_):S?(C=!1,E=o(j,!0)):P?(C=!1,E=a(j,!0)):E=[]:h(j)||l(j)?(E=_,l(_)?E=g(_):d(_)&&!p(_)||(E=u(j))):C=!1}C&&(w.set(j,E),y(E,j,x,m,w),w.delete(j)),n(e,r,E)}}},function(e,t,r){(function(e){var n=r(162),o=t&&!t.nodeType&&t,a=o&&"object"==typeof e&&e&&!e.nodeType&&e,i=a&&a.exports===o?n.Buffer:void 0,u=i?i.allocUnsafe:void 0;e.exports=function(e,t){if(t)return e.slice();var r=e.length,n=u?u(r):new e.constructor(r);return e.copy(n),n}}).call(this,r(173)(e))},function(e,t,r){var n=r(421);e.exports=function(e,t){var r=t?n(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.length)}},function(e,t,r){var n=r(256);e.exports=function(e){var t=new e.constructor(e.byteLength);return new n(t).set(new n(e)),t}},function(e,t){e.exports=function(e,t){var r=-1,n=e.length;for(t||(t=Array(n));++r<n;)t[r]=e[r];return t}},function(e,t,r){var n=r(424),o=r(257),a=r(218);e.exports=function(e){return"function"!=typeof e.constructor||a(e)?{}:n(o(e))}},function(e,t,r){var n=r(163),o=Object.create,a=function(){function e(){}return function(t){if(!n(t))return{};if(o)return o(t);e.prototype=t;var r=new e;return e.prototype=void 0,r}}();e.exports=a},function(e,t,r){var n=r(175),o=r(171);e.exports=function(e){return o(e)&&"[object Arguments]"==n(e)}},function(e,t,r){var n=r(176),o=r(171);e.exports=function(e){return o(e)&&n(e)}},function(e,t){e.exports=function(){return!1}},function(e,t,r){var n=r(175),o=r(257),a=r(171),i=Function.prototype,u=Object.prototype,l=i.toString,c=u.hasOwnProperty,f=l.call(Object);e.exports=function(e){if(!a(e)||"[object Object]"!=n(e))return!1;var t=o(e);if(null===t)return!0;var r=c.call(t,"constructor")&&t.constructor;return"function"==typeof r&&r instanceof r&&l.call(r)==f}},function(e,t,r){var n=r(175),o=r(220),a=r(171),i={};i["[object Float32Array]"]=i["[object Float64Array]"]=i["[object Int8Array]"]=i["[object Int16Array]"]=i["[object Int32Array]"]=i["[object Uint8Array]"]=i["[object Uint8ClampedArray]"]=i["[object Uint16Array]"]=i["[object Uint32Array]"]=!0,i["[object Arguments]"]=i["[object Array]"]=i["[object ArrayBuffer]"]=i["[object Boolean]"]=i["[object DataView]"]=i["[object Date]"]=i["[object Error]"]=i["[object Function]"]=i["[object Map]"]=i["[object Number]"]=i["[object Object]"]=i["[object RegExp]"]=i["[object Set]"]=i["[object String]"]=i["[object WeakMap]"]=!1,e.exports=function(e){return a(e)&&o(e.length)&&!!i[n(e)]}},function(e,t){e.exports=function(e){return function(t){return e(t)}}},function(e,t,r){(function(e){var n=r(251),o=t&&!t.nodeType&&t,a=o&&"object"==typeof e&&e&&!e.nodeType&&e,i=a&&a.exports===o&&n.process,u=function(){try{var e=a&&a.require&&a.require("util").types;return e||i&&i.binding&&i.binding("util")}catch(e){}}();e.exports=u}).call(this,r(173)(e))},function(e,t,r){var n=r(433),o=r(260);e.exports=function(e){return n(e,o(e))}},function(e,t,r){var n=r(434),o=r(217);e.exports=function(e,t,r,a){var i=!r;r||(r={});for(var u=-1,l=t.length;++u<l;){var c=t[u],f=a?a(r[c],e[c],c,r,e):void 0;void 0===f&&(f=e[c]),i?o(r,c,f):n(r,c,f)}return r}},function(e,t,r){var n=r(217),o=r(179),a=Object.prototype.hasOwnProperty;e.exports=function(e,t,r){var i=e[t];a.call(e,t)&&o(i,r)&&(void 0!==r||t in e)||n(e,t,r)}},function(e,t){e.exports=function(e,t){for(var r=-1,n=Array(e);++r<e;)n[r]=t(r);return n}},function(e,t,r){var n=r(163),o=r(218),a=r(437),i=Object.prototype.hasOwnProperty;e.exports=function(e){if(!n(e))return a(e);var t=o(e),r=[];for(var u in e)("constructor"!=u||!t&&i.call(e,u))&&r.push(u);return r}},function(e,t){e.exports=function(e){var t=[];if(null!=e)for(var r in Object(e))t.push(r);return t}},function(e,t,r){var n=r(439),o=r(446);e.exports=function(e){return n((function(t,r){var n=-1,a=r.length,i=a>1?r[a-1]:void 0,u=a>2?r[2]:void 0;for(i=e.length>3&&"function"==typeof i?(a--,i):void 0,u&&o(r[0],r[1],u)&&(i=a<3?void 0:i,a=1),t=Object(t);++n<a;){var l=r[n];l&&e(t,l,n,i)}return t}))}},function(e,t,r){var n=r(193),o=r(440),a=r(442);e.exports=function(e,t){return a(o(e,t,n),e+"")}},function(e,t,r){var n=r(441),o=Math.max;e.exports=function(e,t,r){return t=o(void 0===t?e.length-1:t,0),function(){for(var a=arguments,i=-1,u=o(a.length-t,0),l=Array(u);++i<u;)l[i]=a[t+i];i=-1;for(var c=Array(t+1);++i<t;)c[i]=a[i];return c[t]=r(l),n(e,this,c)}}},function(e,t){e.exports=function(e,t,r){switch(r.length){case 0:return e.call(t);case 1:return e.call(t,r[0]);case 2:return e.call(t,r[0],r[1]);case 3:return e.call(t,r[0],r[1],r[2])}return e.apply(t,r)}},function(e,t,r){var n=r(443),o=r(445)(n);e.exports=o},function(e,t,r){var n=r(444),o=r(254),a=r(193),i=o?function(e,t){return o(e,"toString",{configurable:!0,enumerable:!1,value:n(t),writable:!0})}:a;e.exports=i},function(e,t){e.exports=function(e){return function(){return e}}},function(e,t){var r=Date.now;e.exports=function(e){var t=0,n=0;return function(){var o=r(),a=16-(o-n);if(n=o,a>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}},function(e,t,r){var n=r(179),o=r(176),a=r(223),i=r(163);e.exports=function(e,t,r){if(!i(r))return!1;var u=typeof t;return!!("number"==u?o(r)&&a(t,r.length):"string"==u&&t in r)&&n(r[t],e)}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Saturation=void 0;var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(
gitextract_v6o4ev20/ ├── .Rbuildignore ├── .circleci/ │ └── config.yml ├── .eslintignore ├── .eslintrc ├── .github/ │ ├── CODEOWNERS │ └── FUNDING.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── MANIFEST.in ├── NAMESPACE ├── R/ │ ├── daqBooleanSwitch.R │ ├── daqColorPicker.R │ ├── daqDarkThemeProvider.R │ ├── daqGauge.R │ ├── daqGraduatedBar.R │ ├── daqIndicator.R │ ├── daqJoystick.R │ ├── daqKnob.R │ ├── daqLEDDisplay.R │ ├── daqNumericInput.R │ ├── daqPowerButton.R │ ├── daqPrecisionInput.R │ ├── daqSlider.R │ ├── daqStopButton.R │ ├── daqTank.R │ ├── daqThermometer.R │ ├── daqToggleSwitch.R │ └── internal.R ├── README.md ├── babel.config.js ├── bin/ │ └── generateDocs ├── dash-info.yaml ├── dash_daq/ │ ├── BooleanSwitch.py │ ├── ColorPicker.py │ ├── DarkThemeProvider.py │ ├── Gauge.py │ ├── GraduatedBar.py │ ├── Indicator.py │ ├── Joystick.py │ ├── Knob.py │ ├── LEDDisplay.py │ ├── NumericInput.py │ ├── PowerButton.py │ ├── PrecisionInput.py │ ├── Slider.py │ ├── StopButton.py │ ├── Tank.py │ ├── Thermometer.py │ ├── ToggleSwitch.py │ ├── __init__.py │ ├── _imports_.py │ ├── async-colorpicker.js │ ├── dash_daq.dev.js │ └── package-info.json ├── demo/ │ ├── Demo.react.js │ ├── index.html │ └── index.js ├── demo.py ├── get_version_info.py ├── inst/ │ └── deps/ │ ├── async-colorpicker.js │ ├── bundle.js │ └── dash_daq.dev.js ├── man/ │ ├── daqBooleanSwitch.Rd │ ├── daqColorPicker.Rd │ ├── daqDarkThemeProvider.Rd │ ├── daqGauge.Rd │ ├── daqGraduatedBar.Rd │ ├── daqIndicator.Rd │ ├── daqJoystick.Rd │ ├── daqKnob.Rd │ ├── daqLEDDisplay.Rd │ ├── daqNumericInput.Rd │ ├── daqPowerButton.Rd │ ├── daqPrecisionInput.Rd │ ├── daqSlider.Rd │ ├── daqStopButton.Rd │ ├── daqTank.Rd │ ├── daqThermometer.Rd │ ├── daqToggleSwitch.Rd │ └── dashDaq-package.Rd ├── package.json ├── requirements.txt ├── setup.py ├── src/ │ ├── components/ │ │ ├── BooleanSwitch.react.js │ │ ├── ColorPicker.react.js │ │ ├── DarkThemeProvider.react.js │ │ ├── Gauge.react.js │ │ ├── GraduatedBar.react.js │ │ ├── Indicator.react.js │ │ ├── Joystick.react.js │ │ ├── Knob.react.js │ │ ├── LEDDisplay.react.js │ │ ├── NumericInput.react.js │ │ ├── PowerButton.react.js │ │ ├── PrecisionInput.react.js │ │ ├── Slider.react.js │ │ ├── StopButton.react.js │ │ ├── Tank.react.js │ │ ├── Thermometer.react.js │ │ ├── ToggleSwitch.react.js │ │ └── __tests__/ │ │ ├── .eslintrc │ │ ├── BooleanSwitch.test.js │ │ ├── ColorPicker.test.js │ │ ├── Gauge.test.js │ │ ├── GraduatedBar.test.js │ │ ├── Indicator.test.js │ │ ├── Knob.test.js │ │ ├── LEDDisplay.test.js │ │ ├── NumericInput.test.js │ │ ├── PowerButton.test.js │ │ ├── PrecisionInput.test.js │ │ ├── Slider.test.js │ │ ├── StopButton.test.js │ │ ├── Tank.test.js │ │ ├── Thermometer.test.js │ │ └── ToggleSwitch.test.js │ ├── fragments/ │ │ ├── ColorPicker.react.js │ │ └── Slider.react.js │ ├── helpers/ │ │ ├── GaugeSvg.react.js │ │ ├── KnobSvg.react.js │ │ ├── LEDDisplaySvg.react.js │ │ ├── NumericInput.js │ │ ├── PowerButtonSvg.react.js │ │ ├── classNameGenerator.js │ │ ├── colorRanges.js │ │ ├── logarithm.js │ │ ├── scale.js │ │ ├── shared/ │ │ │ └── TrackSvg.js │ │ └── util.js │ ├── index.js │ └── styled/ │ ├── ColorPicker.styled.js │ ├── CurrentValue.styled.js │ ├── Gauge.styled.js │ ├── GraduatedBar.styled.js │ ├── Knob.styled.js │ ├── LEDDisplay.styled.js │ ├── PowerButton.styled.js │ ├── PrecisionInput.styled.js │ ├── Slider.styled.js │ ├── StopButton.styled.js │ ├── Tank.styled.js │ ├── Thermometer.styled.js │ ├── ToggleSwitch.styled.js │ ├── constants.js │ └── shared/ │ ├── DarkGradient.js │ ├── Indicator.styled.js │ ├── Label.styled.js │ └── LabelContainer.styled.js └── webpack.config.js
Showing preview only (254K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (2932 symbols across 47 files)
FILE: dash_daq/BooleanSwitch.py
class BooleanSwitch (line 6) | class BooleanSwitch(Component):
method __init__ (line 72) | def __init__(self, id=Component.UNDEFINED, on=Component.UNDEFINED, col...
FILE: dash_daq/ColorPicker.py
class ColorPicker (line 6) | class ColorPicker(Component):
method __init__ (line 83) | def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, ...
FILE: dash_daq/DarkThemeProvider.py
class DarkThemeProvider (line 6) | class DarkThemeProvider(Component):
method __init__ (line 33) | def __init__(self, children=None, theme=Component.UNDEFINED, **kwargs):
FILE: dash_daq/Gauge.py
class Gauge (line 6) | class Gauge(Component):
method __init__ (line 128) | def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, ...
FILE: dash_daq/GraduatedBar.py
class GraduatedBar (line 6) | class GraduatedBar(Component):
method __init__ (line 82) | def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, ...
FILE: dash_daq/Indicator.py
class Indicator (line 6) | class Indicator(Component):
method __init__ (line 54) | def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, ...
FILE: dash_daq/Joystick.py
class Joystick (line 6) | class Joystick(Component):
method __init__ (line 48) | def __init__(self, id=Component.UNDEFINED, angle=Component.UNDEFINED, ...
FILE: dash_daq/Knob.py
class Knob (line 6) | class Knob(Component):
method __init__ (line 132) | def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, ...
FILE: dash_daq/LEDDisplay.py
class LEDDisplay (line 6) | class LEDDisplay(Component):
method __init__ (line 51) | def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, ...
FILE: dash_daq/NumericInput.py
class NumericInput (line 6) | class NumericInput(Component):
method __init__ (line 72) | def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, ...
FILE: dash_daq/PowerButton.py
class PowerButton (line 6) | class PowerButton(Component):
method __init__ (line 75) | def __init__(self, id=Component.UNDEFINED, on=Component.UNDEFINED, col...
FILE: dash_daq/PrecisionInput.py
class PrecisionInput (line 6) | class PrecisionInput(Component):
method __init__ (line 75) | def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, ...
FILE: dash_daq/Slider.py
class Slider (line 6) | class Slider(Component):
method __init__ (line 163) | def __init__(self, id=Component.UNDEFINED, style=Component.UNDEFINED, ...
FILE: dash_daq/StopButton.py
class StopButton (line 6) | class StopButton(Component):
method __init__ (line 52) | def __init__(self, children=None, id=Component.UNDEFINED, size=Compone...
FILE: dash_daq/Tank.py
class Tank (line 6) | class Tank(Component):
method __init__ (line 113) | def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, ...
FILE: dash_daq/Thermometer.py
class Thermometer (line 6) | class Thermometer(Component):
method __init__ (line 102) | def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, ...
FILE: dash_daq/ToggleSwitch.py
class ToggleSwitch (line 6) | class ToggleSwitch(Component):
method __init__ (line 78) | def __init__(self, id=Component.UNDEFINED, value=Component.UNDEFINED, ...
FILE: dash_daq/async-colorpicker.js
function f (line 1) | function f(){var e=_(["\n box-shadow: 0px 0px 8px 2px rgba(100,100,100,...
function s (line 1) | function s(){var e=_(["\n & .chrome-picker input {\n font-family: un...
function p (line 1) | function p(){var e=_(["\n .chrome-picker .flexbox-fix div:nth-child(2) ...
function d (line 1) | function d(){var e=_(["\n box-shadow: inset 0 0 1px 0 rgba(52, 52...
function h (line 1) | function h(){var e=_(["\n & .chrome-picker .hue-horizontal > div > div,...
function b (line 1) | function b(){var e=_(["\n border: 1px solid ",";\n "]);return b=...
function v (line 1) | function v(){var e=_(["\n border-radius: 3px !important;\n\n "," ",";\...
function g (line 1) | function g(){var e=_(["\n border: 1px solid "," !important;\n ...
function x (line 1) | function x(){var e=_(["\n & .chrome-picker .hue-horizontal > div > div,...
function y (line 1) | function y(){var e=_(["\n width: ","px !important;\n "]);ret...
function m (line 1) | function m(){var e=_(["\n opacity: ",";\n cursor: not-allowed ...
function w (line 1) | function w(){var e=_(["\n "," & .chrome-picker {\n font-family: unse...
function _ (line 1) | function _(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProp...
function F (line 1) | function F(e){return(F="function"==typeof Symbol&&"symbol"==typeof Symbo...
function R (line 1) | function R(){return(R=Object.assign||function(e){for(var t=1;t<arguments...
function T (line 1) | function T(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function z (line 1) | function z(e){return(z=Object.setPrototypeOf?Object.getPrototypeOf:funct...
function H (line 1) | function H(e){if(void 0===e)throw new ReferenceError("this hasn't been i...
function D (line 1) | function D(e,t){return(D=Object.setPrototypeOf||function(e,t){return e._...
function t (line 1) | function t(e){var r;return function(e,t){if(!(e instanceof t))throw new ...
function c (line 1) | function c(e){return e&&e.__esModule?e:{default:e}}
function s (line 1) | function s(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var...
function l (line 1) | function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var...
function c (line 1) | function c(e){var t=this.__data__=new n(e);this.size=t.size}
function l (line 1) | function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var...
function i (line 1) | function i(e){return e&&e.__esModule?e:{default:e}}
function c (line 1) | function c(e){var t=this.__data__=new n(e);this.size=t.size}
function l (line 1) | function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var...
function x (line 1) | function x(t){var r=l,n=c;return l=c=void 0,h=t,s=e.apply(n,r)}
function y (line 1) | function y(e){return h=e,p=setTimeout(w,t),b?x(e):s}
function m (line 1) | function m(e){var r=e-d;return void 0===d||r>=t||r<0||v&&e-h>=f}
function w (line 1) | function w(){var e=o();if(m(e))return _(e);p=setTimeout(w,function(e){va...
function _ (line 1) | function _(e){return p=void 0,g&&l?x(e):(l=c=void 0,s)}
function j (line 1) | function j(){var e=o(),r=m(e);if(l=arguments,c=this,d=e,r){if(void 0===p...
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function c (line 1) | function c(e){return e&&e.__esModule?e:{default:e}}
function r (line 1) | function r(e){!function(e,t){if(!(e instanceof t))throw new TypeError("C...
function x (line 1) | function x(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var...
function i (line 1) | function i(e){var t=-1,r=null==e?0:e.length;for(this.__data__=new n;++t<...
function o (line 1) | function o(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)t...
function i (line 1) | function i(e){return e&&e.__esModule?e:{default:e}}
function e (line 1) | function e(){}
function u (line 1) | function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function l (line 1) | function l(e,t){if(!e)throw new ReferenceError("this hasn't been initial...
function c (line 1) | function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("S...
function n (line 1) | function n(){var r,a,c;u(this,n);for(var f=arguments.length,s=Array(f),p...
function u (line 1) | function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function l (line 1) | function l(e,t){if(!e)throw new ReferenceError("this hasn't been initial...
function c (line 1) | function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("S...
function n (line 1) | function n(){var r,a,c;u(this,n);for(var f=arguments.length,s=Array(f),p...
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function f (line 1) | function f(e){return e&&e.__esModule?e:{default:e}}
function s (line 1) | function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function p (line 1) | function p(e,t){if(!e)throw new ReferenceError("this hasn't been initial...
function t (line 1) | function t(){var e,r,n;s(this,t);for(var o=arguments.length,a=Array(o),i...
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function t (line 1) | function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("C...
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function l (line 1) | function l(e){return e&&e.__esModule?e:{default:e}}
function c (line 1) | function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function f (line 1) | function f(e,t){if(!e)throw new ReferenceError("this hasn't been initial...
function t (line 1) | function t(){var e,r,n;c(this,t);for(var o=arguments.length,a=Array(o),i...
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var...
function e (line 1) | function e(){}
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function c (line 1) | function c(e){return e&&e.__esModule?e:{default:e}}
function t (line 1) | function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("C...
function l (line 1) | function l(e){return e&&e.__esModule?e:{default:e}}
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function l (line 1) | function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function c (line 1) | function c(e,t){if(!e)throw new ReferenceError("this hasn't been initial...
function f (line 1) | function f(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("S...
function n (line 1) | function n(){var e,t,r;l(this,n);for(var o=arguments.length,a=Array(o),i...
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function f (line 1) | function f(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function i (line 1) | function i(e){var t=-1,r=null==e?0:e.length;for(this.__data__=new n;++t<...
function o (line 1) | function o(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)t...
function s (line 1) | function s(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function s (line 1) | function s(e){return e&&e.__esModule?e:{default:e}}
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function c (line 1) | function c(e){return e&&e.__esModule?e:{default:e}}
function t (line 1) | function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("C...
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function p (line 1) | function p(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function i (line 1) | function i(e){return e&&e.__esModule?e:{default:e}}
function f (line 1) | function f(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function f (line 1) | function f(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){return e&&e.__esModule?e:{default:e}}
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function h (line 1) | function h(e){return e&&e.__esModule?e:{default:e}}
function t (line 1) | function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("C...
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function s (line 1) | function s(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){return e&&e.__esModule?e:{default:e}}
function f (line 1) | function f(e){return e&&e.__esModule?e:{default:e}}
function i (line 1) | function i(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function p (line 1) | function p(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){return e&&e.__esModule?e:{default:e}}
function f (line 1) | function f(e){return e&&e.__esModule?e:{default:e}}
FILE: dash_daq/dash_daq.dev.js
function webpackJsonpCallback (line 4) | function webpackJsonpCallback(data) {
function jsonpScriptSrc (line 46) | function jsonpScriptSrc(chunkId) {
function __webpack_require__ (line 51) | function __webpack_require__(moduleId) {
function memoize (line 293) | function memoize(fn) {
function returnFalse (line 388) | function returnFalse() {
function returnTrue (line 392) | function returnTrue() {
function EventBaseObject (line 396) | function EventBaseObject() {
function _interopRequireDefault (line 463) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function isNullOrUndefined (line 477) | function isNullOrUndefined(w) {
function retTrue (line 620) | function retTrue() {
function retFalse (line 624) | function retFalse() {
function DomEventObject (line 628) | function DomEventObject(nativeEvent) {
function _interopRequireDefault (line 747) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function addEventListener (line 753) | function addEventListener(target, eventType, callback, option) {
function _interopRequireDefault (line 929) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function defineProperties (line 932) | function defineProperties(target, props) {
function _interopRequireDefault (line 967) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 1002) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 1040) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 1093) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 1155) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 1183) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 1221) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function classNames (line 3397) | function classNames () {
function comparativeDistance (line 3620) | function comparativeDistance(x, y) {
function wrapRaw (line 4333) | function wrapRaw(fn) {
function wrapRounded (line 4354) | function wrapRounded(fn) {
function buildGraph (line 4428) | function buildGraph() {
function deriveBFS (line 4446) | function deriveBFS(fromModel) {
function link (line 4471) | function link(from, to) {
function wrapConversion (line 4477) | function wrapConversion(toModel, graph) {
function clamp (line 4913) | function clamp(num, min, max) {
function hexDouble (line 4917) | function hexDouble(num) {
function Color (line 4958) | function Color(obj, model) {
function roundTo (line 5353) | function roundTo(num, places) {
function roundToPlace (line 5357) | function roundToPlace(places) {
function getset (line 5363) | function getset(model, channel, modifier) {
function maxfn (line 5394) | function maxfn(max) {
function assertArray (line 5400) | function assertArray(val) {
function zeroArray (line 5404) | function zeroArray(arr, length) {
method dataURL (line 5546) | get dataURL() {
method blobURL (line 5553) | get blobURL() {
method svg (line 5559) | get svg() {
method png (line 5565) | get png() {
method r (line 5569) | get r() {
function cssWithMappingToString (line 5840) | function cssWithMappingToString(item, useSourceMap) {
function toComment (line 5861) | function toComment(sourceMap) {
function isUndefinedOrNull (line 5906) | function isUndefinedOrNull(value) {
function isBuffer (line 5910) | function isBuffer (x) {
function objEquiv (line 5919) | function objEquiv(a, b, opts) {
function supported (line 5989) | function supported(object) {
function unsupported (line 5994) | function unsupported(object){
function shim (line 6017) | function shim (obj) {
function _typeof (line 6037) | function _typeof(obj) {
function _defineProperty (line 6051) | function _defineProperty(obj, key, value) {
function ownKeys (line 6066) | function ownKeys(object, enumerableOnly) {
function _objectSpread2 (line 6080) | function _objectSpread2(target) {
function getVendorPrefix (line 6109) | function getVendorPrefix() {
function getTransitionName (line 6127) | function getTransitionName() {
function getTransformName (line 6131) | function getTransformName() {
function setTransitionProperty (line 6134) | function setTransitionProperty(node, value) {
function setTransform (line 6146) | function setTransform(node, value) {
function getTransitionProperty (line 6158) | function getTransitionProperty(node) {
function getTransformXY (line 6161) | function getTransformXY(node) {
function setTransformXY (line 6180) | function setTransformXY(node, xy) {
function forceRelayout (line 6213) | function forceRelayout(elem) {
function css (line 6221) | function css(el, name, v) {
function getClientPosition (line 6246) | function getClientPosition(elem) {
function getScroll (line 6285) | function getScroll(w, top) {
function getScrollLeft (line 6303) | function getScrollLeft(w) {
function getScrollTop (line 6307) | function getScrollTop(w) {
function getOffset (line 6311) | function getOffset(el) {
function isWindow (line 6325) | function isWindow(obj) {
function getDocument (line 6332) | function getDocument(node) {
function _getComputedStyle (line 6344) | function _getComputedStyle(elem, name, cs) {
function _getComputedStyleIE (line 6365) | function _getComputedStyleIE(elem, name) {
function getOffsetDirection (line 6400) | function getOffsetDirection(dir, option) {
function oppositeOffsetDirection (line 6408) | function oppositeOffsetDirection(dir) {
function setLeftTop (line 6421) | function setLeftTop(elem, offset, option) {
function setTransform$1 (line 6506) | function setTransform$1(elem, offset) {
function setOffset (line 6525) | function setOffset(elem, offset, option) {
function each (line 6547) | function each(arr, fn) {
function isBorderBoxFn (line 6553) | function isBorderBoxFn(elem) {
function swap (line 6563) | function swap(elem, options, callback) {
function getPBMWidth (line 6584) | function getPBMWidth(elem, props, which) {
function getWH (line 6656) | function getWH(elem, name, ex) {
function getWHIgnoreDisplay (line 6714) | function getWHIgnoreDisplay() {
function mix (line 6765) | function mix(to, from) {
function getOffsetParent (line 6844) | function getOffsetParent(element) {
function isAncestorFixed (line 6887) | function isAncestorFixed(element) {
function getVisibleRectForElement (line 6911) | function getVisibleRectForElement(element) {
function adjustForViewport (line 7001) | function adjustForViewport(elFuturePos, elRegion, visibleRect, overflow) {
function getRegion (line 7042) | function getRegion(node) {
function getAlignOffset (line 7069) | function getAlignOffset(region, align) {
function getElFuturePos (line 7095) | function getElFuturePos(elRegion, refNodeRegion, points, offset, targetO...
function isFailX (line 7110) | function isFailX(elFuturePos, elRegion, visibleRect) {
function isFailY (line 7114) | function isFailY(elFuturePos, elRegion, visibleRect) {
function isCompleteFailX (line 7118) | function isCompleteFailX(elFuturePos, elRegion, visibleRect) {
function isCompleteFailY (line 7122) | function isCompleteFailY(elFuturePos, elRegion, visibleRect) {
function flip (line 7126) | function flip(points, reg, map) {
function flipOffset (line 7136) | function flipOffset(offset, index) {
function convertOffset (line 7141) | function convertOffset(str, offsetLen) {
function normalizeOffset (line 7153) | function normalizeOffset(offset, el) {
function doAlign (line 7164) | function doAlign(el, tgtRegion, align, isTgtRegionVisible) {
function isOutOfVisibleRect (line 7297) | function isOutOfVisibleRect(target) {
function alignElement (line 7303) | function alignElement(el, refNode, align) {
function alignPoint (line 7318) | function alignPoint(el, tgtPoint, align) {
function getType (line 7415) | function getType(payload) {
function isUndefined (line 7424) | function isUndefined(payload) {
function isNull (line 7433) | function isNull(payload) {
function isPlainObject (line 7442) | function isPlainObject(payload) {
function isObject (line 7453) | function isObject(payload) {
function isAnyObject (line 7462) | function isAnyObject(payload) {
function isObjectLike (line 7474) | function isObjectLike(payload) {
function isFunction (line 7483) | function isFunction(payload) {
function isArray (line 7492) | function isArray(payload) {
function isString (line 7501) | function isString(payload) {
function isFullString (line 7510) | function isFullString(payload) {
function isEmptyString (line 7519) | function isEmptyString(payload) {
function isNumber (line 7530) | function isNumber(payload) {
function isBoolean (line 7539) | function isBoolean(payload) {
function isRegExp (line 7548) | function isRegExp(payload) {
function isDate (line 7557) | function isDate(payload) {
function isSymbol (line 7566) | function isSymbol(payload) {
function isPrimitive (line 7575) | function isPrimitive(payload) {
function isType (line 7594) | function isType(payload, type) {
function areInputsEqual (line 7620) | function areInputsEqual(newInputs, lastInputs) {
function memoizeOne (line 7632) | function memoizeOne(resultFn, isEqual) {
function assignProp (line 7674) | function assignProp(carry, key, newVal, originalObject) {
function mergeRecursively (line 7689) | function mergeRecursively(origin, newComer, extensions) {
function merge (line 7748) | function merge(origin) {
function concatArrays (line 7764) | function concatArrays(originVal, newVal) {
function Super (line 8001) | function Super () {}
function Nipple (line 8106) | function Nipple (collection, options) {
function Collection (line 8503) | function Collection (manager, options) {
function Manager (line 9033) | function Manager (options) {
function toObject (line 9283) | function toObject(val) {
function shouldUseNative (line 9291) | function shouldUseNative() {
function defaultSetTimout (line 9431) | function defaultSetTimout() {
function defaultClearTimeout (line 9434) | function defaultClearTimeout () {
function runTimeout (line 9457) | function runTimeout(fun) {
function runClearTimeout (line 9482) | function runClearTimeout(marker) {
function cleanUpNextTick (line 9514) | function cleanUpNextTick() {
function drainQueue (line 9529) | function drainQueue() {
function Item (line 9567) | function Item(fun, array) {
function noop (line 9581) | function noop() {}
function compose (line 11155) | function compose() {
function composeK (line 11211) | function composeK() {
function composeP (line 11271) | function composeP() {
function _Set (line 15108) | function _Set() {
function hasOrAdd (line 15143) | function hasOrAdd(item, shouldAdd, set) {
function _aperture (line 15291) | function _aperture(n, list) {
function _arity (line 15314) | function _arity(n, fn) {
function _arrayFromIterator (line 15378) | function _arrayFromIterator(iter) {
function _checkForMethod (line 15428) | function _checkForMethod(methodname, fn) {
function _clone (line 15466) | function _clone(value, refFrom, refTo, deep) {
function _cloneRegExp (line 15509) | function _cloneRegExp(pattern) {
function _complement (line 15525) | function _complement(f) {
function _concat (line 15554) | function _concat(set1, set2) {
function _contains (line 15590) | function _contains(a, list) {
function _containsWith (line 15606) | function _containsWith(pred, x, list) {
function _createPartialApplicator (line 15636) | function _createPartialApplicator(concat) {
function _curry1 (line 15667) | function _curry1(fn) {
function _curry2 (line 15702) | function _curry2(fn) {
function _curry3 (line 15748) | function _curry3(fn) {
function _curryN (line 15810) | function _curryN(length, received, fn) {
function _dispatchable (line 15865) | function _dispatchable(methodNames, xf, fn) {
function dropLast (line 15904) | function dropLast(n, xs) {
function dropLastWhile (line 15923) | function dropLastWhile(pred, xs) {
function _uniqContentEquals (line 15969) | function _uniqContentEquals(aIterator, bIterator, stackA, stackB) {
function _equals (line 15983) | function _equals(a, b, stackA, stackB) {
function _filter (line 16112) | function _filter(fn, list) {
function _forceReduced (line 16186) | function _forceReduced(x) {
function _functionName (line 16205) | function _functionName(f) {
function _has (line 16223) | function _has(prop, obj) {
function _identity (line 16239) | function _identity(x) {
function _indexOf (line 16258) | function _indexOf(list, a, idx) {
function _isFunction (line 16438) | function _isFunction(x) {
function _isNumber (line 16477) | function _isNumber(x) {
function _isObject (line 16493) | function _isObject(x) {
function _isPlaceholder (line 16509) | function _isPlaceholder(a) {
function _isRegExp (line 16525) | function _isRegExp(x) {
function _isString (line 16541) | function _isString(x) {
function _isTransformer (line 16557) | function _isTransformer(obj) {
function _makeFlat (line 16582) | function _makeFlat(recursive) {
function _map (line 16619) | function _map(fn, functor) {
function _objectAssign (line 16646) | function _objectAssign(target) {
function _of (line 16680) | function _of(x) {
function _pipe (line 16696) | function _pipe(f, g) {
function _pipeP (line 16714) | function _pipeP(f, g) {
function _quote (line 16735) | function _quote(s) {
function _arrayReduce (line 16761) | function _arrayReduce(xf, acc, list) {
function _iterableReduce (line 16775) | function _iterableReduce(xf, acc, iter) {
function _methodReduce (line 16788) | function _methodReduce(xf, acc, obj, methodName) {
function _reduce (line 16794) | function _reduce(fn, acc, list) {
function _reduced (line 16829) | function _reduced(x) {
function _stepCat (line 16882) | function _stepCat(obj) {
function _toString (line 16949) | function _toString(x, seen) {
function XAll (line 17012) | function XAll(f, xf) {
function XAny (line 17059) | function XAny(f, xf) {
function XAperture (line 17106) | function XAperture(n, xf) {
function XDrop (line 17181) | function XDrop(n, xf) {
function XDropLast (line 17220) | function XDropLast(n, xf) {
function XDropLastWhile (line 17274) | function XDropLastWhile(fn, xf) {
function XDropRepeatsWith (line 17322) | function XDropRepeatsWith(pred, xf) {
function XDropWhile (line 17367) | function XDropWhile(f, xf) {
function XFilter (line 17428) | function XFilter(f, xf) {
function XFind (line 17465) | function XFind(f, xf) {
function XFindIndex (line 17512) | function XFindIndex(f, xf) {
function XFindLast (line 17559) | function XFindLast(f, xf) {
function XFindLastIndex (line 17599) | function XFindLastIndex(f, xf) {
function XMap (line 17642) | function XMap(f, xf) {
function XReduceBy (line 17679) | function XReduceBy(valueFn, valueAcc, keyFn, xf) {
function XTake (line 17735) | function XTake(n, xf) {
function XTakeWhile (line 17775) | function XTakeWhile(f, xf) {
function XTap (line 17810) | function XTap(f, xf) {
function XWrap (line 17842) | function XWrap(fn) {
function _xwrap (line 17858) | function _xwrap(fn) {
function pipe (line 21329) | function pipe() {
function pipeK (line 21387) | function pipeK() {
function pipeP (line 21433) | function pipeP() {
function _slicedToArray (line 25279) | function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterab...
function _nonIterableRest (line 25281) | function _nonIterableRest() { throw new TypeError("Invalid attempt to de...
function _iterableToArrayLimit (line 25283) | function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object...
function _arrayWithHoles (line 25285) | function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function _typeof (line 25287) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function getElement (line 25300) | function getElement(func) {
function getPoint (line 25305) | function getPoint(point) {
function cancelTrigger (line 25466) | function cancelTrigger() {
function trigger (line 25470) | function trigger(force) {
function _slicedToArray (line 25529) | function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterab...
function _nonIterableRest (line 25531) | function _nonIterableRest() { throw new TypeError("Invalid attempt to de...
function _iterableToArrayLimit (line 25533) | function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object...
function _arrayWithHoles (line 25535) | function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function isSamePoint (line 25539) | function isSamePoint(prev, next) {
function restoreFocus (line 25553) | function restoreFocus(activeElement, container) {
function monitorResize (line 25559) | function monitorResize(element, callback) {
function genCSSMotion (line 25678) | function genCSSMotion(config) {
function makePrefixMap (line 25997) | function makePrefixMap(styleProp, eventName) {
function getVendorPrefixes (line 26009) | function getVendorPrefixes(domSupport, win) {
function getVendorPrefixedEventName (line 26038) | function getVendorPrefixedEventName(eventName) {
function getTransitionName (line 26064) | function getTransitionName(transitionName, transitionType) {
function Handle (line 26157) | function Handle() {
function Range (line 26379) | function Range(props) {
function Slider (line 26927) | function Slider(props) {
function noop (line 27467) | function noop() {}
function createSlider (line 27469) | function createSlider(Component) {
function createSliderWithTooltip (line 27907) | function createSliderWithTooltip(Component) {
function isEventFromHandle (line 28071) | function isEventFromHandle(e, handles) {
function isValueOutOfRange (line 28081) | function isValueOutOfRange(value, _ref) {
function isNotTouchEvent (line 28088) | function isNotTouchEvent(e) {
function getClosestPoint (line 28092) | function getClosestPoint(val, _ref2) {
function getPrecision (line 28111) | function getPrecision(step) {
function getMousePosition (line 28120) | function getMousePosition(vertical, e) {
function getTouchPosition (line 28124) | function getTouchPosition(vertical, e) {
function getHandleCenterPosition (line 28128) | function getHandleCenterPosition(vertical, handle) {
function ensureValueInRange (line 28133) | function ensureValueInRange(val, _ref3) {
function ensureValuePrecision (line 28146) | function ensureValuePrecision(val, props) {
function pauseEvent (line 28153) | function pauseEvent(e) {
function calculateNextValue (line 28158) | function calculateNextValue(func, value, props) {
function getKeyboardValueMutator (line 28179) | function getKeyboardValueMutator(e, vertical, reverse) {
function ownKeys (line 28262) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 28264) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 28266) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _objectWithoutProperties (line 28268) | function _objectWithoutProperties(source, excluded) { if (source == null...
function _objectWithoutPropertiesLoose (line 28270) | function _objectWithoutPropertiesLoose(source, excluded) { if (source ==...
function _typeof (line 28484) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _objectWithoutProperties (line 28486) | function _objectWithoutProperties(source, excluded) { if (source == null...
function _objectWithoutPropertiesLoose (line 28488) | function _objectWithoutPropertiesLoose(source, excluded) { if (source ==...
function ownKeys (line 28490) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 28492) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 28494) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _classCallCheck (line 28496) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 28498) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 28500) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 28502) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _assertThisInitialized (line 28504) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _getPrototypeOf (line 28506) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _inherits (line 28508) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 28510) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function supportMotion (line 28523) | function supportMotion(motion) {
function Popup (line 28532) | function Popup() {
function _typeof (line 28982) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function ownKeys (line 28984) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 28986) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 28988) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _classCallCheck (line 28990) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 28992) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 28994) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 28996) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _getPrototypeOf (line 28998) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _assertThisInitialized (line 29000) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _inherits (line 29002) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 29004) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function noop (line 29018) | function noop() {}
function returnEmptyString (line 29020) | function returnEmptyString() {
function returnDocument (line 29024) | function returnDocument() {
function generateTrigger (line 29033) | function generateTrigger(PortalComponent) {
function ownKeys (line 29741) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 29743) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 29745) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function isPointsEq (line 29747) | function isPointsEq(a1, a2, isAlignPoint) {
function getAlignFromPlacement (line 29755) | function getAlignFromPlacement(builtinPlacements, placementStr, align) {
function getAlignPopupClassName (line 29759) | function getAlignPopupClassName(builtinPlacements, prefixCls, align, isA...
function getMotion (line 29786) | function getMotion(_ref) {
function addEventListenerWrap (line 29829) | function addEventListenerWrap(target, eventType, cb, option) {
function contains (line 29849) | function contains(root, n) {
function findDOMNode (line 29882) | function findDOMNode(node) {
function _typeof (line 30543) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _classCallCheck (line 30545) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 30547) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 30549) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 30551) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _assertThisInitialized (line 30553) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _getPrototypeOf (line 30555) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _inherits (line 30557) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 30559) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function Portal (line 30570) | function Portal() {
function _typeof (line 30643) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function fillRef (line 30645) | function fillRef(ref, node) {
function composeRef (line 30656) | function composeRef() {
function supportRef (line 30667) | function supportRef(nodeOrComponent) {
function isValidElementType (line 30729) | function isValidElementType(type) {
function typeOf (line 30788) | function typeOf(object) {
function isAsyncMode (line 30843) | function isAsyncMode(object) {
function isConcurrentMode (line 30852) | function isConcurrentMode(object) {
function isContextConsumer (line 30855) | function isContextConsumer(object) {
function isContextProvider (line 30858) | function isContextProvider(object) {
function isElement (line 30861) | function isElement(object) {
function isForwardRef (line 30864) | function isForwardRef(object) {
function isFragment (line 30867) | function isFragment(object) {
function isLazy (line 30870) | function isLazy(object) {
function isMemo (line 30873) | function isMemo(object) {
function isPortal (line 30876) | function isPortal(object) {
function isProfiler (line 30879) | function isProfiler(object) {
function isStrictMode (line 30882) | function isStrictMode(object) {
function isSuspense (line 30885) | function isSuspense(object) {
function componentWillMount (line 30957) | function componentWillMount() {
function componentWillReceiveProps (line 30965) | function componentWillReceiveProps(nextProps) {
function componentWillUpdate (line 30976) | function componentWillUpdate(nextProps, nextState) {
function polyfill (line 30999) | function polyfill(Component) {
function __webpack_require__ (line 31125) | function __webpack_require__(moduleId) {
function defineProperties (line 31170) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 31180) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _objectWithoutProperties (line 31182) | function _objectWithoutProperties(obj, keys) { var target = {}; for (var...
function _classCallCheck (line 31184) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 31186) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 31188) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function addClass (line 31196) | function addClass(element, className) {
function removeClass (line 31205) | function removeClass(element, className) {
function access (line 31215) | function access(object, prop, defaultValue) {
function NumericInput (line 31230) | function NumericInput() {
function getIndex (line 32140) | function getIndex(arr, key) {
function class_1 (line 32152) | function class_1() {
function throttle (line 32274) | function throttle (callback, delay) {
function ResizeObserverController (line 32345) | function ResizeObserverController() {
function toFloat (line 32578) | function toFloat(value) {
function getBordersSize (line 32588) | function getBordersSize(styles) {
function getPaddings (line 32604) | function getPaddings(styles) {
function getSVGContentRect (line 32621) | function getSVGContentRect(target) {
function getHTMLElementContentRect (line 32631) | function getHTMLElementContentRect(target) {
function isDocumentElement (line 32720) | function isDocumentElement(target) {
function getContentRect (line 32729) | function getContentRect(target) {
function createReadOnlyRect (line 32745) | function createReadOnlyRect(_a) {
function createRectInit (line 32770) | function createRectInit(x, y, width, height) {
function ResizeObservation (line 32784) | function ResizeObservation(target) {
function ResizeObserverEntry (line 32839) | function ResizeObserverEntry(target, rectInit) {
function ResizeObserverSPI (line 32863) | function ResizeObserverSPI(callback, controller, callbackCtx) {
function ResizeObserver (line 33016) | function ResizeObserver(callback) {
function getIndexByIdentifier (line 33205) | function getIndexByIdentifier(identifier) {
function modulesToDom (line 33218) | function modulesToDom(list, options) {
function insertStyleElement (line 33252) | function insertStyleElement(options) {
function removeStyleElement (line 33283) | function removeStyleElement(style) {
function applyToSingletonTag (line 33302) | function applyToSingletonTag(style, index, remove, obj) {
function applyToTag (line 33325) | function applyToTag(style, options, obj) {
function addStyle (line 33357) | function addStyle(obj, options) {
function defineProperties (line 33504) | function defineProperties(target, props) {
function isFunction (line 33581) | function isFunction(test) {
function getComponentName (line 33587) | function getComponentName(target) {
function isStatelessFunction (line 33592) | function isStatelessFunction(test) {
function isStyledComponent (line 33597) | function isStyledComponent(target) {
function format (line 33641) | function format() {
function StyledComponentsError (line 33664) | function StyledComponentsError(code) {
function stringifyRules (line 33784) | function stringifyRules(rules, selector, prefix) {
function StyleSheet (line 34336) | function StyleSheet() {
function Keyframes (line 34636) | function Keyframes(name, rules) {
function hyphenateStyleName (line 34690) | function hyphenateStyleName(string) {
function addUnitIfNeeded (line 34697) | function addUnitIfNeeded(name, value) {
function flatten (line 34743) | function flatten(chunk, executionContext, styleSheet) {
function css (line 34792) | function css(styles) {
function constructWithOptions (line 34808) | function constructWithOptions(componentConstructor, tag) {
function murmurhash (line 34838) | function murmurhash(c) {
function generateAlphabeticName (line 34868) | function generateAlphabeticName(code) {
function hasFunctionObjectKey (line 34882) | function hasFunctionObjectKey(obj) {
function isStaticRules (line 34893) | function isStaticRules(rules, attrs) {
function ComponentStyle (line 34927) | function ComponentStyle(rules, attrs, componentId) {
function escape (line 35018) | function escape(str) {
function isTag (line 35029) | function isTag(target) {
function generateDisplayName (line 35035) | function generateDisplayName(target) {
function hoistNonReactStatics (line 35079) | function hoistNonReactStatics(targetComponent, sourceComponent, blacklis...
function isDerivedReactComponent (line 35130) | function isDerivedReactComponent(fn) {
function ThemeProvider (line 35160) | function ThemeProvider(props) {
function ServerStyleSheet (line 35226) | function ServerStyleSheet() {
function StyleSheetManager (line 35339) | function StyleSheetManager(props) {
function generateId (line 35388) | function generateId(_ComponentStyle, _displayName, parentComponentId) {
function StyledComponent (line 35408) | function StyledComponent() {
function createStyledComponent (line 35595) | function createStyledComponent(target, options, rules) {
function GlobalStyle (line 35729) | function GlobalStyle(rules, componentId) {
function createGlobalStyle (line 35774) | function createGlobalStyle(strings) {
function keyframes (line 35888) | function keyframes(strings) {
function toSheet (line 35991) | function toSheet (block) {
function He (line 36038) | function He(e,a,s,t,i){for(var f,n,o=0,h=0,u=0,d=0,g=0,A=0,C=0,w=0,m=0,$...
function Ie (line 36038) | function Ie(e,a,r){var c=a.trim().split(o),s=c,t=c.length,i=e.length;swi...
function Je (line 36038) | function Je(e,a,r,c){var s=a,t=s.charCodeAt(0);if(t<33)t=(s=s.trim()).ch...
function Ke (line 36038) | function Ke(e,a,r,c){var l,o=0,h=e+";",u=2*a+3*r+4*c;if(944===u)return f...
function Le (line 36038) | function Le(e,a){var r=e.indexOf(1===a?":":"{"),c=e.substring(0,3!==a?r:...
function Me (line 36038) | function Me(e,a){var r=Ke(a,a.charCodeAt(0),a.charCodeAt(1),a.charCodeAt...
function Pe (line 36038) | function Pe(e,a,r,c,s,t,i,f,n,l){for(var o,h=0,u=a;h<ye;++h)switch(o=$e[...
function Qe (line 36038) | function Qe(e,a,r,c){for(var s=a+1;s<r;++s)switch(c.charCodeAt(s)){case ...
function Re (line 36038) | function Re(e){for(var a in e){var r=e[a];switch(a){case"keyframe":Be=0|...
function Te (line 36038) | function Te(a,r){if(void 0!==this&&this.constructor===Te)return e(a);var...
function tinycolor (line 36064) | function tinycolor (color, opts) {
function inputToRGB (line 36354) | function inputToRGB(color) {
function rgbToRgb (line 36418) | function rgbToRgb(r, g, b){
function rgbToHsl (line 36430) | function rgbToHsl(r, g, b) {
function hslToRgb (line 36461) | function hslToRgb(h, s, l) {
function rgbToHsv (line 36495) | function rgbToHsv(r, g, b) {
function hsvToRgb (line 36525) | function hsvToRgb(h, s, v) {
function rgbToHex (line 36548) | function rgbToHex(r, g, b, allow3Char) {
function rgbaToHex (line 36568) | function rgbaToHex(r, g, b, a, allow4Char) {
function rgbaToArgbHex (line 36588) | function rgbaToArgbHex(r, g, b, a) {
function desaturate (line 36621) | function desaturate(color, amount) {
function saturate (line 36629) | function saturate(color, amount) {
function greyscale (line 36637) | function greyscale(color) {
function lighten (line 36641) | function lighten (color, amount) {
function brighten (line 36649) | function brighten(color, amount) {
function darken (line 36658) | function darken (color, amount) {
function spin (line 36668) | function spin(color, amount) {
function complement (line 36680) | function complement(color) {
function triad (line 36686) | function triad(color) {
function tetrad (line 36696) | function tetrad(color) {
function splitcomplement (line 36707) | function splitcomplement(color) {
function analogous (line 36717) | function analogous(color, results, slices) {
function monochromatic (line 36732) | function monochromatic(color, results) {
function flip (line 37014) | function flip(o) {
function boundAlpha (line 37025) | function boundAlpha(a) {
function bound01 (line 37036) | function bound01(n, max) {
function clamp01 (line 37057) | function clamp01(val) {
function parseIntFromHex (line 37062) | function parseIntFromHex(val) {
function isOnePointZero (line 37068) | function isOnePointZero(n) {
function isPercentage (line 37073) | function isPercentage(n) {
function pad2 (line 37078) | function pad2(c) {
function convertToPercentage (line 37083) | function convertToPercentage(n) {
function convertDecimalToHex (line 37092) | function convertDecimalToHex(d) {
function convertHexToDecimal (line 37096) | function convertHexToDecimal(h) {
function isValidCSSUnit (line 37135) | function isValidCSSUnit(color) {
function stringInputToObject (line 37142) | function stringInputToObject(color) {
function validateWCAG2Parms (line 37215) | function validateWCAG2Parms(parms) {
function stepize (line 37285) | function stepize(start, end, steps) {
function interpolate (line 37305) | function interpolate(step, start, i, max) {
function interpolateRgb (line 37325) | function interpolateRgb(stop1, stop2, steps) {
function interpolateHsv (line 37348) | function interpolateHsv(stop1, stop2, steps, trigonometric) {
function computeSubsteps (line 37381) | function computeSubsteps(stops, steps) {
function computeAt (line 37430) | function computeAt(stops, pos, method, max) {
function _typeof (line 37784) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _extends (line 37786) | function _extends() { _extends = Object.assign || function (target) { fo...
function _classCallCheck (line 37788) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 37790) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 37792) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 37794) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _getPrototypeOf (line 37796) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _assertThisInitialized (line 37798) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _inherits (line 37800) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 37802) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function BooleanSwitch (line 37820) | function BooleanSwitch(props) {
function _typeof (line 38006) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _classCallCheck (line 38008) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 38010) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 38012) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 38014) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _assertThisInitialized (line 38016) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _getPrototypeOf (line 38018) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _inherits (line 38020) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 38022) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function ColorPicker (line 38039) | function ColorPicker() {
function DarkThemeProvider (line 38198) | function DarkThemeProvider(props) {
function _extends (line 38266) | function _extends() { _extends = Object.assign || function (target) { fo...
function ownKeys (line 38268) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 38270) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 38272) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _extends (line 38593) | function _extends() { _extends = Object.assign || function (target) { fo...
function ownKeys (line 38595) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 38597) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 38599) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _slicedToArray (line 38601) | function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterab...
function _nonIterableRest (line 38603) | function _nonIterableRest() { throw new TypeError("Invalid attempt to de...
function _iterableToArrayLimit (line 38605) | function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object...
function _arrayWithHoles (line 38607) | function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function _typeof (line 38992) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _extends (line 38994) | function _extends() { _extends = Object.assign || function (target) { fo...
function _classCallCheck (line 38996) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 38998) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 39000) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 39002) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _assertThisInitialized (line 39004) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _getPrototypeOf (line 39006) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _inherits (line 39008) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 39010) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function Joystick (line 39028) | function Joystick(props) {
function _typeof (line 39214) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _extends (line 39216) | function _extends() { _extends = Object.assign || function (target) { fo...
function _classCallCheck (line 39218) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 39220) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 39222) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 39224) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _getPrototypeOf (line 39226) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _assertThisInitialized (line 39228) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _inherits (line 39230) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 39232) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function Knob (line 39282) | function Knob(props) {
function extractDigits (line 39750) | function extractDigits(_ref, elementName) {
function addLeadingZeroIfNeeded (line 39781) | function addLeadingZeroIfNeeded(digits) {
function _typeof (line 39888) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _extends (line 39890) | function _extends() { _extends = Object.assign || function (target) { fo...
function _classCallCheck (line 39892) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 39894) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 39896) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 39898) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _getPrototypeOf (line 39900) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _assertThisInitialized (line 39902) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _inherits (line 39904) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 39906) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function NumericInput (line 39925) | function NumericInput(props) {
function _typeof (line 40162) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _extends (line 40164) | function _extends() { _extends = Object.assign || function (target) { fo...
function _classCallCheck (line 40166) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 40168) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 40170) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 40172) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _getPrototypeOf (line 40174) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _assertThisInitialized (line 40176) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _inherits (line 40178) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 40180) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function PowerButton (line 40201) | function PowerButton(props) {
function _slicedToArray (line 40415) | function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterab...
function _nonIterableRest (line 40417) | function _nonIterableRest() { throw new TypeError("Invalid attempt to de...
function _iterableToArrayLimit (line 40419) | function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object...
function _arrayWithHoles (line 40421) | function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function _typeof (line 40423) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _extends (line 40425) | function _extends() { _extends = Object.assign || function (target) { fo...
function _classCallCheck (line 40427) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 40429) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 40431) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 40433) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _getPrototypeOf (line 40435) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _assertThisInitialized (line 40437) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _inherits (line 40439) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 40441) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function PrecisionInput (line 40467) | function PrecisionInput(props) {
function _typeof (line 40820) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _classCallCheck (line 40822) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 40824) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 40826) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 40828) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _assertThisInitialized (line 40830) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _getPrototypeOf (line 40832) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _inherits (line 40834) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 40836) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function Slider (line 40853) | function Slider() {
function _extends (line 41279) | function _extends() { _extends = Object.assign || function (target) { fo...
function _slicedToArray (line 41281) | function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterab...
function _nonIterableRest (line 41283) | function _nonIterableRest() { throw new TypeError("Invalid attempt to de...
function _iterableToArrayLimit (line 41285) | function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object...
function _arrayWithHoles (line 41287) | function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function ownKeys (line 41289) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 41291) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 41293) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _extends (line 41619) | function _extends() { _extends = Object.assign || function (target) { fo...
function _slicedToArray (line 41621) | function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterab...
function _nonIterableRest (line 41623) | function _nonIterableRest() { throw new TypeError("Invalid attempt to de...
function _iterableToArrayLimit (line 41625) | function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object...
function _arrayWithHoles (line 41627) | function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function ownKeys (line 41629) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 41631) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 41633) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _extends (line 41919) | function _extends() { _extends = Object.assign || function (target) { fo...
function _classCallCheck (line 41921) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 41923) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 41925) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 41927) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _getPrototypeOf (line 41929) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _assertThisInitialized (line 41931) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _inherits (line 41933) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 41935) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function _typeof (line 41937) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function getLabelProps (line 41948) | function getLabelProps(label) {
function ToggleSwitch (line 41972) | function ToggleSwitch(props) {
function _typeof (line 42235) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _slicedToArray (line 42237) | function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterab...
function _nonIterableRest (line 42239) | function _nonIterableRest() { throw new TypeError("Invalid attempt to de...
function _iterableToArrayLimit (line 42241) | function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object...
function _arrayWithHoles (line 42243) | function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function ownKeys (line 42245) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 42247) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 42249) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _classCallCheck (line 42251) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 42253) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 42255) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 42257) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _getPrototypeOf (line 42259) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _assertThisInitialized (line 42261) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _inherits (line 42263) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 42265) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function _extends (line 42267) | function _extends() { _extends = Object.assign || function (target) { fo...
function Slider (line 42342) | function Slider(props) {
function calcDimensions (line 42738) | function calcDimensions(_ref4) {
function calcDimensions (line 42976) | function calcDimensions(_ref3) {
function _slicedToArray (line 43318) | function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterab...
function _nonIterableRest (line 43320) | function _nonIterableRest() { throw new TypeError("Invalid attempt to de...
function _iterableToArrayLimit (line 43322) | function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object...
function _arrayWithHoles (line 43324) | function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function _toConsumableArray (line 43326) | function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _it...
function _nonIterableSpread (line 43328) | function _nonIterableSpread() { throw new TypeError("Invalid attempt to ...
function _iterableToArray (line 43330) | function _iterableToArray(iter) { if (Symbol.iterator in Object(iter) ||...
function _arrayWithoutHoles (line 43332) | function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) { for (var i ...
function ownKeys (line 43334) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 43336) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 43338) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _templateObject (line 43627) | function _templateObject() {
function _taggedTemplateLiteral (line 43637) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function compute (line 43643) | function compute(value) {
function generateLogFormatter (line 43649) | function generateLogFormatter(_ref) {
function genLogMarks (line 43661) | function genLogMarks(_ref2, isSVG) {
function formatValue (line 43694) | function formatValue(value, base) {
function ownKeys (line 43719) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 43721) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 43723) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function generateScale (line 43729) | function generateScale(input) {
function processInput (line 43757) | function processInput(_ref) {
function identityFunc (line 43781) | function identityFunc(x) {
function computeInterval (line 43785) | function computeInterval(min, max) {
function _slicedToArray (line 43817) | function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterab...
function _nonIterableRest (line 43819) | function _nonIterableRest() { throw new TypeError("Invalid attempt to de...
function _iterableToArrayLimit (line 43821) | function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object...
function _arrayWithHoles (line 43823) | function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function ownKeys (line 43825) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 43827) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 43829) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _slicedToArray (line 44104) | function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterab...
function _nonIterableRest (line 44106) | function _nonIterableRest() { throw new TypeError("Invalid attempt to de...
function _iterableToArrayLimit (line 44108) | function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object...
function _arrayWithHoles (line 44110) | function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function _templateObject6 (line 44274) | function _templateObject6() {
function _templateObject5 (line 44284) | function _templateObject5() {
function _templateObject4 (line 44294) | function _templateObject4() {
function _templateObject3 (line 44304) | function _templateObject3() {
function _templateObject2 (line 44314) | function _templateObject2() {
function _templateObject (line 44324) | function _templateObject() {
function _taggedTemplateLiteral (line 44334) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject2 (line 44380) | function _templateObject2() {
function _templateObject (line 44390) | function _templateObject() {
function _taggedTemplateLiteral (line 44400) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject13 (line 44448) | function _templateObject13() {
function _templateObject12 (line 44458) | function _templateObject12() {
function _templateObject11 (line 44468) | function _templateObject11() {
function _templateObject10 (line 44478) | function _templateObject10() {
function _templateObject9 (line 44488) | function _templateObject9() {
function _templateObject8 (line 44498) | function _templateObject8() {
function _templateObject7 (line 44508) | function _templateObject7() {
function _templateObject6 (line 44518) | function _templateObject6() {
function _templateObject5 (line 44528) | function _templateObject5() {
function _templateObject4 (line 44538) | function _templateObject4() {
function _templateObject3 (line 44548) | function _templateObject3() {
function _templateObject2 (line 44558) | function _templateObject2() {
function _templateObject (line 44568) | function _templateObject() {
function _taggedTemplateLiteral (line 44578) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject3 (line 44667) | function _templateObject3() {
function _templateObject2 (line 44677) | function _templateObject2() {
function _templateObject (line 44687) | function _templateObject() {
function _taggedTemplateLiteral (line 44697) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject5 (line 44739) | function _templateObject5() {
function _templateObject4 (line 44749) | function _templateObject4() {
function _templateObject3 (line 44759) | function _templateObject3() {
function _templateObject2 (line 44769) | function _templateObject2() {
function _templateObject (line 44779) | function _templateObject() {
function _taggedTemplateLiteral (line 44789) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject7 (line 44832) | function _templateObject7() {
function _templateObject6 (line 44842) | function _templateObject6() {
function _templateObject5 (line 44852) | function _templateObject5() {
function _templateObject4 (line 44862) | function _templateObject4() {
function _templateObject3 (line 44872) | function _templateObject3() {
function _templateObject2 (line 44882) | function _templateObject2() {
function _templateObject (line 44892) | function _templateObject() {
function _taggedTemplateLiteral (line 44902) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject9 (line 44958) | function _templateObject9() {
function _templateObject8 (line 44968) | function _templateObject8() {
function _templateObject7 (line 44978) | function _templateObject7() {
function _templateObject6 (line 44988) | function _templateObject6() {
function _templateObject5 (line 44998) | function _templateObject5() {
function _templateObject4 (line 45008) | function _templateObject4() {
function _templateObject3 (line 45018) | function _templateObject3() {
function _templateObject2 (line 45028) | function _templateObject2() {
function _templateObject (line 45038) | function _templateObject() {
function _taggedTemplateLiteral (line 45048) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject32 (line 45100) | function _templateObject32() {
function _templateObject31 (line 45110) | function _templateObject31() {
function _templateObject30 (line 45120) | function _templateObject30() {
function _templateObject29 (line 45130) | function _templateObject29() {
function _templateObject28 (line 45140) | function _templateObject28() {
function _templateObject27 (line 45150) | function _templateObject27() {
function _templateObject26 (line 45160) | function _templateObject26() {
function _templateObject25 (line 45170) | function _templateObject25() {
function _templateObject24 (line 45180) | function _templateObject24() {
function _templateObject23 (line 45190) | function _templateObject23() {
function _templateObject22 (line 45200) | function _templateObject22() {
function _templateObject21 (line 45210) | function _templateObject21() {
function _templateObject20 (line 45220) | function _templateObject20() {
function _templateObject19 (line 45230) | function _templateObject19() {
function _templateObject18 (line 45240) | function _templateObject18() {
function _templateObject17 (line 45250) | function _templateObject17() {
function _templateObject16 (line 45260) | function _templateObject16() {
function _templateObject15 (line 45270) | function _templateObject15() {
function _templateObject14 (line 45280) | function _templateObject14() {
function _templateObject13 (line 45290) | function _templateObject13() {
function _templateObject12 (line 45300) | function _templateObject12() {
function _templateObject11 (line 45310) | function _templateObject11() {
function _templateObject10 (line 45320) | function _templateObject10() {
function _templateObject9 (line 45330) | function _templateObject9() {
function _templateObject8 (line 45340) | function _templateObject8() {
function _templateObject7 (line 45350) | function _templateObject7() {
function _templateObject6 (line 45360) | function _templateObject6() {
function _templateObject5 (line 45370) | function _templateObject5() {
function _templateObject4 (line 45380) | function _templateObject4() {
function _templateObject3 (line 45390) | function _templateObject3() {
function _templateObject2 (line 45400) | function _templateObject2() {
function _templateObject (line 45410) | function _templateObject() {
function _taggedTemplateLiteral (line 45420) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject3 (line 45586) | function _templateObject3() {
function _templateObject2 (line 45596) | function _templateObject2() {
function _templateObject (line 45606) | function _templateObject() {
function _taggedTemplateLiteral (line 45616) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject13 (line 45667) | function _templateObject13() {
function _templateObject12 (line 45677) | function _templateObject12() {
function _templateObject11 (line 45687) | function _templateObject11() {
function _templateObject10 (line 45697) | function _templateObject10() {
function _templateObject9 (line 45707) | function _templateObject9() {
function _templateObject8 (line 45717) | function _templateObject8() {
function _templateObject7 (line 45727) | function _templateObject7() {
function _templateObject6 (line 45737) | function _templateObject6() {
function _templateObject5 (line 45747) | function _templateObject5() {
function _templateObject4 (line 45757) | function _templateObject4() {
function _templateObject3 (line 45767) | function _templateObject3() {
function _templateObject2 (line 45777) | function _templateObject2() {
function _templateObject (line 45787) | function _templateObject() {
function _taggedTemplateLiteral (line 45797) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject3 (line 45891) | function _templateObject3() {
function _templateObject2 (line 45901) | function _templateObject2() {
function _templateObject (line 45911) | function _templateObject() {
function _taggedTemplateLiteral (line 45921) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject20 (line 45959) | function _templateObject20() {
function _templateObject19 (line 45969) | function _templateObject19() {
function _templateObject18 (line 45979) | function _templateObject18() {
function _templateObject17 (line 45989) | function _templateObject17() {
function _templateObject16 (line 45999) | function _templateObject16() {
function _templateObject15 (line 46009) | function _templateObject15() {
function _templateObject14 (line 46019) | function _templateObject14() {
function _templateObject13 (line 46029) | function _templateObject13() {
function _templateObject12 (line 46039) | function _templateObject12() {
function _templateObject11 (line 46049) | function _templateObject11() {
function _templateObject10 (line 46059) | function _templateObject10() {
function _templateObject9 (line 46069) | function _templateObject9() {
function _templateObject8 (line 46079) | function _templateObject8() {
function _templateObject7 (line 46089) | function _templateObject7() {
function _templateObject6 (line 46099) | function _templateObject6() {
function _templateObject5 (line 46109) | function _templateObject5() {
function _templateObject4 (line 46119) | function _templateObject4() {
function _templateObject3 (line 46129) | function _templateObject3() {
function _templateObject2 (line 46139) | function _templateObject2() {
function _templateObject (line 46149) | function _templateObject() {
function _taggedTemplateLiteral (line 46159) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject4 (line 47283) | function _templateObject4() {
function _templateObject3 (line 47293) | function _templateObject3() {
function _templateObject2 (line 47303) | function _templateObject2() {
function _templateObject (line 47313) | function _templateObject() {
function _taggedTemplateLiteral (line 47323) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _templateObject4 (line 47378) | function _templateObject4() {
function _templateObject3 (line 47388) | function _templateObject3() {
function _templateObject2 (line 47398) | function _templateObject2() {
function _templateObject (line 47408) | function _templateObject() {
function _taggedTemplateLiteral (line 47418) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function _typeof (line 47443) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _templateObject (line 47445) | function _templateObject() {
function _taggedTemplateLiteral (line 47455) | function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = string...
function LabelContainer (line 47466) | function LabelContainer(props) {
FILE: demo.py
function warning (line 118) | def warning(x, y):
function display_page (line 424) | def display_page(pathname):
function update_LEDDisplay (line 433) | def update_LEDDisplay(value):
function update_gauge (line 439) | def update_gauge(value):
function update_gauge_color (line 444) | def update_gauge_color(value):
function update_tank_color (line 449) | def update_tank_color(value):
function update_graduatedBar_color (line 454) | def update_graduatedBar_color(value):
function update_thermometer_color (line 459) | def update_thermometer_color(value):
function update_tank (line 464) | def update_tank(value):
function update_thermometer (line 469) | def update_thermometer(value):
function update_graduated_bar (line 474) | def update_graduated_bar(value):
function update_boolean_indicator (line 479) | def update_boolean_indicator(on):
function update_boolean_indicator (line 487) | def update_boolean_indicator(value):
function update_indicator (line 496) | def update_indicator(_, indicatorState):
function update_thermometer (line 501) | def update_thermometer(on):
function update_LEDDisplay (line 510) | def update_LEDDisplay(value):
function dark_update_gauge (line 519) | def dark_update_gauge(value):
function dark_update_gauge_color (line 526) | def dark_update_gauge_color(value):
function dark_update_tank_color (line 533) | def dark_update_tank_color(value):
function dark_update_graduatedBar_color (line 541) | def dark_update_graduatedBar_color(value):
function dark_update_thermometer_color (line 549) | def dark_update_thermometer_color(value):
function dark_update_tank (line 554) | def dark_update_tank(value):
function dark_update_thermometer (line 561) | def dark_update_thermometer(value):
function dark_update_graduated_bar (line 569) | def dark_update_graduated_bar(value):
function dark_update_boolean_indicator (line 577) | def dark_update_boolean_indicator(on):
function dark_update_boolean_indicator (line 585) | def dark_update_boolean_indicator(value):
function dark_update_indicator (line 594) | def dark_update_indicator(_, indicatorState):
function dark_update_thermometer (line 602) | def dark_update_thermometer(on):
FILE: demo/Demo.react.js
class Demo (line 24) | class Demo extends Component {
method constructor (line 25) | constructor() {
method updateValue (line 48) | updateValue({ value }) {
method updateColor (line 52) | updateColor({ value }) {
method updatePower (line 56) | updatePower({ on }) {
method updateSlider (line 60) | updateSlider({ value }) {
method stopPressed (line 64) | stopPressed() {
method toggle (line 68) | toggle() {
method toggleDark (line 72) | toggleDark() {
method toggleVerticalSwitch (line 76) | toggleVerticalSwitch() {
method render (line 80) | render() {
FILE: inst/deps/async-colorpicker.js
function f (line 1) | function f(){var e=_(["\n box-shadow: 0px 0px 8px 2px rgba(100,100,100,...
function s (line 1) | function s(){var e=_(["\n & .chrome-picker input {\n font-family: un...
function p (line 1) | function p(){var e=_(["\n .chrome-picker .flexbox-fix div:nth-child(2) ...
function d (line 1) | function d(){var e=_(["\n box-shadow: inset 0 0 1px 0 rgba(52, 52...
function h (line 1) | function h(){var e=_(["\n & .chrome-picker .hue-horizontal > div > div,...
function b (line 1) | function b(){var e=_(["\n border: 1px solid ",";\n "]);return b=...
function v (line 1) | function v(){var e=_(["\n border-radius: 3px !important;\n\n "," ",";\...
function g (line 1) | function g(){var e=_(["\n border: 1px solid "," !important;\n ...
function x (line 1) | function x(){var e=_(["\n & .chrome-picker .hue-horizontal > div > div,...
function y (line 1) | function y(){var e=_(["\n width: ","px !important;\n "]);ret...
function m (line 1) | function m(){var e=_(["\n opacity: ",";\n cursor: not-allowed ...
function w (line 1) | function w(){var e=_(["\n "," & .chrome-picker {\n font-family: unse...
function _ (line 1) | function _(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProp...
function F (line 1) | function F(e){return(F="function"==typeof Symbol&&"symbol"==typeof Symbo...
function R (line 1) | function R(){return(R=Object.assign||function(e){for(var t=1;t<arguments...
function T (line 1) | function T(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function z (line 1) | function z(e){return(z=Object.setPrototypeOf?Object.getPrototypeOf:funct...
function H (line 1) | function H(e){if(void 0===e)throw new ReferenceError("this hasn't been i...
function D (line 1) | function D(e,t){return(D=Object.setPrototypeOf||function(e,t){return e._...
function t (line 1) | function t(e){var r;return function(e,t){if(!(e instanceof t))throw new ...
function c (line 1) | function c(e){return e&&e.__esModule?e:{default:e}}
function s (line 1) | function s(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var...
function l (line 1) | function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var...
function c (line 1) | function c(e){var t=this.__data__=new n(e);this.size=t.size}
function l (line 1) | function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var...
function i (line 1) | function i(e){return e&&e.__esModule?e:{default:e}}
function c (line 1) | function c(e){var t=this.__data__=new n(e);this.size=t.size}
function l (line 1) | function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var...
function x (line 1) | function x(t){var r=l,n=c;return l=c=void 0,h=t,s=e.apply(n,r)}
function y (line 1) | function y(e){return h=e,p=setTimeout(w,t),b?x(e):s}
function m (line 1) | function m(e){var r=e-d;return void 0===d||r>=t||r<0||v&&e-h>=f}
function w (line 1) | function w(){var e=o();if(m(e))return _(e);p=setTimeout(w,function(e){va...
function _ (line 1) | function _(e){return p=void 0,g&&l?x(e):(l=c=void 0,s)}
function j (line 1) | function j(){var e=o(),r=m(e);if(l=arguments,c=this,d=e,r){if(void 0===p...
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function c (line 1) | function c(e){return e&&e.__esModule?e:{default:e}}
function r (line 1) | function r(e){!function(e,t){if(!(e instanceof t))throw new TypeError("C...
function x (line 1) | function x(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var...
function i (line 1) | function i(e){var t=-1,r=null==e?0:e.length;for(this.__data__=new n;++t<...
function o (line 1) | function o(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)t...
function i (line 1) | function i(e){return e&&e.__esModule?e:{default:e}}
function e (line 1) | function e(){}
function u (line 1) | function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function l (line 1) | function l(e,t){if(!e)throw new ReferenceError("this hasn't been initial...
function c (line 1) | function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("S...
function n (line 1) | function n(){var r,a,c;u(this,n);for(var f=arguments.length,s=Array(f),p...
function u (line 1) | function u(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function l (line 1) | function l(e,t){if(!e)throw new ReferenceError("this hasn't been initial...
function c (line 1) | function c(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("S...
function n (line 1) | function n(){var r,a,c;u(this,n);for(var f=arguments.length,s=Array(f),p...
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function f (line 1) | function f(e){return e&&e.__esModule?e:{default:e}}
function s (line 1) | function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function p (line 1) | function p(e,t){if(!e)throw new ReferenceError("this hasn't been initial...
function t (line 1) | function t(){var e,r,n;s(this,t);for(var o=arguments.length,a=Array(o),i...
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function t (line 1) | function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("C...
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function l (line 1) | function l(e){return e&&e.__esModule?e:{default:e}}
function c (line 1) | function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function f (line 1) | function f(e,t){if(!e)throw new ReferenceError("this hasn't been initial...
function t (line 1) | function t(){var e,r,n;c(this,t);for(var o=arguments.length,a=Array(o),i...
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var...
function e (line 1) | function e(){}
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function c (line 1) | function c(e){return e&&e.__esModule?e:{default:e}}
function t (line 1) | function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("C...
function l (line 1) | function l(e){return e&&e.__esModule?e:{default:e}}
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function l (line 1) | function l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a ...
function c (line 1) | function c(e,t){if(!e)throw new ReferenceError("this hasn't been initial...
function f (line 1) | function f(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("S...
function n (line 1) | function n(){var e,t,r;l(this,n);for(var o=arguments.length,a=Array(o),i...
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function f (line 1) | function f(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function i (line 1) | function i(e){var t=-1,r=null==e?0:e.length;for(this.__data__=new n;++t<...
function o (line 1) | function o(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)t...
function s (line 1) | function s(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function s (line 1) | function s(e){return e&&e.__esModule?e:{default:e}}
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function c (line 1) | function c(e){return e&&e.__esModule?e:{default:e}}
function t (line 1) | function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("C...
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function p (line 1) | function p(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function i (line 1) | function i(e){return e&&e.__esModule?e:{default:e}}
function f (line 1) | function f(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function f (line 1) | function f(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){return e&&e.__esModule?e:{default:e}}
function e (line 1) | function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.en...
function h (line 1) | function h(e){return e&&e.__esModule?e:{default:e}}
function t (line 1) | function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("C...
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function s (line 1) | function s(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){return e&&e.__esModule?e:{default:e}}
function f (line 1) | function f(e){return e&&e.__esModule?e:{default:e}}
function i (line 1) | function i(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function a (line 1) | function a(e){return e&&e.__esModule?e:{default:e}}
function p (line 1) | function p(e){return e&&e.__esModule?e:{default:e}}
function u (line 1) | function u(e){return e&&e.__esModule?e:{default:e}}
function l (line 1) | function l(e){return e&&e.__esModule?e:{default:e}}
function f (line 1) | function f(e){return e&&e.__esModule?e:{default:e}}
FILE: inst/deps/bundle.js
function __webpack_require__ (line 7) | function __webpack_require__(moduleId) {
function _interopRequireDefault (line 210) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function defineProperties (line 227) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 251) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 253) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 255) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 257) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function BooleanSwitch (line 266) | function BooleanSwitch(props) {
function isValidElementType (line 485) | function isValidElementType(type) {
function typeOf (line 544) | function typeOf(object) {
function isAsyncMode (line 599) | function isAsyncMode(object) {
function isConcurrentMode (line 608) | function isConcurrentMode(object) {
function isContextConsumer (line 611) | function isContextConsumer(object) {
function isContextProvider (line 614) | function isContextProvider(object) {
function isElement (line 617) | function isElement(object) {
function isForwardRef (line 620) | function isForwardRef(object) {
function isFragment (line 623) | function isFragment(object) {
function isLazy (line 626) | function isLazy(object) {
function isMemo (line 629) | function isMemo(object) {
function isPortal (line 632) | function isPortal(object) {
function isProfiler (line 635) | function isProfiler(object) {
function isStrictMode (line 638) | function isStrictMode(object) {
function isSuspense (line 641) | function isSuspense(object) {
function emptyFunctionThatReturnsNull (line 717) | function emptyFunctionThatReturnsNull() {
function getIteratorFn (line 740) | function getIteratorFn(maybeIterable) {
function is (line 825) | function is(x, y) {
function PropTypeError (line 845) | function PropTypeError(message) {
function createChainableTypeChecker (line 852) | function createChainableTypeChecker(validate) {
function createPrimitiveTypeChecker (line 910) | function createPrimitiveTypeChecker(expectedType) {
function createAnyTypeChecker (line 927) | function createAnyTypeChecker() {
function createArrayOfTypeChecker (line 931) | function createArrayOfTypeChecker(typeChecker) {
function createElementTypeChecker (line 952) | function createElementTypeChecker() {
function createElementTypeTypeChecker (line 964) | function createElementTypeTypeChecker() {
function createInstanceTypeChecker (line 976) | function createInstanceTypeChecker(expectedClass) {
function createEnumTypeChecker (line 988) | function createEnumTypeChecker(expectedValues) {
function createObjectOfTypeChecker (line 1023) | function createObjectOfTypeChecker(typeChecker) {
function createUnionTypeChecker (line 1046) | function createUnionTypeChecker(arrayOfTypeCheckers) {
function createNodeChecker (line 1076) | function createNodeChecker() {
function createShapeTypeChecker (line 1086) | function createShapeTypeChecker(shapeTypes) {
function createStrictShapeTypeChecker (line 1108) | function createStrictShapeTypeChecker(shapeTypes) {
function isNode (line 1138) | function isNode(propValue) {
function isSymbol (line 1185) | function isSymbol(propType, propValue) {
function getPropType (line 1210) | function getPropType(propValue) {
function getPreciseType (line 1229) | function getPreciseType(propValue) {
function getPostfixForTypeWarning (line 1246) | function getPostfixForTypeWarning(value) {
function getClassName (line 1262) | function getClassName(propValue) {
function toObject (line 1296) | function toObject(val) {
function shouldUseNative (line 1304) | function shouldUseNative() {
function checkPropTypes (line 1445) | function checkPropTypes(typeSpecs, values, location, componentName, getS...
function _interopDefault (line 1519) | function _interopDefault (ex) { return (ex && (typeof ex === 'object') &...
function defineProperties (line 1543) | function defineProperties(target, props) {
function format (line 1638) | function format() {
function StyledComponentsError (line 1666) | function StyledComponentsError(code) {
function isStyledComponent (line 1799) | function isStyledComponent(target) /* : %checks */{
function consolidateStreamedStyles (line 1813) | function consolidateStreamedStyles() {
function StyleSheet (line 2462) | function StyleSheet() {
function StyleSheetManager (line 2767) | function StyleSheetManager() {
function ServerStyleSheet (line 2810) | function ServerStyleSheet() {
function escape (line 2945) | function escape(str) {
function getComponentName (line 2956) | function getComponentName(target) {
function isTag (line 2962) | function isTag(target) /* : %checks */{
function generateDisplayName (line 2968) | function generateDisplayName(target) {
function hasInInheritanceChain (line 3002) | function hasInInheritanceChain(child, parent) {
function publish (line 3028) | function publish(nextState) {
function subscribe (line 3043) | function subscribe(listener) {
function unsubscribe (line 3051) | function unsubscribe(unsubID) {
function ThemeProvider (line 3092) | function ThemeProvider() {
function BaseStyledComponent (line 3235) | function BaseStyledComponent() {
function StyledComponent (line 3419) | function StyledComponent() {
function murmurhash (line 3496) | function murmurhash(str) {
function ComponentStyle (line 3575) | function ComponentStyle(rules, attrs, componentId) {
function WithTheme (line 3732) | function WithTheme() {
function defaultSetTimout (line 3879) | function defaultSetTimout() {
function defaultClearTimeout (line 3882) | function defaultClearTimeout () {
function runTimeout (line 3905) | function runTimeout(fun) {
function runClearTimeout (line 3930) | function runClearTimeout(marker) {
function cleanUpNextTick (line 3962) | function cleanUpNextTick() {
function drainQueue (line 3977) | function drainQueue() {
function Item (line 4015) | function Item(fun, array) {
function noop (line 4029) | function noop() {}
function hyphenateStyleName (line 4111) | function hyphenateStyleName(string) {
function hyphenate (line 4149) | function hyphenate(string) {
function compile (line 4340) | function compile (parent, current, body, id, depth) {
function select (line 5091) | function select (parent, current, invert) {
function scope (line 5129) | function scope (parent, current, invert, level) {
function property (line 5190) | function property (input, first, second, third) {
function vendor (line 5426) | function vendor (content, context) {
function supports (line 5441) | function supports (match, group) {
function animation (line 5453) | function animation (input) {
function isolate (line 5529) | function isolate (current) {
function proxy (line 5632) | function proxy (context, content, selectors, parents, line, column, leng...
function delimited (line 5658) | function delimited (code, index, length, body) {
function match (line 5690) | function match (type, index, length, body) {
function minify (line 5708) | function minify (output) {
function use (line 5722) | function use (plugin) {
function set (line 5750) | function set (options) {
function stylis (line 5784) | function stylis (selector, input) {
function toSheet (line 5880) | function toSheet (block) {
function hoistNonReactStatics (line 5961) | function hoistNonReactStatics(targetComponent, sourceComponent, blacklis...
function defineProperties (line 6057) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 6097) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 6099) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 6101) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 6103) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function getLabelProps (line 6105) | function getLabelProps(label) {
function ToggleSwitch (line 6125) | function ToggleSwitch(props) {
function _interopRequireDefault (line 6364) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 6366) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function _interopRequireDefault (line 6456) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 6458) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function _interopRequireDefault (line 6584) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 6586) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function _interopRequireDefault (line 6624) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 6626) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function LabelContainer (line 6637) | function LabelContainer(props) {
function defineProperties (line 6685) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 6722) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 6724) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 6726) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 6728) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function ColorPicker (line 6752) | function ColorPicker(props) {
function _interopRequireDefault (line 7048) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 7082) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 7172) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 7220) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function isString (line 7278) | function isString(value) {
function baseGetTag (line 7311) | function baseGetTag(value) {
function getRawTag (line 7402) | function getRawTag(value) {
function objectToString (line 7449) | function objectToString(value) {
function isObjectLike (line 7522) | function isObjectLike(value) {
function forOwn (line 7567) | function forOwn(object, iteratee) {
function baseForOwn (line 7592) | function baseForOwn(object, iteratee) {
function createBaseFor (line 7638) | function createBaseFor(fromRight) {
function keys (line 7697) | function keys(object) {
function arrayLikeKeys (line 7732) | function arrayLikeKeys(value, inherited) {
function baseTimes (line 7778) | function baseTimes(n, iteratee) {
function baseIsArguments (line 7856) | function baseIsArguments(value) {
function stubFalse (line 7931) | function stubFalse() {
function isIndex (line 7959) | function isIndex(value, length) {
function baseIsTypedArray (line 8069) | function baseIsTypedArray(value) {
function isLength (line 8113) | function isLength(value) {
function baseUnary (line 8135) | function baseUnary(func) {
function baseKeys (line 8207) | function baseKeys(object) {
function isPrototype (line 8240) | function isPrototype(value) {
function overArg (line 8280) | function overArg(func, transform) {
function isArrayLike (line 8324) | function isArrayLike(value) {
function isFunction (line 8364) | function isFunction(value) {
function isObject (line 8409) | function isObject(value) {
function castFunction (line 8433) | function castFunction(value) {
function identity (line 8463) | function identity(value) {
function isPlainObject (line 8525) | function isPlainObject(value) {
function map (line 8610) | function map(collection, iteratee) {
function arrayMap (line 8634) | function arrayMap(array, iteratee) {
function baseIteratee (line 8668) | function baseIteratee(value) {
function baseMatches (line 8706) | function baseMatches(source) {
function baseIsMatch (line 8743) | function baseIsMatch(object, source, matchData, customizer) {
function Stack (line 8811) | function Stack(entries) {
function ListCache (line 8846) | function ListCache(entries) {
function listCacheClear (line 8881) | function listCacheClear() {
function listCacheDelete (line 8913) | function listCacheDelete(key) {
function assocIndexOf (line 8950) | function assocIndexOf(array, key) {
function eq (line 9002) | function eq(value, other) {
function listCacheGet (line 9027) | function listCacheGet(key) {
function listCacheHas (line 9055) | function listCacheHas(key) {
function listCacheSet (line 9081) | function listCacheSet(key, value) {
function stackClear (line 9113) | function stackClear() {
function stackDelete (line 9137) | function stackDelete(key) {
function stackGet (line 9164) | function stackGet(key) {
function stackHas (line 9187) | function stackHas(key) {
function stackSet (line 9218) | function stackSet(key, value) {
function getNative (line 9271) | function getNative(object, key) {
function baseIsNative (line 9324) | function baseIsNative(value) {
function isMasked (line 9357) | function isMasked(func) {
function toSource (line 9399) | function toSource(func) {
function getValue (line 9429) | function getValue(object, key) {
function MapCache (line 9456) | function MapCache(entries) {
function mapCacheClear (line 9495) | function mapCacheClear() {
function Hash (line 9527) | function Hash(entries) {
function hashClear (line 9564) | function hashClear() {
function hashDelete (line 9604) | function hashDelete(key) {
function hashGet (line 9640) | function hashGet(key) {
function hashHas (line 9676) | function hashHas(key) {
function hashSet (line 9706) | function hashSet(key, value) {
function mapCacheDelete (line 9734) | function mapCacheDelete(key) {
function getMapData (line 9760) | function getMapData(map, key) {
function isKeyable (line 9784) | function isKeyable(value) {
function mapCacheGet (line 9812) | function mapCacheGet(key) {
function mapCacheHas (line 9837) | function mapCacheHas(key) {
function mapCacheSet (line 9863) | function mapCacheSet(key, value) {
function baseIsEqual (line 9899) | function baseIsEqual(value, other, bitmask, customizer, stack) {
function baseIsEqualDeep (line 9956) | function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, ...
function equalArrays (line 10032) | function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {
function SetCache (line 10115) | function SetCache(values) {
function setCacheAdd (line 10152) | function setCacheAdd(value) {
function setCacheHas (line 10176) | function setCacheHas(value) {
function arraySome (line 10200) | function arraySome(array, predicate) {
function cacheHas (line 10230) | function cacheHas(cache, key) {
function equalByTag (line 10290) | function equalByTag(object, other, tag, bitmask, customizer, equalFunc, ...
function mapToArray (line 10387) | function mapToArray(map) {
function setToArray (line 10414) | function setToArray(set) {
function equalObjects (line 10458) | function equalObjects(object, other, bitmask, customizer, equalFunc, sta...
function getAllKeys (line 10543) | function getAllKeys(object) {
function baseGetAllKeys (line 10571) | function baseGetAllKeys(object, keysFunc, symbolsFunc) {
function arrayPush (line 10594) | function arrayPush(array, values) {
function arrayFilter (line 10663) | function arrayFilter(array, predicate) {
function stubArray (line 10706) | function stubArray() {
function getMatchData (line 10861) | function getMatchData(object) {
function isStrictComparable (line 10894) | function isStrictComparable(value) {
function matchesStrictComparable (line 10917) | function matchesStrictComparable(key, srcValue) {
function baseMatchesProperty (line 10957) | function baseMatchesProperty(path, srcValue) {
function get (line 11006) | function get(object, path, defaultValue) {
function baseGet (line 11032) | function baseGet(object, path) {
function castPath (line 11067) | function castPath(value, object) {
function isKey (line 11099) | function isKey(value, object) {
function isSymbol (line 11145) | function isSymbol(value) {
function memoizeCapped (line 11209) | function memoizeCapped(func) {
function memoize (line 11280) | function memoize(func, resolver) {
function toString (line 11336) | function toString(value) {
function baseToString (line 11370) | function baseToString(value) {
function toKey (line 11408) | function toKey(value) {
function hasIn (line 11455) | function hasIn(object, path) {
function baseHasIn (line 11477) | function baseHasIn(object, key) {
function hasPath (line 11507) | function hasPath(object, path, hasFunc) {
function property (line 11566) | function property(path) {
function baseProperty (line 11587) | function baseProperty(key) {
function basePropertyDeep (line 11612) | function basePropertyDeep(path) {
function baseMap (line 11639) | function baseMap(collection, iteratee) {
function createBaseEach (line 11692) | function createBaseEach(eachFunc, fromRight) {
function _interopRequireDefault (line 11740) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function cloneDeep (line 11796) | function cloneDeep(value) {
function baseClone (line 11898) | function baseClone(value, bitmask, customizer, key, object, stack) {
function arrayEach (line 11999) | function arrayEach(array, iteratee) {
function assignValue (line 12040) | function assignValue(object, key, value) {
function baseAssignValue (line 12069) | function baseAssignValue(object, key, value) {
function baseAssign (line 12124) | function baseAssign(object, source) {
function copyObject (line 12151) | function copyObject(source, props, object, customizer) {
function baseAssignIn (line 12199) | function baseAssignIn(object, source) {
function keysIn (line 12240) | function keysIn(object) {
function baseKeysIn (line 12271) | function baseKeysIn(object) {
function nativeKeysIn (line 12305) | function nativeKeysIn(object) {
function cloneBuffer (line 12348) | function cloneBuffer(buffer, isDeep) {
function copyArray (line 12378) | function copyArray(source, array) {
function copySymbols (line 12410) | function copySymbols(source, object) {
function copySymbolsIn (line 12435) | function copySymbolsIn(source, object) {
function getAllKeysIn (line 12495) | function getAllKeysIn(object) {
function initCloneArray (line 12522) | function initCloneArray(array) {
function initCloneByTag (line 12584) | function initCloneByTag(object, tag, isDeep) {
function cloneArrayBuffer (line 12639) | function cloneArrayBuffer(arrayBuffer) {
function cloneDataView (line 12665) | function cloneDataView(dataView, isDeep) {
function cloneRegExp (line 12690) | function cloneRegExp(regexp) {
function cloneSymbol (line 12719) | function cloneSymbol(symbol) {
function cloneTypedArray (line 12743) | function cloneTypedArray(typedArray, isDeep) {
function initCloneObject (line 12769) | function initCloneObject(object) {
function object (line 12799) | function object() {}
function baseIsMap (line 12873) | function baseIsMap(value) {
function baseIsSet (line 12936) | function baseIsSet(value) {
function _interopRequireDefault (line 12963) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 13096) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 13098) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 13100) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 13102) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function Hover (line 13110) | function Hover() {
function _interopRequireDefault (line 13160) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 13162) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 13164) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 13166) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function Active (line 13174) | function Active() {
function _interopRequireDefault (line 13320) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function defineProperties (line 13338) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireWildcard (line 13356) | function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { ret...
function _interopRequireDefault (line 13358) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 13360) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 13362) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 13364) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function Alpha (line 13369) | function Alpha() {
function _interopRequireWildcard (line 13581) | function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { ret...
function _interopRequireDefault (line 13583) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function defineProperties (line 13676) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 13686) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _defineProperty (line 13688) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _classCallCheck (line 13690) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 13692) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 13694) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function EditableInput (line 13718) | function EditableInput(props) {
function defineProperties (line 13886) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireWildcard (line 13900) | function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { ret...
function _interopRequireDefault (line 13902) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 13904) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 13906) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 13908) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function Hue (line 13913) | function Hue() {
function _interopRequireDefault (line 14121) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function baseMerge (line 14292) | function baseMerge(object, source, srcIndex, customizer, stack) {
function Stack (line 14338) | function Stack(entries) {
function ListCache (line 14373) | function ListCache(entries) {
function listCacheClear (line 14408) | function listCacheClear() {
function listCacheDelete (line 14440) | function listCacheDelete(key) {
function assocIndexOf (line 14477) | function assocIndexOf(array, key) {
function eq (line 14529) | function eq(value, other) {
function listCacheGet (line 14554) | function listCacheGet(key) {
function listCacheHas (line 14582) | function listCacheHas(key) {
function listCacheSet (line 14608) | function listCacheSet(key, value) {
function stackClear (line 14640) | function stackClear() {
function stackDelete (line 14664) | function stackDelete(key) {
function stackGet (line 14691) | function stackGet(key) {
function stackHas (line 14714) | function stackHas(key) {
function stackSet (line 14745) | function stackSet(key, value) {
function getNative (line 14798) | function getNative(object, key) {
function baseIsNative (line 14851) | function baseIsNative(value) {
function isFunction (line 14895) | function isFunction(value) {
function baseGetTag (line 14933) | function baseGetTag(value) {
function getRawTag (line 15024) | function getRawTag(value) {
function objectToString (line 15071) | function objectToString(value) {
function isObject (line 15110) | function isObject(value) {
function isMasked (line 15140) | function isMasked(func) {
function toSource (line 15182) | function toSource(func) {
function getValue (line 15212) | function getValue(object, key) {
function MapCache (line 15239) | function MapCache(entries) {
function mapCacheClear (line 15278) | function mapCacheClear() {
function Hash (line 15310) | function Hash(entries) {
function hashClear (line 15347) | function hashClear() {
function hashDelete (line 15387) | function hashDelete(key) {
function hashGet (line 15423) | function hashGet(key) {
function hashHas (line 15459) | function hashHas(key) {
function hashSet (line 15489) | function hashSet(key, value) {
function mapCacheDelete (line 15517) | function mapCacheDelete(key) {
function getMapData (line 15543) | function getMapData(map, key) {
function isKeyable (line 15567) | function isKeyable(value) {
function mapCacheGet (line 15595) | function mapCacheGet(key) {
function mapCacheHas (line 15620) | function mapCacheHas(key) {
function mapCacheSet (line 15646) | function mapCacheSet(key, value) {
function assignMergeValue (line 15677) | function assignMergeValue(object, key, value) {
function baseAssignValue (line 15705) | function baseAssignValue(object, key, value) {
function createBaseFor (line 15780) | function createBaseFor(fromRight) {
function baseMergeDeep (line 15838) | function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customi...
function cloneBuffer (line 15933) | function cloneBuffer(buffer, isDeep) {
function cloneTypedArray (line 15965) | function cloneTypedArray(typedArray, isDeep) {
function cloneArrayBuffer (line 15989) | function cloneArrayBuffer(arrayBuffer) {
function copyArray (line 16028) | function copyArray(source, array) {
function initCloneObject (line 16060) | function initCloneObject(object) {
function object (line 16090) | function object() {}
function overArg (line 16138) | function overArg(func, transform) {
function isPrototype (line 16164) | function isPrototype(value) {
function baseIsArguments (line 16239) | function baseIsArguments(value) {
function isObjectLike (line 16277) | function isObjectLike(value) {
function isArrayLikeObject (line 16354) | function isArrayLikeObject(value) {
function isArrayLike (line 16396) | function isArrayLike(value) {
function isLength (line 16439) | function isLength(value) {
function stubFalse (line 16515) | function stubFalse() {
function isPlainObject (line 16577) | function isPlainObject(value) {
function baseIsTypedArray (line 16690) | function baseIsTypedArray(value) {
function baseUnary (line 16712) | function baseUnary(func) {
function safeGet (line 16776) | function safeGet(object, key) {
function toPlainObject (line 16821) | function toPlainObject(value) {
function copyObject (line 16848) | function copyObject(source, props, object, customizer) {
function assignValue (line 16903) | function assignValue(object, key, value) {
function keysIn (line 16948) | function keysIn(object) {
function arrayLikeKeys (line 16983) | function arrayLikeKeys(value, inherited) {
function baseTimes (line 17029) | function baseTimes(n, iteratee) {
function isIndex (line 17063) | function isIndex(value, length) {
function baseKeysIn (line 17100) | function baseKeysIn(object) {
function nativeKeysIn (line 17134) | function nativeKeysIn(object) {
function createAssigner (line 17164) | function createAssigner(assigner) {
function baseRest (line 17212) | function baseRest(func, start) {
function identity (line 17242) | function identity(value) {
function overRest (line 17270) | function overRest(func, start, transform) {
function apply (line 17311) | function apply(func, thisArg, args) {
function constant (line 17404) | function constant(value) {
function shortOut (line 17436) | function shortOut(func) {
function isIterateeCall (line 17481) | function isIterateeCall(value, index, object) {
function defineProperties (line 17512) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireWildcard (line 17530) | function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { ret...
function _interopRequireDefault (line 17532) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 17534) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 17536) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 17538) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function Saturation (line 17543) | function Saturation(props) {
function throttle (line 17724) | function throttle(func, wait, options) {
function debounce (line 17817) | function debounce(func, wait, options) {
function toNumber (line 18027) | function toNumber(value) {
function isSymbol (line 18081) | function isSymbol(value) {
function defineProperties (line 18151) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 18165) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 18167) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 18169) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 18171) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function ColorPicker (line 18177) | function ColorPicker(props) {
function _interopRequireDefault (line 18269) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function forEach (line 18389) | function forEach(collection, iteratee) {
function arrayEach (line 18413) | function arrayEach(array, iteratee) {
function baseForOwn (line 18469) | function baseForOwn(object, iteratee) {
function keys (line 18515) | function keys(object) {
function baseKeys (line 18545) | function baseKeys(object) {
function createBaseEach (line 18593) | function createBaseEach(eachFunc, fromRight) {
function castFunction (line 18633) | function castFunction(value) {
function tinycolor (line 18661) | function tinycolor (color, opts) {
function inputToRGB (line 18951) | function inputToRGB(color) {
function rgbToRgb (line 19015) | function rgbToRgb(r, g, b){
function rgbToHsl (line 19027) | function rgbToHsl(r, g, b) {
function hslToRgb (line 19058) | function hslToRgb(h, s, l) {
function rgbToHsv (line 19092) | function rgbToHsv(r, g, b) {
function hsvToRgb (line 19122) | function hsvToRgb(h, s, v) {
function rgbToHex (line 19145) | function rgbToHex(r, g, b, allow3Char) {
function rgbaToHex (line 19165) | function rgbaToHex(r, g, b, a, allow4Char) {
function rgbaToArgbHex (line 19185) | function rgbaToArgbHex(r, g, b, a) {
function desaturate (line 19218) | function desaturate(color, amount) {
function saturate (line 19226) | function saturate(color, amount) {
function greyscale (line 19234) | function greyscale(color) {
function lighten (line 19238) | function lighten (color, amount) {
function brighten (line 19246) | function brighten(color, amount) {
function darken (line 19255) | function darken (color, amount) {
function spin (line 19265) | function spin(color, amount) {
function complement (line 19277) | function complement(color) {
function triad (line 19283) | function triad(color) {
function tetrad (line 19293) | function tetrad(color) {
function splitcomplement (line 19304) | function splitcomplement(color) {
function analogous (line 19314) | function analogous(color, results, slices) {
function monochromatic (line 19329) | function monochromatic(color, results) {
function flip (line 19611) | function flip(o) {
function boundAlpha (line 19622) | function boundAlpha(a) {
function bound01 (line 19633) | function bound01(n, max) {
function clamp01 (line 19654) | function clamp01(val) {
function parseIntFromHex (line 19659) | function parseIntFromHex(val) {
function isOnePointZero (line 19665) | function isOnePointZero(n) {
function isPercentage (line 19670) | function isPercentage(n) {
function pad2 (line 19675) | function pad2(c) {
function convertToPercentage (line 19680) | function convertToPercentage(n) {
function convertDecimalToHex (line 19689) | function convertDecimalToHex(d) {
function convertHexToDecimal (line 19693) | function convertHexToDecimal(h) {
function isValidCSSUnit (line 19732) | function isValidCSSUnit(color) {
function stringInputToObject (line 19739) | function stringInputToObject(color) {
function validateWCAG2Parms (line 19812) | function validateWCAG2Parms(parms) {
function _interopRequireDefault (line 19874) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function defineProperties (line 19955) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 19961) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 19963) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 19965) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 19967) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function Focus (line 19975) | function Focus() {
function _interopRequireDefault (line 20030) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 20098) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 20248) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function map (line 20349) | function map(collection, iteratee) {
function arrayMap (line 20373) | function arrayMap(array, iteratee) {
function baseIteratee (line 20407) | function baseIteratee(value) {
function baseMatches (line 20445) | function baseMatches(source) {
function baseIsMatch (line 20482) | function baseIsMatch(object, source, matchData, customizer) {
function baseIsEqual (line 20553) | function baseIsEqual(value, other, bitmask, customizer, stack) {
function baseIsEqualDeep (line 20610) | function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, ...
function equalArrays (line 20686) | function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {
function SetCache (line 20769) | function SetCache(values) {
function setCacheAdd (line 20806) | function setCacheAdd(value) {
function setCacheHas (line 20830) | function setCacheHas(value) {
function arraySome (line 20854) | function arraySome(array, predicate) {
function cacheHas (line 20884) | function cacheHas(cache, key) {
function equalByTag (line 20944) | function equalByTag(object, other, tag, bitmask, customizer, equalFunc, ...
function mapToArray (line 21026) | function mapToArray(map) {
function setToArray (line 21053) | function setToArray(set) {
function equalObjects (line 21097) | function equalObjects(object, other, bitmask, customizer, equalFunc, sta...
function getAllKeys (line 21182) | function getAllKeys(object) {
function baseGetAllKeys (line 21210) | function baseGetAllKeys(object, keysFunc, symbolsFunc) {
function arrayPush (line 21233) | function arrayPush(array, values) {
function arrayFilter (line 21302) | function arrayFilter(array, predicate) {
function stubArray (line 21345) | function stubArray() {
function getMatchData (line 21500) | function getMatchData(object) {
function isStrictComparable (line 21533) | function isStrictComparable(value) {
function matchesStrictComparable (line 21556) | function matchesStrictComparable(key, srcValue) {
function baseMatchesProperty (line 21596) | function baseMatchesProperty(path, srcValue) {
function get (line 21645) | function get(object, path, defaultValue) {
function baseGet (line 21671) | function baseGet(object, path) {
function castPath (line 21706) | function castPath(value, object) {
function isKey (line 21738) | function isKey(value, object) {
function memoizeCapped (line 21810) | function memoizeCapped(func) {
function memoize (line 21881) | function memoize(func, resolver) {
function toString (line 21937) | function toString(value) {
function baseToString (line 21971) | function baseToString(value) {
function toKey (line 22009) | function toKey(value) {
function hasIn (line 22056) | function hasIn(object, path) {
function baseHasIn (line 22078) | function baseHasIn(object, key) {
function hasPath (line 22108) | function hasPath(object, path, hasFunc) {
function property (line 22167) | function property(path) {
function baseProperty (line 22188) | function baseProperty(key) {
function basePropertyDeep (line 22213) | function basePropertyDeep(path) {
function baseMap (line 22240) | function baseMap(collection, iteratee) {
function _interopRequireWildcard (line 22297) | function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { ret...
function _interopRequireDefault (line 22299) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 22408) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 22512) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function defineProperties (line 22705) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 22725) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 22727) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 22729) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 22731) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function ChromeFields (line 22736) | function ChromeFields() {
function _interopRequireDefault (line 23063) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _objectWithoutProperties (line 23065) | function _objectWithoutProperties(obj, keys) { var target = {}; for (var...
function _interopRequireDefault (line 23112) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 23155) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 23223) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 23330) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 23417) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 23574) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 23731) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 23811) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 23890) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 23950) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function defineProperties (line 24109) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 24149) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 24151) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 24153) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 24155) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function Photoshop (line 24160) | function Photoshop(props) {
function _interopRequireDefault (line 24344) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 24539) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 24588) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 24671) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 24733) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 24831) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 25029) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 25209) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 25324) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 25404) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 25513) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 25586) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireWildcard (line 25655) | function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { ret...
function _interopRequireDefault (line 25657) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 25771) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 25841) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 25943) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _objectWithoutProperties (line 25945) | function _objectWithoutProperties(obj, keys) { var target = {}; for (var...
function _interopRequireDefault (line 26010) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function Color (line 26218) | function Color(obj, model) {
function roundTo (line 26613) | function roundTo(num, places) {
function roundToPlace (line 26617) | function roundToPlace(places) {
function getset (line 26623) | function getset(model, channel, modifier) {
function maxfn (line 26654) | function maxfn(max) {
function assertArray (line 26660) | function assertArray(val) {
function zeroArray (line 26664) | function zeroArray(arr, length) {
function clamp (line 26910) | function clamp(num, min, max) {
function hexDouble (line 26914) | function hexDouble(num) {
function wrapRaw (line 27151) | function wrapRaw(fn) {
function wrapRounded (line 27172) | function wrapRounded(fn) {
function comparativeDistance (line 27404) | function comparativeDistance(x, y) {
function buildGraph (line 28121) | function buildGraph() {
function deriveBFS (line 28139) | function deriveBFS(fromModel) {
function link (line 28164) | function link(from, to) {
function wrapConversion (line 28170) | function wrapConversion(toModel, graph) {
function _interopRequireDefault (line 28244) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 28246) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function defineProperties (line 28306) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 28357) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 28359) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 28361) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 28363) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function Gauge (line 28372) | function Gauge() {
function _interopRequireDefault (line 28655) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function calcDimensions (line 28822) | function calcDimensions(_ref4) {
function _interopRequireDefault (line 28866) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function sliceIterator (line 29279) | function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = ...
function sliceIterator (line 29370) | function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = ...
function _interopRequireDefault (line 29392) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function sliceIterator (line 29624) | function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = ...
function _interopRequireDefault (line 29630) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function stepize (line 29769) | function stepize(start, end, steps) {
function interpolate (line 29789) | function interpolate(step, start, i, max) {
function interpolateRgb (line 29809) | function interpolateRgb(stop1, stop2, steps) {
function interpolateHsv (line 29832) | function interpolateHsv(stop1, stop2, steps, trigonometric) {
function computeSubsteps (line 29865) | function computeSubsteps(stops, steps) {
function computeAt (line 29914) | function computeAt(stops, pos, method, max) {
method dataURL (line 30271) | get dataURL() {
method blobURL (line 30278) | get blobURL() {
method svg (line 30284) | get svg() {
method png (line 30290) | get png() {
method r (line 30294) | get r() {
function _interopRequireDefault (line 30496) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 30498) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function _interopRequireDefault (line 30564) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 30566) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function _interopRequireDefault (line 30630) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 30632) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function compute (line 30634) | function compute(value) {
function generateLogFormatter (line 30642) | function generateLogFormatter(_ref) {
function genLogMarks (line 30671) | function genLogMarks(_ref2, isSVG) {
function formatValue (line 30721) | function formatValue(value, base) {
function generateScale (line 30770) | function generateScale(input) {
function processInput (line 30802) | function processInput(_ref) {
function identityFunc (line 30830) | function identityFunc(x) {
function computeInterval (line 30834) | function computeInterval(min, max) {
function sliceIterator (line 30862) | function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = ...
function _interopRequireDefault (line 30892) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 31126) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 31128) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function _interopRequireDefault (line 31257) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function defineProperties (line 31379) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 31425) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 31427) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 31429) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 31431) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function Knob (line 31456) | function Knob(props) {
function _interopRequireDefault (line 31816) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function calcDimensions (line 31983) | function calcDimensions(_ref3) {
function _interopRequireDefault (line 32035) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 32037) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function _interopRequireDefault (line 32105) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function extractDigits (line 32132) | function extractDigits(_ref) {
function addLeadingZeroIfNeeded (line 32167) | function addLeadingZeroIfNeeded(digits) {
function _interopRequireDefault (line 32290) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 32506) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 32508) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function defineProperties (line 32549) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 32578) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 32580) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 32582) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 32584) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function NumericInput (line 32593) | function NumericInput(props) {
function __webpack_require__ (line 32782) | function __webpack_require__(moduleId) {
function defineProperties (line 32827) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 32837) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _objectWithoutProperties (line 32839) | function _objectWithoutProperties(obj, keys) { var target = {}; for (var...
function _classCallCheck (line 32841) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 32843) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 32845) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function addClass (line 32853) | function addClass(element, className) {
function removeClass (line 32862) | function removeClass(element, className) {
function access (line 32872) | function access(object, prop, defaultValue) {
function NumericInput (line 32887) | function NumericInput() {
function defineProperties (line 33781) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 33818) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 33820) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 33822) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 33824) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function PowerButton (line 33833) | function PowerButton(props) {
function _interopRequireDefault (line 34013) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 34015) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function _interopRequireDefault (line 34079) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function sliceIterator (line 34117) | function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = ...
function defineProperties (line 34119) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 34154) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 34156) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 34158) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 34160) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function PrecisionInput (line 34177) | function PrecisionInput(props) {
function _interopRequireDefault (line 34495) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 34497) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function _interopRequireDefault (line 34562) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 34703) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 34705) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function sliceIterator (line 34752) | function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = ...
function defineProperties (line 34754) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 34807) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 34809) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 34811) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 34813) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function Slider (line 34871) | function Slider(props) {
function _interopRequireDefault (line 35267) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireWildcard (line 35334) | function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { ret...
function _interopRequireDefault (line 35336) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function Slider (line 35342) | function Slider(props) {
function _interopRequireDefault (line 35568) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 36291) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function defineProperties (line 36294) | function defineProperties(target, props) {
function _interopRequireDefault (line 36361) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 36392) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 37342) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 37553) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireWildcard (line 37661) | function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { ret...
function _interopRequireDefault (line 37663) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function noop (line 37665) | function noop() {}
function createSlider (line 37667) | function createSlider(Component) {
function _interopRequireDefault (line 38080) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 38116) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 38263) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function addEventListenerWrap (line 38265) | function addEventListenerWrap(target, eventType, cb, option) {
function _interopRequireDefault (line 38288) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function addEventListener (line 38294) | function addEventListener(target, eventType, callback, option) {
function _interopRequireDefault (line 38352) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function isNullOrUndefined (line 38366) | function isNullOrUndefined(w) {
function retTrue (line 38509) | function retTrue() {
function retFalse (line 38513) | function retFalse() {
function DomEventObject (line 38517) | function DomEventObject(nativeEvent) {
function returnFalse (line 38637) | function returnFalse() {
function returnTrue (line 38641) | function returnTrue() {
function EventBaseObject (line 38645) | function EventBaseObject() {
function classNames (line 38718) | function classNames () {
function _interopRequireDefault (line 38797) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 38903) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 39043) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function Handle (line 39048) | function Handle() {
function _interopRequireDefault (line 39215) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function isDev (line 39217) | function isDev() {
function isEventFromHandle (line 39221) | function isEventFromHandle(e, handles) {
function isValueOutOfRange (line 39231) | function isValueOutOfRange(value, _ref) {
function isNotTouchEvent (line 39238) | function isNotTouchEvent(e) {
function getClosestPoint (line 39242) | function getClosestPoint(val, _ref2) {
function getPrecision (line 39261) | function getPrecision(step) {
function getMousePosition (line 39270) | function getMousePosition(vertical, e) {
function getTouchPosition (line 39274) | function getTouchPosition(vertical, e) {
function getHandleCenterPosition (line 39278) | function getHandleCenterPosition(vertical, handle) {
function ensureValueInRange (line 39283) | function ensureValueInRange(val, _ref3) {
function ensureValuePrecision (line 39296) | function ensureValuePrecision(val, props) {
function pauseEvent (line 39303) | function pauseEvent(e) {
function calculateNextValue (line 39308) | function calculateNextValue(func, value, props) {
function getKeyboardValueMutator (line 39329) | function getKeyboardValueMutator(e) {
function _interopRequireDefault (line 39380) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireWildcard (line 40197) | function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { ret...
function _interopRequireDefault (line 40199) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function Range (line 40204) | function Range(props) {
function _interopRequireDefault (line 40779) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function createSliderWithTooltip (line 40781) | function createSliderWithTooltip(Component) {
function _interopRequireDefault (line 40891) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 40945) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function Tooltip (line 40950) | function Tooltip() {
function _interopRequireDefault (line 41137) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function noop (line 41139) | function noop() {}
function returnEmptyString (line 41141) | function returnEmptyString() {
function returnDocument (line 41145) | function returnDocument() {
function Trigger (line 41162) | function Trigger(props) {
function contains (line 41868) | function contains(root, n) {
function _interopRequireDefault (line 41922) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function ContainerRender (line 41927) | function ContainerRender() {
function _interopRequireDefault (line 42057) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function Portal (line 42062) | function Portal() {
function _interopRequireDefault (line 42138) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function isPointsEq (line 42140) | function isPointsEq(a1, a2, isAlignPoint) {
function getAlignFromPlacement (line 42147) | function getAlignFromPlacement(builtinPlacements, placementStr, align) {
function getAlignPopupClassName (line 42152) | function getAlignPopupClassName(builtinPlacements, prefixCls, align, isA...
function saveRef (line 42164) | function saveRef(name, component) {
function _interopRequireDefault (line 42225) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function Popup (line 42230) | function Popup(props) {
function _interopRequireDefault (line 42575) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 42630) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function getElement (line 42632) | function getElement(func) {
function getPoint (line 42637) | function getPoint(point) {
function Align (line 42645) | function Align() {
function _interopRequireDefault (line 42842) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 42877) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function isOutOfVisibleRect (line 42879) | function isOutOfVisibleRect(target) {
function alignElement (line 42886) | function alignElement(el, refNode, align) {
function _interopRequireDefault (line 42935) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function isFailX (line 42939) | function isFailX(elFuturePos, elRegion, visibleRect) {
function isFailY (line 42946) | function isFailY(elFuturePos, elRegion, visibleRect) {
function isCompleteFailX (line 42950) | function isCompleteFailX(elFuturePos, elRegion, visibleRect) {
function isCompleteFailY (line 42954) | function isCompleteFailY(elFuturePos, elRegion, visibleRect) {
function flip (line 42958) | function flip(points, reg, map) {
function flipOffset (line 42968) | function flipOffset(offset, index) {
function convertOffset (line 42973) | function convertOffset(str, offsetLen) {
function normalizeOffset (line 42983) | function normalizeOffset(offset, el) {
function doAlign (line 42993) | function doAlign(el, tgtRegion, align, isTgtRegionVisible) {
function forceRelayout (line 43150) | function forceRelayout(elem) {
function css (line 43157) | function css(el, name, v) {
function getClientPosition (line 43177) | function getClientPosition(elem) {
function getScroll (line 43223) | function getScroll(w, top) {
function getScrollLeft (line 43238) | function getScrollLeft(w) {
function getScrollTop (line 43242) | function getScrollTop(w) {
function getOffset (line 43246) | function getOffset(el) {
function isWindow (line 43259) | function isWindow(obj) {
function getDocument (line 43265) | function getDocument(node) {
function _getComputedStyle (line 43275) | function _getComputedStyle(elem, name, cs) {
function _getComputedStyleIE (line 43296) | function _getComputedStyleIE(elem, name) {
function getOffsetDirection (line 43336) | function getOffsetDirection(dir, option) {
function oppositeOffsetDirection (line 43343) | function oppositeOffsetDirection(dir) {
function setLeftTop (line 43356) | function setLeftTop(elem, offset, option) {
function setTransform (line 43426) | function setTransform(elem, offset) {
function setOffset (line 43439) | function setOffset(elem, offset, option) {
function each (line 43462) | function each(arr, fn) {
function isBorderBoxFn (line 43468) | function isBorderBoxFn(elem) {
function swap (line 43478) | function swap(elem, options, callback) {
function getPBMWidth (line 43501) | function getPBMWidth(elem, props, which) {
function getWH (line 43557) | function getWH(elem, name, ex) {
function getWHIgnoreDisplay (line 43605) | function getWHIgnoreDisplay() {
function mix (line 43648) | function mix(to, from) {
function getVendorPrefix (line 43753) | function getVendorPrefix() {
function getTransitionName (line 43768) | function getTransitionName() {
function getTransformName (line 43772) | function getTransformName() {
function setTransitionProperty (line 43776) | function setTransitionProperty(node, value) {
function setTransform (line 43786) | function setTransform(node, value) {
function getTransitionProperty (line 43796) | function getTransitionProperty(node) {
function getTransformXY (line 43800) | function getTransformXY(node) {
function setTransformXY (line 43816) | function setTransformXY(node, xy) {
function _interopRequireDefault (line 43869) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function getVisibleRectForElement (line 43874) | function getVisibleRectForElement(element) {
function _interopRequireDefault (line 43984) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function getOffsetParent (line 43990) | function getOffsetParent(element) {
function _interopRequireDefault (line 44049) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function isAncestorFixed (line 44051) | function isAncestorFixed(element) {
function _interopRequireDefault (line 44086) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function adjustForViewport (line 44088) | function adjustForViewport(elFuturePos, elRegion, visibleRect, overflow) {
function _interopRequireDefault (line 44149) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function getRegion (line 44151) | function getRegion(node) {
function _interopRequireDefault (line 44193) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function getElFuturePos (line 44195) | function getElFuturePos(elRegion, refNodeRegion, points, offset, targetO...
function getAlignOffset (line 44225) | function getAlignOffset(region, align) {
function _interopRequireDefault (line 44278) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function alignPoint (line 44285) | function alignPoint(el, tgtPoint, align) {
function _interopRequireDefault (line 44349) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function buffer (line 44351) | function buffer(fn, ms) {
function isSamePoint (line 44371) | function isSamePoint(prev, next) {
function isWindow (line 44386) | function isWindow(obj) {
function isSimilarValue (line 44390) | function isSimilarValue(val1, val2) {
function restoreFocus (line 44396) | function restoreFocus(activeElement, container) {
function _interopRequireDefault (line 44458) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function getChildrenFromProps (line 44462) | function getChildrenFromProps(props) {
function noop (line 44474) | function noop() {}
function Animate (line 44481) | function Animate(props) {
function _interopRequireDefault (line 44823) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function toArrayChildren (line 44825) | function toArrayChildren(children) {
function findChildInChildrenByKey (line 44833) | function findChildInChildrenByKey(children, key) {
function findShownChildInChildrenByKey (line 44848) | function findShownChildInChildrenByKey(children, key, showProp) {
function findHiddenChildInChildrenByKey (line 44863) | function findHiddenChildInChildrenByKey(children, key, showProp) {
function isSameChildren (line 44876) | function isSameChildren(c1, c2, showProp) {
function mergeChildren (line 44895) | function mergeChildren(prev, next) {
function _interopRequireDefault (line 44974) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function AnimateChild (line 44985) | function AnimateChild() {
function _interopRequireDefault (line 45103) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function getStyleProperty (line 45111) | function getStyleProperty(node, name) {
function fixBrowserByTimeout (line 45124) | function fixBrowserByTimeout(node) {
function clearBrowserBugTimeout (line 45141) | function clearBrowserBugTimeout(node) {
function detectEvents (line 45327) | function detectEvents() {
function addEventListener (line 45363) | function addEventListener(node, eventName, eventListener) {
function removeEventListener (line 45367) | function removeEventListener(node, eventName, eventListener) {
function ClassList (line 45467) | function ClassList(el) {
function _interopRequireDefault (line 45704) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function PopupInner (line 45709) | function PopupInner() {
function _interopRequireDefault (line 45789) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function LazyRenderBox (line 45794) | function LazyRenderBox() {
function _interopRequireDefault (line 45957) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function Content (line 45962) | function Content() {
function _curry1 (line 46340) | function _curry1(fn) {
function _isPlaceholder (line 46358) | function _isPlaceholder(a) {
function _curry2 (line 46481) | function _curry2(fn) {
function _concat (line 46574) | function _concat(set1, set2) {
function _arity (line 46670) | function _arity(n, fn) {
function _curryN (line 46746) | function _curryN(length, received, fn) {
function _curry3 (line 46844) | function _curry3(fn) {
function _dispatchable (line 46958) | function _dispatchable(methodNames, xf, fn) {
function _isTransformer (line 47013) | function _isTransformer(obj) {
function XAll (line 47033) | function XAll(f, xf) {
function _reduced (line 47068) | function _reduced(x) {
function _map (line 47311) | function _map(fn, functor) {
function _arrayReduce (line 47336) | function _arrayReduce(xf, acc, list) {
function _iterableReduce (line 47350) | function _iterableReduce(xf, acc, iter) {
function _methodReduce (line 47363) | function _methodReduce(xf, acc, obj, methodName) {
function _reduce (line 47369) | function _reduce(fn, acc, list) {
function _isString (line 47458) | function _isString(x) {
function XWrap (line 47471) | function XWrap(fn) {
function _xwrap (line 47487) | function _xwrap(fn) {
function XMap (line 47547) | function XMap(f, xf) {
function _has (line 47655) | function _has(prop, obj) {
function XAny (line 47922) | function XAny(f, xf) {
function _aperture (line 48112) | function _aperture(n, list) {
function XAperture (line 48139) | function XAperture(n, xf) {
function _isFunction (line 48784) | function _isFunction(x) {
function _makeFlat (line 49048) | function _makeFlat(recursive) {
function _forceReduced (line 49142) | function _forceReduced(x) {
function _clone (line 49251) | function _clone(value, refFrom, refTo, deep) {
function _cloneRegExp (line 49290) | function _cloneRegExp(pattern) {
function compose (line 49484) | function compose() {
function pipe (line 49532) | function pipe() {
function _pipe (line 49547) | function _pipe(f, g) {
function _checkForMethod (line 49620) | function _checkForMethod(methodname, fn) {
function composeK (line 49761) | function composeK() {
function composeP (line 49818) | function composeP() {
function pipeP (line 49861) | function pipeP() {
function _pipeP (line 49876) | function _pipeP(f, g) {
function _toString (line 50029) | function _toString(x, seen) {
function _contains (line 50083) | function _contains(a, list) {
function _indexOf (line 50097) | function _indexOf(list, a, idx) {
function _uniqContentEquals (line 50228) | function _uniqContentEquals(aIterator, bIterator, stackA, stackB) {
function _equals (line 50242) | function _equals(a, b, stackA, stackB) {
function _arrayFromIterator (line 50367) | function _arrayFromIterator(iter) {
function _containsWith (line 50384) | function _containsWith(pred, x, list) {
function _functionName (line 50405) | function _functionName(f) {
function _quote (line 50466) | function _quote(s) {
function _complement (line 50547) | function _complement(f) {
function _filter (line 50623) | function _filter(fn, list) {
function _isObject (line 50645) | function _isObject(x) {
function XFilter (line 50663) | function XFilter(f, xf) {
function XReduceBy (line 51100) | function XReduceBy(valueFn, valueAcc, keyFn, xf) {
function XDrop (line 51613) | function XDrop(n, xf) {
function dropLast (line 51685) | function dropLast(n, xs) {
function XTake (line 51770) | function XTake(n, xf) {
function XDropLast (line 51804) | function XDropLast(n, xf) {
function dropLastWhile (line 51893) | function dropLastWhile(pred, xs) {
function XDropLastWhile (line 51917) | function XDropLastWhile(fn, xf) {
function XDropRepeatsWith (line 52001) | function XDropRepeatsWith(pred, xf) {
function XDropWhile (line 52231) | function XDropWhile(f, xf) {
function XFind (line 52662) | function XFind(f, xf) {
function XFindIndex (line 52755) | function XFindIndex(f, xf) {
function XFindLast (line 52846) | function XFindLast(f, xf) {
function XFindLastIndex (line 52931) | function XFindLastIndex(f, xf) {
function _identity (line 53530) | function _identity(x) {
function _Set (line 53996) | function _Set() {
function hasOrAdd (line 54031) | function hasOrAdd(item, shouldAdd, set) {
function _stepCat (line 54315) | function _stepCat(obj) {
function _objectAssign (line 54355) | function _objectAssign(target) {
function _isNumber (line 54862) | function _isNumber(x) {
function _of (line 56334) | function _of(x) {
function _createPartialApplicator (line 56570) | function _createPartialApplicator(concat) {
function pipeK (line 56956) | function pipeK() {
function XTakeWhile (line 58372) | function XTakeWhile(f, xf) {
function XTap (line 58444) | function XTap(f, xf) {
function _isRegExp (line 58512) | function _isRegExp(x) {
function isUndefinedOrNull (line 59829) | function isUndefinedOrNull(value) {
function isBuffer (line 59833) | function isBuffer (x) {
function objEquiv (line 59842) | function objEquiv(a, b, opts) {
function shim (line 59907) | function shim (obj) {
function supported (line 59928) | function supported(object) {
function unsupported (line 59933) | function unsupported(object){
function _interopRequireDefault (line 60003) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 60005) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function sliceIterator (line 60185) | function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = ...
function _interopRequireDefault (line 60226) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 60501) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 60503) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function sliceIterator (line 60597) | function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = ...
function _interopRequireDefault (line 60652) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 60931) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _taggedTemplateLiteral (line 60933) | function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Obj...
function _interopRequireDefault (line 60982) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function DarkThemeProvider (line 60988) | function DarkThemeProvider(props) {
function defineProperties (line 61044) | function defineProperties(target, props) { for (var i = 0; i < props.len...
function _interopRequireDefault (line 61072) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _classCallCheck (line 61074) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _possibleConstructorReturn (line 61076) | function _possibleConstructorReturn(self, call) { if (!self) { throw new...
function _inherits (line 61078) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function Joystick (line 61086) | function Joystick(props) {
function Super (line 61475) | function Super () {}
function Nipple (line 61580) | function Nipple (collection, options) {
function Collection (line 61977) | function Collection (manager, options) {
function Manager (line 62507) | function Manager (options) {
FILE: inst/deps/dash_daq.dev.js
function webpackJsonpCallback (line 4) | function webpackJsonpCallback(data) {
function jsonpScriptSrc (line 46) | function jsonpScriptSrc(chunkId) {
function __webpack_require__ (line 51) | function __webpack_require__(moduleId) {
function memoize (line 293) | function memoize(fn) {
function returnFalse (line 388) | function returnFalse() {
function returnTrue (line 392) | function returnTrue() {
function EventBaseObject (line 396) | function EventBaseObject() {
function _interopRequireDefault (line 463) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function isNullOrUndefined (line 477) | function isNullOrUndefined(w) {
function retTrue (line 620) | function retTrue() {
function retFalse (line 624) | function retFalse() {
function DomEventObject (line 628) | function DomEventObject(nativeEvent) {
function _interopRequireDefault (line 747) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function addEventListener (line 753) | function addEventListener(target, eventType, callback, option) {
function _interopRequireDefault (line 929) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function defineProperties (line 932) | function defineProperties(target, props) {
function _interopRequireDefault (line 967) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 1002) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 1040) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 1093) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 1155) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 1183) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function _interopRequireDefault (line 1221) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
function classNames (line 3397) | function classNames () {
function comparativeDistance (line 3620) | function comparativeDistance(x, y) {
function wrapRaw (line 4333) | function wrapRaw(fn) {
function wrapRounded (line 4354) | function wrapRounded(fn) {
function buildGraph (line 4428) | function buildGraph() {
function deriveBFS (line 4446) | function deriveBFS(fromModel) {
function link (line 4471) | function link(from, to) {
function wrapConversion (line 4477) | function wrapConversion(toModel, graph) {
function clamp (line 4913) | function clamp(num, min, max) {
function hexDouble (line 4917) | function hexDouble(num) {
function Color (line 4958) | function Color(obj, model) {
function roundTo (line 5353) | function roundTo(num, places) {
function roundToPlace (line 5357) | function roundToPlace(places) {
function getset (line 5363) | function getset(model, channel, modifier) {
function maxfn (line 5394) | function maxfn(max) {
function assertArray (line 5400) | function assertArray(val) {
function zeroArray (line 5404) | function zeroArray(arr, length) {
method dataURL (line 5546) | get dataURL() {
method blobURL (line 5553) | get blobURL() {
method svg (line 5559) | get svg() {
method png (line 5565) | get png() {
method r (line 5569) | get r() {
function cssWithMappingToString (line 5840) | function cssWithMappingToString(item, useSourceMap) {
function toComment (line 5861) | function toComment(sourceMap) {
function isUndefinedOrNull (line 5906) | function isUndefinedOrNull(value) {
function isBuffer (line 5910) | function isBuffer (x) {
function objEquiv (line 5919) | function objEquiv(a, b, opts) {
function supported (line 5989) | function supported(object) {
function unsupported (line 5994) | function unsupported(object){
function shim (line 6017) | function shim (obj) {
function _typeof (line 6037) | function _typeof(obj) {
function _defineProperty (line 6051) | function _defineProperty(obj, key, value) {
function ownKeys (line 6066) | function ownKeys(object, enumerableOnly) {
function _objectSpread2 (line 6080) | function _objectSpread2(target) {
function getVendorPrefix (line 6109) | function getVendorPrefix() {
function getTransitionName (line 6127) | function getTransitionName() {
function getTransformName (line 6131) | function getTransformName() {
function setTransitionProperty (line 6134) | function setTransitionProperty(node, value) {
function setTransform (line 6146) | function setTransform(node, value) {
function getTransitionProperty (line 6158) | function getTransitionProperty(node) {
function getTransformXY (line 6161) | function getTransformXY(node) {
function setTransformXY (line 6180) | function setTransformXY(node, xy) {
function forceRelayout (line 6213) | function forceRelayout(elem) {
function css (line 6221) | function css(el, name, v) {
function getClientPosition (line 6246) | function getClientPosition(elem) {
function getScroll (line 6285) | function getScroll(w, top) {
function getScrollLeft (line 6303) | function getScrollLeft(w) {
function getScrollTop (line 6307) | function getScrollTop(w) {
function getOffset (line 6311) | function getOffset(el) {
function isWindow (line 6325) | function isWindow(obj) {
function getDocument (line 6332) | function getDocument(node) {
function _getComputedStyle (line 6344) | function _getComputedStyle(elem, name, cs) {
function _getComputedStyleIE (line 6365) | function _getComputedStyleIE(elem, name) {
function getOffsetDirection (line 6400) | function getOffsetDirection(dir, option) {
function oppositeOffsetDirection (line 6408) | function oppositeOffsetDirection(dir) {
function setLeftTop (line 6421) | function setLeftTop(elem, offset, option) {
function setTransform$1 (line 6506) | function setTransform$1(elem, offset) {
function setOffset (line 6525) | function setOffset(elem, offset, option) {
function each (line 6547) | function each(arr, fn) {
function isBorderBoxFn (line 6553) | function isBorderBoxFn(elem) {
function swap (line 6563) | function swap(elem, options, callback) {
function getPBMWidth (line 6584) | function getPBMWidth(elem, props, which) {
function getWH (line 6656) | function getWH(elem, name, ex) {
function getWHIgnoreDisplay (line 6714) | function getWHIgnoreDisplay() {
function mix (line 6765) | function mix(to, from) {
function getOffsetParent (line 6844) | function getOffsetParent(element) {
function isAncestorFixed (line 6887) | function isAncestorFixed(element) {
function getVisibleRectForElement (line 6911) | function getVisibleRectForElement(element) {
function adjustForViewport (line 7001) | function adjustForViewport(elFuturePos, elRegion, visibleRect, overflow) {
function getRegion (line 7042) | function getRegion(node) {
function getAlignOffset (line 7069) | function getAlignOffset(region, align) {
function getElFuturePos (line 7095) | function getElFuturePos(elRegion, refNodeRegion, points, offset, targetO...
function isFailX (line 7110) | function isFailX(elFuturePos, elRegion, visibleRect) {
function isFailY (line 7114) | function isFailY(elFuturePos, elRegion, visibleRect) {
function isCompleteFailX (line 7118) | function isCompleteFailX(elFuturePos, elRegion, visibleRect) {
function isCompleteFailY (line 7122) | function isCompleteFailY(elFuturePos, elRegion, visibleRect) {
function flip (line 7126) | function flip(points, reg, map) {
function flipOffset (line 7136) | function flipOffset(offset, index) {
function convertOffset (line 7141) | function convertOffset(str, offsetLen) {
function normalizeOffset (line 7153) | function normalizeOffset(offset, el) {
function doAlign (line 7164) | function doAlign(el, tgtRegion, align, isTgtRegionVisible) {
function isOutOfVisibleRect (line 7297) | function isOutOfVisibleRect(target) {
function alignElement (line 7303) | function alignElement(el, refNode, align) {
function alignPoint (line 7318) | function alignPoint(el, tgtPoint, align) {
function getType (line 7415) | function getType(payload) {
function isUndefined (line 7424) | function isUndefined(payload) {
function isNull (line 7433) | function isNull(payload) {
function isPlainObject (line 7442) | function isPlainObject(payload) {
function isObject (line 7453) | function isObject(payload) {
function isAnyObject (line 7462) | function isAnyObject(payload) {
function isObjectLike (line 7474) | function isObjectLike(payload) {
function isFunction (line 7483) | function isFunction(payload) {
function isArray (line 7492) | function isArray(payload) {
function isString (line 7501) | function isString(payload) {
function isFullString (line 7510) | function isFullString(payload) {
function isEmptyString (line 7519) | function isEmptyString(payload) {
function isNumber (line 7530) | function isNumber(payload) {
function isBoolean (line 7539) | function isBoolean(payload) {
function isRegExp (line 7548) | function isRegExp(payload) {
function isDate (line 7557) | function isDate(payload) {
function isSymbol (line 7566) | function isSymbol(payload) {
function isPrimitive (line 7575) | function isPrimitive(payload) {
function isType (line 7594) | function isType(payload, type) {
function areInputsEqual (line 7620) | function areInputsEqual(newInputs, lastInputs) {
function memoizeOne (line 7632) | function memoizeOne(resultFn, isEqual) {
function assignProp (line 7674) | function assignProp(carry, key, newVal, originalObject) {
function mergeRecursively (line 7689) | function mergeRecursively(origin, newComer, extensions) {
function merge (line 7748) | function merge(origin) {
function concatArrays (line 7764) | function concatArrays(originVal, newVal) {
function Super (line 8001) | function Super () {}
function Nipple (line 8106) | function Nipple (collection, options) {
function Collection (line 8503) | function Collection (manager, options) {
function Manager (line 9033) | function Manager (options) {
function toObject (line 9283) | function toObject(val) {
function shouldUseNative (line 9291) | function shouldUseNative() {
function defaultSetTimout (line 9431) | function defaultSetTimout() {
function defaultClearTimeout (line 9434) | function defaultClearTimeout () {
function runTimeout (line 9457) | function runTimeout(fun) {
function runClearTimeout (line 9482) | function runClearTimeout(marker) {
function cleanUpNextTick (line 9514) | function cleanUpNextTick() {
function drainQueue (line 9529) | function drainQueue() {
function Item (line 9567) | function Item(fun, array) {
function noop (line 9581) | function noop() {}
function compose (line 11155) | function compose() {
function composeK (line 11211) | function composeK() {
function composeP (line 11271) | function composeP() {
function _Set (line 15108) | function _Set() {
function hasOrAdd (line 15143) | function hasOrAdd(item, shouldAdd, set) {
function _aperture (line 15291) | function _aperture(n, list) {
function _arity (line 15314) | function _arity(n, fn) {
function _arrayFromIterator (line 15378) | function _arrayFromIterator(iter) {
function _checkForMethod (line 15428) | function _checkForMethod(methodname, fn) {
function _clone (line 15466) | function _clone(value, refFrom, refTo, deep) {
function _cloneRegExp (line 15509) | function _cloneRegExp(pattern) {
function _complement (line 15525) | function _complement(f) {
function _concat (line 15554) | function _concat(set1, set2) {
function _contains (line 15590) | function _contains(a, list) {
function _containsWith (line 15606) | function _containsWith(pred, x, list) {
function _createPartialApplicator (line 15636) | function _createPartialApplicator(concat) {
function _curry1 (line 15667) | function _curry1(fn) {
function _curry2 (line 15702) | function _curry2(fn) {
function _curry3 (line 15748) | function _curry3(fn) {
function _curryN (line 15810) | function _curryN(length, received, fn) {
function _dispatchable (line 15865) | function _dispatchable(methodNames, xf, fn) {
function dropLast (line 15904) | function dropLast(n, xs) {
function dropLastWhile (line 15923) | function dropLastWhile(pred, xs) {
function _uniqContentEquals (line 15969) | function _uniqContentEquals(aIterator, bIterator, stackA, stackB) {
function _equals (line 15983) | function _equals(a, b, stackA, stackB) {
function _filter (line 16112) | function _filter(fn, list) {
function _forceReduced (line 16186) | function _forceReduced(x) {
function _functionName (line 16205) | function _functionName(f) {
function _has (line 16223) | function _has(prop, obj) {
function _identity (line 16239) | function _identity(x) {
function _indexOf (line 16258) | function _indexOf(list, a, idx) {
function _isFunction (line 16438) | function _isFunction(x) {
function _isNumber (line 16477) | function _isNumber(x) {
function _isObject (line 16493) | function _isObject(x) {
function _isPlaceholder (line 16509) | function _isPlaceholder(a) {
function _isRegExp (line 16525) | function _isRegExp(x) {
function _isString (line 16541) | function _isString(x) {
function _isTransformer (line 16557) | function _isTransformer(obj) {
function _makeFlat (line 16582) | function _makeFlat(recursive) {
function _map (line 16619) | function _map(fn, functor) {
function _objectAssign (line 16646) | function _objectAssign(target) {
function _of (line 16680) | function _of(x) {
function _pipe (line 16696) | function _pipe(f, g) {
function _pipeP (line 16714) | function _pipeP(f, g) {
function _quote (line 16735) | function _quote(s) {
function _arrayReduce (line 16761) | function _arrayReduce(xf, acc, list) {
function _iterableReduce (line 16775) | function _iterableReduce(xf, acc, iter) {
function _methodReduce (line 16788) | function _methodReduce(xf, acc, obj, methodName) {
function _reduce (line 16794) | function _reduce(fn, acc, list) {
function _reduced (line 16829) | function _reduced(x) {
function _stepCat (line 16882) | function _stepCat(obj) {
function _toString (line 16949) | function _toString(x, seen) {
function XAll (line 17012) | function XAll(f, xf) {
function XAny (line 17059) | function XAny(f, xf) {
function XAperture (line 17106) | function XAperture(n, xf) {
function XDrop (line 17181) | function XDrop(n, xf) {
function XDropLast (line 17220) | function XDropLast(n, xf) {
function XDropLastWhile (line 17274) | function XDropLastWhile(fn, xf) {
function XDropRepeatsWith (line 17322) | function XDropRepeatsWith(pred, xf) {
function XDropWhile (line 17367) | function XDropWhile(f, xf) {
function XFilter (line 17428) | function XFilter(f, xf) {
function XFind (line 17465) | function XFind(f, xf) {
function XFindIndex (line 17512) | function XFindIndex(f, xf) {
function XFindLast (line 17559) | function XFindLast(f, xf) {
function XFindLastIndex (line 17599) | function XFindLastIndex(f, xf) {
function XMap (line 17642) | function XMap(f, xf) {
function XReduceBy (line 17679) | function XReduceBy(valueFn, valueAcc, keyFn, xf) {
function XTake (line 17735) | function XTake(n, xf) {
function XTakeWhile (line 17775) | function XTakeWhile(f, xf) {
function XTap (line 17810) | function XTap(f, xf) {
function XWrap (line 17842) | function XWrap(fn) {
function _xwrap (line 17858) | function _xwrap(fn) {
function pipe (line 21329) | function pipe() {
function pipeK (line 21387) | function pipeK() {
function pipeP (line 21433) | function pipeP() {
function _slicedToArray (line 25279) | function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterab...
function _nonIterableRest (line 25281) | function _nonIterableRest() { throw new TypeError("Invalid attempt to de...
function _iterableToArrayLimit (line 25283) | function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object...
function _arrayWithHoles (line 25285) | function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function _typeof (line 25287) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function getElement (line 25300) | function getElement(func) {
function getPoint (line 25305) | function getPoint(point) {
function cancelTrigger (line 25466) | function cancelTrigger() {
function trigger (line 25470) | function trigger(force) {
function _slicedToArray (line 25529) | function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterab...
function _nonIterableRest (line 25531) | function _nonIterableRest() { throw new TypeError("Invalid attempt to de...
function _iterableToArrayLimit (line 25533) | function _iterableToArrayLimit(arr, i) { if (!(Symbol.iterator in Object...
function _arrayWithHoles (line 25535) | function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function isSamePoint (line 25539) | function isSamePoint(prev, next) {
function restoreFocus (line 25553) | function restoreFocus(activeElement, container) {
function monitorResize (line 25559) | function monitorResize(element, callback) {
function genCSSMotion (line 25678) | function genCSSMotion(config) {
function makePrefixMap (line 25997) | function makePrefixMap(styleProp, eventName) {
function getVendorPrefixes (line 26009) | function getVendorPrefixes(domSupport, win) {
function getVendorPrefixedEventName (line 26038) | function getVendorPrefixedEventName(eventName) {
function getTransitionName (line 26064) | function getTransitionName(transitionName, transitionType) {
function Handle (line 26157) | function Handle() {
function Range (line 26379) | function Range(props) {
function Slider (line 26927) | function Slider(props) {
function noop (line 27467) | function noop() {}
function createSlider (line 27469) | function createSlider(Component) {
function createSliderWithTooltip (line 27907) | function createSliderWithTooltip(Component) {
function isEventFromHandle (line 28071) | function isEventFromHandle(e, handles) {
function isValueOutOfRange (line 28081) | function isValueOutOfRange(value, _ref) {
function isNotTouchEvent (line 28088) | function isNotTouchEvent(e) {
function getClosestPoint (line 28092) | function getClosestPoint(val, _ref2) {
function getPrecision (line 28111) | function getPrecision(step) {
function getMousePosition (line 28120) | function getMousePosition(vertical, e) {
function getTouchPosition (line 28124) | function getTouchPosition(vertical, e) {
function getHandleCenterPosition (line 28128) | function getHandleCenterPosition(vertical, handle) {
function ensureValueInRange (line 28133) | function ensureValueInRange(val, _ref3) {
function ensureValuePrecision (line 28146) | function ensureValuePrecision(val, props) {
function pauseEvent (line 28153) | function pauseEvent(e) {
function calculateNextValue (line 28158) | function calculateNextValue(func, value, props) {
function getKeyboardValueMutator (line 28179) | function getKeyboardValueMutator(e, vertical, reverse) {
function ownKeys (line 28262) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 28264) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 28266) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _objectWithoutProperties (line 28268) | function _objectWithoutProperties(source, excluded) { if (source == null...
function _objectWithoutPropertiesLoose (line 28270) | function _objectWithoutPropertiesLoose(source, excluded) { if (source ==...
function _typeof (line 28484) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function _objectWithoutProperties (line 28486) | function _objectWithoutProperties(source, excluded) { if (source == null...
function _objectWithoutPropertiesLoose (line 28488) | function _objectWithoutPropertiesLoose(source, excluded) { if (source ==...
function ownKeys (line 28490) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 28492) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 28494) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _classCallCheck (line 28496) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 28498) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 28500) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 28502) | function _possibleConstructorReturn(self, call) { if (call && (_typeof(c...
function _assertThisInitialized (line 28504) | function _assertThisInitialized(self) { if (self === void 0) { throw new...
function _getPrototypeOf (line 28506) | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? ...
function _inherits (line 28508) | function _inherits(subClass, superClass) { if (typeof superClass !== "fu...
function _setPrototypeOf (line 28510) | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf...
function supportMotion (line 28523) | function supportMotion(motion) {
function Popup (line 28532) | function Popup() {
function _typeof (line 28982) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo...
function ownKeys (line 28984) | function ownKeys(object, enumerableOnly) { var keys = Object.keys(object...
function _objectSpread (line 28986) | function _objectSpread(target) { for (var i = 1; i < arguments.length; i...
function _defineProperty (line 28988) | function _defineProperty(obj, key, value) { if (key in obj) { Object.def...
function _classCallCheck (line 28990) | function _classCallCheck(instance, Constructor) { if (!(instance instanc...
function _defineProperties (line 28992) | function _defineProperties(target, props) { for (var i = 0; i < props.le...
function _createClass (line 28994) | function _createClass(Constructor, protoProps, staticProps) { if (protoP...
function _possibleConstructorReturn (line 2
Condensed preview — 154 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (6,753K chars).
[
{
"path": ".Rbuildignore",
"chars": 511,
"preview": "# ignore JS config files/folders\nnode_modules/\ncoverage/\nsrc/\nlib/\n.babelrc\n.builderrc\n.eslintrc\n.npmignore\n.editorconfi"
},
{
"path": ".circleci/config.yml",
"chars": 1185,
"preview": "version: 2\n\njobs:\n build_and_test_node:\n docker:\n - image: circleci/python:3.7-stretch-node\n "
},
{
"path": ".eslintignore",
"chars": 188,
"preview": "build/\ncoverage/\ndist/\nlib/\nlib/*.js*\nnode_modules/\ndash_daq/metadata.json\ndash_daq/*.js*\ninst/deps/*.js*\nbabel.config.j"
},
{
"path": ".eslintrc",
"chars": 247,
"preview": "{\n \"extends\": [\n \"./node_modules/dash-components-archetype/config/eslint/eslintrc-react.json\"\n ],\n \"parser\": \"babe"
},
{
"path": ".github/CODEOWNERS",
"chars": 141,
"preview": "# These owners will be the default owners for everything in\n# the repo. Unless a later match takes precedence\n* @Marc-An"
},
{
"path": ".github/FUNDING.yml",
"chars": 56,
"preview": "custom: https://plotly.com/products/consulting-and-oem/\n"
},
{
"path": ".gitignore",
"chars": 156,
"preview": "build/\ncoverage/\ndist/\nlib/\nlib/bundle.js*\nnode_modules/\ndash_daq/metadata.json\ndash_daq/bundle.js*\n.npm\nvv/\nvenv/\n*.pyc"
},
{
"path": ".npmignore",
"chars": 126,
"preview": "node_modules/\n.npm\n.git/\nvv/\nvenv/\n*.pyc\n*.log\n.DS_Store\n\nbuild/\ncoverage/\ndist/\nlib/\nlib/bundle.js*\nnode_modules/\n*.egg"
},
{
"path": ".prettierrc",
"chars": 28,
"preview": "{\n \"singleQuote\": true\n}\n"
},
{
"path": "CHANGELOG.md",
"chars": 3706,
"preview": "# Changelog\n\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a\nChange"
},
{
"path": "CODE_OF_CONDUCT.md",
"chars": 3264,
"preview": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, w"
},
{
"path": "DESCRIPTION",
"chars": 532,
"preview": "Package: dashDaq\nTitle: Interactive Data Acquisition and Control Components for Dash \nVersion: 0.5.1\nDescription: A robu"
},
{
"path": "LICENSE",
"chars": 1086,
"preview": "MIT License\n\nCopyright (c) 2019-2024 Plotly Technologies Inc.\n\nPermission is hereby granted, free of charge, to any pers"
},
{
"path": "MANIFEST.in",
"chars": 230,
"preview": "include dash_daq/dash_daq.min.js\ninclude dash_daq/dash_daq.min.js.map\ninclude dash_daq/async-*.js\ninclude dash_daq/async"
},
{
"path": "NAMESPACE",
"chars": 410,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nexport(daqBooleanSwitch)\nexport(daqColorPicker)\nexport(daqDarkThemeProvider)\nexport"
},
{
"path": "R/daqBooleanSwitch.R",
"chars": 1050,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqBooleanSwitch <- function(id=NULL, className=NULL, color=NULL, disabled=NULL, la"
},
{
"path": "R/daqColorPicker.R",
"chars": 978,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqColorPicker <- function(id=NULL, className=NULL, disabled=NULL, label=NULL, labe"
},
{
"path": "R/daqDarkThemeProvider.R",
"chars": 510,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqDarkThemeProvider <- function(children=NULL, theme=NULL) {\n \n props <- lis"
},
{
"path": "R/daqGauge.R",
"chars": 1250,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqGauge <- function(id=NULL, base=NULL, className=NULL, color=NULL, digits=NULL, e"
},
{
"path": "R/daqGraduatedBar.R",
"chars": 964,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqGraduatedBar <- function(id=NULL, className=NULL, color=NULL, label=NULL, labelP"
},
{
"path": "R/daqIndicator.R",
"chars": 824,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqIndicator <- function(id=NULL, className=NULL, color=NULL, height=NULL, label=NU"
},
{
"path": "R/daqJoystick.R",
"chars": 750,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqJoystick <- function(id=NULL, angle=NULL, className=NULL, force=NULL, label=NULL"
},
{
"path": "R/daqKnob.R",
"chars": 1250,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqKnob <- function(id=NULL, className=NULL, color=NULL, digits=NULL, disabled=NULL"
},
{
"path": "R/daqLEDDisplay.R",
"chars": 828,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqLEDDisplay <- function(id=NULL, backgroundColor=NULL, className=NULL, color=NULL"
},
{
"path": "R/daqNumericInput.R",
"chars": 1032,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqNumericInput <- function(id=NULL, className=NULL, disabled=NULL, label=NULL, lab"
},
{
"path": "R/daqPowerButton.R",
"chars": 1136,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqPowerButton <- function(id=NULL, className=NULL, color=NULL, disabled=NULL, labe"
},
{
"path": "R/daqPrecisionInput.R",
"chars": 1086,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqPrecisionInput <- function(id=NULL, className=NULL, disabled=NULL, label=NULL, l"
},
{
"path": "R/daqSlider.R",
"chars": 1406,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqSlider <- function(id=NULL, className=NULL, color=NULL, disabled=NULL, dots=NULL"
},
{
"path": "R/daqStopButton.R",
"chars": 878,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqStopButton <- function(children=NULL, id=NULL, buttonText=NULL, className=NULL, "
},
{
"path": "R/daqTank.R",
"chars": 1334,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqTank <- function(id=NULL, base=NULL, className=NULL, color=NULL, currentValueSty"
},
{
"path": "R/daqThermometer.R",
"chars": 1084,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqThermometer <- function(id=NULL, base=NULL, className=NULL, color=NULL, height=N"
},
{
"path": "R/daqToggleSwitch.R",
"chars": 1060,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\ndaqToggleSwitch <- function(id=NULL, className=NULL, color=NULL, disabled=NULL, lab"
},
{
"path": "R/internal.R",
"chars": 1783,
"preview": ".dashDaq_js_metadata <- function() {\ndeps_metadata <- list(`dash_daq` = structure(list(name = \"dash_daq\",\nversion = \"0.5"
},
{
"path": "README.md",
"chars": 3263,
"preview": "# dash_daq\n\nDAQ components for Dash.\n\nDocs: https://dash.plotly.com/dash-daq\n\n<div align=\"center\">\n <a href=\"https://da"
},
{
"path": "babel.config.js",
"chars": 168,
"preview": "module.exports = {\n presets: [\n '@babel/preset-env',\n '@babel/preset-react'\n ],\n plugins: [\n "
},
{
"path": "bin/generateDocs",
"chars": 2736,
"preview": "#!/usr/bin/env node\n\nconst path = require('path');\nconst fs = require('fs-extra');\nconst chalk = require('chalk');\nconst"
},
{
"path": "dash-info.yaml",
"chars": 232,
"preview": "pkg_help_description: >-\n A robust set of controls that make it simpler to integrate data acquisition and controls in"
},
{
"path": "dash_daq/BooleanSwitch.py",
"chars": 3814,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Bo"
},
{
"path": "dash_daq/ColorPicker.py",
"chars": 3840,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Co"
},
{
"path": "dash_daq/DarkThemeProvider.py",
"chars": 1754,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Da"
},
{
"path": "dash_daq/Gauge.py",
"chars": 5373,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Ga"
},
{
"path": "dash_daq/GraduatedBar.py",
"chars": 3714,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Gr"
},
{
"path": "dash_daq/Indicator.py",
"chars": 2658,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass In"
},
{
"path": "dash_daq/Joystick.py",
"chars": 2347,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Jo"
},
{
"path": "dash_daq/Knob.py",
"chars": 5824,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Kn"
},
{
"path": "dash_daq/LEDDisplay.py",
"chars": 2547,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass LE"
},
{
"path": "dash_daq/NumericInput.py",
"chars": 3882,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Nu"
},
{
"path": "dash_daq/PowerButton.py",
"chars": 4008,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Po"
},
{
"path": "dash_daq/PrecisionInput.py",
"chars": 4015,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Pr"
},
{
"path": "dash_daq/Slider.py",
"chars": 7024,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Sl"
},
{
"path": "dash_daq/StopButton.py",
"chars": 2615,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass St"
},
{
"path": "dash_daq/Tank.py",
"chars": 4850,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Ta"
},
{
"path": "dash_daq/Thermometer.py",
"chars": 4392,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass Th"
},
{
"path": "dash_daq/ToggleSwitch.py",
"chars": 3924,
"preview": "# AUTO GENERATED FILE - DO NOT EDIT\n\nfrom dash.development.base_component import Component, _explicitize_args\n\n\nclass To"
},
{
"path": "dash_daq/__init__.py",
"chars": 1781,
"preview": "import os as _os\nimport dash as _dash\nimport sys as _sys\nimport json\n\n_basepath = _os.path.dirname(__file__)\n_filepath ="
},
{
"path": "dash_daq/_imports_.py",
"chars": 911,
"preview": "from .BooleanSwitch import BooleanSwitch\nfrom .ColorPicker import ColorPicker\nfrom .DarkThemeProvider import DarkThemePr"
},
{
"path": "dash_daq/async-colorpicker.js",
"chars": 158028,
"preview": "(window.webpackJsonpdash_daq=window.webpackJsonpdash_daq||[]).push([[0],Array(157).concat([function(e,t,r){\"use strict\";"
},
{
"path": "dash_daq/dash_daq.dev.js",
"chars": 1838049,
"preview": "window[\"dash_daq\"] =\n/******/ (function(modules) { // webpackBootstrap\n/******/ \t// install a JSONP callback for chunk l"
},
{
"path": "dash_daq/package-info.json",
"chars": 3752,
"preview": "{\n \"name\": \"dash-daq\",\n \"version\": \"0.6.0\",\n \"engines\": {\n \"node\": \">=8\"\n },\n \"description\": \"DAQ components for"
},
{
"path": "demo/Demo.react.js",
"chars": 8820,
"preview": "import React, { Component } from 'react';\n\nimport { colors } from '../src/styled/constants';\nimport {\n BooleanSwitch,\n "
},
{
"path": "demo/index.html",
"chars": 605,
"preview": "<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"UTF-8\" />\n <link rel=\"stylesheet\" href=\"https://cdn.rawg"
},
{
"path": "demo/index.js",
"chars": 614,
"preview": "import React from 'react';\nimport ReactDOM from 'react-dom';\n\nimport Demo from './Demo.react';\n\n// Fix for rendering Rea"
},
{
"path": "demo.py",
"chars": 18690,
"preview": "from packaging.version import Version\n\nimport dash\nprint(f\"Dash Version: {dash.__version__}\")\n\nif Version(dash.__version"
},
{
"path": "get_version_info.py",
"chars": 551,
"preview": "import os\nimport json\nimport sys\n\npackage_file = os.path.abspath(os.path.join(os.path.dirname(__file__), 'package.json')"
},
{
"path": "inst/deps/async-colorpicker.js",
"chars": 158028,
"preview": "(window.webpackJsonpdash_daq=window.webpackJsonpdash_daq||[]).push([[0],Array(157).concat([function(e,t,r){\"use strict\";"
},
{
"path": "inst/deps/bundle.js",
"chars": 1980608,
"preview": "this[\"dash_daq\"] =\n/******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar install"
},
{
"path": "inst/deps/dash_daq.dev.js",
"chars": 1838049,
"preview": "window[\"dash_daq\"] =\n/******/ (function(modules) { // webpackBootstrap\n/******/ \t// install a JSONP callback for chunk l"
},
{
"path": "man/daqBooleanSwitch.Rd",
"chars": 2473,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqBooleanSwitch}\n\n\\alias{daqBooleanSwitch}\n\n\\title{BooleanSwitch component}"
},
{
"path": "man/daqColorPicker.Rd",
"chars": 2657,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqColorPicker}\n\n\\alias{daqColorPicker}\n\n\\title{ColorPicker component}\n\n\\des"
},
{
"path": "man/daqDarkThemeProvider.Rd",
"chars": 1031,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqDarkThemeProvider}\n\n\\alias{daqDarkThemeProvider}\n\n\\title{DarkThemeProvide"
},
{
"path": "man/daqGauge.Rd",
"chars": 3937,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqGauge}\n\n\\alias{daqGauge}\n\n\\title{Gauge component}\n\n\\description{\nA Gauge "
},
{
"path": "man/daqGraduatedBar.Rd",
"chars": 2511,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqGraduatedBar}\n\n\\alias{daqGraduatedBar}\n\n\\title{GraduatedBar component}\n\n\\"
},
{
"path": "man/daqIndicator.Rd",
"chars": 1530,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqIndicator}\n\n\\alias{daqIndicator}\n\n\\title{Indicator component}\n\n\\descripti"
},
{
"path": "man/daqJoystick.Rd",
"chars": 1327,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqJoystick}\n\n\\alias{daqJoystick}\n\n\\title{Joystick component}\n\n\\description{"
},
{
"path": "man/daqKnob.Rd",
"chars": 4365,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqKnob}\n\n\\alias{daqKnob}\n\n\\title{Knob component}\n\n\\description{\nA knob comp"
},
{
"path": "man/daqLEDDisplay.Rd",
"chars": 1453,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqLEDDisplay}\n\n\\alias{daqLEDDisplay}\n\n\\title{LEDDisplay component}\n\n\\descri"
},
{
"path": "man/daqNumericInput.Rd",
"chars": 2510,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqNumericInput}\n\n\\alias{daqNumericInput}\n\n\\title{NumericInput component}\n\n\\"
},
{
"path": "man/daqPowerButton.Rd",
"chars": 2611,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqPowerButton}\n\n\\alias{daqPowerButton}\n\n\\title{PowerButton component}\n\n\\des"
},
{
"path": "man/daqPrecisionInput.Rd",
"chars": 2615,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqPrecisionInput}\n\n\\alias{daqPrecisionInput}\n\n\\title{PrecisionInput compone"
},
{
"path": "man/daqSlider.Rd",
"chars": 5435,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqSlider}\n\n\\alias{daqSlider}\n\n\\title{Slider component}\n\n\\description{\nA sli"
},
{
"path": "man/daqStopButton.Rd",
"chars": 1490,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqStopButton}\n\n\\alias{daqStopButton}\n\n\\title{StopButton component}\n\n\\descri"
},
{
"path": "man/daqTank.Rd",
"chars": 3283,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqTank}\n\n\\alias{daqTank}\n\n\\title{Tank component}\n\n\\description{\nA Tank comp"
},
{
"path": "man/daqThermometer.Rd",
"chars": 3051,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqThermometer}\n\n\\alias{daqThermometer}\n\n\\title{Thermometer component}\n\n\\des"
},
{
"path": "man/daqToggleSwitch.Rd",
"chars": 2642,
"preview": "% Auto-generated: do not edit by hand\n\\name{daqToggleSwitch}\n\n\\alias{daqToggleSwitch}\n\n\\title{ToggleSwitch component}\n\n\\"
},
{
"path": "man/dashDaq-package.Rd",
"chars": 367,
"preview": "% Auto-generated: do not edit by hand\n\\docType{package}\n\\name{dashDaq-package}\n\\alias{dashDaq}\n\\title{Interactive Data A"
},
{
"path": "package.json",
"chars": 3752,
"preview": "{\n \"name\": \"dash-daq\",\n \"version\": \"0.6.0\",\n \"engines\": {\n \"node\": \">=8\"\n },\n \"description\": \"DAQ components for"
},
{
"path": "requirements.txt",
"chars": 62,
"preview": "--index-url https://pypi.python.org/simple/\n\n-e .\ndash>=1.6.0\n"
},
{
"path": "setup.py",
"chars": 1074,
"preview": "import json\nimport os\nfrom setuptools import setup\nfrom io import open\n\nfilepath = os.path.join(os.path.abspath(os.path."
},
{
"path": "src/components/BooleanSwitch.react.js",
"chars": 4247,
"preview": "import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport { withTheme } from 'styled-componen"
},
{
"path": "src/components/ColorPicker.react.js",
"chars": 3322,
"preview": "import PropTypes from 'prop-types';\nimport React, { Component, lazy, Suspense } from 'react';\n\nimport { light } from '.."
},
{
"path": "src/components/DarkThemeProvider.react.js",
"chars": 1077,
"preview": "import React from 'react';\nimport PropTypes from 'prop-types';\n\nimport { ThemeProvider } from 'styled-components';\nimpor"
},
{
"path": "src/components/Gauge.react.js",
"chars": 8024,
"preview": "import React, { useRef, useEffect } from 'react';\nimport PropTypes from 'prop-types';\nimport { withTheme } from 'styled-"
},
{
"path": "src/components/GraduatedBar.react.js",
"chars": 5141,
"preview": "import React from 'react';\nimport PropTypes from 'prop-types';\n\nimport { withTheme } from 'styled-components';\nimport { "
},
{
"path": "src/components/Indicator.react.js",
"chars": 2865,
"preview": "import React from 'react';\nimport PropTypes from 'prop-types';\nimport convertColor from 'color';\nimport { withTheme } fr"
},
{
"path": "src/components/Joystick.react.js",
"chars": 3349,
"preview": "import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport { withTheme } from 'styled-componen"
},
{
"path": "src/components/Knob.react.js",
"chars": 11252,
"preview": "import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport { withTheme } from 'styled-componen"
},
{
"path": "src/components/LEDDisplay.react.js",
"chars": 3798,
"preview": "import React from 'react';\nimport PropTypes from 'prop-types';\nimport { withTheme } from 'styled-components';\n\nimport { "
},
{
"path": "src/components/NumericInput.react.js",
"chars": 5669,
"preview": "import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport { withTheme } from 'styled-componen"
},
{
"path": "src/components/PowerButton.react.js",
"chars": 5212,
"preview": "import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport { withTheme } from 'styled-componen"
},
{
"path": "src/components/PrecisionInput.react.js",
"chars": 8770,
"preview": "import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport { withTheme } from 'styled-componen"
},
{
"path": "src/components/Slider.react.js",
"chars": 6622,
"preview": "import PropTypes from 'prop-types';\nimport React, { Component, Suspense } from 'react';\n\nimport { colors, light } from '"
},
{
"path": "src/components/StopButton.react.js",
"chars": 2634,
"preview": "import React from 'react';\nimport PropTypes from 'prop-types';\nimport { withTheme } from 'styled-components';\n\nimport { "
},
{
"path": "src/components/Tank.react.js",
"chars": 7442,
"preview": "import React, { useEffect, useRef } from 'react';\nimport PropTypes from 'prop-types';\n\nimport { withTheme } from 'styled"
},
{
"path": "src/components/Thermometer.react.js",
"chars": 6499,
"preview": "import React from 'react';\nimport PropTypes from 'prop-types';\nimport { withTheme } from 'styled-components';\n\nimport { "
},
{
"path": "src/components/ToggleSwitch.react.js",
"chars": 7307,
"preview": "import React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport { withTheme } from 'styled-componen"
},
{
"path": "src/components/__tests__/.eslintrc",
"chars": 134,
"preview": "---\n extends: ../../../node_modules/dash-components-archetype/config/eslint/eslintrc-test.json\n\n globals:\n "
},
{
"path": "src/components/__tests__/BooleanSwitch.test.js",
"chars": 3724,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/ColorPicker.test.js",
"chars": 3341,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/Gauge.test.js",
"chars": 5759,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/GraduatedBar.test.js",
"chars": 3695,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/Indicator.test.js",
"chars": 2797,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/Knob.test.js",
"chars": 6267,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/LEDDisplay.test.js",
"chars": 5038,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/NumericInput.test.js",
"chars": 3203,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/PowerButton.test.js",
"chars": 2883,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/PrecisionInput.test.js",
"chars": 5583,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/Slider.test.js",
"chars": 7143,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport ReactSlider from 'rc-slider';\nimport Enzyme from 'enzyme';\nimport"
},
{
"path": "src/components/__tests__/StopButton.test.js",
"chars": 2498,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/Tank.test.js",
"chars": 3853,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/Thermometer.test.js",
"chars": 4372,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/components/__tests__/ToggleSwitch.test.js",
"chars": 3915,
"preview": "/* eslint-disable */\nimport React from 'react';\nimport Enzyme from 'enzyme';\nimport Adapter from 'enzyme-adapter-react-1"
},
{
"path": "src/fragments/ColorPicker.react.js",
"chars": 2499,
"preview": "import React, { Component } from 'react';\nimport { ChromePicker } from 'react-color';\nimport { withTheme } from 'styled-"
},
{
"path": "src/fragments/Slider.react.js",
"chars": 6443,
"preview": "import React, { Component } from 'react';\nimport ReactSlider from 'rc-slider';\nimport { withTheme } from 'styled-compone"
},
{
"path": "src/helpers/GaugeSvg.react.js",
"chars": 5001,
"preview": "import React from 'react';\n\nimport { light } from '../styled/constants';\nimport darkGradientDefs from '../styled/shared/"
},
{
"path": "src/helpers/KnobSvg.react.js",
"chars": 5684,
"preview": "import React from 'react';\n\nimport { light } from '../styled/constants';\nimport darkGradientDefs from '../styled/shared/"
},
{
"path": "src/helpers/LEDDisplaySvg.react.js",
"chars": 4970,
"preview": "import React from 'react';\nimport Color from 'color';\n\nimport { DarkDigitContainer } from '../styled/LEDDisplay.styled';"
},
{
"path": "src/helpers/NumericInput.js",
"chars": 474,
"preview": "import { default as Input } from 'react-numeric-input';\n\nInput.prototype.UNSAFE_componentWillMount = Input.prototype.com"
},
{
"path": "src/helpers/PowerButtonSvg.react.js",
"chars": 1703,
"preview": "import React from 'react';\n\nimport { light } from '../styled/constants';\n\nconst PowerButtonSvg = ({ color, theme, on, si"
},
{
"path": "src/helpers/classNameGenerator.js",
"chars": 267,
"preview": "import { omit } from 'ramda';\n\nexport const getClassName = (componentName, theme) => {\n return 'daq-' + componentName +"
},
{
"path": "src/helpers/colorRanges.js",
"chars": 5664,
"preview": "import tinygradient from 'tinygradient';\n\nexport const isContiguous = ({ color, min, max }) => {\n const ranges = toOneD"
},
{
"path": "src/helpers/logarithm.js",
"chars": 1451,
"preview": "import React from 'react';\nimport styled from 'styled-components';\n\nimport { roundToDecimal } from './util';\n\nfunction c"
},
{
"path": "src/helpers/scale.js",
"chars": 2183,
"preview": "import { decimalify } from './util';\n\n// magic numbers\nconst DEFAULT_NUM_INTERVALS = 10;\nconst DEFAULT_LABEL_INTERVAL = "
},
{
"path": "src/helpers/shared/TrackSvg.js",
"chars": 6779,
"preview": "import React from 'react';\n\nimport { longestString, getRandomInt, computeProgress } from '../../helpers/util';\nimport { "
},
{
"path": "src/helpers/util.js",
"chars": 1212,
"preview": "export const longestString = arr =>\n arr.sort(function(a, b) {\n return b.length - a.length;\n })[0];\n\nexport const d"
},
{
"path": "src/index.js",
"chars": 1255,
"preview": "/* eslint-disable import/prefer-default-export */\nexport { default as BooleanSwitch } from './components/BooleanSwitch.r"
},
{
"path": "src/styled/ColorPicker.styled.js",
"chars": 3707,
"preview": "import styled, { css } from 'styled-components';\n\nimport { light } from './constants';\n\nexport const Container = styled."
},
{
"path": "src/styled/CurrentValue.styled.js",
"chars": 1285,
"preview": "import React from 'react';\nimport styled, { css } from 'styled-components';\n\nimport { light } from './constants';\n\nconst"
},
{
"path": "src/styled/Gauge.styled.js",
"chars": 973,
"preview": "import styled, { css } from 'styled-components';\nimport { light } from '../styled/constants';\n\nconst Container = styled."
},
{
"path": "src/styled/GraduatedBar.styled.js",
"chars": 3175,
"preview": "import styled, { css } from 'styled-components';\nimport { light } from './constants';\n\nexport const Container = styled.d"
},
{
"path": "src/styled/Knob.styled.js",
"chars": 1082,
"preview": "import styled, { css } from 'styled-components';\nimport { light } from './constants';\n\nconst Container = styled.div`\n d"
},
{
"path": "src/styled/LEDDisplay.styled.js",
"chars": 1093,
"preview": "import styled, { css } from 'styled-components';\n\nimport { light } from './constants';\n\nexport const LEDContainer = styl"
},
{
"path": "src/styled/PowerButton.styled.js",
"chars": 1860,
"preview": "import styled, { css } from 'styled-components';\nimport { light } from '../styled/constants';\n\nexport const Container = "
},
{
"path": "src/styled/PrecisionInput.styled.js",
"chars": 1491,
"preview": "import styled, { css } from 'styled-components';\n\nexport const Container = styled.div`\n margin: 0 auto;\n display: flex"
},
{
"path": "src/styled/Slider.styled.js",
"chars": 6225,
"preview": "import React from 'react';\nimport styled, { css } from 'styled-components';\n\nimport { UnstyledDarkHandle } from './share"
},
{
"path": "src/styled/StopButton.styled.js",
"chars": 2092,
"preview": "import styled, { css } from 'styled-components';\n\nimport { light } from './constants';\n\nexport const Button = styled.but"
},
{
"path": "src/styled/Tank.styled.js",
"chars": 3057,
"preview": "import styled, { css } from 'styled-components';\nimport Color from 'color';\n\nimport { light } from './constants';\n\nexpor"
},
{
"path": "src/styled/Thermometer.styled.js",
"chars": 856,
"preview": "import styled from 'styled-components';\n\nimport { light } from './constants';\n\nconst WIDTH = 20;\n\nexport const Thermomet"
},
{
"path": "src/styled/ToggleSwitch.styled.js",
"chars": 5426,
"preview": "import styled, { css } from 'styled-components';\n\nimport { light } from './constants';\nimport Label from './shared/Label"
},
{
"path": "src/styled/constants.js",
"chars": 559,
"preview": "export const colors = {\n PRIMARY: '#ABE2FB',\n SECONDARY: '#E6E6E6',\n DARKER_PRIMARY: '#87ceeb',\n OFF_WHITE: '#15181A"
},
{
"path": "src/styled/shared/DarkGradient.js",
"chars": 22920,
"preview": "import React from 'react';\n\nexport const UnstyledDarkHandle = ({ className }) => (\n <svg className={className} xmlns=\"h"
},
{
"path": "src/styled/shared/Indicator.styled.js",
"chars": 1967,
"preview": "import PropTypes from 'prop-types';\nimport styled, { css } from 'styled-components';\n\nimport { light } from '../constant"
},
{
"path": "src/styled/shared/Label.styled.js",
"chars": 316,
"preview": "import styled, { css } from 'styled-components';\n\nexport default styled.label`\n display: block;\n font-size: 14px;\n ${"
},
{
"path": "src/styled/shared/LabelContainer.styled.js",
"chars": 1178,
"preview": "import React from 'react';\nimport styled from 'styled-components';\n\nimport Label from './Label.styled';\n\nconst Container"
},
{
"path": "webpack.config.js",
"chars": 2797,
"preview": "const path = require('path');\nconst WebpackDashDynamicImport = require('@plotly/webpack-dash-dynamic-import');\n\nconst pa"
}
]
About this extraction
This page contains the full source code of the plotly/dash-daq GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 154 files (6.1 MB), approximately 1.6M tokens, and a symbol index with 2932 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.