skyflow-js 1.29.4 → 1.30.0
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -23,6 +23,7 @@ export declare const ELEMENT_EVENTS_TO_CLIENT: {
|
|
|
23
23
|
SUCCESS: string;
|
|
24
24
|
SUBMIT: string;
|
|
25
25
|
CREATED: string;
|
|
26
|
+
MOUNTED: string;
|
|
26
27
|
};
|
|
27
28
|
export declare const ELEMENT_EVENTS_TO_IFRAME: {
|
|
28
29
|
FRAME_READY: string;
|
|
@@ -162,6 +163,7 @@ export declare const ELEMENTS: {
|
|
|
162
163
|
attributes: {
|
|
163
164
|
type: string;
|
|
164
165
|
autocomplete: string;
|
|
166
|
+
inputmode: string;
|
|
165
167
|
};
|
|
166
168
|
sensitive: boolean;
|
|
167
169
|
mask: (string | {
|
|
@@ -174,6 +176,7 @@ export declare const ELEMENTS: {
|
|
|
174
176
|
attributes: {
|
|
175
177
|
type: string;
|
|
176
178
|
autocomplete: string;
|
|
179
|
+
inputmode: string;
|
|
177
180
|
};
|
|
178
181
|
sensitive: boolean;
|
|
179
182
|
};
|
|
@@ -182,6 +185,7 @@ export declare const ELEMENTS: {
|
|
|
182
185
|
attributes: {
|
|
183
186
|
maxLength: number;
|
|
184
187
|
type: string;
|
|
188
|
+
inputmode: string;
|
|
185
189
|
autocomplete: string;
|
|
186
190
|
};
|
|
187
191
|
sensitive: boolean;
|
|
@@ -194,6 +198,7 @@ export declare const ELEMENTS: {
|
|
|
194
198
|
attributes: {
|
|
195
199
|
maxLength: number;
|
|
196
200
|
type: string;
|
|
201
|
+
inputmode: string;
|
|
197
202
|
autocomplete: string;
|
|
198
203
|
};
|
|
199
204
|
sensitive: boolean;
|
|
@@ -202,6 +207,7 @@ export declare const ELEMENTS: {
|
|
|
202
207
|
name: string;
|
|
203
208
|
attributes: {
|
|
204
209
|
type: string;
|
|
210
|
+
inputmode: string;
|
|
205
211
|
maxLength: number;
|
|
206
212
|
};
|
|
207
213
|
sensitive: boolean;
|
|
@@ -218,6 +224,7 @@ export declare const ELEMENTS: {
|
|
|
218
224
|
name: string;
|
|
219
225
|
attributes: {
|
|
220
226
|
type: string;
|
|
227
|
+
inputmode: string;
|
|
221
228
|
maxLength: number;
|
|
222
229
|
minLength: number;
|
|
223
230
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SdkInfo } from '../../client';
|
|
2
2
|
import { IRevealElementOptions } from '../../core/external/reveal/reveal-container';
|
|
3
|
-
import { ContainerType } from '../../skyflow';
|
|
3
|
+
import { ContainerType, ISkyflow } from '../../skyflow';
|
|
4
4
|
export declare const flattenObject: (obj: any, roots?: any, sep?: string) => any;
|
|
5
5
|
export declare function formatFrameNameToId(name: string): string;
|
|
6
6
|
export declare function removeSpaces(inputString: string): string;
|
|
@@ -45,4 +45,5 @@ export declare function getMetaObject(sdkDetails: any, metaData: any, navigator:
|
|
|
45
45
|
sdk_os_version: any;
|
|
46
46
|
sdk_runtime_details: string;
|
|
47
47
|
};
|
|
48
|
+
export declare function checkAndSetForCustomUrl(config: ISkyflow): void;
|
|
48
49
|
export {};
|