@gingkoo/pandora-explorer 0.0.1-alpha.35 → 0.0.1-alpha.36
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/lib/es/index.js +3 -3
- package/lib/es/index.js.map +1 -1
- package/package.json +1 -1
package/lib/es/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @gingkoo/pandora-explorer v0.0.1-alpha.
|
|
2
|
+
* @gingkoo/pandora-explorer v0.0.1-alpha.36
|
|
3
3
|
*/
|
|
4
4
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
5
5
|
import cx$1 from 'classnames';
|
|
@@ -7517,13 +7517,13 @@ const Explorer = /*#__PURE__*/forwardRef((props, ref) => {
|
|
|
7517
7517
|
suffix: 'css'
|
|
7518
7518
|
});
|
|
7519
7519
|
}
|
|
7520
|
-
if (js.includes(v
|
|
7520
|
+
if (js.includes(v?.suffix)) {
|
|
7521
7521
|
return jsx(SuffixIcon, {
|
|
7522
7522
|
className: cx$1(`${className || ''}`),
|
|
7523
7523
|
suffix: 'js'
|
|
7524
7524
|
});
|
|
7525
7525
|
}
|
|
7526
|
-
if (ts.includes(v
|
|
7526
|
+
if (ts.includes(v?.suffix)) {
|
|
7527
7527
|
return jsx(SuffixIcon, {
|
|
7528
7528
|
className: cx$1(`${className || ''}`),
|
|
7529
7529
|
suffix: 'txt'
|