New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

devextreme-angular

Package Overview
Dependencies
Maintainers
1
Versions
700
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

devextreme-angular - npm Package Compare versions

Comparing version 16.2.1-alpha.2 to 16.2.1-alpha.3

2

core/watcher-helper.d.ts
export declare class WatcherHelper {
private _watchers;
getWatchMethod(): (valueGetter: any, valueChangeCallback: any, options: any) => () => void;
private _isElementExpired(element);
private _getRootNode(node);
private _isDifferentValues(oldValue, newValue, deepCheck);

@@ -6,0 +6,0 @@ private _checkObjectsFields(checkingFromObject, checkingToObject);

@@ -27,6 +27,6 @@ "use strict";

var newValue = valueGetter();
if (options.disposeWithElement && _this._getRootNode(options.disposeWithElement).nodeType !== DOCUMENT_NODE_TYPE) {
return true;
}
if (_this._isDifferentValues(oldValue, newValue, options.deep)) {
if (options.disposeWithElement && _this._isElementExpired(options.disposeWithElement)) {
return true;
}
valueChangeCallback(newValue);

@@ -46,6 +46,9 @@ oldValue = newValue;

};
WatcherHelper.prototype._isElementExpired = function (element) {
if (element) {
return element.getRootNode().nodeType !== DOCUMENT_NODE_TYPE;
WatcherHelper.prototype._getRootNode = function (node) {
if (!node.parentNode) {
return node;
}
else {
return this._getRootNode(node.parentNode);
}
};

@@ -52,0 +55,0 @@ WatcherHelper.prototype._isDifferentValues = function (oldValue, newValue, deepCheck) {

{
"name": "devextreme-angular",
"version": "16.2.1-alpha.2",
"version": "16.2.1-alpha.3",
"description": "Angular 2 UI and visualization components based on DevExtreme widgets",

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

@@ -23,7 +23,7 @@ import {

if (options.disposeWithElement && this._getRootNode(options.disposeWithElement).nodeType !== DOCUMENT_NODE_TYPE) {
return true;
}
if (this._isDifferentValues(oldValue, newValue, options.deep)) {
if (options.disposeWithElement && this._isElementExpired(options.disposeWithElement)) {
return true;
}
valueChangeCallback(newValue);

@@ -48,5 +48,7 @@ oldValue = newValue;

private _isElementExpired(element: any) {
if (element) {
return element.getRootNode().nodeType !== DOCUMENT_NODE_TYPE;
private _getRootNode(node: any) {
if (!node.parentNode) {
return node;
} else {
return this._getRootNode(node.parentNode);
}

@@ -53,0 +55,0 @@ }

@@ -1,9 +0,4 @@

import {
Input
} from '@angular/core';
import { NestedOption } from '../../../core/nested-option';
export abstract class DxoChartCommonSeriesSettings extends NestedOption {
@Input()
get argumentField() {

@@ -16,3 +11,2 @@ return this._getOption('argumentField');

@Input()
get axis() {

@@ -25,3 +19,2 @@ return this._getOption('axis');

@Input()
get border() {

@@ -34,3 +27,2 @@ return this._getOption('border');

@Input()
get closeValueField() {

@@ -43,3 +35,2 @@ return this._getOption('closeValueField');

@Input()
get color() {

@@ -52,3 +43,2 @@ return this._getOption('color');

@Input()
get cornerRadius() {

@@ -61,3 +51,2 @@ return this._getOption('cornerRadius');

@Input()
get dashStyle() {

@@ -70,3 +59,2 @@ return this._getOption('dashStyle');

@Input()
get highValueField() {

@@ -79,3 +67,2 @@ return this._getOption('highValueField');

@Input()
get hoverMode() {

@@ -88,3 +75,2 @@ return this._getOption('hoverMode');

@Input()
get hoverStyle() {

@@ -97,3 +83,2 @@ return this._getOption('hoverStyle');

@Input()
get ignoreEmptyPoints() {

@@ -106,3 +91,2 @@ return this._getOption('ignoreEmptyPoints');

@Input()
get innerColor() {

@@ -115,3 +99,2 @@ return this._getOption('innerColor');

@Input()
get label() {

@@ -124,3 +107,2 @@ return this._getOption('label');

@Input()
get lowValueField() {

@@ -133,3 +115,2 @@ return this._getOption('lowValueField');

@Input()
get maxLabelCount() {

@@ -142,3 +123,2 @@ return this._getOption('maxLabelCount');

@Input()
get minBarSize() {

@@ -151,3 +131,2 @@ return this._getOption('minBarSize');

@Input()
get opacity() {

@@ -160,3 +139,2 @@ return this._getOption('opacity');

@Input()
get openValueField() {

@@ -169,3 +147,2 @@ return this._getOption('openValueField');

@Input()
get pane() {

@@ -178,3 +155,2 @@ return this._getOption('pane');

@Input()
get point() {

@@ -187,3 +163,2 @@ return this._getOption('point');

@Input()
get rangeValue1Field() {

@@ -196,3 +171,2 @@ return this._getOption('rangeValue1Field');

@Input()
get rangeValue2Field() {

@@ -205,3 +179,2 @@ return this._getOption('rangeValue2Field');

@Input()
get reduction() {

@@ -214,3 +187,2 @@ return this._getOption('reduction');

@Input()
get selectionMode() {

@@ -223,3 +195,2 @@ return this._getOption('selectionMode');

@Input()
get selectionStyle() {

@@ -232,3 +203,2 @@ return this._getOption('selectionStyle');

@Input()
get showInLegend() {

@@ -241,3 +211,2 @@ return this._getOption('showInLegend');

@Input()
get sizeField() {

@@ -250,3 +219,2 @@ return this._getOption('sizeField');

@Input()
get stack() {

@@ -259,3 +227,2 @@ return this._getOption('stack');

@Input()
get tagField() {

@@ -268,3 +235,2 @@ return this._getOption('tagField');

@Input()
get valueErrorBar() {

@@ -277,3 +243,2 @@ return this._getOption('valueErrorBar');

@Input()
get valueField() {

@@ -286,3 +251,2 @@ return this._getOption('valueField');

@Input()
get visible() {

@@ -295,3 +259,2 @@ return this._getOption('visible');

@Input()
get width() {

@@ -304,3 +267,2 @@ return this._getOption('width');

@Input()
get area() {

@@ -313,3 +275,2 @@ return this._getOption('area');

@Input()
get bar() {

@@ -322,3 +283,2 @@ return this._getOption('bar');

@Input()
get bubble() {

@@ -331,3 +291,2 @@ return this._getOption('bubble');

@Input()
get candlestick() {

@@ -340,3 +299,2 @@ return this._getOption('candlestick');

@Input()
get fullstackedarea() {

@@ -349,3 +307,2 @@ return this._getOption('fullstackedarea');

@Input()
get fullstackedbar() {

@@ -358,3 +315,2 @@ return this._getOption('fullstackedbar');

@Input()
get fullstackedline() {

@@ -367,3 +323,2 @@ return this._getOption('fullstackedline');

@Input()
get fullstackedspline() {

@@ -376,3 +331,2 @@ return this._getOption('fullstackedspline');

@Input()
get fullstackedsplinearea() {

@@ -385,3 +339,2 @@ return this._getOption('fullstackedsplinearea');

@Input()
get line() {

@@ -394,3 +347,2 @@ return this._getOption('line');

@Input()
get rangearea() {

@@ -403,3 +355,2 @@ return this._getOption('rangearea');

@Input()
get rangebar() {

@@ -412,3 +363,2 @@ return this._getOption('rangebar');

@Input()
get scatter() {

@@ -421,3 +371,2 @@ return this._getOption('scatter');

@Input()
get spline() {

@@ -430,3 +379,2 @@ return this._getOption('spline');

@Input()
get splinearea() {

@@ -439,3 +387,2 @@ return this._getOption('splinearea');

@Input()
get stackedarea() {

@@ -448,3 +395,2 @@ return this._getOption('stackedarea');

@Input()
get stackedbar() {

@@ -457,3 +403,2 @@ return this._getOption('stackedbar');

@Input()
get stackedline() {

@@ -466,3 +411,2 @@ return this._getOption('stackedline');

@Input()
get stackedspline() {

@@ -475,3 +419,2 @@ return this._getOption('stackedspline');

@Input()
get stackedsplinearea() {

@@ -484,3 +427,2 @@ return this._getOption('stackedsplinearea');

@Input()
get steparea() {

@@ -493,3 +435,2 @@ return this._getOption('steparea');

@Input()
get stepline() {

@@ -502,3 +443,2 @@ return this._getOption('stepline');

@Input()
get stock() {

@@ -511,3 +451,2 @@ return this._getOption('stock');

@Input()
get type() {

@@ -520,3 +459,2 @@ return this._getOption('type');

@Input()
get argumentType() {

@@ -529,3 +467,2 @@ return this._getOption('argumentType');

@Input()
get innerRadius() {

@@ -538,3 +475,2 @@ return this._getOption('innerRadius');

@Input()
get minSegmentSize() {

@@ -547,3 +483,2 @@ return this._getOption('minSegmentSize');

@Input()
get segmentsDirection() {

@@ -556,3 +491,2 @@ return this._getOption('segmentsDirection');

@Input()
get smallValuesGrouping() {

@@ -565,3 +499,2 @@ return this._getOption('smallValuesGrouping');

@Input()
get startAngle() {

@@ -574,3 +507,2 @@ return this._getOption('startAngle');

@Input()
get closed() {

@@ -577,0 +509,0 @@ return this._getOption('closed');

@@ -1,9 +0,4 @@

import {
Input
} from '@angular/core';
import { NestedOption } from '../../../core/nested-option';
export abstract class DxoPivotGridDataSource extends NestedOption {
@Input()
get fields() {

@@ -16,3 +11,2 @@ return this._getOption('fields');

@Input()
get filter() {

@@ -25,3 +19,2 @@ return this._getOption('filter');

@Input()
get onChanged() {

@@ -34,3 +27,2 @@ return this._getOption('onChanged');

@Input()
get onFieldsPrepared() {

@@ -43,3 +35,2 @@ return this._getOption('onFieldsPrepared');

@Input()
get onLoadError() {

@@ -52,3 +43,2 @@ return this._getOption('onLoadError');

@Input()
get onLoadingChanged() {

@@ -61,3 +51,2 @@ return this._getOption('onLoadingChanged');

@Input()
get remoteOperations() {

@@ -70,3 +59,2 @@ return this._getOption('remoteOperations');

@Input()
get retrieveFields() {

@@ -79,3 +67,2 @@ return this._getOption('retrieveFields');

@Input()
get store() {

@@ -82,0 +69,0 @@ return this._getOption('store');

@@ -1,9 +0,4 @@

import {
Input
} from '@angular/core';
import { NestedOption } from '../../../core/nested-option';
export abstract class DxoVizFont extends NestedOption {
@Input()
get color() {

@@ -16,3 +11,2 @@ return this._getOption('color');

@Input()
get family() {

@@ -25,3 +19,2 @@ return this._getOption('family');

@Input()
get opacity() {

@@ -34,3 +27,2 @@ return this._getOption('opacity');

@Input()
get size() {

@@ -43,3 +35,2 @@ return this._getOption('size');

@Input()
get weight() {

@@ -46,0 +37,0 @@ return this._getOption('weight');

@@ -7,12 +7,2 @@ "use strict";

};
var __decorate = (this && this.__decorate) || function (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;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var core_1 = require('@angular/core');
var nested_option_1 = require('../../../core/nested-option');

@@ -732,258 +722,2 @@ var DxoChartCommonSeriesSettings = (function (_super) {

};
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "argumentField", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "axis", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "border", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "closeValueField", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "color", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "cornerRadius", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "dashStyle", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "highValueField", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "hoverMode", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "hoverStyle", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "ignoreEmptyPoints", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "innerColor", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "label", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "lowValueField", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "maxLabelCount", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "minBarSize", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "opacity", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "openValueField", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "pane", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "point", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "rangeValue1Field", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "rangeValue2Field", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "reduction", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "selectionMode", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "selectionStyle", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "showInLegend", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "sizeField", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "stack", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "tagField", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "valueErrorBar", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "valueField", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "visible", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "width", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "area", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "bar", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "bubble", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "candlestick", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "fullstackedarea", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "fullstackedbar", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "fullstackedline", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "fullstackedspline", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "fullstackedsplinearea", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "line", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "rangearea", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "rangebar", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "scatter", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "spline", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "splinearea", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "stackedarea", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "stackedbar", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "stackedline", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "stackedspline", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "stackedsplinearea", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "steparea", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "stepline", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "stock", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "type", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "argumentType", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "innerRadius", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "minSegmentSize", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "segmentsDirection", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "smallValuesGrouping", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "startAngle", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoChartCommonSeriesSettings.prototype, "closed", null);
return DxoChartCommonSeriesSettings;

@@ -990,0 +724,0 @@ }(nested_option_1.NestedOption));

@@ -7,12 +7,2 @@ "use strict";

};
var __decorate = (this && this.__decorate) || function (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;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var core_1 = require('@angular/core');
var nested_option_1 = require('../../../core/nested-option');

@@ -127,38 +117,2 @@ var DxoPivotGridDataSource = (function (_super) {

};
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoPivotGridDataSource.prototype, "fields", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoPivotGridDataSource.prototype, "filter", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoPivotGridDataSource.prototype, "onChanged", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoPivotGridDataSource.prototype, "onFieldsPrepared", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoPivotGridDataSource.prototype, "onLoadError", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoPivotGridDataSource.prototype, "onLoadingChanged", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoPivotGridDataSource.prototype, "remoteOperations", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoPivotGridDataSource.prototype, "retrieveFields", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoPivotGridDataSource.prototype, "store", null);
return DxoPivotGridDataSource;

@@ -165,0 +119,0 @@ }(nested_option_1.NestedOption));

@@ -7,12 +7,2 @@ "use strict";

};
var __decorate = (this && this.__decorate) || function (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;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var core_1 = require('@angular/core');
var nested_option_1 = require('../../../core/nested-option');

@@ -83,22 +73,2 @@ var DxoVizFont = (function (_super) {

};
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoVizFont.prototype, "color", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoVizFont.prototype, "family", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoVizFont.prototype, "opacity", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoVizFont.prototype, "size", null);
__decorate([
core_1.Input(),
__metadata('design:type', Object)
], DxoVizFont.prototype, "weight", null);
return DxoVizFont;

@@ -105,0 +75,0 @@ }(nested_option_1.NestedOption));

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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