Socket
Socket
Sign inDemoInstall

@assecosolutions/fox-icon

Package Overview
Dependencies
Maintainers
4
Versions
142
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@assecosolutions/fox-icon - npm Package Compare versions

Comparing version 1.5.15 to 1.5.16

121

index.esm.js

@@ -21,9 +21,27 @@ import { css, LitElement, html as html$2 } from 'lit';

var fails$9 = function (exec) {
try {
return !!exec();
} catch (error) {
return true;
}
};
var fails$8 = fails$9;
var functionBindNative = !fails$8(function () {
var test = (function () { /* empty */ }).bind();
// eslint-disable-next-line no-prototype-builtins -- safe
return typeof test != 'function' || test.hasOwnProperty('prototype');
});
var NATIVE_BIND$1 = functionBindNative;
var FunctionPrototype$1 = Function.prototype;
var bind = FunctionPrototype$1.bind;
var call$5 = FunctionPrototype$1.call;
var callBind = bind && bind.bind(call$5);
var uncurryThis$a = NATIVE_BIND$1 && bind.bind(call$5, call$5);
var functionUncurryThis = bind ? function (fn) {
return fn && callBind(call$5, fn);
var functionUncurryThis = NATIVE_BIND$1 ? function (fn) {
return fn && uncurryThis$a(fn);
} : function (fn) {

@@ -35,10 +53,2 @@ return fn && function () {

var fails$7 = function (exec) {
try {
return !!exec();
} catch (error) {
return true;
}
};
var uncurryThis$9 = functionUncurryThis;

@@ -55,3 +65,3 @@

var uncurryThis$8 = functionUncurryThis;
var fails$6 = fails$7;
var fails$7 = fails$9;
var classof = classofRaw;

@@ -63,3 +73,3 @@

// fallback for non-array-like ES3 and non-enumerable old V8 strings
var indexedObject = fails$6(function () {
var indexedObject = fails$7(function () {
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346

@@ -119,5 +129,7 @@ // eslint-disable-next-line no-prototype-builtins -- safe

})('versions', []).push({
version: '3.20.0',
version: '3.20.3',
mode: 'global',
copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
license: 'https://github.com/zloirock/core-js/blob/v3.20.3/LICENSE',
source: 'https://github.com/zloirock/core-js'
});

@@ -209,6 +221,6 @@

var V8_VERSION = engineV8Version;
var fails$5 = fails$7;
var fails$6 = fails$9;
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$5(function () {
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$6(function () {
var symbol = Symbol();

@@ -273,6 +285,8 @@ // Chrome 38 Symbol has incorrect toString conversion

var fails$4 = fails$7;
var objectDefineProperties = {};
var fails$5 = fails$9;
// Detect IE8's incomplete defineProperty implementation
var descriptors = !fails$4(function () {
var descriptors = !fails$5(function () {
// eslint-disable-next-line es/no-object-defineproperty -- required for testing

@@ -282,2 +296,15 @@ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;

var DESCRIPTORS$7 = descriptors;
var fails$4 = fails$9;
// V8 ~ Chrome 36-
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
var v8PrototypeDefineBug = DESCRIPTORS$7 && fails$4(function () {
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
value: 42,
writable: false
}).prototype != 42;
});
var objectDefineProperty = {};

@@ -297,8 +324,8 @@

var DESCRIPTORS$6 = descriptors;
var fails$3 = fails$7;
var fails$3 = fails$9;
var createElement = documentCreateElement$2;
// Thank's IE8 for his funny defineProperty
// Thanks to IE8 for its funny defineProperty
var ie8DomDefine = !DESCRIPTORS$6 && !fails$3(function () {
// eslint-disable-next-line es/no-object-defineproperty -- requied for testing
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
return Object.defineProperty(createElement('div'), 'a', {

@@ -309,5 +336,7 @@ get: function () { return 7; }

var NATIVE_BIND = functionBindNative;
var call$4 = Function.prototype.call;
var functionCall = call$4.bind ? call$4.bind(call$4) : function () {
var functionCall = NATIVE_BIND ? call$4.bind(call$4) : function () {
return call$4.apply(call$4, arguments);

@@ -425,2 +454,3 @@ };

var IE8_DOM_DEFINE$1 = ie8DomDefine;
var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
var anObject$4 = anObject$5;

@@ -432,9 +462,29 @@ var toPropertyKey$1 = toPropertyKey$2;

var $defineProperty = Object.defineProperty;
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
var ENUMERABLE = 'enumerable';
var CONFIGURABLE$1 = 'configurable';
var WRITABLE = 'writable';
// `Object.defineProperty` method
// https://tc39.es/ecma262/#sec-object.defineproperty
objectDefineProperty.f = DESCRIPTORS$5 ? $defineProperty : function defineProperty(O, P, Attributes) {
objectDefineProperty.f = DESCRIPTORS$5 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
anObject$4(O);
P = toPropertyKey$1(P);
anObject$4(Attributes);
if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
var current = $getOwnPropertyDescriptor$1(O, P);
if (current && current[WRITABLE]) {
O[P] = Attributes.value;
Attributes = {
configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
writable: false
};
}
} return $defineProperty(O, P, Attributes);
} : $defineProperty : function defineProperty(O, P, Attributes) {
anObject$4(O);
P = toPropertyKey$1(P);
anObject$4(Attributes);
if (IE8_DOM_DEFINE$1) try {

@@ -568,2 +618,3 @@ return $defineProperty(O, P, Attributes);

var DESCRIPTORS$4 = descriptors;
var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
var definePropertyModule$3 = objectDefineProperty;

@@ -577,3 +628,3 @@ var anObject$3 = anObject$5;

// eslint-disable-next-line es/no-object-defineproperties -- safe
var objectDefineProperties = DESCRIPTORS$4 ? Object.defineProperties : function defineProperties(O, Properties) {
objectDefineProperties.f = DESCRIPTORS$4 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
anObject$3(O);

@@ -605,3 +656,3 @@ var props = toIndexedObject$2(Properties);

var anObject$2 = anObject$5;
var defineProperties = objectDefineProperties;
var definePropertiesModule = objectDefineProperties;
var enumBugKeys$1 = enumBugKeys$3;

@@ -684,3 +735,3 @@ var hiddenKeys$2 = hiddenKeys$4;

} else result = NullProtoObject();
return Properties === undefined ? result : defineProperties(result, Properties);
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
};

@@ -983,3 +1034,3 @@

var fails$2 = fails$7;
var fails$2 = fails$9;
var isCallable$4 = isCallable$d;

@@ -1063,3 +1114,3 @@

var fails$1 = fails$7;
var fails$1 = fails$9;

@@ -1095,3 +1146,3 @@ var correctPrototypeGetter = !fails$1(function () {

var fails = fails$7;
var fails = fails$9;
var isCallable$2 = isCallable$d;

@@ -1500,2 +1551,4 @@ var getPrototypeOf$1 = objectGetPrototypeOf;

this.icon = '';
this.small = false;
this.large = false;
}

@@ -1518,4 +1571,12 @@

__decorate([property({
type: Boolean
}), __metadata("design:type", Object)], FoxIcon.prototype, "small", void 0);
__decorate([property({
type: Boolean
}), __metadata("design:type", Object)], FoxIcon.prototype, "large", void 0);
FoxIcon = __decorate([customElement('fox-icon')], FoxIcon);
export { FoxIcon };

@@ -80,2 +80,4 @@ (function (global, factory) {

_this.icon = '';
_this.small = false;
_this.large = false;
return _this;

@@ -98,2 +100,10 @@ }

__decorate([decorators_js.property({
type: Boolean
}), __metadata("design:type", Object)], FoxIcon.prototype, "small", void 0);
__decorate([decorators_js.property({
type: Boolean
}), __metadata("design:type", Object)], FoxIcon.prototype, "large", void 0);
FoxIcon = __decorate([decorators_js.customElement('fox-icon')], FoxIcon);

@@ -100,0 +110,0 @@ return FoxIcon;

@@ -26,3 +26,5 @@ import { LitElement } from 'lit';

icon: string;
small: boolean;
large: boolean;
render(): import("lit-html").TemplateResult<1>;
}

@@ -0,1 +1,3 @@

import { Story } from '@storybook/web-components';
import { FoxIcon } from './FoxIcon';
import './FoxIcon';

@@ -7,2 +9,3 @@ declare const _default: {

export default _default;
export declare const Interactive: Story<FoxIcon>;
export declare const Default: () => import("lit-html").TemplateResult<1>;
{
"name": "@assecosolutions/fox-icon",
"version": "1.5.15",
"version": "1.5.16",
"public": true,

@@ -5,0 +5,0 @@ "lib": {

@@ -11,7 +11,8 @@ # 🦊 Fox - Future Open Experience

##Usage Demo and Docs
## Usage Demo and Docs
We use [Storybook](http://design-system.assecosolutions.com/) to deliver an interactive documentation of our Design system.
There you can find Multiple examples, guidelines and the documentation of all FOX web components
####[Demo](http://design-system.assecosolutions.com/?path=/story/atoms-fox-icon)
#### [Demo](http://design-system.assecosolutions.com/?path=/story/atoms-fox-icon)

@@ -24,4 +25,4 @@ ## Contribute

| ![Burak Topal](https://avatars3.githubusercontent.com/u/17909825?u=1026b9f16dd1c7dbf72b3fe3295c1aa834b81ce4&v=4&s=100 'Burak Topal') | ![Jari Möllenbernd](https://avatars2.githubusercontent.com/u/974638?u=8c61e7d54df0341c68cca59bd8fd0187154d03c8&v=4&s=100 'Jari Möllenbernd') | <img src="https://avatars0.githubusercontent.com/u/17983201?s=100&v=3" width="100" alt="Julia Nissen" /> |
| :----------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------: |
| Burak Topal ([@biggisb](https://github.com/Biggisb)) | Jari Möllenbernd ([@jarmee](https://github.com/jarmee)) | Julia Nissen ([@JuliaNssn](https://github.com/JuliaNssn)) |
| ![Burak Topal](https://avatars3.githubusercontent.com/u/17909825?u=1026b9f16dd1c7dbf72b3fe3295c1aa834b81ce4&v=4&s=100 'Burak Topal') | ![Jari Möllenbernd](https://avatars2.githubusercontent.com/u/974638?u=8c61e7d54df0341c68cca59bd8fd0187154d03c8&v=4&s=100 'Jari Möllenbernd') | <img src="https://avatars0.githubusercontent.com/u/17983201?v=4" alt="Julia Nissen" width="100"/> | <img src="https://avatars.githubusercontent.com/u/39598674?v=4" alt="Florian Ehmke" width="100"/> |
| :----------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------: |
| Burak Topal ([@biggisb](https://github.com/Biggisb)) | Jari Möllenbernd ([@jarmee](https://github.com/jarmee)) | Julia Nissen ([@JuliaNssn](https://github.com/JuliaNssn)) | Florian Ehmke ([@florianehmke](https://github.com/florianehmke)) |
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc