@genesislcap/foundation-ui 14.490.0 → 14.491.0-FUI-2567.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/custom-elements.json +1280 -481
- package/dist/dts/base-components.d.ts +11 -0
- package/dist/dts/base-components.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/react.d.ts +27 -16
- package/dist/dts/verification-code-input/index.d.ts +4 -0
- package/dist/dts/verification-code-input/index.d.ts.map +1 -0
- package/dist/dts/verification-code-input/verification-code-input.d.ts +145 -0
- package/dist/dts/verification-code-input/verification-code-input.d.ts.map +1 -0
- package/dist/dts/verification-code-input/verification-code-input.styles.d.ts +3 -0
- package/dist/dts/verification-code-input/verification-code-input.styles.d.ts.map +1 -0
- package/dist/dts/verification-code-input/verification-code-input.template.d.ts +3 -0
- package/dist/dts/verification-code-input/verification-code-input.template.d.ts.map +1 -0
- package/dist/esm/base-components.js +2 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/verification-code-input/index.js +3 -0
- package/dist/esm/verification-code-input/verification-code-input.js +437 -0
- package/dist/esm/verification-code-input/verification-code-input.styles.js +108 -0
- package/dist/esm/verification-code-input/verification-code-input.template.js +55 -0
- package/dist/foundation-ui.api.json +1089 -68
- package/dist/foundation-ui.d.ts +165 -0
- package/dist/react.cjs +29 -10
- package/dist/react.mjs +26 -8
- package/package.json +19 -19
package/dist/foundation-ui.d.ts
CHANGED
|
@@ -95,6 +95,7 @@ import { foregroundOnAccentHover } from '@microsoft/fast-components';
|
|
|
95
95
|
import { foregroundOnAccentHoverLarge } from '@microsoft/fast-components';
|
|
96
96
|
import { foregroundOnAccentRest } from '@microsoft/fast-components';
|
|
97
97
|
import { foregroundOnAccentRestLarge } from '@microsoft/fast-components';
|
|
98
|
+
import { FormAssociated } from '@microsoft/fast-foundation';
|
|
98
99
|
import { FoundationAnalytics } from '@genesislcap/foundation-comms';
|
|
99
100
|
import { dataGridCellTemplate as foundationDataGridCellTemplate } from '@microsoft/fast-foundation';
|
|
100
101
|
import { dataGridRowTemplate as foundationDataGridRowTemplate } from '@microsoft/fast-foundation';
|
|
@@ -861,6 +862,17 @@ export declare const baseComponents: {
|
|
|
861
862
|
foundationTreeItem: (overrideDefinition?: OverrideFoundationElementDefinition<TreeItemOptions>) => FoundationElementRegistry<TreeItemOptions, Constructable<FoundationElement>>;
|
|
862
863
|
foundationTreeView: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition>) => FoundationElementRegistry<FoundationElementDefinition, TreeView>;
|
|
863
864
|
foundationUrlInput: (overrideDefinition?: OverrideFoundationElementDefinition<FoundationElementDefinition>) => FoundationElementRegistry<FoundationElementDefinition, UrlInput>;
|
|
865
|
+
foundationVerificationCodeInput: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
866
|
+
baseName: string;
|
|
867
|
+
template: ViewTemplate<VerificationCodeInput, any>;
|
|
868
|
+
styles: ElementStyles;
|
|
869
|
+
shadowOptions: ShadowRootInit;
|
|
870
|
+
}>) => FoundationElementRegistry< {
|
|
871
|
+
baseName: string;
|
|
872
|
+
template: ViewTemplate<VerificationCodeInput, any>;
|
|
873
|
+
styles: ElementStyles;
|
|
874
|
+
shadowOptions: ShadowRootInit;
|
|
875
|
+
}, VerificationCodeInput>;
|
|
864
876
|
foundationSectionNavigator: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
865
877
|
baseName: string;
|
|
866
878
|
template: ViewTemplate<SectionNavigator, any>;
|
|
@@ -2259,6 +2271,8 @@ export declare const defaultTreeViewConfig: {};
|
|
|
2259
2271
|
|
|
2260
2272
|
export declare const defaultUrlInputConfig: {};
|
|
2261
2273
|
|
|
2274
|
+
export declare const defaultVerificationCodeInputConfig: {};
|
|
2275
|
+
|
|
2262
2276
|
/**
|
|
2263
2277
|
* Defines a platform custom element based on the provided type and definition.
|
|
2264
2278
|
*
|
|
@@ -5017,6 +5031,31 @@ export declare class FoundationValueExpressionBuilder extends ExpressionBuilder
|
|
|
5017
5031
|
dispatchChangeEvent(group: ExpressionBuilderTypes.Group): void;
|
|
5018
5032
|
}
|
|
5019
5033
|
|
|
5034
|
+
/**
|
|
5035
|
+
* The Foundation Verification Code Input
|
|
5036
|
+
*
|
|
5037
|
+
* @public
|
|
5038
|
+
* @remarks
|
|
5039
|
+
* HTML Element: \<foundation-verification-code-input\>
|
|
5040
|
+
*/
|
|
5041
|
+
export declare const foundationVerificationCodeInput: (overrideDefinition?: OverrideFoundationElementDefinition< {
|
|
5042
|
+
baseName: string;
|
|
5043
|
+
template: ViewTemplate<VerificationCodeInput, any>;
|
|
5044
|
+
styles: ElementStyles;
|
|
5045
|
+
shadowOptions: ShadowRootInit;
|
|
5046
|
+
}>) => FoundationElementRegistry< {
|
|
5047
|
+
baseName: string;
|
|
5048
|
+
template: ViewTemplate<VerificationCodeInput, any>;
|
|
5049
|
+
styles: ElementStyles;
|
|
5050
|
+
shadowOptions: ShadowRootInit;
|
|
5051
|
+
}, typeof VerificationCodeInput>;
|
|
5052
|
+
|
|
5053
|
+
export declare const foundationVerificationCodeInputShadowOptions: ShadowRootInit;
|
|
5054
|
+
|
|
5055
|
+
export declare const foundationVerificationCodeInputStyles: ElementStyles;
|
|
5056
|
+
|
|
5057
|
+
export declare const foundationVerificationCodeInputTemplate: ViewTemplate<VerificationCodeInput, any>;
|
|
5058
|
+
|
|
5020
5059
|
/**
|
|
5021
5060
|
* Converts a server BinaryExpression to a client BinaryOperator
|
|
5022
5061
|
*
|
|
@@ -7422,6 +7461,132 @@ export declare interface ValueChangeEventDetail {
|
|
|
7422
7461
|
label: string;
|
|
7423
7462
|
}
|
|
7424
7463
|
|
|
7464
|
+
/**
|
|
7465
|
+
* Multi-digit verification code input for OTP / 2FA flows.
|
|
7466
|
+
*
|
|
7467
|
+
* Form-associated (FAST `FormAssociated`): host `name` / `required` / `value` participate
|
|
7468
|
+
* in native HTML form validation and submission like {@link TextField}.
|
|
7469
|
+
*
|
|
7470
|
+
* @public
|
|
7471
|
+
* @tagname %%prefix%%-verification-code-input
|
|
7472
|
+
*
|
|
7473
|
+
* @fires change - Fired when any digit changes. Detail: `{ value: string }`.
|
|
7474
|
+
* @fires complete - Fired when all digits are filled. Detail: `{ value: string }`.
|
|
7475
|
+
*/
|
|
7476
|
+
export declare class VerificationCodeInput extends VerificationCodeInput_base {
|
|
7477
|
+
/**
|
|
7478
|
+
* Proxy element for form association when ElementInternals is unavailable.
|
|
7479
|
+
* Initialized in the constructor (after `super()`) so it exists before attribute
|
|
7480
|
+
* change handlers run — same pattern as FAST `FormAssociatedTextField`.
|
|
7481
|
+
* @internal
|
|
7482
|
+
*/
|
|
7483
|
+
proxy: HTMLInputElement;
|
|
7484
|
+
/** Per-digit values indexed from `0` to `digits - 1`. */
|
|
7485
|
+
values: string[];
|
|
7486
|
+
/** Slotted label content; when empty the label is visually hidden. */
|
|
7487
|
+
defaultSlottedNodes: any;
|
|
7488
|
+
private readonly controlListeners;
|
|
7489
|
+
/** Skip digit re-sync when `value` is updated from digit entry (`commitValues`). */
|
|
7490
|
+
private syncingFromDigits;
|
|
7491
|
+
constructor();
|
|
7492
|
+
/**
|
|
7493
|
+
* Optional host id used as a prefix for digit input ids (`{id}-0`, `{id}-1`, …)
|
|
7494
|
+
* and the associated label element.
|
|
7495
|
+
*/
|
|
7496
|
+
id: string;
|
|
7497
|
+
/**
|
|
7498
|
+
* Visual treatment applied to each digit field.
|
|
7499
|
+
* @public
|
|
7500
|
+
* @remarks
|
|
7501
|
+
* HTML Attribute: appearance
|
|
7502
|
+
* @defaultValue outline
|
|
7503
|
+
*/
|
|
7504
|
+
appearance: string;
|
|
7505
|
+
/**
|
|
7506
|
+
* Number of single-character digit fields to render.
|
|
7507
|
+
* @public
|
|
7508
|
+
* @remarks
|
|
7509
|
+
* HTML Attribute: digits
|
|
7510
|
+
* @defaultValue 6
|
|
7511
|
+
*/
|
|
7512
|
+
digits: number;
|
|
7513
|
+
/**
|
|
7514
|
+
* When true, digit fields are non-interactive.
|
|
7515
|
+
* @public
|
|
7516
|
+
* @remarks
|
|
7517
|
+
* HTML Attribute: readonly
|
|
7518
|
+
*/
|
|
7519
|
+
readOnly: boolean;
|
|
7520
|
+
/**
|
|
7521
|
+
* When true, digit fields are non-interactive.
|
|
7522
|
+
* @public
|
|
7523
|
+
* @remarks
|
|
7524
|
+
* HTML Attribute: disabled
|
|
7525
|
+
*/
|
|
7526
|
+
disabled: boolean;
|
|
7527
|
+
/**
|
|
7528
|
+
* When true, focuses the first digit on connect (and after SPA route commit when hosted that way).
|
|
7529
|
+
* @public
|
|
7530
|
+
* @remarks
|
|
7531
|
+
* HTML Attribute: autofocus
|
|
7532
|
+
*/
|
|
7533
|
+
autofocus: boolean;
|
|
7534
|
+
/**
|
|
7535
|
+
* When true, applies the error visual state to each digit field.
|
|
7536
|
+
* @public
|
|
7537
|
+
* @remarks
|
|
7538
|
+
* HTML Attribute: error
|
|
7539
|
+
*/
|
|
7540
|
+
error: boolean;
|
|
7541
|
+
get digitsIndexes(): number[];
|
|
7542
|
+
get controlIdPrefix(): string;
|
|
7543
|
+
get labelId(): string;
|
|
7544
|
+
get hasLabel(): boolean;
|
|
7545
|
+
getControlId(index: number): string;
|
|
7546
|
+
/** Clears digits, emits `change`, and focuses the first field when connected. */
|
|
7547
|
+
clear(): void;
|
|
7548
|
+
focus(): void;
|
|
7549
|
+
/** @internal */
|
|
7550
|
+
valueChanged(previous: string, next: string): void;
|
|
7551
|
+
/** @internal */
|
|
7552
|
+
validate(anchor?: HTMLElement): void;
|
|
7553
|
+
connectedCallback(): void;
|
|
7554
|
+
disconnectedCallback(): void;
|
|
7555
|
+
digitsChanged(): void;
|
|
7556
|
+
get digitClassnames(): string;
|
|
7557
|
+
private sanitizeCode;
|
|
7558
|
+
private bindControlListeners;
|
|
7559
|
+
private unbindControlListeners;
|
|
7560
|
+
private onKeyDown;
|
|
7561
|
+
private isBlockedCharacter;
|
|
7562
|
+
private onInput;
|
|
7563
|
+
private onPaste;
|
|
7564
|
+
private handleBackspace;
|
|
7565
|
+
private handleDelete;
|
|
7566
|
+
private getIndexFromInput;
|
|
7567
|
+
/** Maps a sanitized code string into per-digit `values` and syncs the DOM when connected. */
|
|
7568
|
+
private syncDigitsFromValue;
|
|
7569
|
+
private updateDigit;
|
|
7570
|
+
private applyDigits;
|
|
7571
|
+
/** Pushes digit state into the form-associated `value` and emits change / complete. */
|
|
7572
|
+
private commitValues;
|
|
7573
|
+
private syncFieldValues;
|
|
7574
|
+
private syncFieldValue;
|
|
7575
|
+
private focusDigit;
|
|
7576
|
+
private get rootNode();
|
|
7577
|
+
private getControlElement;
|
|
7578
|
+
private isComplete;
|
|
7579
|
+
private emitChange;
|
|
7580
|
+
}
|
|
7581
|
+
|
|
7582
|
+
declare class _VerificationCodeInput extends FoundationElement {
|
|
7583
|
+
}
|
|
7584
|
+
|
|
7585
|
+
declare interface _VerificationCodeInput extends FormAssociated {
|
|
7586
|
+
}
|
|
7587
|
+
|
|
7588
|
+
declare const VerificationCodeInput_base: typeof _VerificationCodeInput;
|
|
7589
|
+
|
|
7425
7590
|
export declare type VerticalAlign = 'baseline' | 'top' | 'middle' | 'bottom' | 'sub' | 'text-top';
|
|
7426
7591
|
|
|
7427
7592
|
export declare type WeeklyConfig = {
|
package/dist/react.cjs
CHANGED
|
@@ -101,6 +101,7 @@ const { Toolbar: ToolbarWC } = require('./esm/toolbar/toolbar.js');
|
|
|
101
101
|
const { Tooltip: TooltipWC } = require('./esm/tooltip/tooltip.js');
|
|
102
102
|
const { TreeView: TreeViewWC } = require('./esm/tree-view/tree-view.js');
|
|
103
103
|
const { UrlInput: UrlInputWC } = require('./esm/url-input/url-input.js');
|
|
104
|
+
const { VerificationCodeInput: VerificationCodeInputWC } = require('./esm/verification-code-input/verification-code-input.js');
|
|
104
105
|
|
|
105
106
|
function _mergeRefs(...refs) {
|
|
106
107
|
return (value) => {
|
|
@@ -111,14 +112,14 @@ function _mergeRefs(...refs) {
|
|
|
111
112
|
};
|
|
112
113
|
}
|
|
113
114
|
|
|
114
|
-
const
|
|
115
|
+
const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
115
116
|
const { children, ...rest } = props;
|
|
116
|
-
return React.createElement(customElements.getName(
|
|
117
|
+
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
117
118
|
});
|
|
118
119
|
|
|
119
|
-
const
|
|
120
|
+
const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
120
121
|
const { children, ...rest } = props;
|
|
121
|
-
return React.createElement(customElements.getName(
|
|
122
|
+
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
122
123
|
});
|
|
123
124
|
|
|
124
125
|
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
@@ -180,14 +181,14 @@ const AnchoredRegion = React.forwardRef(function AnchoredRegion(props, ref) {
|
|
|
180
181
|
return React.createElement(customElements.getName(AnchoredRegionWC) ?? '%%prefix%%-anchored-region', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
181
182
|
});
|
|
182
183
|
|
|
183
|
-
const
|
|
184
|
+
const Avatar = React.forwardRef(function Avatar(props, ref) {
|
|
184
185
|
const { children, ...rest } = props;
|
|
185
|
-
return React.createElement(customElements.getName(
|
|
186
|
+
return React.createElement(customElements.getName(AvatarWC) ?? '%%prefix%%-avatar', { ...rest, ref }, children);
|
|
186
187
|
});
|
|
187
188
|
|
|
188
|
-
const
|
|
189
|
+
const Badge = React.forwardRef(function Badge(props, ref) {
|
|
189
190
|
const { children, ...rest } = props;
|
|
190
|
-
return React.createElement(customElements.getName(
|
|
191
|
+
return React.createElement(customElements.getName(BadgeWC) ?? '%%prefix%%-badge', { ...rest, ref }, children);
|
|
191
192
|
});
|
|
192
193
|
|
|
193
194
|
const Banner = React.forwardRef(function Banner(props, ref) {
|
|
@@ -1050,6 +1051,23 @@ const UrlInput = React.forwardRef(function UrlInput(props, ref) {
|
|
|
1050
1051
|
return React.createElement(customElements.getName(UrlInputWC) ?? '%%prefix%%-url-input', { ...rest, ref }, children);
|
|
1051
1052
|
});
|
|
1052
1053
|
|
|
1054
|
+
const VerificationCodeInput = React.forwardRef(function VerificationCodeInput(props, ref) {
|
|
1055
|
+
const { onComplete, children, ...rest } = props;
|
|
1056
|
+
const _innerRef = React.useRef(null);
|
|
1057
|
+
const _onCompleteRef = React.useRef(onComplete);
|
|
1058
|
+
_onCompleteRef.current = onComplete;
|
|
1059
|
+
React.useLayoutEffect(() => {
|
|
1060
|
+
const el = _innerRef.current;
|
|
1061
|
+
if (!el) return;
|
|
1062
|
+
const _onCompleteFn = (e) => _onCompleteRef.current?.(e);
|
|
1063
|
+
el.addEventListener('complete', _onCompleteFn);
|
|
1064
|
+
return () => {
|
|
1065
|
+
el.removeEventListener('complete', _onCompleteFn);
|
|
1066
|
+
};
|
|
1067
|
+
}, []);
|
|
1068
|
+
return React.createElement(customElements.getName(VerificationCodeInputWC) ?? '%%prefix%%-verification-code-input', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
1069
|
+
});
|
|
1070
|
+
|
|
1053
1071
|
const DailyRecurrence = React.forwardRef(function DailyRecurrence(props, ref) {
|
|
1054
1072
|
const { onUpdateCronConfig, children, ...rest } = props;
|
|
1055
1073
|
const _innerRef = React.useRef(null);
|
|
@@ -1102,15 +1120,15 @@ const WeeklyRecurrence = React.forwardRef(function WeeklyRecurrence(props, ref)
|
|
|
1102
1120
|
});
|
|
1103
1121
|
|
|
1104
1122
|
module.exports = {
|
|
1105
|
-
Accordion,
|
|
1106
1123
|
AccordionItem,
|
|
1124
|
+
Accordion,
|
|
1107
1125
|
ActionsMenu,
|
|
1108
1126
|
AiCriteriaSearch,
|
|
1109
1127
|
AiIndicator,
|
|
1110
1128
|
Anchor,
|
|
1111
1129
|
AnchoredRegion,
|
|
1112
|
-
Badge,
|
|
1113
1130
|
Avatar,
|
|
1131
|
+
Badge,
|
|
1114
1132
|
Banner,
|
|
1115
1133
|
Breadcrumb,
|
|
1116
1134
|
BreadcrumbItem,
|
|
@@ -1194,6 +1212,7 @@ module.exports = {
|
|
|
1194
1212
|
Tooltip,
|
|
1195
1213
|
TreeView,
|
|
1196
1214
|
UrlInput,
|
|
1215
|
+
VerificationCodeInput,
|
|
1197
1216
|
DailyRecurrence,
|
|
1198
1217
|
MonthlyYearlyRecurrence,
|
|
1199
1218
|
WeeklyRecurrence,
|
package/dist/react.mjs
CHANGED
|
@@ -99,6 +99,7 @@ import { Toolbar as ToolbarWC } from './esm/toolbar/toolbar.js';
|
|
|
99
99
|
import { Tooltip as TooltipWC } from './esm/tooltip/tooltip.js';
|
|
100
100
|
import { TreeView as TreeViewWC } from './esm/tree-view/tree-view.js';
|
|
101
101
|
import { UrlInput as UrlInputWC } from './esm/url-input/url-input.js';
|
|
102
|
+
import { VerificationCodeInput as VerificationCodeInputWC } from './esm/verification-code-input/verification-code-input.js';
|
|
102
103
|
|
|
103
104
|
function _mergeRefs(...refs) {
|
|
104
105
|
return (value) => {
|
|
@@ -109,14 +110,14 @@ function _mergeRefs(...refs) {
|
|
|
109
110
|
};
|
|
110
111
|
}
|
|
111
112
|
|
|
112
|
-
export const
|
|
113
|
+
export const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
113
114
|
const { children, ...rest } = props;
|
|
114
|
-
return React.createElement(customElements.getName(
|
|
115
|
+
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
115
116
|
});
|
|
116
117
|
|
|
117
|
-
export const
|
|
118
|
+
export const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
118
119
|
const { children, ...rest } = props;
|
|
119
|
-
return React.createElement(customElements.getName(
|
|
120
|
+
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
120
121
|
});
|
|
121
122
|
|
|
122
123
|
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
@@ -178,14 +179,14 @@ export const AnchoredRegion = React.forwardRef(function AnchoredRegion(props, re
|
|
|
178
179
|
return React.createElement(customElements.getName(AnchoredRegionWC) ?? '%%prefix%%-anchored-region', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
179
180
|
});
|
|
180
181
|
|
|
181
|
-
export const
|
|
182
|
+
export const Avatar = React.forwardRef(function Avatar(props, ref) {
|
|
182
183
|
const { children, ...rest } = props;
|
|
183
|
-
return React.createElement(customElements.getName(
|
|
184
|
+
return React.createElement(customElements.getName(AvatarWC) ?? '%%prefix%%-avatar', { ...rest, ref }, children);
|
|
184
185
|
});
|
|
185
186
|
|
|
186
|
-
export const
|
|
187
|
+
export const Badge = React.forwardRef(function Badge(props, ref) {
|
|
187
188
|
const { children, ...rest } = props;
|
|
188
|
-
return React.createElement(customElements.getName(
|
|
189
|
+
return React.createElement(customElements.getName(BadgeWC) ?? '%%prefix%%-badge', { ...rest, ref }, children);
|
|
189
190
|
});
|
|
190
191
|
|
|
191
192
|
export const Banner = React.forwardRef(function Banner(props, ref) {
|
|
@@ -1048,6 +1049,23 @@ export const UrlInput = React.forwardRef(function UrlInput(props, ref) {
|
|
|
1048
1049
|
return React.createElement(customElements.getName(UrlInputWC) ?? '%%prefix%%-url-input', { ...rest, ref }, children);
|
|
1049
1050
|
});
|
|
1050
1051
|
|
|
1052
|
+
export const VerificationCodeInput = React.forwardRef(function VerificationCodeInput(props, ref) {
|
|
1053
|
+
const { onComplete, children, ...rest } = props;
|
|
1054
|
+
const _innerRef = React.useRef(null);
|
|
1055
|
+
const _onCompleteRef = React.useRef(onComplete);
|
|
1056
|
+
_onCompleteRef.current = onComplete;
|
|
1057
|
+
React.useLayoutEffect(() => {
|
|
1058
|
+
const el = _innerRef.current;
|
|
1059
|
+
if (!el) return;
|
|
1060
|
+
const _onCompleteFn = (e) => _onCompleteRef.current?.(e);
|
|
1061
|
+
el.addEventListener('complete', _onCompleteFn);
|
|
1062
|
+
return () => {
|
|
1063
|
+
el.removeEventListener('complete', _onCompleteFn);
|
|
1064
|
+
};
|
|
1065
|
+
}, []);
|
|
1066
|
+
return React.createElement(customElements.getName(VerificationCodeInputWC) ?? '%%prefix%%-verification-code-input', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
1067
|
+
});
|
|
1068
|
+
|
|
1051
1069
|
export const DailyRecurrence = React.forwardRef(function DailyRecurrence(props, ref) {
|
|
1052
1070
|
const { onUpdateCronConfig, children, ...rest } = props;
|
|
1053
1071
|
const _innerRef = React.useRef(null);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-ui",
|
|
3
3
|
"description": "Genesis Foundation UI",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.491.0-FUI-2567.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -85,13 +85,13 @@
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@genesislcap/foundation-testing": "14.
|
|
89
|
-
"@genesislcap/genx": "14.
|
|
90
|
-
"@genesislcap/rollup-builder": "14.
|
|
91
|
-
"@genesislcap/ts-builder": "14.
|
|
92
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
93
|
-
"@genesislcap/vite-builder": "14.
|
|
94
|
-
"@genesislcap/webpack-builder": "14.
|
|
88
|
+
"@genesislcap/foundation-testing": "14.491.0-FUI-2567.1",
|
|
89
|
+
"@genesislcap/genx": "14.491.0-FUI-2567.1",
|
|
90
|
+
"@genesislcap/rollup-builder": "14.491.0-FUI-2567.1",
|
|
91
|
+
"@genesislcap/ts-builder": "14.491.0-FUI-2567.1",
|
|
92
|
+
"@genesislcap/uvu-playwright-builder": "14.491.0-FUI-2567.1",
|
|
93
|
+
"@genesislcap/vite-builder": "14.491.0-FUI-2567.1",
|
|
94
|
+
"@genesislcap/webpack-builder": "14.491.0-FUI-2567.1",
|
|
95
95
|
"copyfiles": "^2.4.1"
|
|
96
96
|
},
|
|
97
97
|
"dependencies": {
|
|
@@ -100,16 +100,16 @@
|
|
|
100
100
|
"@fortawesome/free-regular-svg-icons": "^6.2.1",
|
|
101
101
|
"@fortawesome/free-solid-svg-icons": "^6.2.1",
|
|
102
102
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
|
|
103
|
-
"@genesislcap/expression-builder": "14.
|
|
104
|
-
"@genesislcap/foundation-ai": "14.
|
|
105
|
-
"@genesislcap/foundation-comms": "14.
|
|
106
|
-
"@genesislcap/foundation-criteria": "14.
|
|
107
|
-
"@genesislcap/foundation-errors": "14.
|
|
108
|
-
"@genesislcap/foundation-events": "14.
|
|
109
|
-
"@genesislcap/foundation-logger": "14.
|
|
110
|
-
"@genesislcap/foundation-notifications": "14.
|
|
111
|
-
"@genesislcap/foundation-user": "14.
|
|
112
|
-
"@genesislcap/foundation-utils": "14.
|
|
103
|
+
"@genesislcap/expression-builder": "14.491.0-FUI-2567.1",
|
|
104
|
+
"@genesislcap/foundation-ai": "14.491.0-FUI-2567.1",
|
|
105
|
+
"@genesislcap/foundation-comms": "14.491.0-FUI-2567.1",
|
|
106
|
+
"@genesislcap/foundation-criteria": "14.491.0-FUI-2567.1",
|
|
107
|
+
"@genesislcap/foundation-errors": "14.491.0-FUI-2567.1",
|
|
108
|
+
"@genesislcap/foundation-events": "14.491.0-FUI-2567.1",
|
|
109
|
+
"@genesislcap/foundation-logger": "14.491.0-FUI-2567.1",
|
|
110
|
+
"@genesislcap/foundation-notifications": "14.491.0-FUI-2567.1",
|
|
111
|
+
"@genesislcap/foundation-user": "14.491.0-FUI-2567.1",
|
|
112
|
+
"@genesislcap/foundation-utils": "14.491.0-FUI-2567.1",
|
|
113
113
|
"@microsoft/fast-colors": "5.3.1",
|
|
114
114
|
"@microsoft/fast-components": "2.30.6",
|
|
115
115
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -142,5 +142,5 @@
|
|
|
142
142
|
"require": "./dist/react.cjs"
|
|
143
143
|
}
|
|
144
144
|
},
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "35adb206a99accc5a788fd8f1e1161e16b19351e"
|
|
146
146
|
}
|