@genesislcap/foundation-login 14.461.0 → 14.461.2-GENC-1346.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/dist/dts/react.d.ts +164 -0
- package/package.json +15 -15
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AUTO-GENERATED FILE - DO NOT EDIT.
|
|
3
|
+
* Generated from custom-elements manifest.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import type React from 'react';
|
|
7
|
+
import type { BackgroundElement as BackgroundElementWC, LogoElement as LogoElementWC, MessageElement as MessageElementWC, SubmittingIndicator as SubmittingIndicatorWC } from './routes/base';
|
|
8
|
+
import type { ForgotPassword as ForgotPasswordWC } from './routes/forgot-password/forgot-password';
|
|
9
|
+
import type { LoginForm as LoginFormWC } from './routes/login-form/login-form';
|
|
10
|
+
import type { Logout as LogoutWC } from './routes/logout/logout';
|
|
11
|
+
import type { MFAMailSent as MFAMailSentWC } from './routes/mfa-mail-sent/mfa-mail-sent';
|
|
12
|
+
import type { NotFound as NotFoundWC } from './routes/not-found/not-found';
|
|
13
|
+
import type { Protected as ProtectedWC } from './routes/protected/protected';
|
|
14
|
+
import type { RequestAccount as RequestAccountWC } from './routes/request-account/request-account';
|
|
15
|
+
import type { ResetPassword as ResetPasswordWC } from './routes/reset-password/reset-password';
|
|
16
|
+
import type { Verify as VerifyWC } from './routes/verify/verify';
|
|
17
|
+
|
|
18
|
+
/** @internal Maps a web component class to its public props only.
|
|
19
|
+
* keyof T skips private/protected members, so this avoids the TS error
|
|
20
|
+
* "property may not be private or protected" on exported anonymous types. */
|
|
21
|
+
type PublicOf<T> = { [K in keyof T]?: T[K] };
|
|
22
|
+
|
|
23
|
+
/** @internal Safe React HTML attributes for web component wrappers.
|
|
24
|
+
* onChange/onInput use method signatures for bivariant parameter checking so both
|
|
25
|
+
* native Event and CustomEvent callbacks are accepted. */
|
|
26
|
+
interface HTMLWCProps extends React.AriaAttributes {
|
|
27
|
+
className?: string; style?: React.CSSProperties; id?: string; slot?: string;
|
|
28
|
+
tabIndex?: number; dir?: string; lang?: string; title?: string;
|
|
29
|
+
onClick?: React.MouseEventHandler<HTMLElement>;
|
|
30
|
+
onDoubleClick?: React.MouseEventHandler<HTMLElement>;
|
|
31
|
+
onContextMenu?: React.MouseEventHandler<HTMLElement>;
|
|
32
|
+
onMouseEnter?: React.MouseEventHandler<HTMLElement>;
|
|
33
|
+
onMouseLeave?: React.MouseEventHandler<HTMLElement>;
|
|
34
|
+
onMouseDown?: React.MouseEventHandler<HTMLElement>;
|
|
35
|
+
onMouseUp?: React.MouseEventHandler<HTMLElement>;
|
|
36
|
+
onMouseMove?: React.MouseEventHandler<HTMLElement>;
|
|
37
|
+
onKeyDown?: React.KeyboardEventHandler<HTMLElement>;
|
|
38
|
+
onKeyUp?: React.KeyboardEventHandler<HTMLElement>;
|
|
39
|
+
onFocus?: React.FocusEventHandler<HTMLElement>;
|
|
40
|
+
onBlur?: React.FocusEventHandler<HTMLElement>;
|
|
41
|
+
onScroll?: React.UIEventHandler<HTMLElement>;
|
|
42
|
+
onWheel?: React.WheelEventHandler<HTMLElement>;
|
|
43
|
+
onChange?(e: Event): void;
|
|
44
|
+
onInput?(e: Event): void;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export declare const BackgroundElement: React.ForwardRefExoticComponent<
|
|
48
|
+
React.PropsWithChildren<
|
|
49
|
+
Omit<PublicOf<BackgroundElementWC>, 'children' | 'style'> &
|
|
50
|
+
HTMLWCProps & {
|
|
51
|
+
}
|
|
52
|
+
> & React.RefAttributes<BackgroundElementWC>
|
|
53
|
+
>;
|
|
54
|
+
export type BackgroundElementRef = BackgroundElementWC;
|
|
55
|
+
|
|
56
|
+
export declare const LogoElement: React.ForwardRefExoticComponent<
|
|
57
|
+
React.PropsWithChildren<
|
|
58
|
+
Omit<PublicOf<LogoElementWC>, 'children' | 'style'> &
|
|
59
|
+
HTMLWCProps & {
|
|
60
|
+
}
|
|
61
|
+
> & React.RefAttributes<LogoElementWC>
|
|
62
|
+
>;
|
|
63
|
+
export type LogoElementRef = LogoElementWC;
|
|
64
|
+
|
|
65
|
+
export declare const MessageElement: React.ForwardRefExoticComponent<
|
|
66
|
+
React.PropsWithChildren<
|
|
67
|
+
Omit<PublicOf<MessageElementWC>, 'children' | 'style'> &
|
|
68
|
+
HTMLWCProps & {
|
|
69
|
+
}
|
|
70
|
+
> & React.RefAttributes<MessageElementWC>
|
|
71
|
+
>;
|
|
72
|
+
export type MessageElementRef = MessageElementWC;
|
|
73
|
+
|
|
74
|
+
export declare const SubmittingIndicator: React.ForwardRefExoticComponent<
|
|
75
|
+
React.PropsWithChildren<
|
|
76
|
+
Omit<PublicOf<SubmittingIndicatorWC>, 'children' | 'style'> &
|
|
77
|
+
HTMLWCProps & {
|
|
78
|
+
}
|
|
79
|
+
> & React.RefAttributes<SubmittingIndicatorWC>
|
|
80
|
+
>;
|
|
81
|
+
export type SubmittingIndicatorRef = SubmittingIndicatorWC;
|
|
82
|
+
|
|
83
|
+
export declare const ForgotPassword: React.ForwardRefExoticComponent<
|
|
84
|
+
React.PropsWithChildren<
|
|
85
|
+
Omit<PublicOf<ForgotPasswordWC>, 'children' | 'style'> &
|
|
86
|
+
HTMLWCProps & {
|
|
87
|
+
}
|
|
88
|
+
> & React.RefAttributes<ForgotPasswordWC>
|
|
89
|
+
>;
|
|
90
|
+
export type ForgotPasswordRef = ForgotPasswordWC;
|
|
91
|
+
|
|
92
|
+
export declare const LoginForm: React.ForwardRefExoticComponent<
|
|
93
|
+
React.PropsWithChildren<
|
|
94
|
+
Omit<PublicOf<LoginFormWC>, 'children' | 'style'> &
|
|
95
|
+
HTMLWCProps & {
|
|
96
|
+
}
|
|
97
|
+
> & React.RefAttributes<LoginFormWC>
|
|
98
|
+
>;
|
|
99
|
+
export type LoginFormRef = LoginFormWC;
|
|
100
|
+
|
|
101
|
+
export declare const Logout: React.ForwardRefExoticComponent<
|
|
102
|
+
React.PropsWithChildren<
|
|
103
|
+
Omit<PublicOf<LogoutWC>, 'children' | 'style'> &
|
|
104
|
+
HTMLWCProps & {
|
|
105
|
+
}
|
|
106
|
+
> & React.RefAttributes<LogoutWC>
|
|
107
|
+
>;
|
|
108
|
+
export type LogoutRef = LogoutWC;
|
|
109
|
+
|
|
110
|
+
export declare const MFAMailSent: React.ForwardRefExoticComponent<
|
|
111
|
+
React.PropsWithChildren<
|
|
112
|
+
Omit<PublicOf<MFAMailSentWC>, 'children' | 'style'> &
|
|
113
|
+
HTMLWCProps & {
|
|
114
|
+
}
|
|
115
|
+
> & React.RefAttributes<MFAMailSentWC>
|
|
116
|
+
>;
|
|
117
|
+
export type MFAMailSentRef = MFAMailSentWC;
|
|
118
|
+
|
|
119
|
+
export declare const NotFound: React.ForwardRefExoticComponent<
|
|
120
|
+
React.PropsWithChildren<
|
|
121
|
+
Omit<PublicOf<NotFoundWC>, 'children' | 'style'> &
|
|
122
|
+
HTMLWCProps & {
|
|
123
|
+
}
|
|
124
|
+
> & React.RefAttributes<NotFoundWC>
|
|
125
|
+
>;
|
|
126
|
+
export type NotFoundRef = NotFoundWC;
|
|
127
|
+
|
|
128
|
+
export declare const Protected: React.ForwardRefExoticComponent<
|
|
129
|
+
React.PropsWithChildren<
|
|
130
|
+
Omit<PublicOf<ProtectedWC>, 'children' | 'style'> &
|
|
131
|
+
HTMLWCProps & {
|
|
132
|
+
}
|
|
133
|
+
> & React.RefAttributes<ProtectedWC>
|
|
134
|
+
>;
|
|
135
|
+
export type ProtectedRef = ProtectedWC;
|
|
136
|
+
|
|
137
|
+
export declare const RequestAccount: React.ForwardRefExoticComponent<
|
|
138
|
+
React.PropsWithChildren<
|
|
139
|
+
Omit<PublicOf<RequestAccountWC>, 'children' | 'style'> &
|
|
140
|
+
HTMLWCProps & {
|
|
141
|
+
}
|
|
142
|
+
> & React.RefAttributes<RequestAccountWC>
|
|
143
|
+
>;
|
|
144
|
+
export type RequestAccountRef = RequestAccountWC;
|
|
145
|
+
|
|
146
|
+
export declare const ResetPassword: React.ForwardRefExoticComponent<
|
|
147
|
+
React.PropsWithChildren<
|
|
148
|
+
Omit<PublicOf<ResetPasswordWC>, 'children' | 'style'> &
|
|
149
|
+
HTMLWCProps & {
|
|
150
|
+
}
|
|
151
|
+
> & React.RefAttributes<ResetPasswordWC>
|
|
152
|
+
>;
|
|
153
|
+
export type ResetPasswordRef = ResetPasswordWC;
|
|
154
|
+
|
|
155
|
+
export declare const Verify: React.ForwardRefExoticComponent<
|
|
156
|
+
React.PropsWithChildren<
|
|
157
|
+
Omit<PublicOf<VerifyWC>, 'children' | 'style'> &
|
|
158
|
+
HTMLWCProps & {
|
|
159
|
+
}
|
|
160
|
+
> & React.RefAttributes<VerifyWC>
|
|
161
|
+
>;
|
|
162
|
+
export type VerifyRef = VerifyWC;
|
|
163
|
+
|
|
164
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-login",
|
|
3
3
|
"description": "Genesis Foundation Login",
|
|
4
|
-
"version": "14.461.
|
|
4
|
+
"version": "14.461.2-GENC-1346.1",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-login.d.ts",
|
|
@@ -74,21 +74,21 @@
|
|
|
74
74
|
}
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@genesislcap/foundation-testing": "14.461.
|
|
78
|
-
"@genesislcap/genx": "14.461.
|
|
79
|
-
"@genesislcap/rollup-builder": "14.461.
|
|
80
|
-
"@genesislcap/ts-builder": "14.461.
|
|
81
|
-
"@genesislcap/uvu-playwright-builder": "14.461.
|
|
82
|
-
"@genesislcap/vite-builder": "14.461.
|
|
83
|
-
"@genesislcap/webpack-builder": "14.461.
|
|
77
|
+
"@genesislcap/foundation-testing": "14.461.2-GENC-1346.1",
|
|
78
|
+
"@genesislcap/genx": "14.461.2-GENC-1346.1",
|
|
79
|
+
"@genesislcap/rollup-builder": "14.461.2-GENC-1346.1",
|
|
80
|
+
"@genesislcap/ts-builder": "14.461.2-GENC-1346.1",
|
|
81
|
+
"@genesislcap/uvu-playwright-builder": "14.461.2-GENC-1346.1",
|
|
82
|
+
"@genesislcap/vite-builder": "14.461.2-GENC-1346.1",
|
|
83
|
+
"@genesislcap/webpack-builder": "14.461.2-GENC-1346.1"
|
|
84
84
|
},
|
|
85
85
|
"dependencies": {
|
|
86
|
-
"@genesislcap/foundation-comms": "14.461.
|
|
87
|
-
"@genesislcap/foundation-i18n": "14.461.
|
|
88
|
-
"@genesislcap/foundation-logger": "14.461.
|
|
89
|
-
"@genesislcap/foundation-ui": "14.461.
|
|
90
|
-
"@genesislcap/foundation-utils": "14.461.
|
|
91
|
-
"@genesislcap/foundation-zero": "14.461.
|
|
86
|
+
"@genesislcap/foundation-comms": "14.461.2-GENC-1346.1",
|
|
87
|
+
"@genesislcap/foundation-i18n": "14.461.2-GENC-1346.1",
|
|
88
|
+
"@genesislcap/foundation-logger": "14.461.2-GENC-1346.1",
|
|
89
|
+
"@genesislcap/foundation-ui": "14.461.2-GENC-1346.1",
|
|
90
|
+
"@genesislcap/foundation-utils": "14.461.2-GENC-1346.1",
|
|
91
|
+
"@genesislcap/foundation-zero": "14.461.2-GENC-1346.1",
|
|
92
92
|
"@microsoft/fast-components": "2.30.6",
|
|
93
93
|
"@microsoft/fast-element": "1.14.0",
|
|
94
94
|
"@microsoft/fast-foundation": "2.50.0",
|
|
@@ -105,5 +105,5 @@
|
|
|
105
105
|
"access": "public"
|
|
106
106
|
},
|
|
107
107
|
"customElements": "dist/custom-elements.json",
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "0729266a735c8d8d74192119552f0774c6038436"
|
|
109
109
|
}
|