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 CHANGED
@@ -12637,7 +12637,7 @@ const Tagbar = ({ tagList = [], setActiveIndex }) => {
12637
12637
  };
12638
12638
  if (tagList.length <= 0)
12639
12639
  return null;
12640
- return (React.createElement("div", { className: 'clc-sxp-tagbar', style: { height: 45 } },
12640
+ return (React.createElement("div", { className: 'clc-sxp-tagbar' },
12641
12641
  React.createElement("ul", { className: 'clc-sxp-tagbar-list', style: { margin: 'auto', gap: 24 } }, realTagList.map((tag) => {
12642
12642
  return (React.createElement("li", { className: `clc-sxp-tagbar-list-item ${tag === selectTag ? 'clc-sxp-tagbar-list-item-active' : ''}`, key: tag, onClick: handleSelectTag(tag) }, tag));
12643
12643
  }))));
@@ -12648,7 +12648,7 @@ var Tagbar$1 = React.memo(Tagbar);
12648
12648
  * @Author: binruan@chatlabs.com
12649
12649
  * @Date: 2024-01-15 19:03:09
12650
12650
  * @LastEditors: binruan@chatlabs.com
12651
- * @LastEditTime: 2024-04-29 16:33:53
12651
+ * @LastEditTime: 2024-04-29 16:55:16
12652
12652
  * @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\index.tsx
12653
12653
  *
12654
12654
  */