@antscorp/antsomi-ui 1.3.5-beta.960 → 1.3.5-beta.961

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.
@@ -21,6 +21,6 @@ const SelectTag = (props) => {
21
21
  setOpen(false);
22
22
  onSelect(item);
23
23
  };
24
- return (_jsx(Popover, { open: open, title: _jsx(Typography.Text, { style: { fontWeight: '400', maxWidth: 130 }, ellipsis: { tooltip: title }, children: title }), content: _jsx(Flex, { wrap: "wrap", gap: 6, style: { padding: '10px 0px' }, children: options.map(item => (_jsx(SelectedTag, { "$color": item.color, "$background": item.background, ellipsis: { tooltip: item.label }, onClick: () => handleClick(item), children: item.label }, item.value))) }), placement: "bottomLeft", trigger: "click", overlayInnerStyle: { padding: 10, maxWidth: 150 }, onOpenChange: handleOpenChange, children: _jsx(SelectedTag, { "$color": selectedItem?.color, "$background": selectedItem?.background, ellipsis: { tooltip: selectedItem?.label }, children: selectedItem?.label }) }));
24
+ return (_jsx(Popover, { open: open, title: _jsx(Typography.Text, { style: { fontWeight: '400', maxWidth: 130 }, ellipsis: { tooltip: title }, children: title }), content: _jsx(Flex, { wrap: "wrap", gap: 6, style: { padding: '10px 0px' }, children: options?.map(item => (_jsx(SelectedTag, { "$color": item.color, "$background": item.background, ellipsis: { tooltip: item.label }, onClick: () => handleClick(item), children: item.label }, item.value))) }), placement: "bottomLeft", trigger: "click", overlayInnerStyle: { padding: 10, maxWidth: 150 }, onOpenChange: handleOpenChange, children: _jsx(SelectedTag, { "$color": selectedItem?.color, "$background": selectedItem?.background, ellipsis: { tooltip: selectedItem?.label }, children: selectedItem?.label }) }));
25
25
  };
26
26
  export default memo(SelectTag);
@@ -1,2 +1,3 @@
1
1
  export { SelectAssociatedTag } from './SelectAssociatedTag';
2
2
  export type { SelectAssociatedTagProps } from './types';
3
+ export * from './constants';
@@ -1 +1,2 @@
1
1
  export { SelectAssociatedTag } from './SelectAssociatedTag';
2
+ export * from './constants';
@@ -34,7 +34,6 @@ export { Image } from './Image';
34
34
  export { IconField } from './IconField';
35
35
  export { Suspense } from './Suspense';
36
36
  export { App } from './App';
37
- export { SelectAssociatedTag } from './SelectAssociatedTag';
38
37
  export * from './Flex';
39
38
  export * from './PreviewTabs';
40
39
  export * from './MobileFrame';
@@ -50,9 +49,9 @@ export * from './Iframe';
50
49
  export * from './Avatar';
51
50
  export * from './NotificationStatus';
52
51
  export * from './List';
52
+ export * from './SelectAssociatedTag';
53
53
  export type { SliderProps } from './Slider';
54
54
  export type { PaginationProps } from './Pagination';
55
55
  export type { InputDynamicProps } from './InputDynamic';
56
56
  export type { ImageProps } from './Image';
57
57
  export type { AppProps } from './App';
58
- export type { SelectAssociatedTagProps } from './SelectAssociatedTag';
@@ -34,7 +34,6 @@ export { Image } from './Image';
34
34
  export { IconField } from './IconField';
35
35
  export { Suspense } from './Suspense';
36
36
  export { App } from './App';
37
- export { SelectAssociatedTag } from './SelectAssociatedTag';
38
37
  export * from './Flex';
39
38
  export * from './PreviewTabs';
40
39
  export * from './MobileFrame';
@@ -50,3 +49,4 @@ export * from './Iframe';
50
49
  export * from './Avatar';
51
50
  export * from './NotificationStatus';
52
51
  export * from './List';
52
+ export * from './SelectAssociatedTag';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antscorp/antsomi-ui",
3
- "version": "1.3.5-beta.960",
3
+ "version": "1.3.5-beta.961",
4
4
  "description": "An enterprise-class UI design language and React UI library.",
5
5
  "sideEffects": [
6
6
  "dist/*",