@onpe/ui 1.2.46 → 1.2.48
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/dist/icons/Actions/index.d.ts +2 -0
- package/dist/icons/ONPE/IconPersonOnpe/IconPersonOnpe.d.ts +3 -0
- package/dist/icons/ONPE/IconPersonOnpe/index.d.ts +2 -0
- package/dist/icons/ONPE/index.d.ts +1 -0
- package/dist/icons.d.ts +58 -25
- package/dist/icons.esm.js +130 -0
- package/dist/icons.js +130 -0
- package/dist/index.d.ts +7 -74
- package/dist/index.esm.js +25 -209
- package/dist/index.js +25 -209
- package/package.json +7 -19
- package/dist/cli.d.ts +0 -3
- package/dist/cli.esm.js +0 -6560
- package/dist/cli.js +0 -6560
- package/dist/commands/add.d.ts +0 -2
- package/dist/commands/createBarrelFiles.d.ts +0 -10
- package/dist/components/ErrorHandling/BrowserIncompatible/BrowserIncompatible.d.ts +0 -8
- package/dist/components/ErrorHandling/BrowserIncompatible/index.d.ts +0 -3
- package/dist/hooks/index.d.ts +0 -5
- package/dist/hooks/useDebounce.d.ts +0 -8
- package/dist/hooks/useLocalStorage.d.ts +0 -8
- package/dist/hooks/useOnpeClasses.d.ts +0 -156
- package/dist/hooks/useToggle/index.d.ts +0 -2
- package/dist/hooks/useToggle/useToggle.d.ts +0 -2
- package/dist/hooks.d.ts +0 -17
- package/dist/hooks.esm.js +0 -55
- package/dist/hooks.js +0 -55
- package/dist/icons/ONPE/ElectionsIcon/ElectionsIcon.d.ts +0 -3
- package/dist/icons/ONPE/ElectionsIcon/index.d.ts +0 -2
- package/dist/lib/api.d.ts +0 -20
- package/dist/lib/index.d.ts +0 -3
- package/dist/lib/storage.d.ts +0 -22
- package/dist/lib.d.ts +0 -43
- package/dist/lib.esm.js +0 -176
- package/dist/lib.js +0 -176
- package/dist/utils/formatDate.d.ts +0 -8
- package/dist/utils/index.d.ts +0 -3
- package/dist/utils/validateEmail.d.ts +0 -13
- package/dist/utils.d.ts +0 -16
- package/dist/utils.esm.js +0 -45
- package/dist/utils.js +0 -45
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export * from "./IconClose";
|
|
2
|
+
export * from "./IconCloseRadius";
|
|
2
3
|
export * from "./IconSpinnerDesktop";
|
|
3
4
|
export * from "./IconSpinnerMobile";
|
|
4
5
|
export * from "./IconCheck";
|
|
5
6
|
export * from "./IconWarning";
|
|
6
7
|
export * from "./IconHome";
|
|
8
|
+
export * from "./IconInfo";
|
|
7
9
|
export * from "./IconMobileNfc";
|
|
8
10
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/icons.d.ts
CHANGED
|
@@ -1,25 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { SVGProps } from 'react';
|
|
3
|
+
|
|
4
|
+
declare const IconClose: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
5
|
+
|
|
6
|
+
declare const IconCloseRadius: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
declare const IconWarning: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
9
|
+
|
|
10
|
+
declare const IconCheck: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
declare const IconSpinnerDesktop: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
13
|
+
|
|
14
|
+
declare const IconSpinnerMobile: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
|
|
16
|
+
declare const IconHome: ({ ...props }: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
17
|
+
|
|
18
|
+
declare const IconInfo: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
20
|
+
declare const IconMobileNfc: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
21
|
+
|
|
22
|
+
declare const IconChromeColor: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
23
|
+
|
|
24
|
+
declare const IconChrome: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
declare const IconSafariColor: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
27
|
+
|
|
28
|
+
declare const IconSafari: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
30
|
+
declare const IconMozillaColor: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
31
|
+
|
|
32
|
+
declare const IconMozilla: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
33
|
+
|
|
34
|
+
declare const IconEdgeColor: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
35
|
+
|
|
36
|
+
declare const IconEdge: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
37
|
+
|
|
38
|
+
declare const IconWindow: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
39
|
+
|
|
40
|
+
declare const IconAndroid: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
declare const IconApple: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
43
|
+
|
|
44
|
+
declare const IconVotoDigital: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
|
|
46
|
+
declare const IconElectionsGeneral: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
48
|
+
declare const IconDnie1: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
49
|
+
|
|
50
|
+
declare const IconDnie2: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
51
|
+
|
|
52
|
+
declare const IconDnie3: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
53
|
+
|
|
54
|
+
declare const IconNfc: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
55
|
+
|
|
56
|
+
declare const IconPersonOnpe: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
57
|
+
|
|
58
|
+
export { IconAndroid, IconApple, IconCheck, IconChrome, IconChromeColor, IconClose, IconCloseRadius, IconDnie1, IconDnie2, IconDnie3, IconEdge, IconEdgeColor, IconElectionsGeneral, IconHome, IconInfo, IconMobileNfc, IconMozilla, IconMozillaColor, IconNfc, IconPersonOnpe, IconSafari, IconSafariColor, IconSpinnerDesktop, IconSpinnerMobile, IconVotoDigital, IconWarning, IconWindow };
|