pb-sxp-ui 1.0.44 → 1.0.45
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/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +12 -4
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +1 -1
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +2 -2
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +1 -1
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/components/SxpPageRender/Tagbar.js +1 -1
- package/lib/core/components/SxpPageRender/Tagbar.js +1 -1
- package/package.json +1 -1
package/dist/pb-ui.js
CHANGED
@@ -12628,7 +12628,7 @@ Made in Italy` })));
|
|
12628
12628
|
};
|
12629
12629
|
if (tagList.length <= 0)
|
12630
12630
|
return null;
|
12631
|
-
return (React.createElement("div", { className: 'clc-sxp-tagbar'
|
12631
|
+
return (React.createElement("div", { className: 'clc-sxp-tagbar' },
|
12632
12632
|
React.createElement("ul", { className: 'clc-sxp-tagbar-list', style: { margin: 'auto', gap: 24 } }, realTagList.map((tag) => {
|
12633
12633
|
return (React.createElement("li", { className: `clc-sxp-tagbar-list-item ${tag === selectTag ? 'clc-sxp-tagbar-list-item-active' : ''}`, key: tag, onClick: handleSelectTag(tag) }, tag));
|
12634
12634
|
}))));
|
@@ -12639,7 +12639,7 @@ Made in Italy` })));
|
|
12639
12639
|
* @Author: binruan@chatlabs.com
|
12640
12640
|
* @Date: 2024-01-15 19:03:09
|
12641
12641
|
* @LastEditors: binruan@chatlabs.com
|
12642
|
-
* @LastEditTime: 2024-04-29 16:
|
12642
|
+
* @LastEditTime: 2024-04-29 16:55:16
|
12643
12643
|
* @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\index.tsx
|
12644
12644
|
*
|
12645
12645
|
*/
|