@antscorp/antsomi-ui 1.3.5-beta.887 → 1.3.5-beta.889

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.
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IconProps } from './types';
3
+ export declare const DoubeThreeDotIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import { useIcon } from './hooks/useIcon';
4
+ export const DoubeThreeDotIcon = forwardRef((props, ref) => {
5
+ const { width, height } = useIcon(props);
6
+ return (_jsx("svg", { viewBox: "0 0 10 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref: ref, width: width, height: height, children: _jsx("path", { d: "M6.32812 10.8281C6.66667 10.4896 7.05729 10.3203 7.5 10.3203C7.94271 10.3203 8.33333 10.4896 8.67188 10.8281C9.01042 11.1667 9.17969 11.5573 9.17969 12C9.17969 12.4427 9.01042 12.8333 8.67188 13.1719C8.33333 13.5104 7.94271 13.6797 7.5 13.6797C7.05729 13.6797 6.66667 13.5104 6.32812 13.1719C5.98958 12.8333 5.82031 12.4427 5.82031 12C5.82031 11.5573 5.98958 11.1667 6.32812 10.8281ZM6.32812 5.82812C6.66667 5.48958 7.05729 5.32031 7.5 5.32031C7.94271 5.32031 8.33333 5.48958 8.67188 5.82812C9.01042 6.16667 9.17969 6.55729 9.17969 7C9.17969 7.44271 9.01042 7.83333 8.67188 8.17188C8.33333 8.51042 7.94271 8.67969 7.5 8.67969C7.05729 8.67969 6.66667 8.51042 6.32812 8.17188C5.98958 7.83333 5.82031 7.44271 5.82031 7C5.82031 6.55729 5.98958 6.16667 6.32812 5.82812ZM8.67188 3.17188C8.33333 3.51042 7.94271 3.67969 7.5 3.67969C7.05729 3.67969 6.66667 3.51042 6.32812 3.17188C5.98958 2.83333 5.82031 2.44271 5.82031 2C5.82031 1.55729 5.98958 1.16667 6.32812 0.828125C6.66667 0.489583 7.05729 0.320312 7.5 0.320312C7.94271 0.320312 8.33333 0.489583 8.67188 0.828125C9.01042 1.16667 9.17969 1.55729 9.17969 2C9.17969 2.44271 9.01042 2.83333 8.67188 3.17188ZM1.32812 0.828125C1.66667 0.489583 2.05729 0.320312 2.5 0.320312C2.94271 0.320312 3.33333 0.489583 3.67188 0.828125C4.01042 1.16667 4.17969 1.55729 4.17969 2C4.17969 2.44271 4.01042 2.83333 3.67188 3.17188C3.33333 3.51042 2.94271 3.67969 2.5 3.67969C2.05729 3.67969 1.66667 3.51042 1.32812 3.17188C0.989583 2.83333 0.820312 2.44271 0.820312 2C0.820312 1.55729 0.989583 1.16667 1.32812 0.828125ZM1.32812 5.82812C1.66667 5.48958 2.05729 5.32031 2.5 5.32031C2.94271 5.32031 3.33333 5.48958 3.67188 5.82812C4.01042 6.16667 4.17969 6.55729 4.17969 7C4.17969 7.44271 4.01042 7.83333 3.67188 8.17188C3.33333 8.51042 2.94271 8.67969 2.5 8.67969C2.05729 8.67969 1.66667 8.51042 1.32812 8.17188C0.989583 7.83333 0.820312 7.44271 0.820312 7C0.820312 6.55729 0.989583 6.16667 1.32812 5.82812ZM3.67188 10.8281C4.01042 11.1667 4.17969 11.5573 4.17969 12C4.17969 12.4427 4.01042 12.8333 3.67188 13.1719C3.33333 13.5104 2.94271 13.6797 2.5 13.6797C2.05729 13.6797 1.66667 13.5104 1.32812 13.1719C0.989583 12.8333 0.820312 12.4427 0.820312 12C0.820312 11.5573 0.989583 11.1667 1.32812 10.8281C1.66667 10.4896 2.05729 10.3203 2.5 10.3203C2.94271 10.3203 3.33333 10.4896 3.67188 10.8281Z", fill: "currentColor" }) }));
7
+ });
@@ -118,6 +118,7 @@ export declare const LazyIcon: {
118
118
  DirectoriesIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
119
119
  DisplayMonitorScreenIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
120
120
  DomainManagementIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
121
+ DoubeThreeDotIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
121
122
  DownloadIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
122
123
  DraftDocumentIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
123
124
  DuplicateIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
@@ -310,6 +311,7 @@ export declare const LazyIcon: {
310
311
  Segments30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
311
312
  SegmentsIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
312
313
  SendTranscriptIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
314
+ SettingFillIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
313
315
  SettingIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
314
316
  ShapeCircleIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
315
317
  ShapeSquareIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
@@ -124,6 +124,7 @@ export const LazyIcon = {
124
124
  DirectoriesIcon: lazy(() => import('../DirectoriesIcon').then(m => ({ default: m.DirectoriesIcon }))),
125
125
  DisplayMonitorScreenIcon: lazy(() => import('../DisplayMonitorScreenIcon').then(m => ({ default: m.DisplayMonitorScreenIcon }))),
126
126
  DomainManagementIcon: lazy(() => import('../DomainManagementIcon').then(m => ({ default: m.DomainManagementIcon }))),
127
+ DoubeThreeDotIcon: lazy(() => import('../DoubeThreeDotIcon').then(m => ({ default: m.DoubeThreeDotIcon }))),
127
128
  DownloadIcon: lazy(() => import('../DownloadIcon').then(m => ({ default: m.DownloadIcon }))),
128
129
  DraftDocumentIcon: lazy(() => import('../DraftDocumentIcon').then(m => ({ default: m.DraftDocumentIcon }))),
129
130
  DuplicateIcon: lazy(() => import('../DuplicateIcon').then(m => ({ default: m.DuplicateIcon }))),
@@ -316,6 +317,7 @@ export const LazyIcon = {
316
317
  Segments30Icon: lazy(() => import('../Segments30Icon').then(m => ({ default: m.Segments30Icon }))),
317
318
  SegmentsIcon: lazy(() => import('../SegmentsIcon').then(m => ({ default: m.SegmentsIcon }))),
318
319
  SendTranscriptIcon: lazy(() => import('../SendTranscriptIcon').then(m => ({ default: m.SendTranscriptIcon }))),
320
+ SettingFillIcon: lazy(() => import('../SettingFillIcon').then(m => ({ default: m.SettingFillIcon }))),
319
321
  SettingIcon: lazy(() => import('../SettingIcon').then(m => ({ default: m.SettingIcon }))),
320
322
  ShapeCircleIcon: lazy(() => import('../ShapeCircleIcon').then(m => ({ default: m.ShapeCircleIcon }))),
321
323
  ShapeSquareIcon: lazy(() => import('../ShapeSquareIcon').then(m => ({ default: m.ShapeSquareIcon }))),
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IconProps } from './types';
3
+ export declare const SettingFillIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import { useIcon } from './hooks/useIcon';
4
+ export const SettingFillIcon = forwardRef((props, ref) => {
5
+ const { width, height } = useIcon(props);
6
+ return (_jsx("svg", { viewBox: "0 0 14 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref: ref, width: width, height: height, children: _jsx("path", { d: "M5.34375 9.05627C5.80208 9.51461 6.35417 9.74377 7 9.74377C7.64583 9.74377 8.19792 9.51461 8.65625 9.05627C9.11458 8.59794 9.34375 8.04586 9.34375 7.40002C9.34375 6.75419 9.11458 6.20211 8.65625 5.74377C8.19792 5.28544 7.64583 5.05627 7 5.05627C6.35417 5.05627 5.80208 5.28544 5.34375 5.74377C4.88542 6.20211 4.65625 6.75419 4.65625 7.40002C4.65625 8.04586 4.88542 8.59794 5.34375 9.05627ZM11.9688 8.05627L13.375 9.15002C13.5208 9.25419 13.5417 9.40002 13.4375 9.58752L12.0938 11.9C12.0104 12.0459 11.875 12.0875 11.6875 12.025L10.0312 11.3688C9.59375 11.6813 9.21875 11.9 8.90625 12.025L8.65625 13.775C8.61458 13.9625 8.51042 14.0563 8.34375 14.0563H5.65625C5.48958 14.0563 5.38542 13.9625 5.34375 13.775L5.09375 12.025C4.69792 11.8584 4.32292 11.6396 3.96875 11.3688L2.3125 12.025C2.125 12.0875 1.98958 12.0459 1.90625 11.9L0.5625 9.58752C0.458333 9.40002 0.479167 9.25419 0.625 9.15002L2.03125 8.05627C2.01042 7.91044 2 7.69169 2 7.40002C2 7.10836 2.01042 6.88961 2.03125 6.74377L0.625 5.65002C0.479167 5.54586 0.458333 5.40002 0.5625 5.21252L1.90625 2.90002C1.98958 2.75419 2.125 2.71252 2.3125 2.77502L3.96875 3.43127C4.40625 3.11877 4.78125 2.90002 5.09375 2.77502L5.34375 1.02502C5.38542 0.837524 5.48958 0.743774 5.65625 0.743774H8.34375C8.51042 0.743774 8.61458 0.837524 8.65625 1.02502L8.90625 2.77502C9.30208 2.94169 9.67708 3.16044 10.0312 3.43127L11.6875 2.77502C11.875 2.71252 12.0104 2.75419 12.0938 2.90002L13.4375 5.21252C13.5417 5.40002 13.5208 5.54586 13.375 5.65002L11.9688 6.74377C11.9896 6.88961 12 7.10836 12 7.40002C12 7.69169 11.9896 7.91044 11.9688 8.05627Z", fill: "currentColor" }) }));
7
+ });
@@ -116,6 +116,7 @@ export { DiagramIcon } from './DiagramIcon';
116
116
  export { DirectoriesIcon } from './DirectoriesIcon';
117
117
  export { DisplayMonitorScreenIcon } from './DisplayMonitorScreenIcon';
118
118
  export { DomainManagementIcon } from './DomainManagementIcon';
119
+ export { DoubeThreeDotIcon } from './DoubeThreeDotIcon';
119
120
  export { DownloadIcon } from './DownloadIcon';
120
121
  export { DraftDocumentIcon } from './DraftDocumentIcon';
121
122
  export { DuplicateIcon } from './DuplicateIcon';
@@ -306,6 +307,7 @@ export { SectionIcon } from './SectionIcon';
306
307
  export { Segments30Icon } from './Segments30Icon';
307
308
  export { SegmentsIcon } from './SegmentsIcon';
308
309
  export { SendTranscriptIcon } from './SendTranscriptIcon';
310
+ export { SettingFillIcon } from './SettingFillIcon';
309
311
  export { SettingIcon } from './SettingIcon';
310
312
  export { ShapeCircleIcon } from './ShapeCircleIcon';
311
313
  export { ShapeSquareIcon } from './ShapeSquareIcon';
@@ -116,6 +116,7 @@ export { DiagramIcon } from './DiagramIcon';
116
116
  export { DirectoriesIcon } from './DirectoriesIcon';
117
117
  export { DisplayMonitorScreenIcon } from './DisplayMonitorScreenIcon';
118
118
  export { DomainManagementIcon } from './DomainManagementIcon';
119
+ export { DoubeThreeDotIcon } from './DoubeThreeDotIcon';
119
120
  export { DownloadIcon } from './DownloadIcon';
120
121
  export { DraftDocumentIcon } from './DraftDocumentIcon';
121
122
  export { DuplicateIcon } from './DuplicateIcon';
@@ -306,6 +307,7 @@ export { SectionIcon } from './SectionIcon';
306
307
  export { Segments30Icon } from './Segments30Icon';
307
308
  export { SegmentsIcon } from './SegmentsIcon';
308
309
  export { SendTranscriptIcon } from './SendTranscriptIcon';
310
+ export { SettingFillIcon } from './SettingFillIcon';
309
311
  export { SettingIcon } from './SettingIcon';
310
312
  export { ShapeCircleIcon } from './ShapeCircleIcon';
311
313
  export { ShapeSquareIcon } from './ShapeSquareIcon';
@@ -155,7 +155,7 @@ export const renderValueField = ({ filterMetric, operator, value, matchesAny, on
155
155
  case OPERATORS_CODE.MATCHES_ANY:
156
156
  case OPERATORS_CODE.NOT_MATCHES: {
157
157
  const { list, isLoading } = matchesAny || {};
158
- return (_jsx(MatchesAnySelect, { selectedItems: Array.isArray(value) ? value : [], popupClassName: EXCEPTION_OFF_FILTER_CLASS, objectName: name, items: list, loading: isLoading, onChange: onChangeValue, onLoadMore: onLoadMore }));
158
+ return (_jsx(MatchesAnySelect, { maxSelectedItem: 100, maxLengthEachItem: 200, selectedItems: Array.isArray(value) ? value : [], popupClassName: EXCEPTION_OFF_FILTER_CLASS, objectName: name, items: list, loading: isLoading, onChange: onChangeValue, onLoadMore: onLoadMore }));
159
159
  }
160
160
  case OPERATORS_CODE.AFTER:
161
161
  case OPERATORS_CODE.AFTER_DATE:
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@antscorp/antsomi-ui",
3
- "version": "1.3.5-beta.887",
3
+ "version": "1.3.5-beta.889",
4
4
  "description": "An enterprise-class UI design language and React UI library.",
5
5
  "sideEffects": [
6
6
  "dist/*",
7
7
  "es/**/style/*",
8
8
  "lib/**/style/*",
9
9
  "**/*.css",
10
- "**/*.scss",
10
+ "**/*clear.scss",
11
11
  "**/*.less"
12
12
  ],
13
13
  "files": [