nntc-ui 0.0.92 → 0.0.93
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/{chunk-OJNXOQUW.js → chunk-SQXO2GJK.js} +11 -1
- package/icons/index.d.ts +3 -1
- package/icons/index.js +3 -1
- package/index.js +1 -1
- package/package.json +1 -1
|
@@ -255,6 +255,15 @@ var VisibilityIcon = (props) => /* @__PURE__ */ jsx41(Icon, { ...props, children
|
|
|
255
255
|
}
|
|
256
256
|
) });
|
|
257
257
|
|
|
258
|
+
// src/icons/PointIcon.tsx
|
|
259
|
+
import { jsx as jsx42 } from "react/jsx-runtime";
|
|
260
|
+
var PointIcon = (props) => /* @__PURE__ */ jsx42(Icon, { ...props, children: /* @__PURE__ */ jsx42(
|
|
261
|
+
"path",
|
|
262
|
+
{
|
|
263
|
+
d: "M12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8V8Z"
|
|
264
|
+
}
|
|
265
|
+
) });
|
|
266
|
+
|
|
258
267
|
export {
|
|
259
268
|
__export,
|
|
260
269
|
CheckboxDeselectedIcon,
|
|
@@ -296,5 +305,6 @@ export {
|
|
|
296
305
|
BookmarkAddIcon,
|
|
297
306
|
ExportTableIcon,
|
|
298
307
|
DownloadIcon,
|
|
299
|
-
VisibilityIcon
|
|
308
|
+
VisibilityIcon,
|
|
309
|
+
PointIcon
|
|
300
310
|
};
|
package/icons/index.d.ts
CHANGED
|
@@ -86,4 +86,6 @@ declare const DownloadIcon: React__default.FC<IconProps>;
|
|
|
86
86
|
|
|
87
87
|
declare const VisibilityIcon: React__default.FC<IconProps>;
|
|
88
88
|
|
|
89
|
-
|
|
89
|
+
declare const PointIcon: React__default.FC<IconProps>;
|
|
90
|
+
|
|
91
|
+
export { AddIcon, AlertIcon, ArrowDropDownIcon, ArrowDropUpIcon, AttachIcon, BarChartIcon, BookmarkAddIcon, BookmarkIcon, CheckboxDeselectedIcon, CheckboxIcon, CheckboxSeveralIcon, ChevronLeftIcon, ChevronRightIcon, CircleFilledIcon, CloseIcon, DateRangeIcon, DeleteIcon, DoneIcon, DownloadIcon, EditIcon, ExportTableIcon, FileUploadIcon, FilterClearIcon, FilterIcon, FullScreenOffIcon, FullScreenOnIcon, InfoIcon, KeyboardArrowDownIcon, ListIcon, MoreVerticalIcon, PointIcon, RadioDeselectedIcon, RadioSelectedIcon, SearchIcon, SettingsIcon, SortDownIcon, SortUpIcon, TableChartIcon, UploadIcon, VisibilityIcon, WellIcon };
|
package/icons/index.js
CHANGED
|
@@ -29,6 +29,7 @@ import {
|
|
|
29
29
|
KeyboardArrowDownIcon,
|
|
30
30
|
ListIcon,
|
|
31
31
|
MoreVerticalIcon,
|
|
32
|
+
PointIcon,
|
|
32
33
|
RadioDeselectedIcon,
|
|
33
34
|
RadioSelectedIcon,
|
|
34
35
|
SearchIcon,
|
|
@@ -39,7 +40,7 @@ import {
|
|
|
39
40
|
UploadIcon,
|
|
40
41
|
VisibilityIcon,
|
|
41
42
|
WellIcon
|
|
42
|
-
} from "../chunk-
|
|
43
|
+
} from "../chunk-SQXO2GJK.js";
|
|
43
44
|
export {
|
|
44
45
|
AddIcon,
|
|
45
46
|
AlertIcon,
|
|
@@ -71,6 +72,7 @@ export {
|
|
|
71
72
|
KeyboardArrowDownIcon,
|
|
72
73
|
ListIcon,
|
|
73
74
|
MoreVerticalIcon,
|
|
75
|
+
PointIcon,
|
|
74
76
|
RadioDeselectedIcon,
|
|
75
77
|
RadioSelectedIcon,
|
|
76
78
|
SearchIcon,
|
package/index.js
CHANGED