@everymatrix/general-input 1.90.7 → 1.90.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/dist/cjs/checkbox-group-input_14.cjs.entry.js +373 -345
- package/dist/cjs/general-input.cjs.js +2 -2
- package/dist/cjs/{index-3b546c2c.js → index-7a4b2771.js} +1 -4
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/collection/components/checkbox-group-input/checkbox-group-input.js +34 -20
- package/dist/collection/components/checkbox-input/checkbox-input.js +33 -19
- package/dist/collection/components/date-input/date-input.js +34 -20
- package/dist/collection/components/email-input/email-input.js +34 -20
- package/dist/collection/components/general-input/general-input.js +35 -64
- package/dist/collection/components/number-input/number-input.js +34 -20
- package/dist/collection/components/password-input/password-input.js +34 -20
- package/dist/collection/components/postalcode-input/postalcode-input.js +35 -19
- package/dist/collection/components/radio-input/radio-input.js +36 -20
- package/dist/collection/components/select-input/select-input.js +35 -21
- package/dist/collection/components/tel-input/tel-input.js +34 -20
- package/dist/collection/components/text-input/text-input.js +36 -22
- package/dist/collection/components/toggle-checkbox-input/toggle-checkbox-input.js +34 -20
- package/dist/collection/components/twofa-input/twofa-input.js +26 -59
- package/dist/esm/checkbox-group-input_14.entry.js +373 -345
- package/dist/esm/general-input.js +3 -3
- package/dist/esm/{index-ca174b7a.js → index-9174417a.js} +1 -4
- package/dist/esm/loader.js +3 -3
- package/dist/general-input/checkbox-group-input_14.entry.js +242 -242
- package/dist/general-input/general-input.esm.js +1 -1
- package/dist/general-input/{index-ca174b7a.js → index-9174417a.js} +2 -2
- package/dist/types/components/checkbox-group-input/checkbox-group-input.d.ts +7 -4
- package/dist/types/components/checkbox-input/checkbox-input.d.ts +7 -4
- package/dist/types/components/date-input/date-input.d.ts +7 -4
- package/dist/types/components/email-input/email-input.d.ts +7 -4
- package/dist/types/components/general-input/general-input.d.ts +4 -6
- package/dist/types/components/number-input/number-input.d.ts +7 -4
- package/dist/types/components/password-input/password-input.d.ts +7 -4
- package/dist/types/components/postalcode-input/postalcode-input.d.ts +7 -4
- package/dist/types/components/radio-input/radio-input.d.ts +8 -4
- package/dist/types/components/select-input/select-input.d.ts +7 -4
- package/dist/types/components/tel-input/tel-input.d.ts +7 -4
- package/dist/types/components/text-input/text-input.d.ts +7 -4
- package/dist/types/components/toggle-checkbox-input/toggle-checkbox-input.d.ts +7 -4
- package/dist/types/components/twofa-input/twofa-input.d.ts +3 -7
- package/dist/types/components.d.ts +96 -0
- package/package.json +1 -1
|
@@ -57,7 +57,6 @@ export declare class TwofaInput {
|
|
|
57
57
|
* Client custom styling via message bus
|
|
58
58
|
*/
|
|
59
59
|
mbSource: string;
|
|
60
|
-
private limitStylingAppends;
|
|
61
60
|
isValid: boolean;
|
|
62
61
|
isResendButtonAvailable: boolean;
|
|
63
62
|
showTooltip: boolean;
|
|
@@ -78,7 +77,8 @@ export declare class TwofaInput {
|
|
|
78
77
|
resendInterval: ReturnType<typeof setInterval>;
|
|
79
78
|
validityChanged(): void;
|
|
80
79
|
emitValueHandler(newValue: boolean): void;
|
|
81
|
-
|
|
80
|
+
handleClientStylingChange(newValue: string, oldValue: string): void;
|
|
81
|
+
handleClientStylingChangeURL(newValue: string, oldValue: string): void;
|
|
82
82
|
sendValidityState: EventEmitter<InputStateEvent>;
|
|
83
83
|
validityStateHandler(inputStateEvent: InputStateEvent): void;
|
|
84
84
|
sendInputValue: EventEmitter<InputValueEvent>;
|
|
@@ -86,12 +86,10 @@ export declare class TwofaInput {
|
|
|
86
86
|
resendCode: EventEmitter<void>;
|
|
87
87
|
resendCodeHandler: () => void;
|
|
88
88
|
handleClickOutside(event: MouseEvent): void;
|
|
89
|
-
handleStylingChange(newValue: string, oldValue: string): void;
|
|
90
89
|
connectedCallback(): void;
|
|
91
90
|
disconnectedCallback(): void;
|
|
92
|
-
|
|
91
|
+
handleClientStyling(): void;
|
|
93
92
|
componentDidLoad(): void;
|
|
94
|
-
setClientStylingURL: () => void;
|
|
95
93
|
setInputRef: (el: HTMLInputElement, idx: number) => void;
|
|
96
94
|
setContainerRef: (el: HTMLDivElement) => void;
|
|
97
95
|
triggerResendInterval: () => void;
|
|
@@ -102,8 +100,6 @@ export declare class TwofaInput {
|
|
|
102
100
|
setValidity(): void;
|
|
103
101
|
setPattern(): string;
|
|
104
102
|
setErrorMessage(): void;
|
|
105
|
-
setClientStyling: () => void;
|
|
106
|
-
setStreamStyling: (domain: any) => void;
|
|
107
103
|
renderTooltip(): any;
|
|
108
104
|
getInputDisplayValue(idx: number): string;
|
|
109
105
|
render(): any;
|
|
@@ -33,6 +33,10 @@ export namespace Components {
|
|
|
33
33
|
* Currently selected language.
|
|
34
34
|
*/
|
|
35
35
|
"language": string;
|
|
36
|
+
/**
|
|
37
|
+
* Client custom styling via message bus
|
|
38
|
+
*/
|
|
39
|
+
"mbSource": string;
|
|
36
40
|
/**
|
|
37
41
|
* Name of the input.
|
|
38
42
|
*/
|
|
@@ -75,6 +79,10 @@ export namespace Components {
|
|
|
75
79
|
* Currently selected language.
|
|
76
80
|
*/
|
|
77
81
|
"language": string;
|
|
82
|
+
/**
|
|
83
|
+
* Client custom styling via message bus
|
|
84
|
+
*/
|
|
85
|
+
"mbSource": string;
|
|
78
86
|
/**
|
|
79
87
|
* Name of the input.
|
|
80
88
|
*/
|
|
@@ -129,6 +137,10 @@ export namespace Components {
|
|
|
129
137
|
* Currently selected language.
|
|
130
138
|
*/
|
|
131
139
|
"language": string;
|
|
140
|
+
/**
|
|
141
|
+
* Client custom styling via message bus
|
|
142
|
+
*/
|
|
143
|
+
"mbSource": string;
|
|
132
144
|
/**
|
|
133
145
|
* Name of the input.
|
|
134
146
|
*/
|
|
@@ -175,6 +187,10 @@ export namespace Components {
|
|
|
175
187
|
* Currently selected language.
|
|
176
188
|
*/
|
|
177
189
|
"language": string;
|
|
190
|
+
/**
|
|
191
|
+
* Client custom styling via message bus
|
|
192
|
+
*/
|
|
193
|
+
"mbSource": string;
|
|
178
194
|
/**
|
|
179
195
|
* Name of the input.
|
|
180
196
|
*/
|
|
@@ -339,6 +355,10 @@ export namespace Components {
|
|
|
339
355
|
* Currently selected language.
|
|
340
356
|
*/
|
|
341
357
|
"language": string;
|
|
358
|
+
/**
|
|
359
|
+
* Client custom styling via message bus
|
|
360
|
+
*/
|
|
361
|
+
"mbSource": string;
|
|
342
362
|
/**
|
|
343
363
|
* Name of the input.
|
|
344
364
|
*/
|
|
@@ -393,6 +413,10 @@ export namespace Components {
|
|
|
393
413
|
* Currently selected language.
|
|
394
414
|
*/
|
|
395
415
|
"language": string;
|
|
416
|
+
/**
|
|
417
|
+
* Client custom styling via message bus
|
|
418
|
+
*/
|
|
419
|
+
"mbSource": string;
|
|
396
420
|
/**
|
|
397
421
|
* Name of the input.
|
|
398
422
|
*/
|
|
@@ -447,6 +471,10 @@ export namespace Components {
|
|
|
447
471
|
* Currently selected language.
|
|
448
472
|
*/
|
|
449
473
|
"language": string;
|
|
474
|
+
/**
|
|
475
|
+
* Client custom styling via message bus
|
|
476
|
+
*/
|
|
477
|
+
"mbSource": string;
|
|
450
478
|
/**
|
|
451
479
|
* Name of the input.
|
|
452
480
|
*/
|
|
@@ -485,6 +513,10 @@ export namespace Components {
|
|
|
485
513
|
* Currently selected language.
|
|
486
514
|
*/
|
|
487
515
|
"language": string;
|
|
516
|
+
/**
|
|
517
|
+
* Client custom styling via message bus
|
|
518
|
+
*/
|
|
519
|
+
"mbSource": string;
|
|
488
520
|
/**
|
|
489
521
|
* Name of the input.
|
|
490
522
|
*/
|
|
@@ -531,6 +563,10 @@ export namespace Components {
|
|
|
531
563
|
* Currently selected language.
|
|
532
564
|
*/
|
|
533
565
|
"language": string;
|
|
566
|
+
/**
|
|
567
|
+
* Client custom styling via message bus
|
|
568
|
+
*/
|
|
569
|
+
"mbSource": string;
|
|
534
570
|
/**
|
|
535
571
|
* Name of the input.
|
|
536
572
|
*/
|
|
@@ -581,6 +617,10 @@ export namespace Components {
|
|
|
581
617
|
* Currently selected language.
|
|
582
618
|
*/
|
|
583
619
|
"language": string;
|
|
620
|
+
/**
|
|
621
|
+
* Client custom styling via message bus
|
|
622
|
+
*/
|
|
623
|
+
"mbSource": string;
|
|
584
624
|
/**
|
|
585
625
|
* Name of the input.
|
|
586
626
|
*/
|
|
@@ -643,6 +683,10 @@ export namespace Components {
|
|
|
643
683
|
* Currently selected language.
|
|
644
684
|
*/
|
|
645
685
|
"language": string;
|
|
686
|
+
/**
|
|
687
|
+
* Client custom styling via message bus
|
|
688
|
+
*/
|
|
689
|
+
"mbSource": string;
|
|
646
690
|
/**
|
|
647
691
|
* Name of the input.
|
|
648
692
|
*/
|
|
@@ -685,6 +729,10 @@ export namespace Components {
|
|
|
685
729
|
* Currently selected language.
|
|
686
730
|
*/
|
|
687
731
|
"language": string;
|
|
732
|
+
/**
|
|
733
|
+
* Client custom styling via message bus
|
|
734
|
+
*/
|
|
735
|
+
"mbSource": string;
|
|
688
736
|
/**
|
|
689
737
|
* Name of the input.
|
|
690
738
|
*/
|
|
@@ -1116,6 +1164,10 @@ declare namespace LocalJSX {
|
|
|
1116
1164
|
* Currently selected language.
|
|
1117
1165
|
*/
|
|
1118
1166
|
"language"?: string;
|
|
1167
|
+
/**
|
|
1168
|
+
* Client custom styling via message bus
|
|
1169
|
+
*/
|
|
1170
|
+
"mbSource"?: string;
|
|
1119
1171
|
/**
|
|
1120
1172
|
* Name of the input.
|
|
1121
1173
|
*/
|
|
@@ -1160,6 +1212,10 @@ declare namespace LocalJSX {
|
|
|
1160
1212
|
* Currently selected language.
|
|
1161
1213
|
*/
|
|
1162
1214
|
"language"?: string;
|
|
1215
|
+
/**
|
|
1216
|
+
* Client custom styling via message bus
|
|
1217
|
+
*/
|
|
1218
|
+
"mbSource"?: string;
|
|
1163
1219
|
/**
|
|
1164
1220
|
* Name of the input.
|
|
1165
1221
|
*/
|
|
@@ -1216,6 +1272,10 @@ declare namespace LocalJSX {
|
|
|
1216
1272
|
* Currently selected language.
|
|
1217
1273
|
*/
|
|
1218
1274
|
"language"?: string;
|
|
1275
|
+
/**
|
|
1276
|
+
* Client custom styling via message bus
|
|
1277
|
+
*/
|
|
1278
|
+
"mbSource"?: string;
|
|
1219
1279
|
/**
|
|
1220
1280
|
* Name of the input.
|
|
1221
1281
|
*/
|
|
@@ -1264,6 +1324,10 @@ declare namespace LocalJSX {
|
|
|
1264
1324
|
* Currently selected language.
|
|
1265
1325
|
*/
|
|
1266
1326
|
"language"?: string;
|
|
1327
|
+
/**
|
|
1328
|
+
* Client custom styling via message bus
|
|
1329
|
+
*/
|
|
1330
|
+
"mbSource"?: string;
|
|
1267
1331
|
/**
|
|
1268
1332
|
* Name of the input.
|
|
1269
1333
|
*/
|
|
@@ -1431,6 +1495,10 @@ declare namespace LocalJSX {
|
|
|
1431
1495
|
* Currently selected language.
|
|
1432
1496
|
*/
|
|
1433
1497
|
"language"?: string;
|
|
1498
|
+
/**
|
|
1499
|
+
* Client custom styling via message bus
|
|
1500
|
+
*/
|
|
1501
|
+
"mbSource"?: string;
|
|
1434
1502
|
/**
|
|
1435
1503
|
* Name of the input.
|
|
1436
1504
|
*/
|
|
@@ -1487,6 +1555,10 @@ declare namespace LocalJSX {
|
|
|
1487
1555
|
* Currently selected language.
|
|
1488
1556
|
*/
|
|
1489
1557
|
"language"?: string;
|
|
1558
|
+
/**
|
|
1559
|
+
* Client custom styling via message bus
|
|
1560
|
+
*/
|
|
1561
|
+
"mbSource"?: string;
|
|
1490
1562
|
/**
|
|
1491
1563
|
* Name of the input.
|
|
1492
1564
|
*/
|
|
@@ -1544,6 +1616,10 @@ declare namespace LocalJSX {
|
|
|
1544
1616
|
* Currently selected language.
|
|
1545
1617
|
*/
|
|
1546
1618
|
"language"?: string;
|
|
1619
|
+
/**
|
|
1620
|
+
* Client custom styling via message bus
|
|
1621
|
+
*/
|
|
1622
|
+
"mbSource"?: string;
|
|
1547
1623
|
/**
|
|
1548
1624
|
* Name of the input.
|
|
1549
1625
|
*/
|
|
@@ -1585,6 +1661,10 @@ declare namespace LocalJSX {
|
|
|
1585
1661
|
* Currently selected language.
|
|
1586
1662
|
*/
|
|
1587
1663
|
"language"?: string;
|
|
1664
|
+
/**
|
|
1665
|
+
* Client custom styling via message bus
|
|
1666
|
+
*/
|
|
1667
|
+
"mbSource"?: string;
|
|
1588
1668
|
/**
|
|
1589
1669
|
* Name of the input.
|
|
1590
1670
|
*/
|
|
@@ -1633,6 +1713,10 @@ declare namespace LocalJSX {
|
|
|
1633
1713
|
* Currently selected language.
|
|
1634
1714
|
*/
|
|
1635
1715
|
"language"?: string;
|
|
1716
|
+
/**
|
|
1717
|
+
* Client custom styling via message bus
|
|
1718
|
+
*/
|
|
1719
|
+
"mbSource"?: string;
|
|
1636
1720
|
/**
|
|
1637
1721
|
* Name of the input.
|
|
1638
1722
|
*/
|
|
@@ -1685,6 +1769,10 @@ declare namespace LocalJSX {
|
|
|
1685
1769
|
* Currently selected language.
|
|
1686
1770
|
*/
|
|
1687
1771
|
"language"?: string;
|
|
1772
|
+
/**
|
|
1773
|
+
* Client custom styling via message bus
|
|
1774
|
+
*/
|
|
1775
|
+
"mbSource"?: string;
|
|
1688
1776
|
/**
|
|
1689
1777
|
* Name of the input.
|
|
1690
1778
|
*/
|
|
@@ -1749,6 +1837,10 @@ declare namespace LocalJSX {
|
|
|
1749
1837
|
* Currently selected language.
|
|
1750
1838
|
*/
|
|
1751
1839
|
"language"?: string;
|
|
1840
|
+
/**
|
|
1841
|
+
* Client custom styling via message bus
|
|
1842
|
+
*/
|
|
1843
|
+
"mbSource"?: string;
|
|
1752
1844
|
/**
|
|
1753
1845
|
* Name of the input.
|
|
1754
1846
|
*/
|
|
@@ -1793,6 +1885,10 @@ declare namespace LocalJSX {
|
|
|
1793
1885
|
* Currently selected language.
|
|
1794
1886
|
*/
|
|
1795
1887
|
"language"?: string;
|
|
1888
|
+
/**
|
|
1889
|
+
* Client custom styling via message bus
|
|
1890
|
+
*/
|
|
1891
|
+
"mbSource"?: string;
|
|
1796
1892
|
/**
|
|
1797
1893
|
* Name of the input.
|
|
1798
1894
|
*/
|