@syncfusion/ej2-react-filemanager 31.2.12 → 32.1.24
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/README.md +1 -1
- package/diConfig.json +10 -2
- package/dist/ej2-react-filemanager.min.js +1 -1
- package/dist/ej2-react-filemanager.umd.min.js +1 -1
- package/package.json +46 -16
- package/src/file-manager/filemanager.component.d.ts +6 -2
- package/src/file-manager/toolbaritems-directive.d.ts +2 -0
- package/styles/bds-lite.scss +1 -1
- package/styles/bds.scss +1 -1
- package/styles/bootstrap-dark-lite.scss +1 -1
- package/styles/bootstrap-dark.scss +1 -1
- package/styles/bootstrap-lite.scss +1 -1
- package/styles/bootstrap.scss +1 -1
- package/styles/bootstrap4-lite.scss +1 -1
- package/styles/bootstrap4.scss +1 -1
- package/styles/bootstrap5-dark-lite.scss +1 -1
- package/styles/bootstrap5-dark.scss +1 -1
- package/styles/bootstrap5-lite.scss +1 -1
- package/styles/bootstrap5.3-lite.scss +1 -1
- package/styles/bootstrap5.3.scss +1 -1
- package/styles/bootstrap5.scss +1 -1
- package/styles/fabric-dark-lite.scss +1 -1
- package/styles/fabric-dark.scss +1 -1
- package/styles/fabric-lite.scss +1 -1
- package/styles/fabric.scss +1 -1
- package/styles/file-manager/bds.scss +1 -1
- package/styles/file-manager/bootstrap-dark.scss +1 -1
- package/styles/file-manager/bootstrap.scss +1 -1
- package/styles/file-manager/bootstrap4.scss +1 -1
- package/styles/file-manager/bootstrap5-dark.scss +1 -1
- package/styles/file-manager/bootstrap5.3.scss +1 -1
- package/styles/file-manager/bootstrap5.scss +1 -1
- package/styles/file-manager/fabric-dark.scss +1 -1
- package/styles/file-manager/fabric.scss +1 -1
- package/styles/file-manager/fluent-dark.scss +1 -1
- package/styles/file-manager/fluent.scss +1 -1
- package/styles/file-manager/fluent2.scss +1 -1
- package/styles/file-manager/highcontrast-light.scss +1 -1
- package/styles/file-manager/highcontrast.scss +1 -1
- package/styles/file-manager/material-dark.scss +1 -1
- package/styles/file-manager/material.scss +1 -1
- package/styles/file-manager/material3-dark.scss +1 -2
- package/styles/file-manager/material3.scss +1 -2
- package/styles/file-manager/tailwind-dark.scss +1 -1
- package/styles/file-manager/tailwind.scss +1 -1
- package/styles/file-manager/tailwind3.scss +1 -1
- package/styles/fluent-dark-lite.scss +1 -1
- package/styles/fluent-dark.scss +1 -1
- package/styles/fluent-lite.scss +1 -1
- package/styles/fluent.scss +1 -1
- package/styles/fluent2-lite.scss +1 -1
- package/styles/fluent2.scss +1 -1
- package/styles/highcontrast-light-lite.scss +1 -1
- package/styles/highcontrast-light.scss +1 -1
- package/styles/highcontrast-lite.scss +1 -1
- package/styles/highcontrast.scss +1 -1
- package/styles/material-dark-lite.scss +1 -1
- package/styles/material-dark.scss +1 -1
- package/styles/material-lite.scss +1 -1
- package/styles/material.scss +1 -1
- package/styles/material3-dark-lite.scss +1 -1
- package/styles/material3-dark.scss +1 -2
- package/styles/material3-lite.scss +1 -1
- package/styles/material3.scss +1 -2
- package/styles/tailwind-dark-lite.scss +1 -1
- package/styles/tailwind-dark.scss +1 -1
- package/styles/tailwind-lite.scss +1 -1
- package/styles/tailwind.scss +1 -1
- package/styles/tailwind3-lite.scss +1 -1
- package/styles/tailwind3.scss +1 -1
package/README.md
CHANGED
|
@@ -132,4 +132,4 @@ Check the changelog [here](https://github.com/syncfusion/ej2-react-ui-components
|
|
|
132
132
|
|
|
133
133
|
See [LICENSE FILE](https://github.com/syncfusion/ej2-react-ui-components/blob/master/license?utm_source=npm&utm_campaign=filemanager) for more info.
|
|
134
134
|
|
|
135
|
-
© Copyright
|
|
135
|
+
© Copyright 2026 Syncfusion<sup>®</sup> Inc. All Rights Reserved. The Syncfusion<sup>®</sup> Essential Studio<sup>®</sup> license and copyright applies to this distribution.
|
package/diConfig.json
CHANGED
|
@@ -153,7 +153,9 @@
|
|
|
153
153
|
"arrayDirectiveClassName": "columns",
|
|
154
154
|
"templateProperties": [
|
|
155
155
|
"template",
|
|
156
|
-
"headerTemplate"
|
|
156
|
+
"headerTemplate",
|
|
157
|
+
"largeIconsTemplate",
|
|
158
|
+
"navigationPaneTemplate"
|
|
157
159
|
]
|
|
158
160
|
}
|
|
159
161
|
]
|
|
@@ -183,9 +185,15 @@
|
|
|
183
185
|
"directiveClassName": "ToolbarItem",
|
|
184
186
|
"arrayDirectiveClassName": "ToolbarItems",
|
|
185
187
|
"templateProperties": [
|
|
186
|
-
"template"
|
|
188
|
+
"template",
|
|
189
|
+
"largeIconsTemplate",
|
|
190
|
+
"navigationPaneTemplate"
|
|
187
191
|
]
|
|
188
192
|
}
|
|
193
|
+
],
|
|
194
|
+
"templateProperties": [
|
|
195
|
+
"largeIconsTemplate",
|
|
196
|
+
"navigationPaneTemplate"
|
|
189
197
|
]
|
|
190
198
|
}
|
|
191
199
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-react-filemanager.min.js
|
|
3
|
-
* version :
|
|
3
|
+
* version : 32.1.24
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-react-filemanager.umd.min.js
|
|
3
|
-
* version :
|
|
3
|
+
* version : 32.1.24
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,9 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"_from": "@syncfusion/ej2-react-filemanager@*",
|
|
3
|
+
"_id": "@syncfusion/ej2-react-filemanager@32.1.1",
|
|
4
|
+
"_inBundle": false,
|
|
5
|
+
"_integrity": "sha512-UNJHWv3b8NIxcBhqFns4n/8nD79ab7LkRIPz2tv9P7RP5yFf8MI92AUle9WRe9UWyjktkCMOxR/4AuqYu7/Olw==",
|
|
6
|
+
"_location": "/@syncfusion/ej2-react-filemanager",
|
|
7
|
+
"_phantomChildren": {},
|
|
8
|
+
"_requested": {
|
|
9
|
+
"type": "range",
|
|
10
|
+
"registry": true,
|
|
11
|
+
"raw": "@syncfusion/ej2-react-filemanager@*",
|
|
12
|
+
"name": "@syncfusion/ej2-react-filemanager",
|
|
13
|
+
"escapedName": "@syncfusion%2fej2-react-filemanager",
|
|
14
|
+
"scope": "@syncfusion",
|
|
15
|
+
"rawSpec": "*",
|
|
16
|
+
"saveSpec": null,
|
|
17
|
+
"fetchSpec": "*"
|
|
18
|
+
},
|
|
19
|
+
"_requiredBy": [
|
|
20
|
+
"/"
|
|
21
|
+
],
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-react-filemanager/-/ej2-react-filemanager-32.1.1.tgz",
|
|
23
|
+
"_shasum": "87a822b7e2dd75b070b34d14c1c910d24581b8a1",
|
|
24
|
+
"_spec": "@syncfusion/ej2-react-filemanager@*",
|
|
25
|
+
"_where": "D:\\SF3992\\WFH\\Nexus\\release",
|
|
26
|
+
"author": {
|
|
27
|
+
"name": "Syncfusion Inc."
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/syncfusion/ej2-react-filemanager/issues"
|
|
31
|
+
},
|
|
32
|
+
"bundleDependencies": false,
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@syncfusion/ej2-base": "~32.1.24",
|
|
35
|
+
"@syncfusion/ej2-filemanager": "32.1.24",
|
|
36
|
+
"@syncfusion/ej2-react-base": "~32.1.24"
|
|
37
|
+
},
|
|
38
|
+
"deprecated": false,
|
|
4
39
|
"description": "Essential JS 2 FileManager Component for React",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
40
|
+
"devDependencies": {},
|
|
41
|
+
"es2015": "dist/es6/ej2-react-filemanager.es2015.js",
|
|
42
|
+
"homepage": "https://www.syncfusion.com/react-components",
|
|
7
43
|
"keywords": [
|
|
8
44
|
"react",
|
|
9
45
|
"reactjs",
|
|
@@ -17,20 +53,14 @@
|
|
|
17
53
|
"react-directory viewer",
|
|
18
54
|
"JavaScript"
|
|
19
55
|
],
|
|
56
|
+
"license": "SEE LICENSE IN license",
|
|
57
|
+
"main": "./dist/ej2-react-filemanager.umd.min.js",
|
|
58
|
+
"module": "./index.js",
|
|
59
|
+
"name": "@syncfusion/ej2-react-filemanager",
|
|
20
60
|
"repository": {
|
|
21
61
|
"type": "git",
|
|
22
62
|
"url": "https://github.com/syncfusion/ej2-react-ui-components.git"
|
|
23
63
|
},
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"es2015": "dist/es6/ej2-react-filemanager.es2015.js",
|
|
27
|
-
"readme": "ReadMe.md",
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"@syncfusion/ej2-base": "~31.2.12",
|
|
30
|
-
"@syncfusion/ej2-react-base": "~31.2.12",
|
|
31
|
-
"@syncfusion/ej2-filemanager": "31.2.12"
|
|
32
|
-
},
|
|
33
|
-
"devDependencies": {},
|
|
34
|
-
"sideEffects": false,
|
|
35
|
-
"homepage": "https://www.syncfusion.com/react-components"
|
|
64
|
+
"version": "32.1.24",
|
|
65
|
+
"sideEffects": false
|
|
36
66
|
}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { FileManager, FileManagerModel } from '@syncfusion/ej2-filemanager';
|
|
3
3
|
import { DefaultHtmlAttributes } from '@syncfusion/ej2-react-base';
|
|
4
|
+
export interface FileManagerTypecast {
|
|
5
|
+
largeIconsTemplate?: string | Function | any;
|
|
6
|
+
navigationPaneTemplate?: string | Function | any;
|
|
7
|
+
}
|
|
4
8
|
/**
|
|
5
9
|
Represents the Essential JS 2 react FileManager Component.
|
|
6
10
|
* ```tsx
|
|
@@ -10,7 +14,7 @@ import { DefaultHtmlAttributes } from '@syncfusion/ej2-react-base';
|
|
|
10
14
|
export declare class FileManagerComponent extends FileManager {
|
|
11
15
|
state: Readonly<{
|
|
12
16
|
children?: React.ReactNode | React.ReactNode[];
|
|
13
|
-
}> & Readonly<FileManagerModel | DefaultHtmlAttributes>;
|
|
17
|
+
}> & Readonly<FileManagerModel | DefaultHtmlAttributes | FileManagerTypecast>;
|
|
14
18
|
setState: any;
|
|
15
19
|
private getDefaultAttributes;
|
|
16
20
|
initRenderCalled: boolean;
|
|
@@ -24,7 +28,7 @@ export declare class FileManagerComponent extends FileManager {
|
|
|
24
28
|
private isReactMock;
|
|
25
29
|
props: Readonly<{
|
|
26
30
|
children?: React.ReactNode | React.ReactNode[];
|
|
27
|
-
}> & Readonly<FileManagerModel | DefaultHtmlAttributes>;
|
|
31
|
+
}> & Readonly<FileManagerModel | DefaultHtmlAttributes | FileManagerTypecast>;
|
|
28
32
|
forceUpdate: (callBack?: () => any) => void;
|
|
29
33
|
context: Object;
|
|
30
34
|
portals: any;
|
|
@@ -2,6 +2,8 @@ import { ComplexBase } from '@syncfusion/ej2-react-base';
|
|
|
2
2
|
import { ToolbarItemModel } from '@syncfusion/ej2-filemanager';
|
|
3
3
|
export interface ToolbarItemDirTypecast {
|
|
4
4
|
template?: string | Function | any;
|
|
5
|
+
largeIconsTemplate?: string | Function | any;
|
|
6
|
+
navigationPaneTemplate?: string | Function | any;
|
|
5
7
|
}
|
|
6
8
|
export declare class ToolbarItemDirective extends ComplexBase<ToolbarItemModel | ToolbarItemDirTypecast & {
|
|
7
9
|
children?: React.ReactNode;
|
package/styles/bds-lite.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/bds-lite' as *;
|
package/styles/bds.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/bds' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/bootstrap-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/bootstrap-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/bootstrap-lite' as *;
|
package/styles/bootstrap.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/bootstrap' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/bootstrap4-lite' as *;
|
package/styles/bootstrap4.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/bootstrap4' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/bootstrap5-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/bootstrap5-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/bootstrap5-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/bootstrap5.3-lite' as *;
|
package/styles/bootstrap5.3.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/bootstrap5.3' as *;
|
package/styles/bootstrap5.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/bootstrap5' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/fabric-dark-lite' as *;
|
package/styles/fabric-dark.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/fabric-dark' as *;
|
package/styles/fabric-lite.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/fabric-lite' as *;
|
package/styles/fabric.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/fabric' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/bds' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/bootstrap-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/bootstrap' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/bootstrap4' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/bootstrap5-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/bootstrap5.3' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/bootstrap5' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/fabric-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/fabric' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/fluent-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/fluent' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/fluent2' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/highcontrast-light' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/highcontrast' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/material-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/material' as *;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
@import 'ej2-filemanager/styles/file-manager/material3-dark.scss';
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/material3-dark' as *;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
@import 'ej2-filemanager/styles/file-manager/material3.scss';
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/material3' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/tailwind-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/tailwind' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/styles/file-manager/tailwind3' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/fluent-dark-lite' as *;
|
package/styles/fluent-dark.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/fluent-dark' as *;
|
package/styles/fluent-lite.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/fluent-lite' as *;
|
package/styles/fluent.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/fluent' as *;
|
package/styles/fluent2-lite.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/fluent2-lite' as *;
|
package/styles/fluent2.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/fluent2' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/highcontrast-light-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/highcontrast-light' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/highcontrast-lite' as *;
|
package/styles/highcontrast.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/highcontrast' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/material-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/material-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/material-lite' as *;
|
package/styles/material.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/material' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/material3-dark-lite' as *;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
@import 'file-manager/material3-dark.scss';
|
|
1
|
+
@use 'file-manager/material3-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/material3-lite' as *;
|
package/styles/material3.scss
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
@import 'file-manager/material3.scss';
|
|
1
|
+
@use 'file-manager/material3' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/tailwind-dark-lite' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/tailwind-dark' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/tailwind-lite' as *;
|
package/styles/tailwind.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/tailwind' as *;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'ej2-filemanager/tailwind3-lite' as *;
|
package/styles/tailwind3.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use 'file-manager/tailwind3' as *;
|