nntc-ui 0.0.21 → 0.0.23

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,184 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __export = (target, all) => {
3
+ for (var name in all)
4
+ __defProp(target, name, { get: all[name], enumerable: true });
5
+ };
6
+
7
+ // src/icons/Icon.tsx
8
+ import { jsx } from "react/jsx-runtime";
9
+ var Icon = ({
10
+ size = 24,
11
+ color = "currentColor",
12
+ className,
13
+ children
14
+ }) => {
15
+ return /* @__PURE__ */ jsx(
16
+ "svg",
17
+ {
18
+ width: size,
19
+ height: size,
20
+ viewBox: "0 0 24 24",
21
+ fill: color,
22
+ className,
23
+ xmlns: "http://www.w3.org/2000/svg",
24
+ children
25
+ }
26
+ );
27
+ };
28
+
29
+ // src/icons/AddIcon.tsx
30
+ import { jsx as jsx2 } from "react/jsx-runtime";
31
+ var AddIcon = (props) => /* @__PURE__ */ jsx2(Icon, { ...props, children: /* @__PURE__ */ jsx2("path", { d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" }) });
32
+
33
+ // src/icons/ArrowDropDownIcon.tsx
34
+ import { jsx as jsx3 } from "react/jsx-runtime";
35
+ var ArrowDropDownIcon = (props) => /* @__PURE__ */ jsx3(Icon, { ...props, children: /* @__PURE__ */ jsx3("path", { d: "M7 10l5 5 5-5z" }) });
36
+
37
+ // src/icons/ArrowDropUpIcon.tsx
38
+ import { jsx as jsx4 } from "react/jsx-runtime";
39
+ var ArrowDropUpIcon = (props) => /* @__PURE__ */ jsx4(Icon, { ...props, children: /* @__PURE__ */ jsx4("path", { d: "M7 14l5-5 5 5z" }) });
40
+
41
+ // src/icons/AttachIcon.tsx
42
+ import { jsx as jsx5 } from "react/jsx-runtime";
43
+ var AttachIcon = (props) => /* @__PURE__ */ jsx5(Icon, { ...props, children: /* @__PURE__ */ jsx5("path", { d: "M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5c0 1.38 1.12 2.5 2.5 2.5s2.5-1.12 2.5-2.5V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z" }) });
44
+
45
+ // src/icons/BarChartIcon.tsx
46
+ import { jsx as jsx6 } from "react/jsx-runtime";
47
+ var BarChartIcon = (props) => /* @__PURE__ */ jsx6(Icon, { ...props, children: /* @__PURE__ */ jsx6("path", { d: "M5 9.2h3V19H5zM10.6 5h2.8v14h-2.8zm5.6 8H19v6h-2.8z" }) });
48
+
49
+ // src/icons/CheckboxIcon.tsx
50
+ import { jsx as jsx7 } from "react/jsx-runtime";
51
+ var CheckboxIcon = (props) => /* @__PURE__ */ jsx7(Icon, { ...props, children: /* @__PURE__ */ jsx7("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" }) });
52
+
53
+ // src/icons/CheckboxDeselectedIcon.tsx
54
+ import { jsx as jsx8 } from "react/jsx-runtime";
55
+ var CheckboxDeselectedIcon = (props) => /* @__PURE__ */ jsx8(Icon, { ...props, children: /* @__PURE__ */ jsx8("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z" }) });
56
+
57
+ // src/icons/CheckboxSeveralIcon.tsx
58
+ import { jsx as jsx9 } from "react/jsx-runtime";
59
+ var CheckboxSeveralIcon = (props) => /* @__PURE__ */ jsx9(Icon, { ...props, children: /* @__PURE__ */ jsx9("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10H7v-2h10v2zm0-4H7V7h10v2z" }) });
60
+
61
+ // src/icons/ChevronLeftIcon.tsx
62
+ import { jsx as jsx10 } from "react/jsx-runtime";
63
+ var ChevronLeftIcon = (props) => /* @__PURE__ */ jsx10(Icon, { ...props, children: /* @__PURE__ */ jsx10("path", { d: "M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z" }) });
64
+
65
+ // src/icons/ChevronRightIcon.tsx
66
+ import { jsx as jsx11 } from "react/jsx-runtime";
67
+ var ChevronRightIcon = (props) => /* @__PURE__ */ jsx11(Icon, { ...props, children: /* @__PURE__ */ jsx11("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }) });
68
+
69
+ // src/icons/CircleFilledIcon.tsx
70
+ import { jsx as jsx12 } from "react/jsx-runtime";
71
+ var CircleFilledIcon = (props) => /* @__PURE__ */ jsx12(Icon, { ...props, children: /* @__PURE__ */ jsx12("path", { d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2z" }) });
72
+
73
+ // src/icons/CloseIcon.tsx
74
+ import { jsx as jsx13 } from "react/jsx-runtime";
75
+ var CloseIcon = (props) => /* @__PURE__ */ jsx13(Icon, { ...props, children: /* @__PURE__ */ jsx13("path", { d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" }) });
76
+
77
+ // src/icons/DateRangeIcon.tsx
78
+ import { jsx as jsx14 } from "react/jsx-runtime";
79
+ var DateRangeIcon = (props) => /* @__PURE__ */ jsx14(Icon, { ...props, children: /* @__PURE__ */ jsx14("path", { d: "M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 002 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z" }) });
80
+
81
+ // src/icons/DeleteIcon.tsx
82
+ import { jsx as jsx15 } from "react/jsx-runtime";
83
+ var DeleteIcon = (props) => /* @__PURE__ */ jsx15(Icon, { ...props, children: /* @__PURE__ */ jsx15("path", { d: "M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z" }) });
84
+
85
+ // src/icons/DoneIcon.tsx
86
+ import { jsx as jsx16 } from "react/jsx-runtime";
87
+ var DoneIcon = (props) => /* @__PURE__ */ jsx16(Icon, { ...props, children: /* @__PURE__ */ jsx16("path", { d: "M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z" }) });
88
+
89
+ // src/icons/FileUploadIcon.tsx
90
+ import { jsx as jsx17 } from "react/jsx-runtime";
91
+ var FileUploadIcon = (props) => /* @__PURE__ */ jsx17(Icon, { ...props, children: /* @__PURE__ */ jsx17("path", { d: "M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z" }) });
92
+
93
+ // src/icons/FilterIcon.tsx
94
+ import { jsx as jsx18 } from "react/jsx-runtime";
95
+ var FilterIcon = (props) => /* @__PURE__ */ jsx18(Icon, { ...props, children: /* @__PURE__ */ jsx18("path", { d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" }) });
96
+
97
+ // src/icons/FilterClearIcon.tsx
98
+ import { jsx as jsx19, jsxs } from "react/jsx-runtime";
99
+ var FilterClearIcon = (props) => /* @__PURE__ */ jsxs(Icon, { ...props, children: [
100
+ /* @__PURE__ */ jsx19("path", { d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" }),
101
+ /* @__PURE__ */ jsx19("path", { d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" })
102
+ ] });
103
+
104
+ // src/icons/InfoIcon.tsx
105
+ import { jsx as jsx20 } from "react/jsx-runtime";
106
+ var InfoIcon = (props) => /* @__PURE__ */ jsx20(Icon, { ...props, children: /* @__PURE__ */ jsx20("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z" }) });
107
+
108
+ // src/icons/KeyboardArrowDownIcon.tsx
109
+ import { jsx as jsx21 } from "react/jsx-runtime";
110
+ var KeyboardArrowDownIcon = (props) => /* @__PURE__ */ jsx21(Icon, { ...props, children: /* @__PURE__ */ jsx21("path", { d: "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" }) });
111
+
112
+ // src/icons/ListIcon.tsx
113
+ import { jsx as jsx22 } from "react/jsx-runtime";
114
+ var ListIcon = (props) => /* @__PURE__ */ jsx22(Icon, { ...props, children: /* @__PURE__ */ jsx22("path", { d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" }) });
115
+
116
+ // src/icons/MoreVerticalIcon.tsx
117
+ import { jsx as jsx23 } from "react/jsx-runtime";
118
+ var MoreVerticalIcon = (props) => /* @__PURE__ */ jsx23(Icon, { ...props, children: /* @__PURE__ */ jsx23("path", { d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" }) });
119
+
120
+ // src/icons/SearchIcon.tsx
121
+ import { jsx as jsx24 } from "react/jsx-runtime";
122
+ var SearchIcon = (props) => /* @__PURE__ */ jsx24(Icon, { ...props, children: /* @__PURE__ */ jsx24("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" }) });
123
+
124
+ // src/icons/SettingsIcon.tsx
125
+ import { jsx as jsx25 } from "react/jsx-runtime";
126
+ var SettingsIcon = (props) => /* @__PURE__ */ jsx25(Icon, { ...props, children: /* @__PURE__ */ jsx25("path", { d: "M19.14 12.94c.04-.3.06-.61.06-.94 0-.32-.02-.64-.07-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.05.3-.07.62-.07.94s.02.64.07.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z" }) });
127
+
128
+ // src/icons/SortDownIcon.tsx
129
+ import { jsx as jsx26 } from "react/jsx-runtime";
130
+ var SortDownIcon = (props) => /* @__PURE__ */ jsx26(Icon, { ...props, children: /* @__PURE__ */ jsx26("path", { d: "M7 10l5 5 5-5z" }) });
131
+
132
+ // src/icons/SortUpIcon.tsx
133
+ import { jsx as jsx27 } from "react/jsx-runtime";
134
+ var SortUpIcon = (props) => /* @__PURE__ */ jsx27(Icon, { ...props, children: /* @__PURE__ */ jsx27("path", { d: "M7 14l5-5 5 5z" }) });
135
+
136
+ // src/icons/TableChartIcon.tsx
137
+ import { jsx as jsx28 } from "react/jsx-runtime";
138
+ var TableChartIcon = (props) => /* @__PURE__ */ jsx28(Icon, { ...props, children: /* @__PURE__ */ jsx28("path", { d: "M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z" }) });
139
+
140
+ // src/icons/UploadIcon.tsx
141
+ import { jsx as jsx29 } from "react/jsx-runtime";
142
+ var UploadIcon = (props) => /* @__PURE__ */ jsx29(Icon, { ...props, children: /* @__PURE__ */ jsx29("path", { d: "M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z" }) });
143
+
144
+ // src/icons/WellIcon.tsx
145
+ import { jsx as jsx30 } from "react/jsx-runtime";
146
+ var WellIcon = (props) => /* @__PURE__ */ jsx30(Icon, { ...props, children: /* @__PURE__ */ jsx30("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z" }) });
147
+
148
+ // src/icons/EditIcon.tsx
149
+ import { jsx as jsx31 } from "react/jsx-runtime";
150
+ var EditIcon = (props) => /* @__PURE__ */ jsx31(Icon, { ...props, children: /* @__PURE__ */ jsx31("path", { d: "M18.3688 3.29L20.7088 5.63C21.0988 6.02 21.0988 6.65 20.7088 7.04L18.8788 8.87L15.1288 5.12L16.9588 3.29C17.1488 3.1 17.3988 3 17.6588 3C17.9188 3 18.1688 3.09 18.3688 3.29ZM2.99878 17.25V21H6.74878L17.8088 9.94L14.0588 6.19L2.99878 17.25ZM5.91878 19H4.99878V18.08L14.0588 9.02L14.9788 9.94L5.91878 19Z" }) });
151
+
152
+ export {
153
+ __export,
154
+ CheckboxDeselectedIcon,
155
+ CheckboxIcon,
156
+ CheckboxSeveralIcon,
157
+ AddIcon,
158
+ ArrowDropDownIcon,
159
+ ArrowDropUpIcon,
160
+ AttachIcon,
161
+ BarChartIcon,
162
+ ChevronLeftIcon,
163
+ ChevronRightIcon,
164
+ CircleFilledIcon,
165
+ CloseIcon,
166
+ DateRangeIcon,
167
+ DeleteIcon,
168
+ DoneIcon,
169
+ FileUploadIcon,
170
+ FilterIcon,
171
+ FilterClearIcon,
172
+ InfoIcon,
173
+ KeyboardArrowDownIcon,
174
+ ListIcon,
175
+ MoreVerticalIcon,
176
+ SearchIcon,
177
+ SettingsIcon,
178
+ SortDownIcon,
179
+ SortUpIcon,
180
+ TableChartIcon,
181
+ UploadIcon,
182
+ WellIcon,
183
+ EditIcon
184
+ };
@@ -0,0 +1,69 @@
1
+ import React__default from 'react';
2
+
3
+ interface IconProps {
4
+ size?: number;
5
+ color?: string;
6
+ className?: string;
7
+ }
8
+
9
+ declare const AddIcon: React__default.FC<IconProps>;
10
+
11
+ declare const ArrowDropDownIcon: React__default.FC<IconProps>;
12
+
13
+ declare const ArrowDropUpIcon: React__default.FC<IconProps>;
14
+
15
+ declare const AttachIcon: React__default.FC<IconProps>;
16
+
17
+ declare const BarChartIcon: React__default.FC<IconProps>;
18
+
19
+ declare const CheckboxIcon: React__default.FC<IconProps>;
20
+
21
+ declare const CheckboxDeselectedIcon: React__default.FC<IconProps>;
22
+
23
+ declare const CheckboxSeveralIcon: React__default.FC<IconProps>;
24
+
25
+ declare const ChevronLeftIcon: React__default.FC<IconProps>;
26
+
27
+ declare const ChevronRightIcon: React__default.FC<IconProps>;
28
+
29
+ declare const CircleFilledIcon: React__default.FC<IconProps>;
30
+
31
+ declare const CloseIcon: React__default.FC<IconProps>;
32
+
33
+ declare const DateRangeIcon: React__default.FC<IconProps>;
34
+
35
+ declare const DeleteIcon: React__default.FC<IconProps>;
36
+
37
+ declare const DoneIcon: React__default.FC<IconProps>;
38
+
39
+ declare const FileUploadIcon: React__default.FC<IconProps>;
40
+
41
+ declare const FilterIcon: React__default.FC<IconProps>;
42
+
43
+ declare const FilterClearIcon: React__default.FC<IconProps>;
44
+
45
+ declare const InfoIcon: React__default.FC<IconProps>;
46
+
47
+ declare const KeyboardArrowDownIcon: React__default.FC<IconProps>;
48
+
49
+ declare const ListIcon: React__default.FC<IconProps>;
50
+
51
+ declare const MoreVerticalIcon: React__default.FC<IconProps>;
52
+
53
+ declare const SearchIcon: React__default.FC<IconProps>;
54
+
55
+ declare const SettingsIcon: React__default.FC<IconProps>;
56
+
57
+ declare const SortDownIcon: React__default.FC<IconProps>;
58
+
59
+ declare const SortUpIcon: React__default.FC<IconProps>;
60
+
61
+ declare const TableChartIcon: React__default.FC<IconProps>;
62
+
63
+ declare const UploadIcon: React__default.FC<IconProps>;
64
+
65
+ declare const WellIcon: React__default.FC<IconProps>;
66
+
67
+ declare const EditIcon: React__default.FC<IconProps>;
68
+
69
+ export { AddIcon, ArrowDropDownIcon, ArrowDropUpIcon, AttachIcon, BarChartIcon, CheckboxDeselectedIcon, CheckboxIcon, CheckboxSeveralIcon, ChevronLeftIcon, ChevronRightIcon, CircleFilledIcon, CloseIcon, DateRangeIcon, DeleteIcon, DoneIcon, EditIcon, FileUploadIcon, FilterClearIcon, FilterIcon, InfoIcon, KeyboardArrowDownIcon, ListIcon, MoreVerticalIcon, SearchIcon, SettingsIcon, SortDownIcon, SortUpIcon, TableChartIcon, UploadIcon, WellIcon };
@@ -0,0 +1,64 @@
1
+ import {
2
+ AddIcon,
3
+ ArrowDropDownIcon,
4
+ ArrowDropUpIcon,
5
+ AttachIcon,
6
+ BarChartIcon,
7
+ CheckboxDeselectedIcon,
8
+ CheckboxIcon,
9
+ CheckboxSeveralIcon,
10
+ ChevronLeftIcon,
11
+ ChevronRightIcon,
12
+ CircleFilledIcon,
13
+ CloseIcon,
14
+ DateRangeIcon,
15
+ DeleteIcon,
16
+ DoneIcon,
17
+ EditIcon,
18
+ FileUploadIcon,
19
+ FilterClearIcon,
20
+ FilterIcon,
21
+ InfoIcon,
22
+ KeyboardArrowDownIcon,
23
+ ListIcon,
24
+ MoreVerticalIcon,
25
+ SearchIcon,
26
+ SettingsIcon,
27
+ SortDownIcon,
28
+ SortUpIcon,
29
+ TableChartIcon,
30
+ UploadIcon,
31
+ WellIcon
32
+ } from "../chunk-4HWWEHXN.mjs";
33
+ export {
34
+ AddIcon,
35
+ ArrowDropDownIcon,
36
+ ArrowDropUpIcon,
37
+ AttachIcon,
38
+ BarChartIcon,
39
+ CheckboxDeselectedIcon,
40
+ CheckboxIcon,
41
+ CheckboxSeveralIcon,
42
+ ChevronLeftIcon,
43
+ ChevronRightIcon,
44
+ CircleFilledIcon,
45
+ CloseIcon,
46
+ DateRangeIcon,
47
+ DeleteIcon,
48
+ DoneIcon,
49
+ EditIcon,
50
+ FileUploadIcon,
51
+ FilterClearIcon,
52
+ FilterIcon,
53
+ InfoIcon,
54
+ KeyboardArrowDownIcon,
55
+ ListIcon,
56
+ MoreVerticalIcon,
57
+ SearchIcon,
58
+ SettingsIcon,
59
+ SortDownIcon,
60
+ SortUpIcon,
61
+ TableChartIcon,
62
+ UploadIcon,
63
+ WellIcon
64
+ };