@forgerock/login-widget 1.2.0-beta.7 → 1.2.0-beta.9
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/CHANGELOG.md +14 -0
- package/index.cjs +6967 -1439
- package/index.cjs.map +1 -1
- package/index.d.ts +71 -5
- package/index.js +6967 -1439
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +71 -5
- package/widget.css +58 -9
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -169,10 +169,20 @@ declare class FRCallback {
|
|
|
169
169
|
|
|
170
170
|
type FRCallbackFactory = (callback: Callback) => FRCallback;
|
|
171
171
|
|
|
172
|
+
type LogLevel = 'none' | 'info' | 'warn' | 'error' | 'debug';
|
|
172
173
|
interface Action {
|
|
173
174
|
type: ActionTypes;
|
|
174
175
|
payload: any;
|
|
175
176
|
}
|
|
177
|
+
/**
|
|
178
|
+
* Custom Logger for logger
|
|
179
|
+
*/
|
|
180
|
+
interface LoggerFunctions<W = (...msgs: unknown[]) => void, E = (...msgs: unknown[]) => void, L = (...msgs: unknown[]) => void, I = (...msgs: unknown[]) => void> {
|
|
181
|
+
warn?: W;
|
|
182
|
+
error?: E;
|
|
183
|
+
log?: L;
|
|
184
|
+
info?: I;
|
|
185
|
+
}
|
|
176
186
|
/**
|
|
177
187
|
* Configuration options.
|
|
178
188
|
*/
|
|
@@ -188,6 +198,8 @@ interface ConfigOptions$1 {
|
|
|
188
198
|
tree?: string;
|
|
189
199
|
type?: string;
|
|
190
200
|
oauthThreshold?: number;
|
|
201
|
+
logLevel?: LogLevel;
|
|
202
|
+
logger?: LoggerFunctions;
|
|
191
203
|
}
|
|
192
204
|
/**
|
|
193
205
|
* Optional configuration for custom paths for actions
|
|
@@ -639,6 +651,7 @@ interface StepMetadata {
|
|
|
639
651
|
numOfCallbacks: number;
|
|
640
652
|
numOfSelfSubmittableCbs: number;
|
|
641
653
|
numOfUserInputCbs: number;
|
|
654
|
+
stageName?: string;
|
|
642
655
|
};
|
|
643
656
|
platform?: Record<string, unknown>;
|
|
644
657
|
}
|
|
@@ -1020,6 +1033,7 @@ declare abstract class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef
|
|
|
1020
1033
|
safeParse(data: unknown, params?: Partial<ParseParams>): SafeParseReturnType<Input, Output>;
|
|
1021
1034
|
parseAsync(data: unknown, params?: Partial<ParseParams>): Promise<Output>;
|
|
1022
1035
|
safeParseAsync(data: unknown, params?: Partial<ParseParams>): Promise<SafeParseReturnType<Input, Output>>;
|
|
1036
|
+
/** Alias of safeParseAsync */
|
|
1023
1037
|
spa: (data: unknown, params?: Partial<ParseParams> | undefined) => Promise<SafeParseReturnType<Input, Output>>;
|
|
1024
1038
|
refine<RefinedOutput extends Output>(check: (arg: Output) => arg is RefinedOutput, message?: string | CustomErrorParams | ((arg: Output) => CustomErrorParams)): ZodEffects<this, RefinedOutput, Input>;
|
|
1025
1039
|
refine(check: (arg: Output) => unknown | Promise<unknown>, message?: string | CustomErrorParams | ((arg: Output) => CustomErrorParams)): ZodEffects<this, Output, Input>;
|
|
@@ -1129,7 +1143,7 @@ interface ZodStringDef extends ZodTypeDef {
|
|
|
1129
1143
|
}
|
|
1130
1144
|
declare class ZodString extends ZodType<string, ZodStringDef> {
|
|
1131
1145
|
_parse(input: ParseInput): ParseReturnType<string>;
|
|
1132
|
-
protected _regex
|
|
1146
|
+
protected _regex(regex: RegExp, validation: StringValidation, message?: errorUtil.ErrMessage): ZodEffects<this, string, string>;
|
|
1133
1147
|
_addCheck(check: ZodStringCheck): ZodString;
|
|
1134
1148
|
email(message?: errorUtil.ErrMessage): ZodString;
|
|
1135
1149
|
url(message?: errorUtil.ErrMessage): ZodString;
|
|
@@ -1157,10 +1171,14 @@ declare class ZodString extends ZodType<string, ZodStringDef> {
|
|
|
1157
1171
|
min(minLength: number, message?: errorUtil.ErrMessage): ZodString;
|
|
1158
1172
|
max(maxLength: number, message?: errorUtil.ErrMessage): ZodString;
|
|
1159
1173
|
length(len: number, message?: errorUtil.ErrMessage): ZodString;
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1174
|
+
/**
|
|
1175
|
+
* @deprecated Use z.string().min(1) instead.
|
|
1176
|
+
* @see {@link ZodString.min}
|
|
1177
|
+
*/
|
|
1178
|
+
nonempty(message?: errorUtil.ErrMessage): ZodString;
|
|
1179
|
+
trim(): ZodString;
|
|
1180
|
+
toLowerCase(): ZodString;
|
|
1181
|
+
toUpperCase(): ZodString;
|
|
1164
1182
|
get isDatetime(): boolean;
|
|
1165
1183
|
get isEmail(): boolean;
|
|
1166
1184
|
get isURL(): boolean;
|
|
@@ -1332,9 +1350,21 @@ declare class ZodObject<T extends ZodRawShape, UnknownKeys extends UnknownKeysPa
|
|
|
1332
1350
|
strict(message?: errorUtil.ErrMessage): ZodObject<T, "strict", Catchall>;
|
|
1333
1351
|
strip(): ZodObject<T, "strip", Catchall>;
|
|
1334
1352
|
passthrough(): ZodObject<T, "passthrough", Catchall>;
|
|
1353
|
+
/**
|
|
1354
|
+
* @deprecated In most cases, this is no longer needed - unknown properties are now silently stripped.
|
|
1355
|
+
* If you want to pass through unknown properties, use `.passthrough()` instead.
|
|
1356
|
+
*/
|
|
1335
1357
|
nonstrict: () => ZodObject<T, "passthrough", Catchall>;
|
|
1336
1358
|
extend<Augmentation extends ZodRawShape>(augmentation: Augmentation): ZodObject<objectUtil.extendShape<T, Augmentation>, UnknownKeys, Catchall>;
|
|
1359
|
+
/**
|
|
1360
|
+
* @deprecated Use `.extend` instead
|
|
1361
|
+
* */
|
|
1337
1362
|
augment: <Augmentation extends ZodRawShape>(augmentation: Augmentation) => ZodObject<{ [k in keyof (Omit<T, keyof Augmentation> & Augmentation)]: (Omit<T, keyof Augmentation> & Augmentation)[k]; }, UnknownKeys, Catchall, objectOutputType<{ [k in keyof (Omit<T, keyof Augmentation> & Augmentation)]: (Omit<T, keyof Augmentation> & Augmentation)[k]; }, Catchall, UnknownKeys>, objectInputType<{ [k in keyof (Omit<T, keyof Augmentation> & Augmentation)]: (Omit<T, keyof Augmentation> & Augmentation)[k]; }, Catchall, UnknownKeys>>;
|
|
1363
|
+
/**
|
|
1364
|
+
* Prior to zod@1.0.12 there was a bug in the
|
|
1365
|
+
* inferred type of merged objects. Please
|
|
1366
|
+
* upgrade if you are experiencing issues.
|
|
1367
|
+
*/
|
|
1338
1368
|
merge<Incoming extends AnyZodObject, Augmentation extends Incoming["shape"]>(merging: Incoming): ZodObject<objectUtil.extendShape<T, Augmentation>, Incoming["_def"]["unknownKeys"], Incoming["_def"]["catchall"]>;
|
|
1339
1369
|
setKey<Key extends string, Schema extends ZodTypeAny>(key: Key, schema: Schema): ZodObject<T & {
|
|
1340
1370
|
[k in Key]: Schema;
|
|
@@ -1346,6 +1376,9 @@ declare class ZodObject<T extends ZodRawShape, UnknownKeys extends UnknownKeysPa
|
|
|
1346
1376
|
omit<Mask extends {
|
|
1347
1377
|
[k in keyof T]?: true;
|
|
1348
1378
|
}>(mask: Mask): ZodObject<Omit<T, keyof Mask>, UnknownKeys, Catchall>;
|
|
1379
|
+
/**
|
|
1380
|
+
* @deprecated
|
|
1381
|
+
*/
|
|
1349
1382
|
deepPartial(): partialUtil.DeepPartial<this>;
|
|
1350
1383
|
partial(): ZodObject<{
|
|
1351
1384
|
[k in keyof T]: ZodOptional<T[k]>;
|
|
@@ -1981,12 +2014,15 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
1981
2014
|
closeModal: ZodOptional<ZodString>;
|
|
1982
2015
|
charactersCannotRepeatMoreThan: ZodOptional<ZodString>;
|
|
1983
2016
|
charactersCannotRepeatMoreThanCaseInsensitive: ZodOptional<ZodString>;
|
|
2017
|
+
checkYourEmail: ZodOptional<ZodString>;
|
|
1984
2018
|
chooseDifferentUsername: ZodOptional<ZodString>;
|
|
1985
2019
|
chooseYourDeviceForIdentityVerification: ZodOptional<ZodString>;
|
|
1986
2020
|
confirmPassword: ZodOptional<ZodString>;
|
|
1987
2021
|
constraintViolationForPassword: ZodOptional<ZodString>;
|
|
1988
2022
|
constraintViolationForValue: ZodOptional<ZodString>;
|
|
1989
2023
|
continueWith: ZodOptional<ZodString>;
|
|
2024
|
+
copyUrl: ZodOptional<ZodString>;
|
|
2025
|
+
copyAndPasteUrlBelow: ZodOptional<ZodString>;
|
|
1990
2026
|
customSecurityQuestion: ZodOptional<ZodString>;
|
|
1991
2027
|
dontGetLockedOut: ZodOptional<ZodString>;
|
|
1992
2028
|
doesNotMeetMinimumCharacterLength: ZodOptional<ZodString>;
|
|
@@ -2011,9 +2047,11 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2011
2047
|
minimumNumberOfUppercase: ZodOptional<ZodString>;
|
|
2012
2048
|
minimumNumberOfSymbols: ZodOptional<ZodString>;
|
|
2013
2049
|
nameCallback: ZodOptional<ZodString>;
|
|
2050
|
+
next: ZodOptional<ZodString>;
|
|
2014
2051
|
nextButton: ZodOptional<ZodString>;
|
|
2015
2052
|
notToExceedMaximumCharacterLength: ZodOptional<ZodString>;
|
|
2016
2053
|
noLessThanMinimumCharacterLength: ZodOptional<ZodString>;
|
|
2054
|
+
onMobileOpenInAuthenticator: ZodOptional<ZodString>;
|
|
2017
2055
|
passwordCallback: ZodOptional<ZodString>;
|
|
2018
2056
|
passwordCannotContainCommonPasswords: ZodOptional<ZodString>;
|
|
2019
2057
|
passwordCannotContainCommonPasswordsOrBeReversible: ZodOptional<ZodString>;
|
|
@@ -2024,6 +2062,9 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2024
2062
|
preferencesMarketing: ZodOptional<ZodString>;
|
|
2025
2063
|
preferencesUpdates: ZodOptional<ZodString>;
|
|
2026
2064
|
provideCustomQuestion: ZodOptional<ZodString>;
|
|
2065
|
+
qrCodeNotWorking: ZodOptional<ZodString>;
|
|
2066
|
+
qrCodeFailedToRender: ZodOptional<ZodString>;
|
|
2067
|
+
qrCodeImportFailure: ZodOptional<ZodString>;
|
|
2027
2068
|
redirectingTo: ZodOptional<ZodString>;
|
|
2028
2069
|
registerButton: ZodOptional<ZodString>;
|
|
2029
2070
|
registerHeader: ZodOptional<ZodString>;
|
|
@@ -2031,6 +2072,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2031
2072
|
registerYourDevice: ZodOptional<ZodString>;
|
|
2032
2073
|
requiredField: ZodOptional<ZodString>;
|
|
2033
2074
|
securityAnswer: ZodOptional<ZodString>;
|
|
2075
|
+
scanQrCodeWithAuthenticator: ZodOptional<ZodString>;
|
|
2034
2076
|
securityQuestions: ZodOptional<ZodString>;
|
|
2035
2077
|
securityQuestionsPrompt: ZodOptional<ZodString>;
|
|
2036
2078
|
shouldContainANumber: ZodOptional<ZodString>;
|
|
@@ -2039,6 +2081,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2039
2081
|
shouldContainASymbol: ZodOptional<ZodString>;
|
|
2040
2082
|
showPassword: ZodOptional<ZodString>;
|
|
2041
2083
|
sn: ZodOptional<ZodString>;
|
|
2084
|
+
submit: ZodOptional<ZodString>;
|
|
2042
2085
|
submitButton: ZodOptional<ZodString>;
|
|
2043
2086
|
successMessage: ZodOptional<ZodString>;
|
|
2044
2087
|
termsAndConditions: ZodOptional<ZodString>;
|
|
@@ -2050,6 +2093,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2050
2093
|
unrecoverableError: ZodOptional<ZodString>;
|
|
2051
2094
|
unknownLoginError: ZodOptional<ZodString>;
|
|
2052
2095
|
unknownNetworkError: ZodOptional<ZodString>;
|
|
2096
|
+
url: ZodOptional<ZodString>;
|
|
2053
2097
|
useDeviceForIdentityVerification: ZodOptional<ZodString>;
|
|
2054
2098
|
userName: ZodOptional<ZodString>;
|
|
2055
2099
|
usernameRequirements: ZodOptional<ZodString>;
|
|
@@ -2068,12 +2112,15 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2068
2112
|
closeModal?: string | undefined;
|
|
2069
2113
|
charactersCannotRepeatMoreThan?: string | undefined;
|
|
2070
2114
|
charactersCannotRepeatMoreThanCaseInsensitive?: string | undefined;
|
|
2115
|
+
checkYourEmail?: string | undefined;
|
|
2071
2116
|
chooseDifferentUsername?: string | undefined;
|
|
2072
2117
|
chooseYourDeviceForIdentityVerification?: string | undefined;
|
|
2073
2118
|
confirmPassword?: string | undefined;
|
|
2074
2119
|
constraintViolationForPassword?: string | undefined;
|
|
2075
2120
|
constraintViolationForValue?: string | undefined;
|
|
2076
2121
|
continueWith?: string | undefined;
|
|
2122
|
+
copyUrl?: string | undefined;
|
|
2123
|
+
copyAndPasteUrlBelow?: string | undefined;
|
|
2077
2124
|
customSecurityQuestion?: string | undefined;
|
|
2078
2125
|
dontGetLockedOut?: string | undefined;
|
|
2079
2126
|
doesNotMeetMinimumCharacterLength?: string | undefined;
|
|
@@ -2098,9 +2145,11 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2098
2145
|
minimumNumberOfUppercase?: string | undefined;
|
|
2099
2146
|
minimumNumberOfSymbols?: string | undefined;
|
|
2100
2147
|
nameCallback?: string | undefined;
|
|
2148
|
+
next?: string | undefined;
|
|
2101
2149
|
nextButton?: string | undefined;
|
|
2102
2150
|
notToExceedMaximumCharacterLength?: string | undefined;
|
|
2103
2151
|
noLessThanMinimumCharacterLength?: string | undefined;
|
|
2152
|
+
onMobileOpenInAuthenticator?: string | undefined;
|
|
2104
2153
|
passwordCallback?: string | undefined;
|
|
2105
2154
|
passwordCannotContainCommonPasswords?: string | undefined;
|
|
2106
2155
|
passwordCannotContainCommonPasswordsOrBeReversible?: string | undefined;
|
|
@@ -2111,6 +2160,9 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2111
2160
|
preferencesMarketing?: string | undefined;
|
|
2112
2161
|
preferencesUpdates?: string | undefined;
|
|
2113
2162
|
provideCustomQuestion?: string | undefined;
|
|
2163
|
+
qrCodeNotWorking?: string | undefined;
|
|
2164
|
+
qrCodeFailedToRender?: string | undefined;
|
|
2165
|
+
qrCodeImportFailure?: string | undefined;
|
|
2114
2166
|
redirectingTo?: string | undefined;
|
|
2115
2167
|
registerButton?: string | undefined;
|
|
2116
2168
|
registerHeader?: string | undefined;
|
|
@@ -2118,6 +2170,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2118
2170
|
registerYourDevice?: string | undefined;
|
|
2119
2171
|
requiredField?: string | undefined;
|
|
2120
2172
|
securityAnswer?: string | undefined;
|
|
2173
|
+
scanQrCodeWithAuthenticator?: string | undefined;
|
|
2121
2174
|
securityQuestions?: string | undefined;
|
|
2122
2175
|
securityQuestionsPrompt?: string | undefined;
|
|
2123
2176
|
shouldContainANumber?: string | undefined;
|
|
@@ -2126,6 +2179,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2126
2179
|
shouldContainASymbol?: string | undefined;
|
|
2127
2180
|
showPassword?: string | undefined;
|
|
2128
2181
|
sn?: string | undefined;
|
|
2182
|
+
submit?: string | undefined;
|
|
2129
2183
|
submitButton?: string | undefined;
|
|
2130
2184
|
successMessage?: string | undefined;
|
|
2131
2185
|
termsAndConditions?: string | undefined;
|
|
@@ -2137,6 +2191,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2137
2191
|
unrecoverableError?: string | undefined;
|
|
2138
2192
|
unknownLoginError?: string | undefined;
|
|
2139
2193
|
unknownNetworkError?: string | undefined;
|
|
2194
|
+
url?: string | undefined;
|
|
2140
2195
|
useDeviceForIdentityVerification?: string | undefined;
|
|
2141
2196
|
userName?: string | undefined;
|
|
2142
2197
|
usernameRequirements?: string | undefined;
|
|
@@ -2155,12 +2210,15 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2155
2210
|
closeModal?: string | undefined;
|
|
2156
2211
|
charactersCannotRepeatMoreThan?: string | undefined;
|
|
2157
2212
|
charactersCannotRepeatMoreThanCaseInsensitive?: string | undefined;
|
|
2213
|
+
checkYourEmail?: string | undefined;
|
|
2158
2214
|
chooseDifferentUsername?: string | undefined;
|
|
2159
2215
|
chooseYourDeviceForIdentityVerification?: string | undefined;
|
|
2160
2216
|
confirmPassword?: string | undefined;
|
|
2161
2217
|
constraintViolationForPassword?: string | undefined;
|
|
2162
2218
|
constraintViolationForValue?: string | undefined;
|
|
2163
2219
|
continueWith?: string | undefined;
|
|
2220
|
+
copyUrl?: string | undefined;
|
|
2221
|
+
copyAndPasteUrlBelow?: string | undefined;
|
|
2164
2222
|
customSecurityQuestion?: string | undefined;
|
|
2165
2223
|
dontGetLockedOut?: string | undefined;
|
|
2166
2224
|
doesNotMeetMinimumCharacterLength?: string | undefined;
|
|
@@ -2185,9 +2243,11 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2185
2243
|
minimumNumberOfUppercase?: string | undefined;
|
|
2186
2244
|
minimumNumberOfSymbols?: string | undefined;
|
|
2187
2245
|
nameCallback?: string | undefined;
|
|
2246
|
+
next?: string | undefined;
|
|
2188
2247
|
nextButton?: string | undefined;
|
|
2189
2248
|
notToExceedMaximumCharacterLength?: string | undefined;
|
|
2190
2249
|
noLessThanMinimumCharacterLength?: string | undefined;
|
|
2250
|
+
onMobileOpenInAuthenticator?: string | undefined;
|
|
2191
2251
|
passwordCallback?: string | undefined;
|
|
2192
2252
|
passwordCannotContainCommonPasswords?: string | undefined;
|
|
2193
2253
|
passwordCannotContainCommonPasswordsOrBeReversible?: string | undefined;
|
|
@@ -2198,6 +2258,9 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2198
2258
|
preferencesMarketing?: string | undefined;
|
|
2199
2259
|
preferencesUpdates?: string | undefined;
|
|
2200
2260
|
provideCustomQuestion?: string | undefined;
|
|
2261
|
+
qrCodeNotWorking?: string | undefined;
|
|
2262
|
+
qrCodeFailedToRender?: string | undefined;
|
|
2263
|
+
qrCodeImportFailure?: string | undefined;
|
|
2201
2264
|
redirectingTo?: string | undefined;
|
|
2202
2265
|
registerButton?: string | undefined;
|
|
2203
2266
|
registerHeader?: string | undefined;
|
|
@@ -2205,6 +2268,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2205
2268
|
registerYourDevice?: string | undefined;
|
|
2206
2269
|
requiredField?: string | undefined;
|
|
2207
2270
|
securityAnswer?: string | undefined;
|
|
2271
|
+
scanQrCodeWithAuthenticator?: string | undefined;
|
|
2208
2272
|
securityQuestions?: string | undefined;
|
|
2209
2273
|
securityQuestionsPrompt?: string | undefined;
|
|
2210
2274
|
shouldContainANumber?: string | undefined;
|
|
@@ -2213,6 +2277,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2213
2277
|
shouldContainASymbol?: string | undefined;
|
|
2214
2278
|
showPassword?: string | undefined;
|
|
2215
2279
|
sn?: string | undefined;
|
|
2280
|
+
submit?: string | undefined;
|
|
2216
2281
|
submitButton?: string | undefined;
|
|
2217
2282
|
successMessage?: string | undefined;
|
|
2218
2283
|
termsAndConditions?: string | undefined;
|
|
@@ -2224,6 +2289,7 @@ declare const partialStringsSchema: ZodObject<{
|
|
|
2224
2289
|
unrecoverableError?: string | undefined;
|
|
2225
2290
|
unknownLoginError?: string | undefined;
|
|
2226
2291
|
unknownNetworkError?: string | undefined;
|
|
2292
|
+
url?: string | undefined;
|
|
2227
2293
|
useDeviceForIdentityVerification?: string | undefined;
|
|
2228
2294
|
userName?: string | undefined;
|
|
2229
2295
|
usernameRequirements?: string | undefined;
|
package/widget.css
CHANGED
|
@@ -413,15 +413,24 @@ position: relative;
|
|
|
413
413
|
.tw_left-0 {
|
|
414
414
|
left: 0px;
|
|
415
415
|
}
|
|
416
|
+
.tw_right-1 {
|
|
417
|
+
right: 0.25rem;
|
|
418
|
+
}
|
|
416
419
|
.tw_top-0 {
|
|
417
420
|
top: 0px;
|
|
418
421
|
}
|
|
422
|
+
.tw_top-1 {
|
|
423
|
+
top: 0.25rem;
|
|
424
|
+
}
|
|
419
425
|
.tw_col-start-2 {
|
|
420
426
|
grid-column-start: 2;
|
|
421
427
|
}
|
|
422
428
|
.tw_row-start-2 {
|
|
423
429
|
grid-row-start: 2;
|
|
424
430
|
}
|
|
431
|
+
.tw_m-auto {
|
|
432
|
+
margin: auto;
|
|
433
|
+
}
|
|
425
434
|
.tw_my-4 {
|
|
426
435
|
margin-top: 1rem;
|
|
427
436
|
margin-bottom: 1rem;
|
|
@@ -541,15 +550,6 @@ list-style-type: disc;
|
|
|
541
550
|
.tw_grid-cols-1 {
|
|
542
551
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
543
552
|
}
|
|
544
|
-
.tw_grid-cols-2 {
|
|
545
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
546
|
-
}
|
|
547
|
-
.tw_grid-cols-3 {
|
|
548
|
-
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
549
|
-
}
|
|
550
|
-
.tw_grid-cols-4 {
|
|
551
|
-
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
552
|
-
}
|
|
553
553
|
.tw_grid-cols-\[1\.5em_1fr\] {
|
|
554
554
|
grid-template-columns: 1.5em 1fr;
|
|
555
555
|
}
|
|
@@ -571,6 +571,9 @@ justify-items: stretch;
|
|
|
571
571
|
.tw_gap-4 {
|
|
572
572
|
gap: 1rem;
|
|
573
573
|
}
|
|
574
|
+
.tw_overflow-hidden {
|
|
575
|
+
overflow: hidden;
|
|
576
|
+
}
|
|
574
577
|
.tw_rounded-full {
|
|
575
578
|
border-radius: 9999px;
|
|
576
579
|
}
|
|
@@ -596,6 +599,9 @@ border-right-width: 0px !important;
|
|
|
596
599
|
.tw_border-b {
|
|
597
600
|
border-bottom-width: 1px;
|
|
598
601
|
}
|
|
602
|
+
.tw_border-none {
|
|
603
|
+
border-style: none;
|
|
604
|
+
}
|
|
599
605
|
.tw_border-secondary-light {
|
|
600
606
|
--tw-border-opacity: 1;
|
|
601
607
|
border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
|
@@ -603,6 +609,10 @@ border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
|
|
603
609
|
.tw_border-transparent {
|
|
604
610
|
border-color: transparent;
|
|
605
611
|
}
|
|
612
|
+
.tw_bg-background-dark {
|
|
613
|
+
--tw-bg-opacity: 1;
|
|
614
|
+
background-color: rgb(30 41 59 / var(--tw-bg-opacity));
|
|
615
|
+
}
|
|
606
616
|
.tw_bg-background-light {
|
|
607
617
|
--tw-bg-opacity: 1;
|
|
608
618
|
background-color: rgb(241 245 249 / var(--tw-bg-opacity));
|
|
@@ -611,6 +621,13 @@ background-color: rgb(241 245 249 / var(--tw-bg-opacity));
|
|
|
611
621
|
--tw-bg-opacity: 1;
|
|
612
622
|
background-color: rgb(51 65 85 / var(--tw-bg-opacity));
|
|
613
623
|
}
|
|
624
|
+
.tw_bg-transparent {
|
|
625
|
+
background-color: transparent;
|
|
626
|
+
}
|
|
627
|
+
.tw_bg-white {
|
|
628
|
+
--tw-bg-opacity: 1;
|
|
629
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
630
|
+
}
|
|
614
631
|
.tw_fill-current {
|
|
615
632
|
fill: currentColor;
|
|
616
633
|
}
|
|
@@ -633,6 +650,9 @@ text-align: center;
|
|
|
633
650
|
.tw_text-right {
|
|
634
651
|
text-align: right;
|
|
635
652
|
}
|
|
653
|
+
.tw_align-top {
|
|
654
|
+
vertical-align: top;
|
|
655
|
+
}
|
|
636
656
|
.tw_font-mono {
|
|
637
657
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
638
658
|
}
|
|
@@ -685,6 +705,15 @@ color: rgb(55 65 81 / var(--tw-text-opacity));
|
|
|
685
705
|
--tw-text-opacity: 1;
|
|
686
706
|
color: rgb(209 213 219 / var(--tw-text-opacity));
|
|
687
707
|
}
|
|
708
|
+
.tw_shadow-\[0_0_1rem_2rem_black\] {
|
|
709
|
+
--tw-shadow: 0 0 1rem 2rem black;
|
|
710
|
+
--tw-shadow-colored: 0 0 1rem 2rem var(--tw-shadow-color);
|
|
711
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
712
|
+
}
|
|
713
|
+
.tw_shadow-background-light {
|
|
714
|
+
--tw-shadow-color: #f1f5f9;
|
|
715
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
716
|
+
}
|
|
688
717
|
.tw_outline-none {
|
|
689
718
|
outline: 2px solid transparent;
|
|
690
719
|
outline-offset: 2px;
|
|
@@ -1677,6 +1706,10 @@ padding: 2.5rem 0;
|
|
|
1677
1706
|
}
|
|
1678
1707
|
.md\:tw_dialog-x_medium {}
|
|
1679
1708
|
}
|
|
1709
|
+
.focus-visible\:tw_outline-none:focus-visible {
|
|
1710
|
+
outline: 2px solid transparent;
|
|
1711
|
+
outline-offset: 2px;
|
|
1712
|
+
}
|
|
1680
1713
|
:is(.tw_dark .dark\:tw_border-secondary-dark) {
|
|
1681
1714
|
--tw-border-opacity: 1;
|
|
1682
1715
|
border-color: rgb(55 65 81 / var(--tw-border-opacity));
|
|
@@ -1705,6 +1738,10 @@ color: rgb(209 213 219 / var(--tw-text-opacity));
|
|
|
1705
1738
|
--tw-text-opacity: 1;
|
|
1706
1739
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1707
1740
|
}
|
|
1741
|
+
:is(.tw_dark .dark\:tw_shadow-background-dark) {
|
|
1742
|
+
--tw-shadow-color: #1e293b;
|
|
1743
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
1744
|
+
}
|
|
1708
1745
|
:is(.tw_dark .dark\:tw_focusable-element_dark) {
|
|
1709
1746
|
--outline-color: hsl(var(--tw-colors-focus-default-hs), calc(var(--tw-colors-focus-default-l) + 20%), 0.7);
|
|
1710
1747
|
outline-color: var(--outline-color, hsla(272.1, 71.7%, 56.5%, 0.30000000000000004));
|
|
@@ -1725,6 +1762,18 @@ color: var(--color, #d1d5db);
|
|
|
1725
1762
|
.md\:tw_h-36 {
|
|
1726
1763
|
height: 9rem;
|
|
1727
1764
|
}
|
|
1765
|
+
.md\:tw_grid-cols-1 {
|
|
1766
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1767
|
+
}
|
|
1768
|
+
.md\:tw_grid-cols-2 {
|
|
1769
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1770
|
+
}
|
|
1771
|
+
.md\:tw_grid-cols-3 {
|
|
1772
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1773
|
+
}
|
|
1774
|
+
.md\:tw_grid-cols-4 {
|
|
1775
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1776
|
+
}
|
|
1728
1777
|
.md\:tw_pt-10 {
|
|
1729
1778
|
padding-top: 2.5rem;
|
|
1730
1779
|
}
|