@syncfusion/ej2-angular-base 31.2.2 → 32.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ej2-angular-base.umd.min.js +0 -9
- package/dist/global/ej2-angular-base.min.js +0 -9
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/complex-array-base.d.ts +55 -0
- package/dist/ts/complex-array-base.ts +275 -0
- package/dist/ts/component-base.d.ts +50 -0
- package/dist/ts/component-base.ts +432 -0
- package/dist/ts/form-base.d.ts +46 -0
- package/dist/ts/form-base.ts +171 -0
- package/dist/ts/index.d.ts +8 -0
- package/dist/ts/index.ts +8 -0
- package/dist/ts/template.d.ts +19 -0
- package/dist/ts/template.ts +107 -0
- package/dist/ts/util.d.ts +60 -0
- package/dist/ts/util.ts +177 -0
- package/package.json +82 -14
- package/styles/bds.css +0 -2
- package/styles/bds.scss +0 -1
- package/styles/bootstrap-dark.scss +0 -1
- package/styles/bootstrap.scss +0 -1
- package/styles/bootstrap4.scss +0 -1
- package/styles/bootstrap5-dark.scss +0 -1
- package/styles/bootstrap5.3.css +82 -0
- package/styles/bootstrap5.3.scss +1 -1
- package/styles/bootstrap5.scss +1 -1
- package/styles/fabric-dark.scss +1 -1
- package/styles/fabric.scss +1 -1
- package/styles/fluent-dark.scss +1 -1
- package/styles/fluent.scss +1 -1
- package/styles/fluent2.css +80 -0
- package/styles/fluent2.scss +1 -1
- package/styles/highcontrast-light.scss +1 -1
- package/styles/highcontrast.scss +1 -1
- package/styles/material-dark.scss +1 -1
- package/styles/material.scss +0 -1
- package/styles/material3-dark.css +82 -0
- package/styles/material3-dark.scss +1 -1
- package/styles/material3.css +80 -0
- package/styles/material3.scss +1 -1
- package/styles/tailwind-dark.scss +1 -1
- package/styles/tailwind.scss +1 -1
- package/styles/tailwind3.css +70 -0
- package/styles/tailwind3.scss +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
/**
|
|
3
|
+
* Angular Template Compiler
|
|
4
|
+
*
|
|
5
|
+
* @param {AngularElementType} templateEle - The element representing the template.
|
|
6
|
+
* @param {Object} [helper] - Optional helper object.
|
|
7
|
+
* @returns {Function} A function that compiles the template.
|
|
8
|
+
*/
|
|
9
|
+
export declare function compile(templateEle: AngularElementType, helper?: Object): (data: Object | JSON, component?: any, propName?: any) => Object;
|
|
10
|
+
/**
|
|
11
|
+
* Property decorator for angular.
|
|
12
|
+
*
|
|
13
|
+
* @param {Object} [defaultValue] - Default value for the property.
|
|
14
|
+
* @returns {PropertyDecorator} The decorator function.
|
|
15
|
+
*/
|
|
16
|
+
export declare function Template(defaultValue?: Object): PropertyDecorator;
|
|
17
|
+
export interface AngularElementType {
|
|
18
|
+
elementRef: ElementRef;
|
|
19
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
import { ViewContainerRef, EmbeddedViewRef, ElementRef, TemplateRef } from '@angular/core';
|
|
3
|
+
import { setTemplateEngine, getTemplateEngine } from '@syncfusion/ej2-base';
|
|
4
|
+
import { setValue, getValue } from '@syncfusion/ej2-base';
|
|
5
|
+
|
|
6
|
+
const stringCompiler: (template: string | Function, helper?: object) => (data: Object | JSON) => string = getTemplateEngine();
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Angular Template Compiler
|
|
10
|
+
*
|
|
11
|
+
* @param {AngularElementType} templateEle - The element representing the template.
|
|
12
|
+
* @param {Object} [helper] - Optional helper object.
|
|
13
|
+
* @returns {Function} A function that compiles the template.
|
|
14
|
+
*/
|
|
15
|
+
export function compile(templateEle: AngularElementType, helper?: Object):
|
|
16
|
+
|
|
17
|
+
(data: Object | JSON, component?: any, propName?: any) => Object {
|
|
18
|
+
if (typeof templateEle === 'string' || (typeof templateEle === 'function' && (templateEle as Function).prototype && (templateEle as Function).prototype.CSPTemplate)) {
|
|
19
|
+
return stringCompiler(templateEle, helper);
|
|
20
|
+
} else {
|
|
21
|
+
const contRef: ViewContainerRef = templateEle.elementRef.nativeElement._viewContainerRef;
|
|
22
|
+
const pName: string = templateEle.elementRef.nativeElement.propName;
|
|
23
|
+
return (data: Object, component?: any, propName?: any): Object => {
|
|
24
|
+
const context: Object = { $implicit: data };
|
|
25
|
+
/* istanbul ignore next */
|
|
26
|
+
const conRef: ViewContainerRef = contRef ? contRef : component.viewContainerRef;
|
|
27
|
+
const viewRef: EmbeddedViewRef<Object> = conRef.createEmbeddedView(templateEle as TemplateRef<Object>, context);
|
|
28
|
+
if (/EJS-MENTION|EJS-DROPDOWNLIST/.test(getValue('currentInstance.element.nodeName', conRef)) ||
|
|
29
|
+
(/E-TABITEM/.test(getValue('element.nativeElement.nodeName', conRef)) &&
|
|
30
|
+
getValue('currentInstance.headerTemplateRef', conRef))) {
|
|
31
|
+
viewRef.detectChanges();
|
|
32
|
+
} else {
|
|
33
|
+
viewRef.markForCheck();
|
|
34
|
+
}
|
|
35
|
+
/* istanbul ignore next */
|
|
36
|
+
const viewCollection: { [key: string]: EmbeddedViewRef<Object>[] } = (component && component.registeredTemplate) ?
|
|
37
|
+
component.registeredTemplate : getValue('currentInstance.registeredTemplate', conRef);
|
|
38
|
+
propName = (propName && component.registeredTemplate) ? propName : pName;
|
|
39
|
+
if (typeof viewCollection[`${propName}`] === 'undefined') {
|
|
40
|
+
viewCollection[`${propName}`] = [];
|
|
41
|
+
}
|
|
42
|
+
viewCollection[`${propName}`].push(viewRef);
|
|
43
|
+
return viewRef.rootNodes;
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Property decorator for angular.
|
|
50
|
+
*
|
|
51
|
+
* @param {Object} [defaultValue] - Default value for the property.
|
|
52
|
+
* @returns {PropertyDecorator} The decorator function.
|
|
53
|
+
*/
|
|
54
|
+
export function Template(defaultValue?: Object): PropertyDecorator {
|
|
55
|
+
return (target: Object, key: string) => {
|
|
56
|
+
const propertyDescriptor: Object = {
|
|
57
|
+
set: setter(key),
|
|
58
|
+
get: getter(key, defaultValue),
|
|
59
|
+
enumerable: true,
|
|
60
|
+
configurable: true
|
|
61
|
+
};
|
|
62
|
+
Object.defineProperty(target, key, propertyDescriptor);
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Creates a setter function for a given property key.
|
|
68
|
+
*
|
|
69
|
+
* @param {string} key - The property key.
|
|
70
|
+
* @returns {Function} The setter function.
|
|
71
|
+
*/
|
|
72
|
+
function setter(key: string): Function {
|
|
73
|
+
return function (val: any): void {
|
|
74
|
+
if (val === undefined) { return; }
|
|
75
|
+
setValue(key + 'Ref', val, this);
|
|
76
|
+
if (typeof val !== 'string' && !(typeof val === 'function' && (val as Function).prototype && (val as Function).prototype.CSPTemplate)) {
|
|
77
|
+
(val as any).elementRef.nativeElement._viewContainerRef = this.viewContainerRef;
|
|
78
|
+
(val as any).elementRef.nativeElement.propName = key;
|
|
79
|
+
} else {
|
|
80
|
+
if (this.saveChanges) {
|
|
81
|
+
this.saveChanges(key, val, undefined);
|
|
82
|
+
this.dataBind();
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Returns a getter function for the specified key and default value.
|
|
90
|
+
*
|
|
91
|
+
* @param {string} key - The key for the property.
|
|
92
|
+
* @param {Object} defaultValue - The default value for the property.
|
|
93
|
+
* @returns {Function} The getter function.
|
|
94
|
+
*/
|
|
95
|
+
function getter(key: string, defaultValue: Object): Function {
|
|
96
|
+
return function (): Object {
|
|
97
|
+
/* istanbul ignore next */
|
|
98
|
+
return getValue(key + 'Ref', this) || defaultValue;
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export interface AngularElementType {
|
|
103
|
+
elementRef: ElementRef;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
setTemplateEngine({ compile: (compile as any) });
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Angular Utility Module
|
|
3
|
+
*
|
|
4
|
+
* @param {Function} derivedClass The derived class to which mixins are applied.
|
|
5
|
+
* @param {Function[]} baseClass An array of base classes whose methods are applied as mixins.
|
|
6
|
+
* @returns {void}
|
|
7
|
+
*/
|
|
8
|
+
export declare function applyMixins(derivedClass: any, baseClass: any[]): void;
|
|
9
|
+
/**
|
|
10
|
+
* Decorator function to apply mixins to a derived class.
|
|
11
|
+
*
|
|
12
|
+
* @param {Function[]} baseClass - An array of mixin classes to be applied to the derived class.
|
|
13
|
+
* @returns {ClassDecorator} The decorator function.
|
|
14
|
+
*/
|
|
15
|
+
export declare function ComponentMixins(baseClass: Function[]): ClassDecorator;
|
|
16
|
+
/**
|
|
17
|
+
* Registers events.
|
|
18
|
+
*
|
|
19
|
+
* @private
|
|
20
|
+
* @param {string[]} eventList - The list of events to register.
|
|
21
|
+
* @param {any} obj - The object on which to register the events.
|
|
22
|
+
* @param {boolean} [direct] - Whether to register events directly on the object or not.
|
|
23
|
+
* @returns {void}
|
|
24
|
+
*/
|
|
25
|
+
export declare function registerEvents(eventList: string[], obj: any, direct?: boolean): void;
|
|
26
|
+
/**
|
|
27
|
+
* Clears registered templates.
|
|
28
|
+
*
|
|
29
|
+
* @private
|
|
30
|
+
* @param {any} _this - The context object.
|
|
31
|
+
* @param {string[]} [templateNames] - Optional. An array of template names to clear.
|
|
32
|
+
* @param {any[]} [index] - Optional. An array of indices specifying templates to clear.
|
|
33
|
+
* @returns {void}
|
|
34
|
+
*/
|
|
35
|
+
export declare function clearTemplate(_this: any, templateNames?: string[], index?: any): void;
|
|
36
|
+
/**
|
|
37
|
+
* To set value for the nameSpace in desired object.
|
|
38
|
+
*
|
|
39
|
+
* @param {string} nameSpace - String value to get the inner object.
|
|
40
|
+
* @param {any} value - Value that you need to set.
|
|
41
|
+
* @param {any} object - Object to get the inner object value.
|
|
42
|
+
* @returns {void}
|
|
43
|
+
* @private
|
|
44
|
+
*/
|
|
45
|
+
export declare function setValue(nameSpace: string, value: any, object: any): any;
|
|
46
|
+
export interface PropertyCollectionInfo {
|
|
47
|
+
props: PropertyDetails[];
|
|
48
|
+
complexProps: PropertyDetails[];
|
|
49
|
+
colProps: PropertyDetails[];
|
|
50
|
+
events: PropertyDetails[];
|
|
51
|
+
propNames: string[];
|
|
52
|
+
complexPropNames: string[];
|
|
53
|
+
colPropNames: string[];
|
|
54
|
+
eventNames: string[];
|
|
55
|
+
}
|
|
56
|
+
export interface PropertyDetails {
|
|
57
|
+
propertyName: string;
|
|
58
|
+
type: FunctionConstructor | Object;
|
|
59
|
+
defaultValue: Object;
|
|
60
|
+
}
|
package/dist/ts/util.ts
ADDED
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/explicit-module-boundary-types */
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { isNullOrUndefined } from '@syncfusion/ej2-base';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Angular Utility Module
|
|
7
|
+
*
|
|
8
|
+
* @param {Function} derivedClass The derived class to which mixins are applied.
|
|
9
|
+
* @param {Function[]} baseClass An array of base classes whose methods are applied as mixins.
|
|
10
|
+
* @returns {void}
|
|
11
|
+
*/
|
|
12
|
+
export function applyMixins(derivedClass: any, baseClass: any[]): void {
|
|
13
|
+
baseClass.forEach((baseClass: any) => {
|
|
14
|
+
Object.getOwnPropertyNames(baseClass.prototype).forEach((name: string) => {
|
|
15
|
+
if (!Object.prototype.hasOwnProperty.call(derivedClass.prototype, name) || (baseClass.isFormBase && name !== 'constructor')) {
|
|
16
|
+
derivedClass.prototype[`${name}`] = baseClass.prototype[`${name}`];
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Decorator function to apply mixins to a derived class.
|
|
24
|
+
*
|
|
25
|
+
* @param {Function[]} baseClass - An array of mixin classes to be applied to the derived class.
|
|
26
|
+
* @returns {ClassDecorator} The decorator function.
|
|
27
|
+
*/
|
|
28
|
+
export function ComponentMixins(baseClass: Function[]): ClassDecorator {
|
|
29
|
+
return function (derivedClass: Function): void {
|
|
30
|
+
applyMixins(derivedClass, baseClass);
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Registers events.
|
|
36
|
+
*
|
|
37
|
+
* @private
|
|
38
|
+
* @param {string[]} eventList - The list of events to register.
|
|
39
|
+
* @param {any} obj - The object on which to register the events.
|
|
40
|
+
* @param {boolean} [direct] - Whether to register events directly on the object or not.
|
|
41
|
+
* @returns {void}
|
|
42
|
+
*/
|
|
43
|
+
export function registerEvents(eventList: string[], obj: any, direct?: boolean): void {
|
|
44
|
+
const ngEventsEmitter: { [key: string]: Object } = {};
|
|
45
|
+
if (eventList && eventList.length) {
|
|
46
|
+
for (const event of eventList) {
|
|
47
|
+
if (direct === true) {
|
|
48
|
+
obj.propCollection[`${event}`] = new EventEmitter(false);
|
|
49
|
+
obj[`${event}`] = obj.propCollection[`${event}`];
|
|
50
|
+
} else {
|
|
51
|
+
ngEventsEmitter[`${event}`] = new EventEmitter(false);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
if (direct !== true) {
|
|
55
|
+
obj.setProperties(ngEventsEmitter, true);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Clears registered templates.
|
|
62
|
+
*
|
|
63
|
+
* @private
|
|
64
|
+
* @param {any} _this - The context object.
|
|
65
|
+
* @param {string[]} [templateNames] - Optional. An array of template names to clear.
|
|
66
|
+
* @param {any[]} [index] - Optional. An array of indices specifying templates to clear.
|
|
67
|
+
* @returns {void}
|
|
68
|
+
*/
|
|
69
|
+
export function clearTemplate(_this: any, templateNames?: string[], index?: any): void {
|
|
70
|
+
const regTemplates: string[] = Object.keys(_this.registeredTemplate);
|
|
71
|
+
if (regTemplates.length) {
|
|
72
|
+
/* istanbul ignore next */
|
|
73
|
+
const regProperties: string[] = templateNames && templateNames.filter(
|
|
74
|
+
(val: string) => {
|
|
75
|
+
return (/\./g.test(val) ? false : true);
|
|
76
|
+
});
|
|
77
|
+
const tabaccordionTemp: boolean = /tab|accordion|toolbar/.test(_this.getModuleName?.());
|
|
78
|
+
for (const registeredTemplate of (regProperties && regProperties || regTemplates)) {
|
|
79
|
+
/* istanbul ignore next */
|
|
80
|
+
if (index && index.length) {
|
|
81
|
+
for (let e: number = 0; e < index.length; e++) {
|
|
82
|
+
if (tabaccordionTemp) {
|
|
83
|
+
for (let m: number = 0; m < _this.registeredTemplate[`${registeredTemplate}`].length; m++) {
|
|
84
|
+
const value: any = _this.registeredTemplate[`${registeredTemplate}`][parseInt(m.toString(), 10)];
|
|
85
|
+
if (value && value === index[`${e}`]) {
|
|
86
|
+
value.destroy();
|
|
87
|
+
_this.registeredTemplate[`${registeredTemplate}`].splice(m, 1);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
} else {
|
|
91
|
+
for (let m: number = 0; m < _this.registeredTemplate.template.length; m++) {
|
|
92
|
+
const value: any = _this.registeredTemplate.template[parseInt(m.toString(), 10)].rootNodes[0];
|
|
93
|
+
if (value === index[`${e}`]) {
|
|
94
|
+
const rt: any = _this.registeredTemplate[`${registeredTemplate}`];
|
|
95
|
+
rt[parseInt(m.toString(), 10)].destroy();
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
} else {
|
|
101
|
+
if (_this.registeredTemplate[`${registeredTemplate}`]) {
|
|
102
|
+
for (const rt of _this.registeredTemplate[`${registeredTemplate}`]) {
|
|
103
|
+
if (!rt.destroyed) {
|
|
104
|
+
if (rt._view) {
|
|
105
|
+
const pNode: any = rt._view.renderer.parentNode(rt.rootNodes[0]);
|
|
106
|
+
if (!isNullOrUndefined(pNode)) {
|
|
107
|
+
for (let m: number = 0; m < rt.rootNodes.length; m++) {
|
|
108
|
+
pNode.appendChild(rt.rootNodes[parseInt(m.toString(), 10)]);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
rt.destroy();
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
if (!tabaccordionTemp || !index) {
|
|
118
|
+
delete _this.registeredTemplate[`${registeredTemplate}`];
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
for (const tagObject of _this.tagObjects) {
|
|
123
|
+
if (tagObject.instance) {
|
|
124
|
+
/* istanbul ignore next */
|
|
125
|
+
tagObject.instance.clearTemplate((templateNames && templateNames.filter(
|
|
126
|
+
(val: string) => {
|
|
127
|
+
const regExp: RegExpConstructor = RegExp;
|
|
128
|
+
return (new regExp(tagObject.name).test(val) ? true : false);
|
|
129
|
+
})));
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* To set value for the nameSpace in desired object.
|
|
136
|
+
*
|
|
137
|
+
* @param {string} nameSpace - String value to get the inner object.
|
|
138
|
+
* @param {any} value - Value that you need to set.
|
|
139
|
+
* @param {any} object - Object to get the inner object value.
|
|
140
|
+
* @returns {void}
|
|
141
|
+
* @private
|
|
142
|
+
*/
|
|
143
|
+
export function setValue(nameSpace: string, value: any, object: any): any {
|
|
144
|
+
const keys: string[] = nameSpace.replace(/\[/g, '.').replace(/\]/g, '').split('.');
|
|
145
|
+
/* istanbul ignore next */
|
|
146
|
+
let fromObj: any = object || {};
|
|
147
|
+
for (let i: number = 0; i < keys.length; i++) {
|
|
148
|
+
const key: string = keys[parseInt(i.toString(), 10)];
|
|
149
|
+
if (i + 1 === keys.length) {
|
|
150
|
+
fromObj[`${key}`] = value === undefined ? {} : value;
|
|
151
|
+
} else if (fromObj[`${key}`] === undefined) {
|
|
152
|
+
fromObj[`${key}`] = {};
|
|
153
|
+
}
|
|
154
|
+
fromObj = fromObj[`${key}`];
|
|
155
|
+
}
|
|
156
|
+
return fromObj;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
export interface PropertyCollectionInfo {
|
|
163
|
+
props: PropertyDetails[];
|
|
164
|
+
complexProps: PropertyDetails[];
|
|
165
|
+
colProps: PropertyDetails[];
|
|
166
|
+
events: PropertyDetails[];
|
|
167
|
+
propNames: string[];
|
|
168
|
+
complexPropNames: string[];
|
|
169
|
+
colPropNames: string[];
|
|
170
|
+
eventNames: string[];
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export interface PropertyDetails {
|
|
174
|
+
propertyName: string;
|
|
175
|
+
type: FunctionConstructor | Object;
|
|
176
|
+
defaultValue: Object;
|
|
177
|
+
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,80 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"_from": "@syncfusion/ej2-angular-base@*",
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-base@31.2.0",
|
|
4
|
+
"_inBundle": false,
|
|
5
|
+
"_integrity": "sha512-YSraLbHKs2kU3NAPuZmCL+GWSjGrdc2HQ+pw8SED1577fG+j4XXyO4m5pbw6JP5/fyUP8+c1zhRhXb4keFrbnA==",
|
|
6
|
+
"_location": "/@syncfusion/ej2-angular-base",
|
|
7
|
+
"_phantomChildren": {},
|
|
8
|
+
"_requested": {
|
|
9
|
+
"type": "range",
|
|
10
|
+
"registry": true,
|
|
11
|
+
"raw": "@syncfusion/ej2-angular-base@*",
|
|
12
|
+
"name": "@syncfusion/ej2-angular-base",
|
|
13
|
+
"escapedName": "@syncfusion%2fej2-angular-base",
|
|
14
|
+
"scope": "@syncfusion",
|
|
15
|
+
"rawSpec": "*",
|
|
16
|
+
"saveSpec": null,
|
|
17
|
+
"fetchSpec": "*"
|
|
18
|
+
},
|
|
19
|
+
"_requiredBy": [
|
|
20
|
+
"/",
|
|
21
|
+
"/@syncfusion/ej2-angular-barcode-generator",
|
|
22
|
+
"/@syncfusion/ej2-angular-blockeditor",
|
|
23
|
+
"/@syncfusion/ej2-angular-buttons",
|
|
24
|
+
"/@syncfusion/ej2-angular-calendars",
|
|
25
|
+
"/@syncfusion/ej2-angular-charts",
|
|
26
|
+
"/@syncfusion/ej2-angular-circulargauge",
|
|
27
|
+
"/@syncfusion/ej2-angular-diagrams",
|
|
28
|
+
"/@syncfusion/ej2-angular-documenteditor",
|
|
29
|
+
"/@syncfusion/ej2-angular-dropdowns",
|
|
30
|
+
"/@syncfusion/ej2-angular-filemanager",
|
|
31
|
+
"/@syncfusion/ej2-angular-gantt",
|
|
32
|
+
"/@syncfusion/ej2-angular-grids",
|
|
33
|
+
"/@syncfusion/ej2-angular-heatmap",
|
|
34
|
+
"/@syncfusion/ej2-angular-image-editor",
|
|
35
|
+
"/@syncfusion/ej2-angular-inplace-editor",
|
|
36
|
+
"/@syncfusion/ej2-angular-inputs",
|
|
37
|
+
"/@syncfusion/ej2-angular-interactive-chat",
|
|
38
|
+
"/@syncfusion/ej2-angular-kanban",
|
|
39
|
+
"/@syncfusion/ej2-angular-layouts",
|
|
40
|
+
"/@syncfusion/ej2-angular-lineargauge",
|
|
41
|
+
"/@syncfusion/ej2-angular-lists",
|
|
42
|
+
"/@syncfusion/ej2-angular-maps",
|
|
43
|
+
"/@syncfusion/ej2-angular-multicolumn-combobox",
|
|
44
|
+
"/@syncfusion/ej2-angular-navigations",
|
|
45
|
+
"/@syncfusion/ej2-angular-notifications",
|
|
46
|
+
"/@syncfusion/ej2-angular-pdfviewer",
|
|
47
|
+
"/@syncfusion/ej2-angular-pivotview",
|
|
48
|
+
"/@syncfusion/ej2-angular-popups",
|
|
49
|
+
"/@syncfusion/ej2-angular-progressbar",
|
|
50
|
+
"/@syncfusion/ej2-angular-querybuilder",
|
|
51
|
+
"/@syncfusion/ej2-angular-ribbon",
|
|
52
|
+
"/@syncfusion/ej2-angular-richtexteditor",
|
|
53
|
+
"/@syncfusion/ej2-angular-schedule",
|
|
54
|
+
"/@syncfusion/ej2-angular-splitbuttons",
|
|
55
|
+
"/@syncfusion/ej2-angular-spreadsheet",
|
|
56
|
+
"/@syncfusion/ej2-angular-treegrid",
|
|
57
|
+
"/@syncfusion/ej2-angular-treemap"
|
|
58
|
+
],
|
|
59
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-development/@syncfusion/ej2-angular-base/-/ej2-angular-base-31.2.0.tgz",
|
|
60
|
+
"_shasum": "4a617960fd7816fb5aae431a22c009b5f953dd78",
|
|
61
|
+
"_spec": "@syncfusion/ej2-angular-base@*",
|
|
62
|
+
"_where": "D:\\SF3992\\WFH\\Nexus\\release",
|
|
63
|
+
"author": {
|
|
64
|
+
"name": "Syncfusion Inc."
|
|
65
|
+
},
|
|
66
|
+
"bugs": {
|
|
67
|
+
"url": "https://github.com/syncfusion/ej2-angular-ui-components/issues"
|
|
68
|
+
},
|
|
69
|
+
"bundleDependencies": false,
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@syncfusion/ej2-base": "~32.1.19",
|
|
72
|
+
"@syncfusion/ej2-icons": "~32.1.19"
|
|
73
|
+
},
|
|
74
|
+
"deprecated": false,
|
|
4
75
|
"description": "A common package of Essential JS 2 base Angular libraries, methods and class definitions",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"main": "./dist/ej2-angular-base.umd.min.js",
|
|
8
|
-
"module": "./index.js",
|
|
9
|
-
"schematics": "./schematics/collection.json",
|
|
76
|
+
"devDependencies": {},
|
|
77
|
+
"homepage": "https://www.syncfusion.com/angular-components",
|
|
10
78
|
"keywords": [
|
|
11
79
|
"ej2",
|
|
12
80
|
"syncfusion",
|
|
@@ -16,19 +84,19 @@
|
|
|
16
84
|
"angular",
|
|
17
85
|
"ng"
|
|
18
86
|
],
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"devDependencies": {},
|
|
87
|
+
"license": "SEE LICENSE IN license",
|
|
88
|
+
"main": "./dist/ej2-angular-base.umd.min.js",
|
|
89
|
+
"module": "./index.js",
|
|
90
|
+
"name": "@syncfusion/ej2-angular-base",
|
|
24
91
|
"repository": {
|
|
25
92
|
"type": "git",
|
|
26
|
-
"url": "https://github.com/syncfusion/ej2-angular-ui-components"
|
|
93
|
+
"url": "git+https://github.com/syncfusion/ej2-angular-ui-components.git"
|
|
27
94
|
},
|
|
28
|
-
"
|
|
95
|
+
"schematics": "./schematics/collection.json",
|
|
29
96
|
"scripts": {
|
|
30
97
|
"postinstall": "node ./postinstall.js"
|
|
31
98
|
},
|
|
32
99
|
"typings": "index.d.ts",
|
|
100
|
+
"version": "32.1.19",
|
|
33
101
|
"sideEffects": true
|
|
34
102
|
}
|
package/styles/bds.css
CHANGED
package/styles/bds.scss
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import 'ej2-base/styles/definition/bds.scss';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import 'ej2-base/styles/definition/bootstrap-dark.scss';
|
package/styles/bootstrap.scss
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import 'ej2-base/styles/definition/bootstrap.scss';
|
package/styles/bootstrap4.scss
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import 'ej2-base/styles/definition/bootstrap4.scss';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import 'ej2-base/styles/definition/bootstrap5-dark.scss';
|
package/styles/bootstrap5.3.css
CHANGED
|
@@ -1,2 +1,84 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
:root,
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
:root,
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
/* Font Family */
|
|
12
|
+
/* Font Sizes */
|
|
13
|
+
/* Radius */
|
|
14
|
+
/* 1px */
|
|
15
|
+
/* 2px */
|
|
16
|
+
/* 3px */
|
|
17
|
+
/* 4px */
|
|
18
|
+
/* 5px */
|
|
19
|
+
/* 6px */
|
|
20
|
+
/* 7px */
|
|
21
|
+
/* 8px */
|
|
22
|
+
/* 9px */
|
|
23
|
+
/* 10px */
|
|
24
|
+
/* 11px */
|
|
25
|
+
/* 12px */
|
|
26
|
+
/* 13px */
|
|
27
|
+
/* 14px */
|
|
28
|
+
/* 15px */
|
|
29
|
+
/* 16px */
|
|
30
|
+
/* 17px */
|
|
31
|
+
/* 18px */
|
|
32
|
+
/* 19px */
|
|
33
|
+
/* 20px */
|
|
34
|
+
/* 21px */
|
|
35
|
+
/* 22px */
|
|
36
|
+
/* 23px */
|
|
37
|
+
/* 24px */
|
|
38
|
+
/* 25px */
|
|
39
|
+
/* 26px */
|
|
40
|
+
/* 27px */
|
|
41
|
+
/* 28px */
|
|
42
|
+
/* 29px */
|
|
43
|
+
/* 30px */
|
|
44
|
+
/* 31px */
|
|
45
|
+
/* 32px */
|
|
46
|
+
/* 33px */
|
|
47
|
+
/* 34px */
|
|
48
|
+
/* 35px */
|
|
49
|
+
/* 36px */
|
|
50
|
+
/* 37px */
|
|
51
|
+
/* 38px */
|
|
52
|
+
/* 39px */
|
|
53
|
+
/* 40px */
|
|
54
|
+
/* 41px */
|
|
55
|
+
/* 42px */
|
|
56
|
+
/* 43px */
|
|
57
|
+
/* 44px */
|
|
58
|
+
/* 45px */
|
|
59
|
+
/* 46px */
|
|
60
|
+
/* 47px */
|
|
61
|
+
/* 48px */
|
|
62
|
+
/* 49px */
|
|
63
|
+
/* 50px */
|
|
64
|
+
/* 5em */
|
|
65
|
+
/* 65% */
|
|
66
|
+
/* border */
|
|
67
|
+
/* 0px */
|
|
68
|
+
/* 1px */
|
|
69
|
+
/* 1.5px */
|
|
70
|
+
/* 2px */
|
|
71
|
+
/* 3px */
|
|
72
|
+
/* 4px */
|
|
73
|
+
/* 5px */
|
|
74
|
+
/* 6px */
|
|
75
|
+
/* 7px */
|
|
76
|
+
/* 8px */
|
|
77
|
+
/* 9px */
|
|
78
|
+
/* 10px */
|
|
79
|
+
/* 11px */
|
|
80
|
+
/* 12px */
|
|
81
|
+
/* 13px */
|
|
82
|
+
/* 14px */
|
|
83
|
+
/* 15px */
|
|
84
|
+
/* 16px */
|
package/styles/bootstrap5.3.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-base/styles/definition/bootstrap5.3' as *;
|
package/styles/bootstrap5.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-base/styles/definition/bootstrap5' as *;
|
package/styles/fabric-dark.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-base/styles/definition/fabric-dark' as *;
|
package/styles/fabric.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-base/styles/definition/fabric' as *;
|
package/styles/fluent-dark.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-base/styles/definition/fluent-dark' as *;
|
package/styles/fluent.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-base/styles/definition/fluent' as *;
|