@syncfusion/ej2-angular-filemanager 26.2.11-ngcc → 27.1.48-ngcc
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/@syncfusion/ej2-angular-filemanager.es5.js +1 -1
- package/@syncfusion/ej2-angular-filemanager.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-filemanager.js +1 -1
- package/@syncfusion/ej2-angular-filemanager.js.map +1 -1
- package/dist/ej2-angular-filemanager.umd.js +2 -2
- package/dist/ej2-angular-filemanager.umd.js.map +1 -1
- package/dist/ej2-angular-filemanager.umd.min.js +2 -2
- package/dist/ej2-angular-filemanager.umd.min.js.map +1 -1
- package/ej2-angular-filemanager.metadata.json +1 -1
- package/package.json +9 -9
- package/schematics/collection.json +10 -9
- package/schematics/ng-add/index.d.ts +3 -0
- package/schematics/ng-add/index.js +9 -0
- package/schematics/ng-add/index.ts +10 -10
- package/schematics/ng-add/schema.d.ts +13 -0
- package/schematics/ng-add/schema.js +2 -0
- package/schematics/ng-add/schema.json +34 -34
- package/schematics/ng-add/schema.ts +30 -30
- package/schematics/tsconfig.json +25 -25
- package/schematics/utils/lib-details.d.ts +4 -0
- package/schematics/utils/lib-details.js +6 -0
- package/schematics/utils/lib-details.ts +2 -2
- package/styles/bootstrap-dark-lite.css +1 -0
- package/styles/bootstrap-dark-lite.scss +1 -0
- package/styles/bootstrap-lite.css +1 -0
- package/styles/bootstrap-lite.scss +1 -0
- package/styles/bootstrap4-lite.css +1 -0
- package/styles/bootstrap4-lite.scss +1 -0
- package/styles/bootstrap5-dark-lite.css +1 -0
- package/styles/bootstrap5-dark-lite.scss +1 -0
- package/styles/bootstrap5-lite.css +1 -0
- package/styles/bootstrap5-lite.scss +1 -0
- package/styles/bootstrap5.3-lite.css +1 -0
- package/styles/bootstrap5.3-lite.scss +1 -0
- package/styles/bootstrap5.3.css +1 -0
- package/styles/bootstrap5.3.scss +1 -0
- package/styles/fabric-dark-lite.css +1 -0
- package/styles/fabric-dark-lite.scss +1 -0
- package/styles/fabric-lite.css +1 -0
- package/styles/fabric-lite.scss +1 -0
- package/styles/file-manager/bootstrap5.3.css +1 -0
- package/styles/file-manager/bootstrap5.3.scss +1 -0
- package/styles/fluent-dark-lite.css +1 -0
- package/styles/fluent-dark-lite.scss +1 -0
- package/styles/fluent-lite.css +1 -0
- package/styles/fluent-lite.scss +1 -0
- package/styles/fluent2-lite.css +1 -0
- package/styles/fluent2-lite.scss +1 -0
- package/styles/highcontrast-light-lite.css +1 -0
- package/styles/highcontrast-light-lite.scss +1 -0
- package/styles/highcontrast-lite.css +1 -0
- package/styles/highcontrast-lite.scss +1 -0
- package/styles/material-dark-lite.css +1 -0
- package/styles/material-dark-lite.scss +1 -0
- package/styles/material-lite.css +1 -0
- package/styles/material-lite.scss +1 -0
- package/styles/material3-dark-lite.css +1 -0
- package/styles/material3-dark-lite.scss +1 -0
- package/styles/material3-lite.css +1 -0
- package/styles/material3-lite.scss +1 -0
- package/styles/tailwind-dark-lite.css +1 -0
- package/styles/tailwind-dark-lite.scss +1 -0
- package/styles/tailwind-lite.css +1 -0
- package/styles/tailwind-lite.scss +1 -0
@@ -1,34 +1,34 @@
|
|
1
|
-
{
|
2
|
-
"$schema": "http://json-schema.org/schema",
|
3
|
-
"$id": "ngAdd",
|
4
|
-
"title": "Add Essential JS 2 Angular packages",
|
5
|
-
"type": "object",
|
6
|
-
"properties": {
|
7
|
-
"skipPackageJson": {
|
8
|
-
"type": "boolean",
|
9
|
-
"default": false,
|
10
|
-
"description": "Do not add add Essential JS 2 Angular packages dependencies to package.json (e.g., --skipPackageJson)"
|
11
|
-
},
|
12
|
-
"modules": {
|
13
|
-
"type": "string",
|
14
|
-
"default": "",
|
15
|
-
"description": "Add only specific Essential JS 2 modules to the app.module file (eg: --modules=slider, grid)"
|
16
|
-
},
|
17
|
-
"modulePath": {
|
18
|
-
"type": "string",
|
19
|
-
"default": "",
|
20
|
-
"description": "Used to specify the path of the module file where the EJ2 module needs to be imported"
|
21
|
-
},
|
22
|
-
"theme": {
|
23
|
-
"enum": [
|
24
|
-
"material",
|
25
|
-
"fabric",
|
26
|
-
"bootstrap",
|
27
|
-
"highcontrast"
|
28
|
-
],
|
29
|
-
"default": "material",
|
30
|
-
"description": "Used to change the theme that needs to be imported"
|
31
|
-
}
|
32
|
-
},
|
33
|
-
"required": []
|
34
|
-
}
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
3
|
+
"$id": "ngAdd",
|
4
|
+
"title": "Add Essential JS 2 Angular packages",
|
5
|
+
"type": "object",
|
6
|
+
"properties": {
|
7
|
+
"skipPackageJson": {
|
8
|
+
"type": "boolean",
|
9
|
+
"default": false,
|
10
|
+
"description": "Do not add add Essential JS 2 Angular packages dependencies to package.json (e.g., --skipPackageJson)"
|
11
|
+
},
|
12
|
+
"modules": {
|
13
|
+
"type": "string",
|
14
|
+
"default": "",
|
15
|
+
"description": "Add only specific Essential JS 2 modules to the app.module file (eg: --modules=slider, grid)"
|
16
|
+
},
|
17
|
+
"modulePath": {
|
18
|
+
"type": "string",
|
19
|
+
"default": "",
|
20
|
+
"description": "Used to specify the path of the module file where the EJ2 module needs to be imported"
|
21
|
+
},
|
22
|
+
"theme": {
|
23
|
+
"enum": [
|
24
|
+
"material",
|
25
|
+
"fabric",
|
26
|
+
"bootstrap",
|
27
|
+
"highcontrast"
|
28
|
+
],
|
29
|
+
"default": "material",
|
30
|
+
"description": "Used to change the theme that needs to be imported"
|
31
|
+
}
|
32
|
+
},
|
33
|
+
"required": []
|
34
|
+
}
|
@@ -1,30 +1,30 @@
|
|
1
|
-
export interface OptionsSchema {
|
2
|
-
// Whether to skip package.json install.
|
3
|
-
skipPackageJson: boolean;
|
4
|
-
|
5
|
-
// Used to specify required module names
|
6
|
-
modules: string;
|
7
|
-
|
8
|
-
// Used to specify custom module path
|
9
|
-
modulePath: string;
|
10
|
-
|
11
|
-
// Used to specify theme name
|
12
|
-
theme: 'material' | 'fabric' | 'bootstrap' | 'highcontrast';
|
13
|
-
|
14
|
-
// Name of the project to target.
|
15
|
-
project?: string;
|
16
|
-
}
|
17
|
-
|
18
|
-
export interface LibOptionsSchema {
|
19
|
-
// Package name
|
20
|
-
pkgName: string;
|
21
|
-
|
22
|
-
// Package version
|
23
|
-
pkgVer: string;
|
24
|
-
|
25
|
-
// Library base module name
|
26
|
-
moduleName: string;
|
27
|
-
|
28
|
-
// Theme version
|
29
|
-
themeVer: string;
|
30
|
-
}
|
1
|
+
export interface OptionsSchema {
|
2
|
+
// Whether to skip package.json install.
|
3
|
+
skipPackageJson: boolean;
|
4
|
+
|
5
|
+
// Used to specify required module names
|
6
|
+
modules: string;
|
7
|
+
|
8
|
+
// Used to specify custom module path
|
9
|
+
modulePath: string;
|
10
|
+
|
11
|
+
// Used to specify theme name
|
12
|
+
theme: 'material' | 'fabric' | 'bootstrap' | 'highcontrast';
|
13
|
+
|
14
|
+
// Name of the project to target.
|
15
|
+
project?: string;
|
16
|
+
}
|
17
|
+
|
18
|
+
export interface LibOptionsSchema {
|
19
|
+
// Package name
|
20
|
+
pkgName: string;
|
21
|
+
|
22
|
+
// Package version
|
23
|
+
pkgVer: string;
|
24
|
+
|
25
|
+
// Library base module name
|
26
|
+
moduleName: string;
|
27
|
+
|
28
|
+
// Theme version
|
29
|
+
themeVer: string;
|
30
|
+
}
|
package/schematics/tsconfig.json
CHANGED
@@ -1,25 +1,25 @@
|
|
1
|
-
{
|
2
|
-
"compilerOptions": {
|
3
|
-
"lib": ["es2017", "dom"],
|
4
|
-
"module": "commonjs",
|
5
|
-
"moduleResolution": "node",
|
6
|
-
"noEmitOnError": false,
|
7
|
-
"skipDefaultLibCheck": true,
|
8
|
-
"skipLibCheck": true,
|
9
|
-
"sourceMap": true,
|
10
|
-
"target": "es6",
|
11
|
-
"declaration": true,
|
12
|
-
"types": [
|
13
|
-
"jasmine",
|
14
|
-
"node"
|
15
|
-
]
|
16
|
-
},
|
17
|
-
"exclude": [
|
18
|
-
"node_modules",
|
19
|
-
"src",
|
20
|
-
"src/**/*.ts",
|
21
|
-
"spec",
|
22
|
-
"spec/**/*.ts",
|
23
|
-
"@typings"
|
24
|
-
]
|
25
|
-
}
|
1
|
+
{
|
2
|
+
"compilerOptions": {
|
3
|
+
"lib": ["es2017", "dom"],
|
4
|
+
"module": "commonjs",
|
5
|
+
"moduleResolution": "node",
|
6
|
+
"noEmitOnError": false,
|
7
|
+
"skipDefaultLibCheck": true,
|
8
|
+
"skipLibCheck": true,
|
9
|
+
"sourceMap": true,
|
10
|
+
"target": "es6",
|
11
|
+
"declaration": true,
|
12
|
+
"types": [
|
13
|
+
"jasmine",
|
14
|
+
"node"
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"exclude": [
|
18
|
+
"node_modules",
|
19
|
+
"src",
|
20
|
+
"src/**/*.ts",
|
21
|
+
"spec",
|
22
|
+
"spec/**/*.ts",
|
23
|
+
"@typings"
|
24
|
+
]
|
25
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/bootstrap-dark-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/bootstrap-dark-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/bootstrap-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/bootstrap-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/bootstrap4-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/bootstrap4-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/bootstrap5-dark-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/bootstrap5-dark-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/bootstrap5-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/bootstrap5-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/bootstrap5.3-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/bootstrap5.3-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/bootstrap5.3.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'file-manager/bootstrap5.3.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/fabric-dark-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/fabric-dark-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/fabric-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/fabric-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/file-manager/bootstrap5.3.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/file-manager/bootstrap5.3.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/fluent-dark-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/fluent-dark-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/fluent-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/fluent-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/fluent2-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/fluent2-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/highcontrast-light-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/highcontrast-light-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/highcontrast-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/highcontrast-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/material-dark-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/material-dark-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/material-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/material-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/material3-dark-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/material3-dark-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/material3-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/material3-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/tailwind-dark-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/tailwind-dark-lite.scss';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import '@syncfusion/ej2-filemanager/styles/tailwind-lite.css';
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'ej2-filemanager/styles/tailwind-lite.scss';
|