@openlettermarketing/olc-vue-sdk
Version:
Simplify template builder integration for any product.
790 lines (767 loc) • 10.5 MB
JavaScript
/******/ var __webpack_modules__ = ({
/***/ 49514:
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ u: function() { return /* binding */ AbstractComponent; }
/* harmony export */ });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(31635);
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(96540);
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(78701);
/*
* Copyright 2019 Palantir Technologies, Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* An abstract component that Blueprint components can extend
* in order to add some common functionality like runtime props validation.
*/
// eslint-disable-next-line @typescript-eslint/ban-types
var AbstractComponent = /** @class */ (function (_super) {
(0,tslib__WEBPACK_IMPORTED_MODULE_1__/* .__extends */ .C6)(AbstractComponent, _super);
function AbstractComponent(props) {
var _this = _super.call(this, props) || this;
// Not bothering to remove entries when their timeouts finish because clearing invalid ID is a no-op
_this.timeoutIds = [];
_this.requestIds = [];
/**
* Clear all known timeouts.
*/
_this.clearTimeouts = function () {
if (_this.timeoutIds.length > 0) {
for (var _i = 0, _a = _this.timeoutIds; _i < _a.length; _i++) {
var timeoutId = _a[_i];
window.clearTimeout(timeoutId);
}
_this.timeoutIds = [];
}
};
/**
* Clear all known animation frame requests.
*/
_this.cancelAnimationFrames = function () {
if (_this.requestIds.length > 0) {
for (var _i = 0, _a = _this.requestIds; _i < _a.length; _i++) {
var requestId = _a[_i];
window.cancelAnimationFrame(requestId);
}
_this.requestIds = [];
}
};
if (!(0,_utils__WEBPACK_IMPORTED_MODULE_2__/* .isNodeEnv */ .wD)("production")) {
_this.validateProps(_this.props);
}
return _this;
}
AbstractComponent.prototype.componentDidUpdate = function (_prevProps, _prevState, _snapshot) {
if (!(0,_utils__WEBPACK_IMPORTED_MODULE_2__/* .isNodeEnv */ .wD)("production")) {
this.validateProps(this.props);
}
};
AbstractComponent.prototype.componentWillUnmount = function () {
this.clearTimeouts();
this.cancelAnimationFrames();
};
/**
* Request an animation frame and remember its ID.
* All pending requests will be canceled when component unmounts.
*
* @returns a "cancel" function that will cancel the request when invoked.
*/
AbstractComponent.prototype.requestAnimationFrame = function (callback) {
var handle = window.requestAnimationFrame(callback);
this.requestIds.push(handle);
return function () { return window.cancelAnimationFrame(handle); };
};
/**
* Set a timeout and remember its ID.
* All stored timeouts will be cleared when component unmounts.
*
* @returns a "cancel" function that will clear timeout when invoked.
*/
AbstractComponent.prototype.setTimeout = function (callback, timeout) {
var handle = window.setTimeout(callback, timeout);
this.timeoutIds.push(handle);
return function () { return window.clearTimeout(handle); };
};
/**
* Ensures that the props specified for a component are valid.
* Implementations should check that props are valid and usually throw an Error if they are not.
* Implementations should not duplicate checks that the type system already guarantees.
*
* This method should be used instead of React's
* [propTypes](https://facebook.github.io/react/docs/reusable-components.html#prop-validation) feature.
* Like propTypes, these runtime checks run only in development mode.
*/
AbstractComponent.prototype.validateProps = function (_props) {
// implement in subclass
};
return AbstractComponent;
}(react__WEBPACK_IMPORTED_MODULE_0__.Component));
//# sourceMappingURL=abstractComponent.js.map
/***/ }),
/***/ 97312:
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ a: function() { return /* binding */ AbstractPureComponent; }
/* harmony export */ });
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(31635);
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(96540);
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(78701);
/*
* Copyright 2019 Palantir Technologies, Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* An abstract component that Blueprint components can extend
* in order to add some common functionality like runtime props validation.
*/
// eslint-disable-next-line @typescript-eslint/ban-types
var AbstractPureComponent = /** @class */ (function (_super) {
(0,tslib__WEBPACK_IMPORTED_MODULE_1__/* .__extends */ .C6)(AbstractPureComponent, _super);
function AbstractPureComponent(props) {
var _this = _super.call(this, props) || this;
// Not bothering to remove entries when their timeouts finish because clearing invalid ID is a no-op
_this.timeoutIds = [];
_this.requestIds = [];
/**
* Clear all known timeouts.
*/
_this.clearTimeouts = function () {
if (_this.timeoutIds.length > 0) {
for (var _i = 0, _a = _this.timeoutIds; _i < _a.length; _i++) {
var timeoutId = _a[_i];
window.clearTimeout(timeoutId);
}
_this.timeoutIds = [];
}
};
/**
* Clear all known animation frame requests.
*/
_this.cancelAnimationFrames = function () {
if (_this.requestIds.length > 0) {
for (var _i = 0, _a = _this.requestIds; _i < _a.length; _i++) {
var requestId = _a[_i];
window.cancelAnimationFrame(requestId);
}
_this.requestIds = [];
}
};
if (!(0,_utils__WEBPACK_IMPORTED_MODULE_2__/* .isNodeEnv */ .wD)("production")) {
_this.validateProps(_this.props);
}
return _this;
}
AbstractPureComponent.prototype.componentDidUpdate = function (_prevProps, _prevState, _snapshot) {
if (!(0,_utils__WEBPACK_IMPORTED_MODULE_2__/* .isNodeEnv */ .wD)("production")) {
this.validateProps(this.props);
}
};
AbstractPureComponent.prototype.componentWillUnmount = function () {
this.clearTimeouts();
this.cancelAnimationFrames();
};
/**
* Request an animation frame and remember its ID.
* All pending requests will be canceled when component unmounts.
*
* @returns a "cancel" function that will cancel the request when invoked.
*/
AbstractPureComponent.prototype.requestAnimationFrame = function (callback) {
var handle = window.requestAnimationFrame(callback);
this.requestIds.push(handle);
return function () { return window.cancelAnimationFrame(handle); };
};
/**
* Set a timeout and remember its ID.
* All pending timeouts will be cleared when component unmounts.
*
* @returns a "cancel" function that will clear timeout when invoked.
*/
AbstractPureComponent.prototype.setTimeout = function (callback, timeout) {
var handle = window.setTimeout(callback, timeout);
this.timeoutIds.push(handle);
return function () { return window.clearTimeout(handle); };
};
/**
* Ensures that the props specified for a component are valid.
* Implementations should check that props are valid and usually throw an Error if they are not.
* Implementations should not duplicate checks that the type system already guarantees.
*
* This method should be used instead of React's
* [propTypes](https://facebook.github.io/react/docs/reusable-components.html#prop-validation) feature.
* Like propTypes, these runtime checks run only in development mode.
*/
AbstractPureComponent.prototype.validateProps = function (_props) {
// implement in subclass
};
return AbstractPureComponent;
}(react__WEBPACK_IMPORTED_MODULE_0__.PureComponent));
//# sourceMappingURL=abstractPureComponent.js.map
/***/ }),
/***/ 57178:
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ C: function() { return /* binding */ Alignment; }
/* harmony export */ });
/*
* Copyright 2018 Palantir Technologies, Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/** Alignment along the horizontal axis. */
var Alignment = {
CENTER: "center",
LEFT: "left",
RIGHT: "right",
};
//# sourceMappingURL=alignment.js.map
/***/ }),
/***/ 53991:
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ ACTIVE: function() { return /* binding */ ACTIVE; },
/* harmony export */ ALERT: function() { return /* binding */ ALERT; },
/* harmony export */ ALERT_BODY: function() { return /* binding */ ALERT_BODY; },
/* harmony export */ ALERT_CONTENTS: function() { return /* binding */ ALERT_CONTENTS; },
/* harmony export */ ALERT_FOOTER: function() { return /* binding */ ALERT_FOOTER; },
/* harmony export */ ALIGN_LEFT: function() { return /* binding */ ALIGN_LEFT; },
/* harmony export */ ALIGN_RIGHT: function() { return /* binding */ ALIGN_RIGHT; },
/* harmony export */ BLOCKQUOTE: function() { return /* binding */ BLOCKQUOTE; },
/* harmony export */ BREADCRUMB: function() { return /* binding */ BREADCRUMB; },
/* harmony export */ BREADCRUMBS: function() { return /* binding */ BREADCRUMBS; },
/* harmony export */ BREADCRUMBS_COLLAPSED: function() { return /* binding */ BREADCRUMBS_COLLAPSED; },
/* harmony export */ BREADCRUMB_CURRENT: function() { return /* binding */ BREADCRUMB_CURRENT; },
/* harmony export */ BUTTON: function() { return /* binding */ BUTTON; },
/* harmony export */ BUTTON_GROUP: function() { return /* binding */ BUTTON_GROUP; },
/* harmony export */ BUTTON_SPINNER: function() { return /* binding */ BUTTON_SPINNER; },
/* harmony export */ BUTTON_TEXT: function() { return /* binding */ BUTTON_TEXT; },
/* harmony export */ CALLOUT: function() { return /* binding */ CALLOUT; },
/* harmony export */ CALLOUT_HAS_BODY_CONTENT: function() { return /* binding */ CALLOUT_HAS_BODY_CONTENT; },
/* harmony export */ CALLOUT_ICON: function() { return /* binding */ CALLOUT_ICON; },
/* harmony export */ CARD: function() { return /* binding */ CARD; },
/* harmony export */ CARD_LIST: function() { return /* binding */ CARD_LIST; },
/* harmony export */ CARD_LIST_BORDERED: function() { return /* binding */ CARD_LIST_BORDERED; },
/* harmony export */ CHECKBOX: function() { return /* binding */ CHECKBOX; },
/* harmony export */ CHECKBOX_CONTROL_CARD: function() { return /* binding */ CHECKBOX_CONTROL_CARD; },
/* harmony export */ CODE: function() { return /* binding */ CODE; },
/* harmony export */ CODE_BLOCK: function() { return /* binding */ CODE_BLOCK; },
/* harmony export */ COLLAPSE: function() { return /* binding */ COLLAPSE; },
/* harmony export */ COLLAPSE_BODY: function() { return /* binding */ COLLAPSE_BODY; },
/* harmony export */ COMPACT: function() { return /* binding */ COMPACT; },
/* harmony export */ COMPOUND_TAG: function() { return /* binding */ COMPOUND_TAG; },
/* harmony export */ COMPOUND_TAG_LEFT: function() { return /* binding */ COMPOUND_TAG_LEFT; },
/* harmony export */ COMPOUND_TAG_LEFT_CONTENT: function() { return /* binding */ COMPOUND_TAG_LEFT_CONTENT; },
/* harmony export */ COMPOUND_TAG_RIGHT: function() { return /* binding */ COMPOUND_TAG_RIGHT; },
/* harmony export */ COMPOUND_TAG_RIGHT_CONTENT: function() { return /* binding */ COMPOUND_TAG_RIGHT_CONTENT; },
/* harmony export */ CONTEXT_MENU: function() { return /* binding */ CONTEXT_MENU; },
/* harmony export */ CONTEXT_MENU_BACKDROP: function() { return /* binding */ CONTEXT_MENU_BACKDROP; },
/* harmony export */ CONTEXT_MENU_POPOVER: function() { return /* binding */ CONTEXT_MENU_POPOVER; },
/* harmony export */ CONTEXT_MENU_VIRTUAL_TARGET: function() { return /* binding */ CONTEXT_MENU_VIRTUAL_TARGET; },
/* harmony export */ CONTROL: function() { return /* binding */ CONTROL; },
/* harmony export */ CONTROL_CARD: function() { return /* binding */ CONTROL_CARD; },
/* harmony export */ CONTROL_CARD_LABEL: function() { return /* binding */ CONTROL_CARD_LABEL; },
/* harmony export */ CONTROL_GROUP: function() { return /* binding */ CONTROL_GROUP; },
/* harmony export */ CONTROL_INDICATOR: function() { return /* binding */ CONTROL_INDICATOR; },
/* harmony export */ CONTROL_INDICATOR_CHILD: function() { return /* binding */ CONTROL_INDICATOR_CHILD; },
/* harmony export */ DARK: function() { return /* binding */ DARK; },
/* harmony export */ DIALOG: function() { return /* binding */ DIALOG; },
/* harmony export */ DIALOG_BODY: function() { return /* binding */ DIALOG_BODY; },
/* harmony export */ DIALOG_BODY_SCROLL_CONTAINER: function() { return /* binding */ DIALOG_BODY_SCROLL_CONTAINER; },
/* harmony export */ DIALOG_CLOSE_BUTTON: function() { return /* binding */ DIALOG_CLOSE_BUTTON; },
/* harmony export */ DIALOG_CONTAINER: function() { return /* binding */ DIALOG_CONTAINER; },
/* harmony export */ DIALOG_FOOTER: function() { return /* binding */ DIALOG_FOOTER; },
/* harmony export */ DIALOG_FOOTER_ACTIONS: function() { return /* binding */ DIALOG_FOOTER_ACTIONS; },
/* harmony export */ DIALOG_FOOTER_FIXED: function() { return /* binding */ DIALOG_FOOTER_FIXED; },
/* harmony export */ DIALOG_FOOTER_MAIN_SECTION: function() { return /* binding */ DIALOG_FOOTER_MAIN_SECTION; },
/* harmony export */ DIALOG_HEADER: function() { return /* binding */ DIALOG_HEADER; },
/* harmony export */ DIALOG_STEP: function() { return /* binding */ DIALOG_STEP; },
/* harmony export */ DIALOG_STEP_CONTAINER: function() { return /* binding */ DIALOG_STEP_CONTAINER; },
/* harmony export */ DIALOG_STEP_ICON: function() { return /* binding */ DIALOG_STEP_ICON; },
/* harmony export */ DIALOG_STEP_TITLE: function() { return /* binding */ DIALOG_STEP_TITLE; },
/* harmony export */ DIALOG_STEP_VIEWED: function() { return /* binding */ DIALOG_STEP_VIEWED; },
/* harmony export */ DISABLED: function() { return /* binding */ DISABLED; },
/* harmony export */ DIVIDER: function() { return /* binding */ DIVIDER; },
/* harmony export */ DRAWER: function() { return /* binding */ DRAWER; },
/* harmony export */ DRAWER_BODY: function() { return /* binding */ DRAWER_BODY; },
/* harmony export */ DRAWER_FOOTER: function() { return /* binding */ DRAWER_FOOTER; },
/* harmony export */ DRAWER_HEADER: function() { return /* binding */ DRAWER_HEADER; },
/* harmony export */ EDITABLE_TEXT: function() { return /* binding */ EDITABLE_TEXT; },
/* harmony export */ EDITABLE_TEXT_CONTENT: function() { return /* binding */ EDITABLE_TEXT_CONTENT; },
/* harmony export */ EDITABLE_TEXT_EDITING: function() { return /* binding */ EDITABLE_TEXT_EDITING; },
/* harmony export */ EDITABLE_TEXT_INPUT: function() { return /* binding */ EDITABLE_TEXT_INPUT; },
/* harmony export */ EDITABLE_TEXT_PLACEHOLDER: function() { return /* binding */ EDITABLE_TEXT_PLACEHOLDER; },
/* harmony export */ ELEVATION_0: function() { return /* binding */ ELEVATION_0; },
/* harmony export */ ELEVATION_1: function() { return /* binding */ ELEVATION_1; },
/* harmony export */ ELEVATION_2: function() { return /* binding */ ELEVATION_2; },
/* harmony export */ ELEVATION_3: function() { return /* binding */ ELEVATION_3; },
/* harmony export */ ELEVATION_4: function() { return /* binding */ ELEVATION_4; },
/* harmony export */ END: function() { return /* binding */ END; },
/* harmony export */ ENTITY_TITLE: function() { return /* binding */ ENTITY_TITLE; },
/* harmony export */ ENTITY_TITLE_ELLIPSIZE: function() { return /* binding */ ENTITY_TITLE_ELLIPSIZE; },
/* harmony export */ ENTITY_TITLE_HAS_SUBTITLE: function() { return /* binding */ ENTITY_TITLE_HAS_SUBTITLE; },
/* harmony export */ ENTITY_TITLE_ICON_CONTAINER: function() { return /* binding */ ENTITY_TITLE_ICON_CONTAINER; },
/* harmony export */ ENTITY_TITLE_SUBTITLE: function() { return /* binding */ ENTITY_TITLE_SUBTITLE; },
/* harmony export */ ENTITY_TITLE_TAGS_CONTAINER: function() { return /* binding */ ENTITY_TITLE_TAGS_CONTAINER; },
/* harmony export */ ENTITY_TITLE_TEXT: function() { return /* binding */ ENTITY_TITLE_TEXT; },
/* harmony export */ ENTITY_TITLE_TITLE: function() { return /* binding */ ENTITY_TITLE_TITLE; },
/* harmony export */ ENTITY_TITLE_TITLE_AND_TAGS: function() { return /* binding */ ENTITY_TITLE_TITLE_AND_TAGS; },
/* harmony export */ FILE_INPUT: function() { return /* binding */ FILE_INPUT; },
/* harmony export */ FILE_INPUT_HAS_SELECTION: function() { return /* binding */ FILE_INPUT_HAS_SELECTION; },
/* harmony export */ FILE_UPLOAD_INPUT: function() { return /* binding */ FILE_UPLOAD_INPUT; },
/* harmony export */ FILE_UPLOAD_INPUT_CUSTOM_TEXT: function() { return /* binding */ FILE_UPLOAD_INPUT_CUSTOM_TEXT; },
/* harmony export */ FILL: function() { return /* binding */ FILL; },
/* harmony export */ FIXED: function() { return /* binding */ FIXED; },
/* harmony export */ FIXED_TOP: function() { return /* binding */ FIXED_TOP; },
/* harmony export */ FLEX_EXPANDER: function() { return /* binding */ FLEX_EXPANDER; },
/* harmony export */ FOCUS_DISABLED: function() { return /* binding */ FOCUS_DISABLED; },
/* harmony export */ FOCUS_STYLE_MANAGER_IGNORE: function() { return /* binding */ FOCUS_STYLE_MANAGER_IGNORE; },
/* harmony export */ FORM_CONTENT: function() { return /* binding */ FORM_CONTENT; },
/* harmony export */ FORM_GROUP: function() { return /* binding */ FORM_GROUP; },
/* harmony export */ FORM_GROUP_SUB_LABEL: function() { return /* binding */ FORM_GROUP_SUB_LABEL; },
/* harmony export */ FORM_HELPER_TEXT: function() { return /* binding */ FORM_HELPER_TEXT; },
/* harmony export */ HEADING: function() { return /* binding */ HEADING; },
/* harmony export */ HOTKEY: function() { return /* binding */ HOTKEY; },
/* harmony export */ HOTKEY_COLUMN: function() { return /* binding */ HOTKEY_COLUMN; },
/* harmony export */ HOTKEY_DIALOG: function() { return /* binding */ HOTKEY_DIALOG; },
/* harmony export */ HOTKEY_LABEL: function() { return /* binding */ HOTKEY_LABEL; },
/* harmony export */ HTML_SELECT: function() { return /* binding */ HTML_SELECT; },
/* harmony export */ HTML_TABLE: function() { return /* binding */ HTML_TABLE; },
/* harmony export */ HTML_TABLE_BORDERED: function() { return /* binding */ HTML_TABLE_BORDERED; },
/* harmony export */ HTML_TABLE_STRIPED: function() { return /* binding */ HTML_TABLE_STRIPED; },
/* harmony export */ ICON: function() { return /* binding */ ICON; },
/* harmony export */ ICON_LARGE: function() { return /* binding */ ICON_LARGE; },
/* harmony export */ ICON_MUTED: function() { return /* binding */ ICON_MUTED; },
/* harmony export */ ICON_STANDARD: function() { return /* binding */ ICON_STANDARD; },
/* harmony export */ INLINE: function() { return /* binding */ INLINE; },
/* harmony export */ INPUT: function() { return /* binding */ INPUT; },
/* harmony export */ INPUT_ACTION: function() { return /* binding */ INPUT_ACTION; },
/* harmony export */ INPUT_GHOST: function() { return /* binding */ INPUT_GHOST; },
/* harmony export */ INPUT_GROUP: function() { return /* binding */ INPUT_GROUP; },
/* harmony export */ INPUT_LEFT_CONTAINER: function() { return /* binding */ INPUT_LEFT_CONTAINER; },
/* harmony export */ INTENT_DANGER: function() { return /* binding */ INTENT_DANGER; },
/* harmony export */ INTENT_PRIMARY: function() { return /* binding */ INTENT_PRIMARY; },
/* harmony export */ INTENT_SUCCESS: function() { return /* binding */ INTENT_SUCCESS; },
/* harmony export */ INTENT_WARNING: function() { return /* binding */ INTENT_WARNING; },
/* harmony export */ INTERACTIVE: function() { return /* binding */ INTERACTIVE; },
/* harmony export */ KEY: function() { return /* binding */ KEY; },
/* harmony export */ KEY_COMBO: function() { return /* binding */ KEY_COMBO; },
/* harmony export */ LABEL: function() { return /* binding */ LABEL; },
/* harmony export */ LARGE: function() { return /* binding */ LARGE; },
/* harmony export */ LIST: function() { return /* binding */ LIST; },
/* harmony export */ LIST_UNSTYLED: function() { return /* binding */ LIST_UNSTYLED; },
/* harmony export */ LOADING: function() { return /* binding */ LOADING; },
/* harmony export */ MENU: function() { return /* binding */ MENU; },
/* harmony export */ MENU_DIVIDER: function() { return /* binding */ MENU_DIVIDER; },
/* harmony export */ MENU_HEADER: function() { return /* binding */ MENU_HEADER; },
/* harmony export */ MENU_ITEM: function() { return /* binding */ MENU_ITEM; },
/* harmony export */ MENU_ITEM_ICON: function() { return /* binding */ MENU_ITEM_ICON; },
/* harmony export */ MENU_ITEM_IS_SELECTABLE: function() { return /* binding */ MENU_ITEM_IS_SELECTABLE; },
/* harmony export */ MENU_ITEM_LABEL: function() { return /* binding */ MENU_ITEM_LABEL; },
/* harmony export */ MENU_ITEM_SELECTED_ICON: function() { return /* binding */ MENU_ITEM_SELECTED_ICON; },
/* harmony export */ MENU_SUBMENU: function() { return /* binding */ MENU_SUBMENU; },
/* harmony export */ MENU_SUBMENU_ICON: function() { return /* binding */ MENU_SUBMENU_ICON; },
/* harmony export */ MINIMAL: function() { return /* binding */ MINIMAL; },
/* harmony export */ MODIFIER_KEY: function() { return /* binding */ MODIFIER_KEY; },
/* harmony export */ MONOSPACE_TEXT: function() { return /* binding */ MONOSPACE_TEXT; },
/* harmony export */ MULTILINE: function() { return /* binding */ MULTILINE; },
/* harmony export */ MULTISTEP_DIALOG: function() { return /* binding */ MULTISTEP_DIALOG; },
/* harmony export */ MULTISTEP_DIALOG_LEFT_PANEL: function() { return /* binding */ MULTISTEP_DIALOG_LEFT_PANEL; },
/* harmony export */ MULTISTEP_DIALOG_NAV_RIGHT: function() { return /* binding */ MULTISTEP_DIALOG_NAV_RIGHT; },
/* harmony export */ MULTISTEP_DIALOG_NAV_TOP: function() { return /* binding */ MULTISTEP_DIALOG_NAV_TOP; },
/* harmony export */ MULTISTEP_DIALOG_PANELS: function() { return /* binding */ MULTISTEP_DIALOG_PANELS; },
/* harmony export */ MULTISTEP_DIALOG_RIGHT_PANEL: function() { return /* binding */ MULTISTEP_DIALOG_RIGHT_PANEL; },
/* harmony export */ NAVBAR: function() { return /* binding */ NAVBAR; },
/* harmony export */ NAVBAR_DIVIDER: function() { return /* binding */ NAVBAR_DIVIDER; },
/* harmony export */ NAVBAR_GROUP: function() { return /* binding */ NAVBAR_GROUP; },
/* harmony export */ NAVBAR_HEADING: function() { return /* binding */ NAVBAR_HEADING; },
/* harmony export */ NON_IDEAL_STATE: function() { return /* binding */ NON_IDEAL_STATE; },
/* harmony export */ NON_IDEAL_STATE_TEXT: function() { return /* binding */ NON_IDEAL_STATE_TEXT; },
/* harmony export */ NON_IDEAL_STATE_VISUAL: function() { return /* binding */ NON_IDEAL_STATE_VISUAL; },
/* harmony export */ NUMERIC_INPUT: function() { return /* binding */ NUMERIC_INPUT; },
/* harmony export */ OUTLINED: function() { return /* binding */ OUTLINED; },
/* harmony export */ OVERFLOW_LIST: function() { return /* binding */ OVERFLOW_LIST; },
/* harmony export */ OVERFLOW_LIST_SPACER: function() { return /* binding */ OVERFLOW_LIST_SPACER; },
/* harmony export */ OVERLAY: function() { return /* binding */ OVERLAY; },
/* harmony export */ OVERLAY_BACKDROP: function() { return /* binding */ OVERLAY_BACKDROP; },
/* harmony export */ OVERLAY_CONTAINER: function() { return /* binding */ OVERLAY_CONTAINER; },
/* harmony export */ OVERLAY_CONTENT: function() { return /* binding */ OVERLAY_CONTENT; },
/* harmony export */ OVERLAY_END_FOCUS_TRAP: function() { return /* binding */ OVERLAY_END_FOCUS_TRAP; },
/* harmony export */ OVERLAY_INLINE: function() { return /* binding */ OVERLAY_INLINE; },
/* harmony export */ OVERLAY_OPEN: function() { return /* binding */ OVERLAY_OPEN; },
/* harmony export */ OVERLAY_SCROLL_CONTAINER: function() { return /* binding */ OVERLAY_SCROLL_CONTAINER; },
/* harmony export */ OVERLAY_START_FOCUS_TRAP: function() { return /* binding */ OVERLAY_START_FOCUS_TRAP; },
/* harmony export */ PADDED: function() { return /* binding */ PADDED; },
/* harmony export */ PANEL_STACK: function() { return /* binding */ PANEL_STACK; },
/* harmony export */ PANEL_STACK2: function() { return /* binding */ PANEL_STACK2; },
/* harmony export */ PANEL_STACK2_HEADER: function() { return /* binding */ PANEL_STACK2_HEADER; },
/* harmony export */ PANEL_STACK2_HEADER_BACK: function() { return /* binding */ PANEL_STACK2_HEADER_BACK; },
/* harmony export */ PANEL_STACK2_VIEW: function() { return /* binding */ PANEL_STACK2_VIEW; },
/* harmony export */ PANEL_STACK_HEADER: function() { return /* binding */ PANEL_STACK_HEADER; },
/* harmony export */ PANEL_STACK_HEADER_BACK: function() { return /* binding */ PANEL_STACK_HEADER_BACK; },
/* harmony export */ PANEL_STACK_VIEW: function() { return /* binding */ PANEL_STACK_VIEW; },
/* harmony export */ POPOVER: function() { return /* binding */ POPOVER; },
/* harmony export */ POPOVER_ARROW: function() { return /* binding */ POPOVER_ARROW; },
/* harmony export */ POPOVER_BACKDROP: function() { return /* binding */ POPOVER_BACKDROP; },
/* harmony export */ POPOVER_CAPTURING_DISMISS: function() { return /* binding */ POPOVER_CAPTURING_DISMISS; },
/* harmony export */ POPOVER_CONTENT: function() { return /* binding */ POPOVER_CONTENT; },
/* harmony export */ POPOVER_CONTENT_PLACEMENT: function() { return /* binding */ POPOVER_CONTENT_PLACEMENT; },
/* harmony export */ POPOVER_CONTENT_SIZING: function() { return /* binding */ POPOVER_CONTENT_SIZING; },
/* harmony export */ POPOVER_DISMISS: function() { return /* binding */ POPOVER_DISMISS; },
/* harmony export */ POPOVER_DISMISS_OVERRIDE: function() { return /* binding */ POPOVER_DISMISS_OVERRIDE; },
/* harmony export */ POPOVER_MATCH_TARGET_WIDTH: function() { return /* binding */ POPOVER_MATCH_TARGET_WIDTH; },
/* harmony export */ POPOVER_OPEN: function() { return /* binding */ POPOVER_OPEN; },
/* harmony export */ POPOVER_POPPER_ESCAPED: function() { return /* binding */ POPOVER_POPPER_ESCAPED; },
/* harmony export */ POPOVER_REFERENCE_HIDDEN: function() { return /* binding */ POPOVER_REFERENCE_HIDDEN; },
/* harmony export */ POPOVER_TARGET: function() { return /* binding */ POPOVER_TARGET; },
/* harmony export */ POPOVER_TRANSITION_CONTAINER: function() { return /* binding */ POPOVER_TRANSITION_CONTAINER; },
/* harmony export */ POPOVER_WRAPPER: function() { return /* binding */ POPOVER_WRAPPER; },
/* harmony export */ PORTAL: function() { return /* binding */ PORTAL; },
/* harmony export */ POSITION_BOTTOM: function() { return /* binding */ POSITION_BOTTOM; },
/* harmony export */ POSITION_LEFT: function() { return /* binding */ POSITION_LEFT; },
/* harmony export */ POSITION_RIGHT: function() { return /* binding */ POSITION_RIGHT; },
/* harmony export */ POSITION_TOP: function() { return /* binding */ POSITION_TOP; },
/* harmony export */ PROGRESS_BAR: function() { return /* binding */ PROGRESS_BAR; },
/* harmony export */ PROGRESS_METER: function() { return /* binding */ PROGRESS_METER; },
/* harmony export */ PROGRESS_NO_ANIMATION: function() { return /* binding */ PROGRESS_NO_ANIMATION; },
/* harmony export */ PROGRESS_NO_STRIPES: function() { return /* binding */ PROGRESS_NO_STRIPES; },
/* harmony export */ RADIO: function() { return /* binding */ RADIO; },
/* harmony export */ RADIO_CONTROL_CARD: function() { return /* binding */ RADIO_CONTROL_CARD; },
/* harmony export */ RADIO_GROUP: function() { return /* binding */ RADIO_GROUP; },
/* harmony export */ READ_ONLY: function() { return /* binding */ READ_ONLY; },
/* harmony export */ RESIZABLE_INPUT_SPAN: function() { return /* binding */ RESIZABLE_INPUT_SPAN; },
/* harmony export */ ROUND: function() { return /* binding */ ROUND; },
/* harmony export */ RTL: function() { return /* binding */ RTL; },
/* harmony export */ RUNNING_TEXT: function() { return /* binding */ RUNNING_TEXT; },
/* harmony export */ SECTION: function() { return /* binding */ SECTION; },
/* harmony export */ SECTION_CARD: function() { return /* binding */ SECTION_CARD; },
/* harmony export */ SECTION_COLLAPSED: function() { return /* binding */ SECTION_COLLAPSED; },
/* harmony export */ SECTION_HEADER: function() { return /* binding */ SECTION_HEADER; },
/* harmony export */ SECTION_HEADER_DIVIDER: function() { return /* binding */ SECTION_HEADER_DIVIDER; },
/* harmony export */ SECTION_HEADER_LEFT: function() { return /* binding */ SECTION_HEADER_LEFT; },
/* harmony export */ SECTION_HEADER_RIGHT: function() { return /* binding */ SECTION_HEADER_RIGHT; },
/* harmony export */ SECTION_HEADER_SUB_TITLE: function() { return /* binding */ SECTION_HEADER_SUB_TITLE; },
/* harmony export */ SECTION_HEADER_TABS: function() { return /* binding */ SECTION_HEADER_TABS; },
/* harmony export */ SECTION_HEADER_TITLE: function() { return /* binding */ SECTION_HEADER_TITLE; },
/* harmony export */ SEGMENTED_CONTROL: function() { return /* binding */ SEGMENTED_CONTROL; },
/* harmony export */ SELECT: function() { return /* binding */ SELECT; },
/* harmony export */ SELECTED: function() { return /* binding */ SELECTED; },
/* harmony export */ SKELETON: function() { return /* binding */ SKELETON; },
/* harmony export */ SLIDER: function() { return /* binding */ SLIDER; },
/* harmony export */ SLIDER_AXIS: function() { return /* binding */ SLIDER_AXIS; },
/* harmony export */ SLIDER_HANDLE: function() { return /* binding */ SLIDER_HANDLE; },
/* harmony export */ SLIDER_LABEL: function() { return /* binding */ SLIDER_LABEL; },
/* harmony export */ SLIDER_PROGRESS: function() { return /* binding */ SLIDER_PROGRESS; },
/* harmony export */ SLIDER_TRACK: function() { return /* binding */ SLIDER_TRACK; },
/* harmony export */ SMALL: function() { return /* binding */ SMALL; },
/* harmony export */ SPINNER: function() { return /* binding */ SPINNER; },
/* harmony export */ SPINNER_ANIMATION: function() { return /* binding */ SPINNER_ANIMATION; },
/* harmony export */ SPINNER_HEAD: function() { return /* binding */ SPINNER_HEAD; },
/* harmony export */ SPINNER_NO_SPIN: function() { return /* binding */ SPINNER_NO_SPIN; },
/* harmony export */ SPINNER_TRACK: function() { return /* binding */ SPINNER_TRACK; },
/* harmony export */ START: function() { return /* binding */ START; },
/* harmony export */ SWITCH: function() { return /* binding */ SWITCH; },
/* harmony export */ SWITCH_CONTROL_CARD: function() { return /* binding */ SWITCH_CONTROL_CARD; },
/* harmony export */ SWITCH_INNER_TEXT: function() { return /* binding */ SWITCH_INNER_TEXT; },
/* harmony export */ TAB: function() { return /* binding */ TAB; },
/* harmony export */ TABS: function() { return /* binding */ TABS; },
/* harmony export */ TAB_ICON: function() { return /* binding */ TAB_ICON; },
/* harmony export */ TAB_INDICATOR: function() { return /* binding */ TAB_INDICATOR; },
/* harmony export */ TAB_INDICATOR_WRAPPER: function() { return /* binding */ TAB_INDICATOR_WRAPPER; },
/* harmony export */ TAB_LIST: function() { return /* binding */ TAB_LIST; },
/* harmony export */ TAB_PANEL: function() { return /* binding */ TAB_PANEL; },
/* harmony export */ TAB_TAG: function() { return /* binding */ TAB_TAG; },
/* harmony export */ TAG: function() { return /* binding */ TAG; },
/* harmony export */ TAG_INPUT: function() { return /* binding */ TAG_INPUT; },
/* harmony export */ TAG_INPUT_ICON: function() { return /* binding */ TAG_INPUT_ICON; },
/* harmony export */ TAG_INPUT_VALUES: function() { return /* binding */ TAG_INPUT_VALUES; },
/* harmony export */ TAG_REMOVE: function() { return /* binding */ TAG_REMOVE; },
/* harmony export */ TEXT_AREA: function() { return /* binding */ TEXT_AREA; },
/* harmony export */ TEXT_AREA_AUTO_RESIZE: function() { return /* binding */ TEXT_AREA_AUTO_RESIZE; },
/* harmony export */ TEXT_DISABLED: function() { return /* binding */ TEXT_DISABLED; },
/* harmony export */ TEXT_LARGE: function() { return /* binding */ TEXT_LARGE; },
/* harmony export */ TEXT_MUTED: function() { return /* binding */ TEXT_MUTED; },
/* harmony export */ TEXT_OVERFLOW_ELLIPSIS: function() { return /* binding */ TEXT_OVERFLOW_ELLIPSIS; },
/* harmony export */ TEXT_SMALL: function() { return /* binding */ TEXT_SMALL; },
/* harmony export */ TOAST: function() { return /* binding */ TOAST; },
/* harmony export */ TOAST_CONTAINER: function() { return /* binding */ TOAST_CONTAINER; },
/* harmony export */ TOAST_MESSAGE: function() { return /* binding */ TOAST_MESSAGE; },
/* harmony export */ TOOLTIP: function() { return /* binding */ TOOLTIP; },
/* harmony export */ TOOLTIP_INDICATOR: function() { return /* binding */ TOOLTIP_INDICATOR; },
/* harmony export */ TREE: function() { return /* binding */ TREE; },
/* harmony export */ TREE_NODE: function() { return /* binding */ TREE_NODE; },
/* harmony export */ TREE_NODE_CARET: function() { return /* binding */ TREE_NODE_CARET; },
/* harmony export */ TREE_NODE_CARET_CLOSED: function() { return /* binding */ TREE_NODE_CARET_CLOSED; },
/* harmony export */ TREE_NODE_CARET_NONE: function() { return /* binding */ TREE_NODE_CARET_NONE; },
/* harmony export */ TREE_NODE_CARET_OPEN: function() { return /* binding */ TREE_NODE_CARET_OPEN; },
/* harmony export */ TREE_NODE_CONTENT: function() { return /* binding */ TREE_NODE_CONTENT; },
/* harmony export */ TREE_NODE_EXPANDED: function() { return /* binding */ TREE_NODE_EXPANDED; },
/* harmony export */ TREE_NODE_ICON: function() { return /* binding */ TREE_NODE_ICON; },
/* harmony export */ TREE_NODE_LABEL: function() { return /* binding */ TREE_NODE_LABEL; },
/* harmony export */ TREE_NODE_LIST: function() { return /* binding */ TREE_NODE_LIST; },
/* harmony export */ TREE_NODE_SECONDARY_LABEL: function() { return /* binding */ TREE_NODE_SECONDARY_LABEL; },
/* harmony export */ TREE_NODE_SELECTED: function() { return /* binding */ TREE_NODE_SELECTED; },
/* harmony export */ TREE_ROOT: function() { return /* binding */ TREE_ROOT; },
/* harmony export */ UI_TEXT: function() { return /* binding */ UI_TEXT; },
/* harmony export */ VERTICAL: function() { return /* binding */ VERTICAL; },
/* harmony export */ alignmentClass: function() { return /* binding */ alignmentClass; },
/* harmony export */ elevationClass: function() { return /* binding */ elevationClass; },
/* harmony export */ getClassNamespace: function() { return /* binding */ getClassNamespace; },
/* harmony export */ iconClass: function() { return /* binding */ iconClass; },
/* harmony export */ intentClass: function() { return /* binding */ intentClass; },
/* harmony export */ positionClass: function() { return /* binding */ positionClass; }
/* harmony export */ });
/* harmony import */ var _alignment__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(57178);
/* harmony import */ var _elevation__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(7064);
/* harmony import */ var _intent__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(31365);
/* harmony import */ var _position__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(54348);
/*
* Copyright 2015 Palantir Technologies, Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var NS = "bp5";
if (typeof BLUEPRINT_NAMESPACE !== "undefined") {
NS = BLUEPRINT_NAMESPACE;
}
else if (typeof REACT_APP_BLUEPRINT_NAMESPACE !== "undefined") {
NS = REACT_APP_BLUEPRINT_NAMESPACE;
}
// modifiers
var ACTIVE = "".concat(NS, "-active");
var ALIGN_LEFT = "".concat(NS, "-align-left");
var ALIGN_RIGHT = "".concat(NS, "-align-right");
var COMPACT = "".concat(NS, "-compact");
var DARK = "".concat(NS, "-dark");
var DISABLED = "".concat(NS, "-disabled");
var FILL = "".concat(NS, "-fill");
var FIXED = "".concat(NS, "-fixed");
var FIXED_TOP = "".concat(NS, "-fixed-top");
var INLINE = "".concat(NS, "-inline");
var INTERACTIVE = "".concat(NS, "-interactive");
var LARGE = "".concat(NS, "-large");
var LOADING = "".concat(NS, "-loading");
var MINIMAL = "".concat(NS, "-minimal");
var OUTLINED = "".concat(NS, "-outlined");
var PADDED = "".concat(NS, "-padded");
var MULTILINE = "".concat(NS, "-multiline");
var READ_ONLY = "".concat(NS, "-read-only");
var ROUND = "".concat(NS, "-round");
var SELECTED = "".concat(NS, "-selected");
var SMALL = "".concat(NS, "-small");
var VERTICAL = "".concat(NS, "-vertical");
var POSITION_TOP = positionClass(_position__WEBPACK_IMPORTED_MODULE_0__/* .Position */ .yX.TOP);
var POSITION_BOTTOM = positionClass(_position__WEBPACK_IMPORTED_MODULE_0__/* .Position */ .yX.BOTTOM);
var POSITION_LEFT = positionClass(_position__WEBPACK_IMPORTED_MODULE_0__/* .Position */ .yX.LEFT);
var POSITION_RIGHT = positionClass(_position__WEBPACK_IMPORTED_MODULE_0__/* .Position */ .yX.RIGHT);
var ELEVATION_0 = elevationClass(_elevation__WEBPACK_IMPORTED_MODULE_1__/* .Elevation */ .e.ZERO);
var ELEVATION_1 = elevationClass(_elevation__WEBPACK_IMPORTED_MODULE_1__/* .Elevation */ .e.ONE);
var ELEVATION_2 = elevationClass(_elevation__WEBPACK_IMPORTED_MODULE_1__/* .Elevation */ .e.TWO);
var ELEVATION_3 = elevationClass(_elevation__WEBPACK_IMPORTED_MODULE_1__/* .Elevation */ .e.THREE);
var ELEVATION_4 = elevationClass(_elevation__WEBPACK_IMPORTED_MODULE_1__/* .Elevation */ .e.FOUR);
var INTENT_PRIMARY = intentClass(_intent__WEBPACK_IMPORTED_MODULE_2__/* .Intent */ .J.PRIMARY);
var INTENT_SUCCESS = intentClass(_intent__WEBPACK_IMPORTED_MODULE_2__/* .Intent */ .J.SUCCESS);
var INTENT_WARNING = intentClass(_intent__WEBPACK_IMPORTED_MODULE_2__/* .Intent */ .J.WARNING);
var INTENT_DANGER = intentClass(_intent__WEBPACK_IMPORTED_MODULE_2__/* .Intent */ .J.DANGER);
var FOCUS_DISABLED = "".concat(NS, "-focus-disabled");
var FOCUS_STYLE_MANAGER_IGNORE = "".concat(NS, "-focus-style-manager-ignore");
// text utilities
var UI_TEXT = "".concat(NS, "-ui-text");
var RUNNING_TEXT = "".concat(NS, "-running-text");
var MONOSPACE_TEXT = "".concat(NS, "-monospace-text");
var TEXT_LARGE = "".concat(NS, "-text-large");
var TEXT_SMALL = "".concat(NS, "-text-small");
var TEXT_MUTED = "".concat(NS, "-text-muted");
var TEXT_DISABLED = "".concat(NS, "-text-disabled");
var TEXT_OVERFLOW_ELLIPSIS = "".concat(NS, "-text-overflow-ellipsis");
// textual elements
var BLOCKQUOTE = "".concat(NS, "-blockquote");
var CODE = "".concat(NS, "-code");
var CODE_BLOCK = "".concat(NS, "-code-block");
var HEADING = "".concat(NS, "-heading");
var LIST = "".concat(NS, "-list");
var LIST_UNSTYLED = "".concat(NS, "-list-unstyled");
var RTL = "".concat(NS, "-rtl");
// components
var ALERT = "".concat(NS, "-alert");
var ALERT_BODY = "".concat(ALERT, "-body");
var ALERT_CONTENTS = "".concat(ALERT, "-contents");
var ALERT_FOOTER = "".concat(ALERT, "-footer");
var BREADCRUMB = "".concat(NS, "-breadcrumb");
var BREADCRUMB_CURRENT = "".concat(BREADCRUMB, "-current");
var BREADCRUMBS = "".concat(BREADCRUMB, "s");
var BREADCRUMBS_COLLAPSED = "".concat(BREADCRUMB, "s-collapsed");
var BUTTON = "".concat(NS, "-button");
var BUTTON_GROUP = "".concat(BUTTON, "-group");
var BUTTON_SPINNER = "".concat(BUTTON, "-spinner");
var BUTTON_TEXT = "".concat(BUTTON, "-text");
var CALLOUT = "".concat(NS, "-callout");
var CALLOUT_HAS_BODY_CONTENT = "".concat(CALLOUT, "-has-body-content");
var CALLOUT_ICON = "".concat(CALLOUT, "-icon");
var CARD = "".concat(NS, "-card");
var CONTROL_CARD = "".concat(NS, "-control-card");
var CONTROL_CARD_LABEL = "".concat(CONTROL_CARD, "-label");
var SWITCH_CONTROL_CARD = "".concat(NS, "-switch-control-card");
var CHECKBOX_CONTROL_CARD = "".concat(NS, "-checkbox-control-card");
var RADIO_CONTROL_CARD = "".concat(NS, "-radio-control-card");
var CARD_LIST = "".concat(NS, "-card-list");
var CARD_LIST_BORDERED = "".concat(CARD_LIST, "-bordered");
var COLLAPSE = "".concat(NS, "-collapse");
var COLLAPSE_BODY = "".concat(COLLAPSE, "-body");
var CONTEXT_MENU = "".concat(NS, "-context-menu");
var CONTEXT_MENU_VIRTUAL_TARGET = "".concat(CONTEXT_MENU, "-virtual-target");
var CONTEXT_MENU_POPOVER = "".concat(CONTEXT_MENU, "-popover");
var CONTEXT_MENU_BACKDROP = "".concat(CONTEXT_MENU, "-backdrop");
var CONTROL_GROUP = "".concat(NS, "-control-group");
var DIALOG = "".concat(NS, "-dialog");
var DIALOG_CONTAINER = "".concat(DIALOG, "-container");
var DIALOG_HEADER = "".concat(DIALOG, "-header");
var DIALOG_BODY = "".concat(DIALOG, "-body");
var DIALOG_BODY_SCROLL_CONTAINER = "".concat(DIALOG, "-body-scroll-container");
var DIALOG_CLOSE_BUTTON = "".concat(DIALOG, "-close-button");
var DIALOG_FOOTER = "".concat(DIALOG, "-footer");
var DIALOG_FOOTER_FIXED = "".concat(DIALOG, "-footer-fixed");
var DIALOG_FOOTER_MAIN_SECTION = "".concat(DIALOG, "-footer-main-section");
var DIALOG_FOOTER_ACTIONS = "".concat(DIALOG, "-footer-actions");
var DIALOG_STEP = "".concat(NS, "-dialog-step");
var DIALOG_STEP_CONTAINER = "".concat(DIALOG_STEP, "-container");
var DIALOG_STEP_TITLE = "".concat(DIALOG_STEP, "-title");
var DIALOG_STEP_ICON = "".concat(DIALOG_STEP, "-icon");
var DIALOG_STEP_VIEWED = "".concat(DIALOG_STEP, "-viewed");
var DIVIDER = "".concat(NS, "-divider");
var DRAWER = "".concat(NS, "-drawer");
var DRAWER_BODY = "".concat(DRAWER, "-body");
var DRAWER_FOOTER = "".concat(DRAWER, "-footer");
var DRAWER_HEADER = "".concat(DRAWER, "-header");
var EDITABLE_TEXT = "".concat(NS, "-editable-text");
var EDITABLE_TEXT_CONTENT = "".concat(EDITABLE_TEXT, "-content");
var EDITABLE_TEXT_EDITING = "".concat(EDITABLE_TEXT, "-editing");
var EDITABLE_TEXT_INPUT = "".concat(EDITABLE_TEXT, "-input");
var EDITABLE_TEXT_PLACEHOLDER = "".concat(EDITABLE_TEXT, "-placeholder");
var ENTITY_TITLE = "".concat(NS, "-entity-title");
var ENTITY_TITLE_ELLIPSIZE = "".concat(NS, "-entity-title-ellipsize");
var ENTITY_TITLE_HAS_SUBTITLE = "".concat(ENTITY_TITLE, "-has-subtitle");
var ENTITY_TITLE_ICON_CONTAINER = "".concat(ENTITY_TITLE, "-icon-container");
var ENTITY_TITLE_SUBTITLE = "".concat(ENTITY_TITLE, "-subtitle");
var ENTITY_TITLE_TAGS_CONTAINER = "".concat(ENTITY_TITLE, "-tags-container");
var ENTITY_TITLE_TEXT = "".concat(ENTITY_TITLE, "-text");
var ENTITY_TITLE_TITLE = "".concat(ENTITY_TITLE, "-title");
var ENTITY_TITLE_TITLE_AND_TAGS = "".concat(ENTITY_TITLE, "-title-and-tags");
var FLEX_EXPANDER = "".concat(NS, "-flex-expander");
var HTML_SELECT = "".concat(NS, "-html-select");
/** @deprecated use `<HTMLSelect>` component or `Classes.HTML_SELECT` instead */
var SELECT = "".concat(NS, "-select");
var HTML_TABLE = "".concat(NS, "-html-table");
var HTML_TABLE_BORDERED = "".concat(HTML_TABLE, "-bordered");
var HTML_TABLE_STRIPED = "".concat(HTML_TABLE, "-striped");
var INPUT = "".concat(NS, "-input");
var INPUT_GHOST = "".concat(INPUT, "-ghost");
var INPUT_GROUP = "".concat(INPUT, "-group");
var INPUT_LEFT_CONTAINER = "".concat(INPUT, "-left-container");
var INPUT_ACTION = "".concat(INPUT, "-action");
var RESIZABLE_INPUT_SPAN = "".concat(NS, "-resizable-input-span");
var TEXT_AREA = "".concat(NS, "-text-area");
var TEXT_AREA_AUTO_RESIZE = "".concat(TEXT_AREA, "-auto-resize");
var CONTROL = "".concat(NS, "-control");
var CONTROL_INDICATOR = "".concat(CONTROL, "-indicator");
var CONTROL_INDICATOR_CHILD = "".concat(CONTROL_INDICATOR, "-child");
var CHECKBOX = "".concat(NS, "-checkbox");
var RADIO = "".concat(NS, "-radio");
var RADIO_GROUP = "".concat(NS, "-radio-group");
var SWITCH = "".concat(NS, "-switch");
var SWITCH_INNER_TEXT = "".concat(SWITCH, "-inner-text");
var FILE_INPUT = "".concat(NS, "-file-input");
var FILE_INPUT_HAS_SELECTION = "".concat(NS, "-file-input-has-selection");
var FILE_UPLOAD_INPUT = "".concat(NS, "-file-upload-input");
var FILE_UPLOAD_INPUT_CUSTOM_TEXT = "".concat(NS, "-file-upload-input-custom-text");
var KEY = "".concat(NS, "-key");
var KEY_COMBO = "".concat(KEY, "-combo");
var MODIFIER_KEY = "".concat(NS, "-modifier-key");
var HOTKEY = "".concat(NS, "-hotkey");
var HOTKEY_LABEL = "".concat(HOTKEY, "-label");
var HOTKEY_COLUMN = "".concat(HOTKEY, "-column");
var HOTKEY_DIALOG = "".concat(HOTKEY, "-dialog");
var LABEL = "".concat(NS, "-label");
var FORM_GROUP = "".concat(NS, "-form-group");
var FORM_CONTENT = "".concat(NS, "-form-content");
var FORM_HELPER_TEXT = "".concat(NS, "-form-helper-text");
var FORM_GROUP_SUB_LABEL = "".concat(NS, "-form-group-sub-label");
var MENU = "".concat(NS, "-menu");
var MENU_ITEM = "".concat(MENU, "-item");
var MENU_ITEM_IS_SELECTABLE = "".concat(MENU_ITEM, "-is-selectable");
var MENU_ITEM_SELECTED_ICON = "".concat(MENU_ITEM, "-selected-icon");
var MENU_ITEM_ICON = "".concat(MENU_ITEM, "-icon");
var MENU_ITEM_LABEL = "".concat(MENU_ITEM, "-label");
var MENU_SUBMENU = "".concat(NS, "-submenu");
var MENU_SUBMENU_ICON = "".concat(MENU_SUBMENU, "-icon");
var MENU_DIVIDER = "".concat(MENU, "-divider");
var MENU_HEADER = "".concat(MENU, "-header");
var MULTISTEP_DIALOG = "".concat(NS, "-multistep-dialog");
var MULTISTEP_DIALOG_PANELS = "".concat(MULTISTEP_DIALOG, "-panels");
var MULTISTEP_DIALOG_LEFT_PANEL = "".concat(MULTISTEP_DIALOG, "-left-panel");
var MULTISTEP_DIALOG_RIGHT_PANEL = "".concat(MULTISTEP_DIALOG, "-right-panel");
var MULTISTEP_DIALOG_NAV_TOP = "".concat(MULTISTEP_DIALOG, "-nav-top");
var MULTISTEP_DIALOG_NAV_RIGHT = "".concat(MULTISTEP_DIALOG, "-nav-right");
var SECTION = "".concat(NS, "-section");
var SECTION_COLLAPSED = "".concat(SECTION, "-collapsed");
var SECTION_HEADER = "".concat(SECTION, "-header");
var SECTION_HEADER_LEFT = "".concat(SECTION_HEADER, "-left");
var SECTION_HEADER_TITLE = "".concat(SECTION_HEADER, "-title");
var SECTION_HEADER_SUB_TITLE = "".concat(SECTION_HEADER, "-sub-title");
var SECTION_HEADER_DIVIDER = "".concat(SECTION_HEADER, "-divider");
var SECTION_HEADER_TABS = "".concat(SECTION_HEADER, "-tabs");
var SECTION_HEADER_RIGHT = "".concat(SECTION_HEADER, "-right");
var SECTION_CARD = "".concat(SECTION, "-card");
var NAVBAR = "".concat(NS, "-navbar");
var NAVBAR_GROUP = "".concat(NAVBAR, "-group");
var NAVBAR_HEADING = "".concat(NAVBAR, "-heading");
var NAVBAR_DIVIDER = "".concat(NAVBAR, "-divider");
var NON_IDEAL_STATE = "".concat(NS, "-non-ideal-state");
var NON_IDEAL_STATE_VISUAL = "".concat(NON_IDEAL_STATE, "-visual");
var NON_IDEAL_STATE_TEXT = "".concat(NON_IDEAL_STATE, "-text");
var NUMERIC_INPUT = "".concat(NS, "-numeric-input");
var OVERFLOW_LIST = "".concat(NS, "-overflow-list");
var OVERFLOW_LIST_SPACER = "".c