@genesislcap/foundation-zero 15.0.0-FUI-2567.2 → 15.1.0-FUI-2567.3
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 +4 -18
- package/dist/dts/react.d.ts +2 -2
- package/package.json +12 -12
|
@@ -46761,8 +46761,8 @@
|
|
|
46761
46761
|
"text": "boolean"
|
|
46762
46762
|
},
|
|
46763
46763
|
"default": "false",
|
|
46764
|
-
"description": "When true, digit
|
|
46765
|
-
"fieldName": "
|
|
46764
|
+
"description": "When true, focuses the first digit on connect (and after SPA route commit when hosted that way).",
|
|
46765
|
+
"fieldName": "autofocus",
|
|
46766
46766
|
"inheritedFrom": {
|
|
46767
46767
|
"name": "VerificationCodeInput",
|
|
46768
46768
|
"module": "src/verification-code-input/verification-code-input.ts"
|
|
@@ -46874,20 +46874,6 @@
|
|
|
46874
46874
|
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46875
46875
|
}
|
|
46876
46876
|
},
|
|
46877
|
-
{
|
|
46878
|
-
"kind": "field",
|
|
46879
|
-
"name": "disabled",
|
|
46880
|
-
"type": {
|
|
46881
|
-
"text": "boolean"
|
|
46882
|
-
},
|
|
46883
|
-
"default": "false",
|
|
46884
|
-
"description": "When true, digit fields are non-interactive.",
|
|
46885
|
-
"privacy": "public",
|
|
46886
|
-
"inheritedFrom": {
|
|
46887
|
-
"name": "VerificationCodeInput",
|
|
46888
|
-
"module": "src/verification-code-input/verification-code-input.ts"
|
|
46889
|
-
}
|
|
46890
|
-
},
|
|
46891
46877
|
{
|
|
46892
46878
|
"kind": "field",
|
|
46893
46879
|
"name": "autofocus",
|
|
@@ -47501,7 +47487,7 @@
|
|
|
47501
47487
|
],
|
|
47502
47488
|
"events": [
|
|
47503
47489
|
{
|
|
47504
|
-
"description": "Fired when any digit changes.
|
|
47490
|
+
"description": "Fired when any digit changes. detail: `VerificationCodeInputEventDetail`",
|
|
47505
47491
|
"name": "change",
|
|
47506
47492
|
"inheritedFrom": {
|
|
47507
47493
|
"name": "VerificationCodeInput",
|
|
@@ -47509,7 +47495,7 @@
|
|
|
47509
47495
|
}
|
|
47510
47496
|
},
|
|
47511
47497
|
{
|
|
47512
|
-
"description": "Fired when all digits are filled.
|
|
47498
|
+
"description": "Fired when all digits are filled. detail: `VerificationCodeInputEventDetail`",
|
|
47513
47499
|
"name": "complete",
|
|
47514
47500
|
"inheritedFrom": {
|
|
47515
47501
|
"name": "VerificationCodeInput",
|
package/dist/dts/react.d.ts
CHANGED
|
@@ -93,7 +93,7 @@ import type { TreeView as TreeViewWC } from './tree-view/tree-view';
|
|
|
93
93
|
import type { UrlInput as UrlInputWC } from './url-input/url-input';
|
|
94
94
|
import type { VerificationCodeInput as VerificationCodeInputWC } from './verification-code-input/verification-code-input';
|
|
95
95
|
import type { AddGroupEventDetail, AddRuleEventDetail, DelGroupEventDetail, DelRuleEventDetail, UpdateGroupEventDetail, UpdateRuleEventDetail } from '@genesislcap/expression-builder';
|
|
96
|
-
import type { ClearOptions, FileSelectedEventDetail, FilterChangedEventDetail, FilterClearedEventDetail, MultiselectOption, OpenChangeEventDetail, SelectedOption, StepClickEventDetail, ValidationError, ValidationFailureEventDetail } from '@genesislcap/foundation-ui';
|
|
96
|
+
import type { ClearOptions, FileSelectedEventDetail, FilterChangedEventDetail, FilterClearedEventDetail, MultiselectOption, OpenChangeEventDetail, SelectedOption, StepClickEventDetail, ValidationError, ValidationFailureEventDetail, VerificationCodeInputEventDetail } from '@genesislcap/foundation-ui';
|
|
97
97
|
|
|
98
98
|
/** @internal Maps a web component class to its public props only.
|
|
99
99
|
* keyof T skips private/protected members, so this avoids the TS error
|
|
@@ -989,7 +989,7 @@ export declare const VerificationCodeInput: React.ForwardRefExoticComponent<
|
|
|
989
989
|
React.PropsWithChildren<
|
|
990
990
|
Omit<PublicOf<VerificationCodeInputWC>, 'children' | 'style'> &
|
|
991
991
|
HTMLWCProps & {
|
|
992
|
-
onComplete?: (event: CustomEvent<
|
|
992
|
+
onComplete?: (event: CustomEvent<VerificationCodeInputEventDetail>) => void;
|
|
993
993
|
}
|
|
994
994
|
> & React.RefAttributes<VerificationCodeInputWC>
|
|
995
995
|
>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-zero",
|
|
3
3
|
"description": "Genesis Foundation Zero Design System",
|
|
4
|
-
"version": "15.
|
|
4
|
+
"version": "15.1.0-FUI-2567.3",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -73,18 +73,18 @@
|
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
|
|
76
|
-
"@genesislcap/genx": "15.
|
|
77
|
-
"@genesislcap/rollup-builder": "15.
|
|
78
|
-
"@genesislcap/ts-builder": "15.
|
|
79
|
-
"@genesislcap/uvu-playwright-builder": "15.
|
|
80
|
-
"@genesislcap/vite-builder": "15.
|
|
81
|
-
"@genesislcap/webpack-builder": "15.
|
|
76
|
+
"@genesislcap/genx": "15.1.0-FUI-2567.3",
|
|
77
|
+
"@genesislcap/rollup-builder": "15.1.0-FUI-2567.3",
|
|
78
|
+
"@genesislcap/ts-builder": "15.1.0-FUI-2567.3",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "15.1.0-FUI-2567.3",
|
|
80
|
+
"@genesislcap/vite-builder": "15.1.0-FUI-2567.3",
|
|
81
|
+
"@genesislcap/webpack-builder": "15.1.0-FUI-2567.3"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@genesislcap/foundation-comms": "15.
|
|
85
|
-
"@genesislcap/foundation-logger": "15.
|
|
86
|
-
"@genesislcap/foundation-ui": "15.
|
|
87
|
-
"@genesislcap/foundation-utils": "15.
|
|
84
|
+
"@genesislcap/foundation-comms": "15.1.0-FUI-2567.3",
|
|
85
|
+
"@genesislcap/foundation-logger": "15.1.0-FUI-2567.3",
|
|
86
|
+
"@genesislcap/foundation-ui": "15.1.0-FUI-2567.3",
|
|
87
|
+
"@genesislcap/foundation-utils": "15.1.0-FUI-2567.3",
|
|
88
88
|
"@microsoft/fast-colors": "5.3.1",
|
|
89
89
|
"@microsoft/fast-components": "2.30.6",
|
|
90
90
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -111,5 +111,5 @@
|
|
|
111
111
|
"require": "./dist/react.cjs"
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "7ca16e74cbe5ce3f8503756bb708162eb7246897"
|
|
115
115
|
}
|