@assecosolutions/fox-menu
Advanced tools
Comparing version 1.5.3 to 1.5.10
{ | ||
"name": "@assecosolutions/fox-menu", | ||
"version": "1.5.3", | ||
"version": "1.5.10", | ||
"public": true, | ||
@@ -27,5 +27,4 @@ "lib": { | ||
"peerDependencies": { | ||
"lit": "^2.0.0-rc.2", | ||
"@material/mwc-list": "^0.21.0" | ||
} | ||
} |
@@ -1,6 +0,4 @@ | ||
import { __decorate } from 'tslib'; | ||
import { customElement } from 'lit/decorators.js'; | ||
import { customElement } from 'lit-element'; | ||
import { MenuBase } from '@material/mwc-menu/mwc-menu-base'; | ||
import { style } from '@material/mwc-menu/mwc-menu-css'; | ||
export { createSetFromIndex, isEventMulti, isIndexSet } from '@material/mwc-list/mwc-list-foundation'; | ||
@@ -92,2 +90,126 @@ function _classCallCheck(instance, Constructor) { | ||
/*! ***************************************************************************** | ||
Copyright (c) Microsoft Corporation. | ||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted. | ||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | ||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | ||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | ||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | ||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR | ||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | ||
PERFORMANCE OF THIS SOFTWARE. | ||
***************************************************************************** */ | ||
function __decorate(decorators, target, key, desc) { | ||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; | ||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); | ||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; | ||
return c > 3 && r && Object.defineProperty(target, key, r), r; | ||
} | ||
/** | ||
* @license | ||
* Copyright 2018 Google 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. | ||
*/ | ||
var _a, _b; | ||
var cssClasses = { | ||
LIST_ITEM_ACTIVATED_CLASS: 'mdc-list-item--activated', | ||
LIST_ITEM_CLASS: 'mdc-list-item', | ||
LIST_ITEM_DISABLED_CLASS: 'mdc-list-item--disabled', | ||
LIST_ITEM_SELECTED_CLASS: 'mdc-list-item--selected', | ||
LIST_ITEM_TEXT_CLASS: 'mdc-list-item__text', | ||
LIST_ITEM_PRIMARY_TEXT_CLASS: 'mdc-list-item__primary-text', | ||
ROOT: 'mdc-list', | ||
}; | ||
var evolutionClassNameMap = (_a = {}, | ||
_a["" + cssClasses.LIST_ITEM_ACTIVATED_CLASS] = 'mdc-list-item--activated', | ||
_a["" + cssClasses.LIST_ITEM_CLASS] = 'mdc-list-item', | ||
_a["" + cssClasses.LIST_ITEM_DISABLED_CLASS] = 'mdc-list-item--disabled', | ||
_a["" + cssClasses.LIST_ITEM_SELECTED_CLASS] = 'mdc-list-item--selected', | ||
_a["" + cssClasses.LIST_ITEM_PRIMARY_TEXT_CLASS] = 'mdc-list-item__primary-text', | ||
_a["" + cssClasses.ROOT] = 'mdc-list', | ||
_a); | ||
var deprecatedClassNameMap = (_b = {}, | ||
_b["" + cssClasses.LIST_ITEM_ACTIVATED_CLASS] = 'mdc-deprecated-list-item--activated', | ||
_b["" + cssClasses.LIST_ITEM_CLASS] = 'mdc-deprecated-list-item', | ||
_b["" + cssClasses.LIST_ITEM_DISABLED_CLASS] = 'mdc-deprecated-list-item--disabled', | ||
_b["" + cssClasses.LIST_ITEM_SELECTED_CLASS] = 'mdc-deprecated-list-item--selected', | ||
_b["" + cssClasses.LIST_ITEM_TEXT_CLASS] = 'mdc-deprecated-list-item__text', | ||
_b["" + cssClasses.LIST_ITEM_PRIMARY_TEXT_CLASS] = 'mdc-deprecated-list-item__primary-text', | ||
_b["" + cssClasses.ROOT] = 'mdc-deprecated-list', | ||
_b); | ||
var strings = { | ||
ACTION_EVENT: 'MDCList:action', | ||
ARIA_CHECKED: 'aria-checked', | ||
ARIA_CHECKED_CHECKBOX_SELECTOR: '[role="checkbox"][aria-checked="true"]', | ||
ARIA_CHECKED_RADIO_SELECTOR: '[role="radio"][aria-checked="true"]', | ||
ARIA_CURRENT: 'aria-current', | ||
ARIA_DISABLED: 'aria-disabled', | ||
ARIA_ORIENTATION: 'aria-orientation', | ||
ARIA_ORIENTATION_HORIZONTAL: 'horizontal', | ||
ARIA_ROLE_CHECKBOX_SELECTOR: '[role="checkbox"]', | ||
ARIA_SELECTED: 'aria-selected', | ||
ARIA_INTERACTIVE_ROLES_SELECTOR: '[role="listbox"], [role="menu"]', | ||
ARIA_MULTI_SELECTABLE_SELECTOR: '[aria-multiselectable="true"]', | ||
CHECKBOX_RADIO_SELECTOR: 'input[type="checkbox"], input[type="radio"]', | ||
CHECKBOX_SELECTOR: 'input[type="checkbox"]', | ||
CHILD_ELEMENTS_TO_TOGGLE_TABINDEX: "\n ." + cssClasses.LIST_ITEM_CLASS + " button:not(:disabled),\n ." + cssClasses.LIST_ITEM_CLASS + " a,\n ." + deprecatedClassNameMap[cssClasses.LIST_ITEM_CLASS] + " button:not(:disabled),\n ." + deprecatedClassNameMap[cssClasses.LIST_ITEM_CLASS] + " a\n ", | ||
DEPRECATED_SELECTOR: '.mdc-deprecated-list', | ||
FOCUSABLE_CHILD_ELEMENTS: "\n ." + cssClasses.LIST_ITEM_CLASS + " button:not(:disabled),\n ." + cssClasses.LIST_ITEM_CLASS + " a,\n ." + cssClasses.LIST_ITEM_CLASS + " input[type=\"radio\"]:not(:disabled),\n ." + cssClasses.LIST_ITEM_CLASS + " input[type=\"checkbox\"]:not(:disabled),\n ." + deprecatedClassNameMap[cssClasses.LIST_ITEM_CLASS] + " button:not(:disabled),\n ." + deprecatedClassNameMap[cssClasses.LIST_ITEM_CLASS] + " a,\n ." + deprecatedClassNameMap[cssClasses.LIST_ITEM_CLASS] + " input[type=\"radio\"]:not(:disabled),\n ." + deprecatedClassNameMap[cssClasses.LIST_ITEM_CLASS] + " input[type=\"checkbox\"]:not(:disabled)\n ", | ||
RADIO_SELECTOR: 'input[type="radio"]', | ||
SELECTED_ITEM_SELECTOR: '[aria-selected="true"], [aria-current="true"]', | ||
}; | ||
var numbers = { | ||
UNSET_INDEX: -1, | ||
TYPEAHEAD_BUFFER_CLEAR_TIMEOUT_MS: 300 | ||
}; | ||
/** | ||
@license | ||
Copyright 2020 Google 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. | ||
*/ | ||
function isIndexSet(selectedIndex) { | ||
return selectedIndex instanceof Set; | ||
} | ||
function isEventMulti(evt) { | ||
return isIndexSet(evt.detail.index); | ||
} | ||
const createSetFromIndex = (index) => { | ||
const entry = index === numbers.UNSET_INDEX ? new Set() : index; | ||
return isIndexSet(entry) ? new Set(entry) : new Set([entry]); | ||
}; | ||
var FoxMenu = /*#__PURE__*/function (_MenuBase) { | ||
@@ -110,2 +232,2 @@ _inherits(FoxMenu, _MenuBase); | ||
export { FoxMenu }; | ||
export { FoxMenu, createSetFromIndex, isEventMulti, isIndexSet }; |
(function (global, factory) { | ||
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('tslib'), require('lit/decorators.js'), require('@material/mwc-menu/mwc-menu-base'), require('@material/mwc-menu/mwc-menu-css'), require('@material/mwc-list/mwc-list-foundation')) : | ||
typeof define === 'function' && define.amd ? define(['exports', 'tslib', 'lit/decorators.js', '@material/mwc-menu/mwc-menu-base', '@material/mwc-menu/mwc-menu-css', '@material/mwc-list/mwc-list-foundation'], factory) : | ||
(global = global || self, factory(global.SharedUiMoleculesFoxMenu = {}, global.tslib, global.decorators_js, global.mwcMenuBase, global.mwcMenuCss, global.mwcListFoundation)); | ||
}(this, (function (exports, tslib, decorators_js, mwcMenuBase, mwcMenuCss, mwcListFoundation) { 'use strict'; | ||
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('lit-element'), require('@material/mwc-menu/mwc-menu-base'), require('@material/mwc-menu/mwc-menu-css')) : | ||
typeof define === 'function' && define.amd ? define(['exports', 'lit-element', '@material/mwc-menu/mwc-menu-base', '@material/mwc-menu/mwc-menu-css'], factory) : | ||
(global = global || self, factory(global.SharedUiMoleculesFoxMenu = {}, global.litElement, global.mwcMenuBase, global.mwcMenuCss)); | ||
}(this, (function (exports, litElement, mwcMenuBase, mwcMenuCss) { 'use strict'; | ||
var FoxMenu = | ||
/** @class */ | ||
function (_super) { | ||
tslib.__extends(FoxMenu, _super); | ||
/*! ***************************************************************************** | ||
Copyright (c) Microsoft Corporation. | ||
function FoxMenu() { | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted. | ||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | ||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | ||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | ||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | ||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR | ||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | ||
PERFORMANCE OF THIS SOFTWARE. | ||
***************************************************************************** */ | ||
/* global Reflect, Promise */ | ||
var extendStatics = function(d, b) { | ||
extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
}; | ||
function __extends(d, b) { | ||
if (typeof b !== "function" && b !== null) | ||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
} | ||
FoxMenu.styles = [mwcMenuCss.style]; | ||
FoxMenu = tslib.__decorate([decorators_js.customElement('fox-menu')], FoxMenu); | ||
return FoxMenu; | ||
}(mwcMenuBase.MenuBase); | ||
function __decorate(decorators, target, key, desc) { | ||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; | ||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); | ||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; | ||
return c > 3 && r && Object.defineProperty(target, key, r), r; | ||
} | ||
Object.defineProperty(exports, 'createSetFromIndex', { | ||
enumerable: true, | ||
get: function () { | ||
return mwcListFoundation.createSetFromIndex; | ||
/** | ||
* @license | ||
* Copyright 2018 Google 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. | ||
*/ | ||
var _a, _b; | ||
var cssClasses = { | ||
LIST_ITEM_ACTIVATED_CLASS: 'mdc-list-item--activated', | ||
LIST_ITEM_CLASS: 'mdc-list-item', | ||
LIST_ITEM_DISABLED_CLASS: 'mdc-list-item--disabled', | ||
LIST_ITEM_SELECTED_CLASS: 'mdc-list-item--selected', | ||
LIST_ITEM_TEXT_CLASS: 'mdc-list-item__text', | ||
LIST_ITEM_PRIMARY_TEXT_CLASS: 'mdc-list-item__primary-text', | ||
ROOT: 'mdc-list', | ||
}; | ||
var evolutionClassNameMap = (_a = {}, | ||
_a["" + cssClasses.LIST_ITEM_ACTIVATED_CLASS] = 'mdc-list-item--activated', | ||
_a["" + cssClasses.LIST_ITEM_CLASS] = 'mdc-list-item', | ||
_a["" + cssClasses.LIST_ITEM_DISABLED_CLASS] = 'mdc-list-item--disabled', | ||
_a["" + cssClasses.LIST_ITEM_SELECTED_CLASS] = 'mdc-list-item--selected', | ||
_a["" + cssClasses.LIST_ITEM_PRIMARY_TEXT_CLASS] = 'mdc-list-item__primary-text', | ||
_a["" + cssClasses.ROOT] = 'mdc-list', | ||
_a); | ||
var deprecatedClassNameMap = (_b = {}, | ||
_b["" + cssClasses.LIST_ITEM_ACTIVATED_CLASS] = 'mdc-deprecated-list-item--activated', | ||
_b["" + cssClasses.LIST_ITEM_CLASS] = 'mdc-deprecated-list-item', | ||
_b["" + cssClasses.LIST_ITEM_DISABLED_CLASS] = 'mdc-deprecated-list-item--disabled', | ||
_b["" + cssClasses.LIST_ITEM_SELECTED_CLASS] = 'mdc-deprecated-list-item--selected', | ||
_b["" + cssClasses.LIST_ITEM_TEXT_CLASS] = 'mdc-deprecated-list-item__text', | ||
_b["" + cssClasses.LIST_ITEM_PRIMARY_TEXT_CLASS] = 'mdc-deprecated-list-item__primary-text', | ||
_b["" + cssClasses.ROOT] = 'mdc-deprecated-list', | ||
_b); | ||
var strings = { | ||
ACTION_EVENT: 'MDCList:action', | ||
ARIA_CHECKED: 'aria-checked', | ||
ARIA_CHECKED_CHECKBOX_SELECTOR: '[role="checkbox"][aria-checked="true"]', | ||
ARIA_CHECKED_RADIO_SELECTOR: '[role="radio"][aria-checked="true"]', | ||
ARIA_CURRENT: 'aria-current', | ||
ARIA_DISABLED: 'aria-disabled', | ||
ARIA_ORIENTATION: 'aria-orientation', | ||
ARIA_ORIENTATION_HORIZONTAL: 'horizontal', | ||
ARIA_ROLE_CHECKBOX_SELECTOR: '[role="checkbox"]', | ||
ARIA_SELECTED: 'aria-selected', | ||
ARIA_INTERACTIVE_ROLES_SELECTOR: '[role="listbox"], [role="menu"]', | ||
ARIA_MULTI_SELECTABLE_SELECTOR: '[aria-multiselectable="true"]', | ||
CHECKBOX_RADIO_SELECTOR: 'input[type="checkbox"], input[type="radio"]', | ||
CHECKBOX_SELECTOR: 'input[type="checkbox"]', | ||
CHILD_ELEMENTS_TO_TOGGLE_TABINDEX: "\n ." + cssClasses.LIST_ITEM_CLASS + " button:not(:disabled),\n ." + cssClasses.LIST_ITEM_CLASS + " a,\n ." + deprecatedClassNameMap[cssClasses.LIST_ITEM_CLASS] + " button:not(:disabled),\n ." + deprecatedClassNameMap[cssClasses.LIST_ITEM_CLASS] + " a\n ", | ||
DEPRECATED_SELECTOR: '.mdc-deprecated-list', | ||
FOCUSABLE_CHILD_ELEMENTS: "\n ." + cssClasses.LIST_ITEM_CLASS + " button:not(:disabled),\n ." + cssClasses.LIST_ITEM_CLASS + " a,\n ." + cssClasses.LIST_ITEM_CLASS + " input[type=\"radio\"]:not(:disabled),\n ." + cssClasses.LIST_ITEM_CLASS + " input[type=\"checkbox\"]:not(:disabled),\n ." + deprecatedClassNameMap[cssClasses.LIST_ITEM_CLASS] + " button:not(:disabled),\n ." + deprecatedClassNameMap[cssClasses.LIST_ITEM_CLASS] + " a,\n ." + deprecatedClassNameMap[cssClasses.LIST_ITEM_CLASS] + " input[type=\"radio\"]:not(:disabled),\n ." + deprecatedClassNameMap[cssClasses.LIST_ITEM_CLASS] + " input[type=\"checkbox\"]:not(:disabled)\n ", | ||
RADIO_SELECTOR: 'input[type="radio"]', | ||
SELECTED_ITEM_SELECTOR: '[aria-selected="true"], [aria-current="true"]', | ||
}; | ||
var numbers = { | ||
UNSET_INDEX: -1, | ||
TYPEAHEAD_BUFFER_CLEAR_TIMEOUT_MS: 300 | ||
}; | ||
/** | ||
@license | ||
Copyright 2020 Google 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. | ||
*/ | ||
function isIndexSet(selectedIndex) { | ||
return selectedIndex instanceof Set; | ||
} | ||
}); | ||
Object.defineProperty(exports, 'isEventMulti', { | ||
enumerable: true, | ||
get: function () { | ||
return mwcListFoundation.isEventMulti; | ||
function isEventMulti(evt) { | ||
return isIndexSet(evt.detail.index); | ||
} | ||
}); | ||
Object.defineProperty(exports, 'isIndexSet', { | ||
enumerable: true, | ||
get: function () { | ||
return mwcListFoundation.isIndexSet; | ||
} | ||
}); | ||
exports.FoxMenu = FoxMenu; | ||
const createSetFromIndex = (index) => { | ||
const entry = index === numbers.UNSET_INDEX ? new Set() : index; | ||
return isIndexSet(entry) ? new Set(entry) : new Set([entry]); | ||
}; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
var FoxMenu = | ||
/** @class */ | ||
function (_super) { | ||
__extends(FoxMenu, _super); | ||
function FoxMenu() { | ||
return _super !== null && _super.apply(this, arguments) || this; | ||
} | ||
FoxMenu.styles = [mwcMenuCss.style]; | ||
FoxMenu = __decorate([litElement.customElement('fox-menu')], FoxMenu); | ||
return FoxMenu; | ||
}(mwcMenuBase.MenuBase); | ||
exports.FoxMenu = FoxMenu; | ||
exports.createSetFromIndex = createSetFromIndex; | ||
exports.isEventMulti = isEventMulti; | ||
exports.isIndexSet = isIndexSet; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
}))); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
22148
4
369
1