@easygov/react-components 0.0.1
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/LICENSE +21 -0
- package/README.md +43 -0
- package/dist/NotoSans-Italic-VariableFont.woff2 +0 -0
- package/dist/NotoSans-VariableFont.woff2 +0 -0
- package/dist/chunk-VQPRDBZS.mjs +2 -0
- package/dist/chunk-VQPRDBZS.mjs.map +1 -0
- package/dist/easygov.css +2 -0
- package/dist/easygov.css.map +1 -0
- package/dist/easygov.d.mts +140 -0
- package/dist/easygov.mjs +2 -0
- package/dist/easygov.mjs.map +1 -0
- package/dist/fonts.css +2 -0
- package/dist/fonts.css.map +1 -0
- package/dist/fonts.d.mts +2 -0
- package/dist/icons.css +2 -0
- package/dist/icons.css.map +1 -0
- package/dist/icons.d.mts +438 -0
- package/dist/icons.mjs +2 -0
- package/dist/icons.mjs.map +1 -0
- package/package.json +73 -0
package/dist/fonts.css
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
@font-face{font-family:Noto Sans;src:url("./NotoSans-VariableFont.woff2") format("woff2-variations");font-weight:100 900;font-style:normal;font-display:swap}@font-face{font-family:Noto Sans;src:url("./NotoSans-Italic-VariableFont.woff2") format("woff2-variations");font-weight:100 900;font-style:italic;font-display:swap}
|
|
2
|
+
/*# sourceMappingURL=fonts.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/styles/fonts.css"],"sourcesContent":["@font-face {\n font-family: 'Noto Sans';\n src: url('../fonts/NotoSans-VariableFont.woff2') format('woff2-variations');\n font-weight: 100 900;\n font-style: normal;\n font-display: swap;\n}\n\n@font-face {\n font-family: 'Noto Sans';\n src: url('../fonts/NotoSans-Italic-VariableFont.woff2') format('woff2-variations');\n font-weight: 100 900;\n font-style: italic;\n font-display: swap;\n}\n"],"mappings":"AAAA,WACE,YAAa,UACb,IAAK,qCAA4C,OAAO,oBACxD,YAAa,IAAI,IACjB,WAAY,OACZ,aAAc,IAChB,CAEA,WACE,YAAa,UACb,IAAK,4CAAmD,OAAO,oBAC/D,YAAa,IAAI,IACjB,WAAY,OACZ,aAAc,IAChB","names":[]}
|
package/dist/fonts.d.mts
ADDED
package/dist/icons.css
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
.eg-icon{display:inline-block;flex-shrink:0;fill:currentColor;vertical-align:middle}.eg-icon--size-s{width:var(--eg-icon-size-s);height:var(--eg-icon-size-s)}.eg-icon--size-m{width:var(--eg-icon-size-m);height:var(--eg-icon-size-m)}.eg-icon--size-l{width:var(--eg-icon-size-l);height:var(--eg-icon-size-l)}
|
|
2
|
+
/*# sourceMappingURL=icons.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/icons/icon.css"],"sourcesContent":["/* Shared icon styling. Color is inherited via `currentColor` (set `color` on\n the icon or any ancestor — e.g. through the consumer's `className`). Size is\n driven by the design-tokens `icon.size` scale (--eg-icon-size-*). */\n.eg-icon {\n display: inline-block;\n flex-shrink: 0;\n fill: currentColor;\n vertical-align: middle;\n}\n\n.eg-icon--size-s {\n width: var(--eg-icon-size-s);\n height: var(--eg-icon-size-s);\n}\n.eg-icon--size-m {\n width: var(--eg-icon-size-m);\n height: var(--eg-icon-size-m);\n}\n.eg-icon--size-l {\n width: var(--eg-icon-size-l);\n height: var(--eg-icon-size-l);\n}\n"],"mappings":"AAGA,CAAC,QACC,QAAS,aACT,YAAa,EACb,KAAM,aACN,eAAgB,MAClB,CAEA,CAAC,gBACC,MAAO,IAAI,kBACX,OAAQ,IAAI,iBACd,CACA,CAAC,gBACC,MAAO,IAAI,kBACX,OAAQ,IAAI,iBACd,CACA,CAAC,gBACC,MAAO,IAAI,kBACX,OAAQ,IAAI,iBACd","names":[]}
|
package/dist/icons.d.mts
ADDED
|
@@ -0,0 +1,438 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
|
4
|
+
import { SVGProps } from 'react';
|
|
5
|
+
|
|
6
|
+
declare const iconVariants: (props?: ({
|
|
7
|
+
size?: "s" | "m" | "l" | null | undefined;
|
|
8
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9
|
+
interface IconProps extends Omit<SVGProps<SVGSVGElement>, "className" | "color">, VariantProps<typeof iconVariants> {
|
|
10
|
+
className?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Icon color — any CSS color, e.g. `"#10069f"` or a token
|
|
13
|
+
* `"var(--eg-color-primary-royal-blue)"`. Drives the `currentColor` fill.
|
|
14
|
+
* Omit it to inherit `color` from a CSS class / ancestor instead.
|
|
15
|
+
*/
|
|
16
|
+
color?: string;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Internal base used by every generated icon. Renders the shared `<svg>` shell
|
|
20
|
+
* (16×16 viewBox, `currentColor` fill, `aria-hidden` by default) and applies
|
|
21
|
+
* the size class. Pass `aria-hidden={false}` + `aria-label` for a meaningful
|
|
22
|
+
* icon. Each concrete icon supplies its paths as `children`.
|
|
23
|
+
*/
|
|
24
|
+
declare function IconBase({ size, className, color, style, children, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
declare function Account(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
27
|
+
|
|
28
|
+
declare function Add(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
30
|
+
declare function AddAlt(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
31
|
+
|
|
32
|
+
declare function AddComment(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
33
|
+
|
|
34
|
+
declare function AddFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
35
|
+
|
|
36
|
+
declare function Alarm(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare function AlarmAdd(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare function AlarmSubtract(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare function ArrowDown(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare function ArrowDownLeft(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
45
|
+
|
|
46
|
+
declare function ArrowDownRight(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
48
|
+
declare function ArrowLeft(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
49
|
+
|
|
50
|
+
declare function ArrowRight(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
51
|
+
|
|
52
|
+
declare function ArrowUp(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
53
|
+
|
|
54
|
+
declare function ArrowUpLeft(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
55
|
+
|
|
56
|
+
declare function ArrowUpRight(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
57
|
+
|
|
58
|
+
declare function Asleep(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
59
|
+
|
|
60
|
+
declare function AsleepFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
61
|
+
|
|
62
|
+
declare function Attachment(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
63
|
+
|
|
64
|
+
declare function Bookmark(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
65
|
+
|
|
66
|
+
declare function BookmarkFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
67
|
+
|
|
68
|
+
declare function Box(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
69
|
+
|
|
70
|
+
declare function Bullhorn(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
71
|
+
|
|
72
|
+
declare function Calculation(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
73
|
+
|
|
74
|
+
declare function CalculationAlt(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
75
|
+
|
|
76
|
+
declare function Calculator(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
77
|
+
|
|
78
|
+
declare function Calendar(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
79
|
+
|
|
80
|
+
declare function CalendarAdd(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
81
|
+
|
|
82
|
+
declare function CalendarAddAlt(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
83
|
+
|
|
84
|
+
declare function Camera(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
85
|
+
|
|
86
|
+
declare function CaretDown(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
87
|
+
|
|
88
|
+
declare function CaretLeft(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
89
|
+
|
|
90
|
+
declare function CaretRight(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
91
|
+
|
|
92
|
+
declare function CaretSort(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
93
|
+
|
|
94
|
+
declare function CaretSortDown(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
95
|
+
|
|
96
|
+
declare function CaretSortUp(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
97
|
+
|
|
98
|
+
declare function CaretUp(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
99
|
+
|
|
100
|
+
declare function CharacterPatterns(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
101
|
+
|
|
102
|
+
declare function Chat(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
103
|
+
|
|
104
|
+
declare function ChatLaunch(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
105
|
+
|
|
106
|
+
declare function Checkbox(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
107
|
+
|
|
108
|
+
declare function CheckboxChecked(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
109
|
+
|
|
110
|
+
declare function CheckboxCheckedFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
111
|
+
|
|
112
|
+
declare function CheckboxIndeterminate(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
113
|
+
|
|
114
|
+
declare function CheckboxIndeterminateFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
115
|
+
|
|
116
|
+
declare function CheckboxUndeterminate(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
117
|
+
|
|
118
|
+
declare function CheckboxUndeterminateFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
119
|
+
|
|
120
|
+
declare function Checkmark(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
121
|
+
|
|
122
|
+
declare function CheckmarkFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
123
|
+
|
|
124
|
+
declare function CheckmarkOutline(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
125
|
+
|
|
126
|
+
declare function CheckmarkOutlineWarning(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
127
|
+
|
|
128
|
+
declare function ChevronDown(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
129
|
+
|
|
130
|
+
declare function ChevronLeft(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
131
|
+
|
|
132
|
+
declare function ChevronRight(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
133
|
+
|
|
134
|
+
declare function ChevronSort(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
135
|
+
|
|
136
|
+
declare function ChevronSortDown(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
137
|
+
|
|
138
|
+
declare function ChevronSortUp(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
139
|
+
|
|
140
|
+
declare function ChevronUp(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
141
|
+
|
|
142
|
+
declare function Close(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
143
|
+
|
|
144
|
+
declare function ClosedCaptionAlt(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
145
|
+
|
|
146
|
+
declare function CloseFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
147
|
+
|
|
148
|
+
declare function CloseOutline(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
149
|
+
|
|
150
|
+
declare function Copy(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
151
|
+
|
|
152
|
+
declare function CopyFile(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
153
|
+
|
|
154
|
+
declare function CopyLink(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
155
|
+
|
|
156
|
+
declare function Data(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
157
|
+
|
|
158
|
+
declare function Delete(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
159
|
+
|
|
160
|
+
declare function Document(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
161
|
+
|
|
162
|
+
declare function DocumentAdd(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
163
|
+
|
|
164
|
+
declare function DocumentAttachment(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
165
|
+
|
|
166
|
+
declare function DocumentBlank(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
167
|
+
|
|
168
|
+
declare function DocumentDownload(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
169
|
+
|
|
170
|
+
declare function DocumentEdit(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
171
|
+
|
|
172
|
+
declare function DocumentExport(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
173
|
+
|
|
174
|
+
declare function DocumentImport(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
175
|
+
|
|
176
|
+
declare function DocumentPdf(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
177
|
+
|
|
178
|
+
declare function DocumentSettings(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
179
|
+
|
|
180
|
+
declare function DocumentSubtract(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
181
|
+
|
|
182
|
+
declare function DocumentTasks(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
183
|
+
|
|
184
|
+
declare function Download(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
185
|
+
|
|
186
|
+
declare function Draggable(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
187
|
+
|
|
188
|
+
declare function EarthEuropeAfricaFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
189
|
+
|
|
190
|
+
declare function Edit(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
191
|
+
|
|
192
|
+
declare function Email(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
193
|
+
|
|
194
|
+
declare function EmailNew(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
195
|
+
|
|
196
|
+
declare function Enterprise(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
197
|
+
|
|
198
|
+
declare function Error(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
199
|
+
|
|
200
|
+
declare function ErrorFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
201
|
+
|
|
202
|
+
declare function ErrorOutline(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
203
|
+
|
|
204
|
+
declare function Events(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
205
|
+
|
|
206
|
+
declare function Filter(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
207
|
+
|
|
208
|
+
declare function Finance(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
209
|
+
|
|
210
|
+
declare function Flag(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
211
|
+
|
|
212
|
+
declare function FlagFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
213
|
+
|
|
214
|
+
declare function Folder(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
215
|
+
|
|
216
|
+
declare function FolderAdd(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
217
|
+
|
|
218
|
+
declare function FolderMoveTo(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
219
|
+
|
|
220
|
+
declare function Folders(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
221
|
+
|
|
222
|
+
declare function Forum(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
223
|
+
|
|
224
|
+
declare function Globe(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
225
|
+
|
|
226
|
+
declare function GlobeAlt(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
227
|
+
|
|
228
|
+
declare function Group(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
229
|
+
|
|
230
|
+
declare function Help(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
231
|
+
|
|
232
|
+
declare function HelpFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
233
|
+
|
|
234
|
+
declare function Home(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
235
|
+
|
|
236
|
+
declare function Idea(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
237
|
+
|
|
238
|
+
declare function Identification(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
239
|
+
|
|
240
|
+
declare function IdManagement(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
241
|
+
|
|
242
|
+
declare function Industry(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
243
|
+
|
|
244
|
+
declare function Information(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
245
|
+
|
|
246
|
+
declare function InformationFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
247
|
+
|
|
248
|
+
declare function InformationSquare(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
249
|
+
|
|
250
|
+
declare function InformationSquareFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
251
|
+
|
|
252
|
+
declare function Launch(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
253
|
+
|
|
254
|
+
declare function Light(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
255
|
+
|
|
256
|
+
declare function LightFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
257
|
+
|
|
258
|
+
declare function Link(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
259
|
+
|
|
260
|
+
declare function List(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
261
|
+
|
|
262
|
+
declare function ListBoxes(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
263
|
+
|
|
264
|
+
declare function ListBulleted(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
265
|
+
|
|
266
|
+
declare function ListChecked(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
267
|
+
|
|
268
|
+
declare function Location(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
269
|
+
|
|
270
|
+
declare function Locked(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
271
|
+
|
|
272
|
+
declare function Login(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
273
|
+
|
|
274
|
+
declare function LogoFacebook(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
275
|
+
|
|
276
|
+
declare function LogoInstagram(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
277
|
+
|
|
278
|
+
declare function LogoLinkedin(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
279
|
+
|
|
280
|
+
declare function LogoTwitter(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
281
|
+
|
|
282
|
+
declare function Logout(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
283
|
+
|
|
284
|
+
declare function LogoXing(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
285
|
+
|
|
286
|
+
declare function LogoYoutube(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
287
|
+
|
|
288
|
+
declare function ManageProtection(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
289
|
+
|
|
290
|
+
declare function Menu(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
291
|
+
|
|
292
|
+
declare function MessageQueue(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
293
|
+
|
|
294
|
+
declare function Meter(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
295
|
+
|
|
296
|
+
declare function MeterAlt(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
297
|
+
|
|
298
|
+
declare function Misuse(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
299
|
+
|
|
300
|
+
declare function MisuseOutline(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
301
|
+
|
|
302
|
+
declare function Notification(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
303
|
+
|
|
304
|
+
declare function NotificationFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
305
|
+
|
|
306
|
+
declare function NotificationNew(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
307
|
+
|
|
308
|
+
declare function OverflowMenuHorizontal(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
309
|
+
|
|
310
|
+
declare function OverflowMenuVertical(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
311
|
+
|
|
312
|
+
declare function Password(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
313
|
+
|
|
314
|
+
declare function PedestrianFamily(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
315
|
+
|
|
316
|
+
declare function Pen(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
317
|
+
|
|
318
|
+
declare function Pending(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
319
|
+
|
|
320
|
+
declare function PendingFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
321
|
+
|
|
322
|
+
declare function Person(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
323
|
+
|
|
324
|
+
declare function Phone(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
325
|
+
|
|
326
|
+
declare function PhoneFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
327
|
+
|
|
328
|
+
declare function PhoneIp(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
329
|
+
|
|
330
|
+
declare function Pin(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
331
|
+
|
|
332
|
+
declare function Policy(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
333
|
+
|
|
334
|
+
declare function PreviousFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
335
|
+
|
|
336
|
+
declare function PreviousOutline(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
337
|
+
|
|
338
|
+
declare function Printer(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
339
|
+
|
|
340
|
+
declare function RadioButton(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
341
|
+
|
|
342
|
+
declare function RadioButtonChecked(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
343
|
+
|
|
344
|
+
declare function Reminder(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
345
|
+
|
|
346
|
+
declare function Renew(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
347
|
+
|
|
348
|
+
declare function Reset(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
349
|
+
|
|
350
|
+
declare function Restart(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
351
|
+
|
|
352
|
+
declare function Restaurant(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
353
|
+
|
|
354
|
+
declare function ResultNew(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
355
|
+
|
|
356
|
+
declare function Review(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
357
|
+
|
|
358
|
+
declare function Rocket(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
359
|
+
|
|
360
|
+
declare function Rotate360(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
361
|
+
|
|
362
|
+
declare function RuleFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
363
|
+
|
|
364
|
+
declare function Save(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
365
|
+
|
|
366
|
+
declare function Search(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
367
|
+
|
|
368
|
+
declare function SearchLocate(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
369
|
+
|
|
370
|
+
declare function Security(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
371
|
+
|
|
372
|
+
declare function Send(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
373
|
+
|
|
374
|
+
declare function SendAlt(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
375
|
+
|
|
376
|
+
declare function Settings(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
377
|
+
|
|
378
|
+
declare function SettingsAdjust(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
379
|
+
|
|
380
|
+
declare function Star(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
381
|
+
|
|
382
|
+
declare function StarFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
383
|
+
|
|
384
|
+
declare function Subtract(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
385
|
+
|
|
386
|
+
declare function SubtractFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
387
|
+
|
|
388
|
+
declare function Task(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
389
|
+
|
|
390
|
+
declare function TaskSettings(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
391
|
+
|
|
392
|
+
declare function TaskStar(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
393
|
+
|
|
394
|
+
declare function Time(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
395
|
+
|
|
396
|
+
declare function Timer(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
397
|
+
|
|
398
|
+
declare function Unlocked(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
399
|
+
|
|
400
|
+
declare function Upload(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
401
|
+
|
|
402
|
+
declare function User(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
403
|
+
|
|
404
|
+
declare function UserAdd(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
405
|
+
|
|
406
|
+
declare function UserAvatar(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
407
|
+
|
|
408
|
+
declare function UserAvatarFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
409
|
+
|
|
410
|
+
declare function UserAvatarFilledAlt(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
411
|
+
|
|
412
|
+
declare function UserMultiple(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
413
|
+
|
|
414
|
+
declare function UserProfile(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
415
|
+
|
|
416
|
+
declare function UserSettings(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
417
|
+
|
|
418
|
+
declare function View(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
419
|
+
|
|
420
|
+
declare function ViewAltOff(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
421
|
+
|
|
422
|
+
declare function ViewFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
423
|
+
|
|
424
|
+
declare function ViewOff(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
425
|
+
|
|
426
|
+
declare function ViewOffFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
427
|
+
|
|
428
|
+
declare function Warning(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
429
|
+
|
|
430
|
+
declare function WarningAlt(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
431
|
+
|
|
432
|
+
declare function WarningAltFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
433
|
+
|
|
434
|
+
declare function WarningFilled(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
435
|
+
|
|
436
|
+
declare function WorkflowAutomation(props: IconProps): react_jsx_runtime.JSX.Element;
|
|
437
|
+
|
|
438
|
+
export { Account, Add, AddAlt, AddComment, AddFilled, Alarm, AlarmAdd, AlarmSubtract, ArrowDown, ArrowDownLeft, ArrowDownRight, ArrowLeft, ArrowRight, ArrowUp, ArrowUpLeft, ArrowUpRight, Asleep, AsleepFilled, Attachment, Bookmark, BookmarkFilled, Box, Bullhorn, Calculation, CalculationAlt, Calculator, Calendar, CalendarAdd, CalendarAddAlt, Camera, CaretDown, CaretLeft, CaretRight, CaretSort, CaretSortDown, CaretSortUp, CaretUp, CharacterPatterns, Chat, ChatLaunch, Checkbox, CheckboxChecked, CheckboxCheckedFilled, CheckboxIndeterminate, CheckboxIndeterminateFilled, CheckboxUndeterminate, CheckboxUndeterminateFilled, Checkmark, CheckmarkFilled, CheckmarkOutline, CheckmarkOutlineWarning, ChevronDown, ChevronLeft, ChevronRight, ChevronSort, ChevronSortDown, ChevronSortUp, ChevronUp, Close, CloseFilled, CloseOutline, ClosedCaptionAlt, Copy, CopyFile, CopyLink, Data, Delete, Document, DocumentAdd, DocumentAttachment, DocumentBlank, DocumentDownload, DocumentEdit, DocumentExport, DocumentImport, DocumentPdf, DocumentSettings, DocumentSubtract, DocumentTasks, Download, Draggable, EarthEuropeAfricaFilled, Edit, Email, EmailNew, Enterprise, Error, ErrorFilled, ErrorOutline, Events, Filter, Finance, Flag, FlagFilled, Folder, FolderAdd, FolderMoveTo, Folders, Forum, Globe, GlobeAlt, Group, Help, HelpFilled, Home, IconBase, type IconProps, IdManagement, Idea, Identification, Industry, Information, InformationFilled, InformationSquare, InformationSquareFilled, Launch, Light, LightFilled, Link, List, ListBoxes, ListBulleted, ListChecked, Location, Locked, Login, LogoFacebook, LogoInstagram, LogoLinkedin, LogoTwitter, LogoXing, LogoYoutube, Logout, ManageProtection, Menu, MessageQueue, Meter, MeterAlt, Misuse, MisuseOutline, Notification, NotificationFilled, NotificationNew, OverflowMenuHorizontal, OverflowMenuVertical, Password, PedestrianFamily, Pen, Pending, PendingFilled, Person, Phone, PhoneFilled, PhoneIp, Pin, Policy, PreviousFilled, PreviousOutline, Printer, RadioButton, RadioButtonChecked, Reminder, Renew, Reset, Restart, Restaurant, ResultNew, Review, Rocket, Rotate360, RuleFilled, Save, Search, SearchLocate, Security, Send, SendAlt, Settings, SettingsAdjust, Star, StarFilled, Subtract, SubtractFilled, Task, TaskSettings, TaskStar, Time, Timer, Unlocked, Upload, User, UserAdd, UserAvatar, UserAvatarFilled, UserAvatarFilledAlt, UserMultiple, UserProfile, UserSettings, View, ViewAltOff, ViewFilled, ViewOff, ViewOffFilled, Warning, WarningAlt, WarningAltFilled, WarningFilled, WorkflowAutomation, iconVariants };
|
package/dist/icons.mjs
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{$,$a,$b,A,Aa,Ab,Ac,B,Ba,Bb,Bc,C,Ca,Cb,Cc,D,Da,Db,Dc,E,Ea,Eb,Ec,F,Fa,Fb,Fc,G,Ga,Gb,Gc,H,Ha,Hb,Hc,I,Ia,Ib,Ic,J,Ja,Jb,Jc,K,Ka,Kb,Kc,L,La,Lb,Lc,M,Ma,Mb,Mc,N,Na,Nb,Nc,O,Oa,Ob,Oc,P,Pa,Pb,Pc,Q,Qa,Qb,Qc,R,Ra,Rb,Rc,S,Sa,Sb,Sc,T,Ta,Tb,Tc,U,Ua,Ub,V,Va,Vb,W,Wa,Wb,X,Xa,Xb,Y,Ya,Yb,Z,Za,Zb,_,_a,_b,a,aa,ab,ac,b,ba,bb,bc,c,ca,cb,cc,d,da,db,dc,e,ea,eb,ec,f,fa,fb,fc,g,ga,gb,gc,h,ha,hb,hc,i,ia,ib,ic,j,ja,jb,jc,k,ka,kb,kc,l,la,lb,lc,m,ma,mb,mc,n,na,nb,nc,o,oa,ob,oc,p,pa,pb,pc,q,qa,qb,qc,r,ra,rb,rc,s,sa,sb,sc,t,ta,tb,tc,u,ua,ub,uc,v,va,vb,vc,w,wa,wb,wc,x,xa,xb,xc,y,ya,yb,yc,z,za,zb,zc}from"./chunk-VQPRDBZS.mjs";export{i as Account,j as Add,k as AddAlt,l as AddComment,m as AddFilled,n as Alarm,o as AlarmAdd,p as AlarmSubtract,q as ArrowDown,r as ArrowDownLeft,s as ArrowDownRight,t as ArrowLeft,u as ArrowRight,v as ArrowUp,w as ArrowUpLeft,x as ArrowUpRight,y as Asleep,z as AsleepFilled,A as Attachment,B as Bookmark,C as BookmarkFilled,D as Box,E as Bullhorn,F as Calculation,G as CalculationAlt,H as Calculator,I as Calendar,J as CalendarAdd,K as CalendarAddAlt,L as Camera,c as CaretDown,M as CaretLeft,N as CaretRight,O as CaretSort,P as CaretSortDown,Q as CaretSortUp,R as CaretUp,S as CharacterPatterns,T as Chat,U as ChatLaunch,e as Checkbox,f as CheckboxChecked,V as CheckboxCheckedFilled,W as CheckboxIndeterminate,X as CheckboxIndeterminateFilled,Y as CheckboxUndeterminate,Z as CheckboxUndeterminateFilled,d as Checkmark,_ as CheckmarkFilled,$ as CheckmarkOutline,aa as CheckmarkOutlineWarning,ba as ChevronDown,ca as ChevronLeft,da as ChevronRight,ea as ChevronSort,fa as ChevronSortDown,ga as ChevronSortUp,ha as ChevronUp,g as Close,ja as CloseFilled,ka as CloseOutline,ia as ClosedCaptionAlt,la as Copy,ma as CopyFile,na as CopyLink,oa as Data,pa as Delete,qa as Document,ra as DocumentAdd,sa as DocumentAttachment,ta as DocumentBlank,ua as DocumentDownload,va as DocumentEdit,wa as DocumentExport,xa as DocumentImport,ya as DocumentPdf,za as DocumentSettings,Aa as DocumentSubtract,Ba as DocumentTasks,Ca as Download,Da as Draggable,Ea as EarthEuropeAfricaFilled,Fa as Edit,Ga as Email,Ha as EmailNew,Ia as Enterprise,Ja as Error,Ka as ErrorFilled,La as ErrorOutline,Ma as Events,Na as Filter,Oa as Finance,Pa as Flag,Qa as FlagFilled,Ra as Folder,Sa as FolderAdd,Ta as FolderMoveTo,Ua as Folders,Va as Forum,Wa as Globe,Xa as GlobeAlt,Ya as Group,Za as Help,_a as HelpFilled,$a as Home,b as IconBase,cb as IdManagement,ab as Idea,bb as Identification,db as Industry,eb as Information,fb as InformationFilled,gb as InformationSquare,hb as InformationSquareFilled,ib as Launch,jb as Light,kb as LightFilled,lb as Link,mb as List,nb as ListBoxes,ob as ListBulleted,pb as ListChecked,qb as Location,rb as Locked,sb as Login,tb as LogoFacebook,ub as LogoInstagram,vb as LogoLinkedin,wb as LogoTwitter,yb as LogoXing,zb as LogoYoutube,xb as Logout,Ab as ManageProtection,Bb as Menu,Cb as MessageQueue,Db as Meter,Eb as MeterAlt,Fb as Misuse,Gb as MisuseOutline,Hb as Notification,Ib as NotificationFilled,Jb as NotificationNew,Kb as OverflowMenuHorizontal,Lb as OverflowMenuVertical,Mb as Password,Nb as PedestrianFamily,Ob as Pen,Pb as Pending,Qb as PendingFilled,Rb as Person,Sb as Phone,Tb as PhoneFilled,Ub as PhoneIp,Vb as Pin,Wb as Policy,Xb as PreviousFilled,Yb as PreviousOutline,Zb as Printer,_b as RadioButton,$b as RadioButtonChecked,ac as Reminder,bc as Renew,cc as Reset,dc as Restart,ec as Restaurant,fc as ResultNew,gc as Review,hc as Rocket,ic as Rotate360,jc as RuleFilled,kc as Save,lc as Search,mc as SearchLocate,nc as Security,oc as Send,pc as SendAlt,qc as Settings,rc as SettingsAdjust,sc as Star,tc as StarFilled,uc as Subtract,vc as SubtractFilled,wc as Task,xc as TaskSettings,yc as TaskStar,zc as Time,Ac as Timer,Bc as Unlocked,Cc as Upload,Dc as User,Ec as UserAdd,Fc as UserAvatar,Gc as UserAvatarFilled,Hc as UserAvatarFilledAlt,Ic as UserMultiple,Jc as UserProfile,Kc as UserSettings,Lc as View,Mc as ViewAltOff,Nc as ViewFilled,Oc as ViewOff,Pc as ViewOffFilled,h as Warning,Qc as WarningAlt,Rc as WarningAltFilled,Sc as WarningFilled,Tc as WorkflowAutomation,a as iconVariants};
|
|
2
|
+
//# sourceMappingURL=icons.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@easygov/react-components",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "React 19 component library for EasyGov — accessible UI components styled with eg-* design tokens.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "easygov",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"easygov",
|
|
10
|
+
"react",
|
|
11
|
+
"components",
|
|
12
|
+
"ui",
|
|
13
|
+
"design-system"
|
|
14
|
+
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://gitlab.adesso-group.com/229efe07/easygov20-highcode-ui-components.git",
|
|
18
|
+
"directory": "packages/react-components"
|
|
19
|
+
},
|
|
20
|
+
"sideEffects": [
|
|
21
|
+
"**/*.css"
|
|
22
|
+
],
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/easygov.d.mts",
|
|
26
|
+
"import": "./dist/easygov.mjs"
|
|
27
|
+
},
|
|
28
|
+
"./icons": {
|
|
29
|
+
"types": "./dist/icons.d.mts",
|
|
30
|
+
"import": "./dist/icons.mjs"
|
|
31
|
+
},
|
|
32
|
+
"./styles.css": "./dist/easygov.css",
|
|
33
|
+
"./fonts.css": "./dist/fonts.css",
|
|
34
|
+
"./fonts/noto-sans": "./dist/NotoSans-VariableFont.woff2",
|
|
35
|
+
"./fonts/noto-sans-italic": "./dist/NotoSans-Italic-VariableFont.woff2"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist"
|
|
39
|
+
],
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"react": "^19",
|
|
45
|
+
"react-dom": "^19"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/node": "^22.15.3",
|
|
49
|
+
"@types/react": "19.2.2",
|
|
50
|
+
"@types/react-dom": "19.2.2",
|
|
51
|
+
"eslint": "^9.39.1",
|
|
52
|
+
"react": "^19.2.0",
|
|
53
|
+
"react-dom": "^19.2.0",
|
|
54
|
+
"tsup": "^8.5.1",
|
|
55
|
+
"typescript": "5.9.2",
|
|
56
|
+
"@easygov/design-tokens": "0.0.0",
|
|
57
|
+
"@easygov/typescript-config": "0.0.0",
|
|
58
|
+
"@easygov/eslint-config": "0.0.0"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@base-ui/react": "^1.5.0",
|
|
62
|
+
"class-variance-authority": "^0.7.1"
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"lint": "eslint .",
|
|
66
|
+
"build": "tsup",
|
|
67
|
+
"check-types": "tsc --noEmit",
|
|
68
|
+
"generate:logos": "node scripts/generate-logos.mjs"
|
|
69
|
+
},
|
|
70
|
+
"main": "./dist/easygov.mjs",
|
|
71
|
+
"module": "./dist/easygov.mjs",
|
|
72
|
+
"types": "./dist/easygov.d.mts"
|
|
73
|
+
}
|