ufc-itapaje-accessibility 1.0.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.
- package/dist/index.d.mts +442 -0
- package/dist/index.d.ts +442 -0
- package/dist/index.global.js +2472 -0
- package/dist/index.global.js.map +1 -0
- package/dist/index.js +1939 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1916 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +40 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,442 @@
|
|
|
1
|
+
interface ICommon {
|
|
2
|
+
deployedObjects: IDeployedObjects;
|
|
3
|
+
isIOS(): boolean;
|
|
4
|
+
jsonToHtml(obj: IJsonToHtml): HTMLElement;
|
|
5
|
+
injectStyle(css: string, innerOptions?: IInjectStyleOptions): void;
|
|
6
|
+
getFormattedDim(value: string): IFormattedDim;
|
|
7
|
+
extend(src: any, dest: any): void;
|
|
8
|
+
injectIconsFont(urls: Array<string>, callback: Function): void;
|
|
9
|
+
getFixedFont(name: string): void;
|
|
10
|
+
getFixedPseudoFont(name: string): void;
|
|
11
|
+
isFontLoaded(fontFamily?: string, callback?: Function): void;
|
|
12
|
+
warn(msg: string): void;
|
|
13
|
+
createScreenshot(url: string): Promise<string>;
|
|
14
|
+
getFileExtension(filename: string): string;
|
|
15
|
+
}
|
|
16
|
+
interface IJsonToHtml {
|
|
17
|
+
type: string;
|
|
18
|
+
attrs?: any;
|
|
19
|
+
children?: Array<IJsonToHtml>;
|
|
20
|
+
text?: string;
|
|
21
|
+
}
|
|
22
|
+
interface IInjectStyleOptions {
|
|
23
|
+
className?: string;
|
|
24
|
+
}
|
|
25
|
+
interface IFormattedDim {
|
|
26
|
+
size: string | number;
|
|
27
|
+
suffix: string;
|
|
28
|
+
}
|
|
29
|
+
interface IUnitsDim {
|
|
30
|
+
size: string | number;
|
|
31
|
+
units: string;
|
|
32
|
+
}
|
|
33
|
+
interface IDeployedObjects {
|
|
34
|
+
get(key: string): boolean;
|
|
35
|
+
contains(key: string): boolean;
|
|
36
|
+
set(key: string, val: boolean): void;
|
|
37
|
+
remove(key: string): void;
|
|
38
|
+
getAll(): Map<string, boolean>;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
declare class Common implements ICommon {
|
|
42
|
+
static DEFAULT_PIXEL: string;
|
|
43
|
+
private body;
|
|
44
|
+
private deployedMap;
|
|
45
|
+
private _isIOS;
|
|
46
|
+
private _canvas;
|
|
47
|
+
constructor();
|
|
48
|
+
isIOS(): boolean;
|
|
49
|
+
jsonToHtml(obj: IJsonToHtml): HTMLElement;
|
|
50
|
+
injectStyle(css: string, innerOptions?: IInjectStyleOptions): HTMLStyleElement;
|
|
51
|
+
getFormattedDim(value: string): IFormattedDim;
|
|
52
|
+
extend(src: any, dest: any): any;
|
|
53
|
+
injectIconsFont(urls: Array<string>, callback: Function): void;
|
|
54
|
+
getFixedFont(name: string): any;
|
|
55
|
+
getFixedPseudoFont(name: string): any;
|
|
56
|
+
isFontLoaded(fontFamily?: string, callback?: Function): void;
|
|
57
|
+
warn(msg: string): void;
|
|
58
|
+
get deployedObjects(): IDeployedObjects;
|
|
59
|
+
createScreenshot(url: string): Promise<string>;
|
|
60
|
+
getFileExtension(filename: string): string;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
interface IMenuInterface {
|
|
64
|
+
increaseText(): void;
|
|
65
|
+
decreaseText(): void;
|
|
66
|
+
increaseTextSpacing(): void;
|
|
67
|
+
decreaseTextSpacing(): void;
|
|
68
|
+
invertColors(destroy?: boolean): void;
|
|
69
|
+
grayHues(destroy?: boolean): void;
|
|
70
|
+
underlineLinks(destroy?: boolean): void;
|
|
71
|
+
bigCursor(destroy?: boolean): void;
|
|
72
|
+
readingGuide(destroy?: boolean): void;
|
|
73
|
+
textToSpeech(destroy?: boolean): void;
|
|
74
|
+
speechToText(destroy?: boolean): void;
|
|
75
|
+
disableAnimations(destroy?: boolean): void;
|
|
76
|
+
iframeModals(destroy?: boolean, button?: HTMLElement): void;
|
|
77
|
+
customFunctions(destroy?: boolean, button?: HTMLElement): void;
|
|
78
|
+
increaseLineHeight(): void;
|
|
79
|
+
decreaseLineHeight(): void;
|
|
80
|
+
dyslexicFont(destroy?: boolean): void;
|
|
81
|
+
hideImages(destroy?: boolean): void;
|
|
82
|
+
refreshCycleButtons(): void;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
interface IAccessibility {
|
|
86
|
+
menuInterface: IMenuInterface;
|
|
87
|
+
options: IAccessibilityOptions;
|
|
88
|
+
sessionState: ISessionState;
|
|
89
|
+
common: ICommon;
|
|
90
|
+
stateValues: IStateValues;
|
|
91
|
+
isReading?: boolean;
|
|
92
|
+
readonly html: HTMLElement;
|
|
93
|
+
readonly body: HTMLBodyElement;
|
|
94
|
+
readonly menu: HTMLElement;
|
|
95
|
+
readonly recognition: any;
|
|
96
|
+
readonly fixedDefaultFont: string;
|
|
97
|
+
alterTextSize(isIncrease: boolean): void;
|
|
98
|
+
alterTextSpace(isIncrease: boolean): void;
|
|
99
|
+
alterLineHeight(isIncrease: boolean): void;
|
|
100
|
+
resetTextSize(): void;
|
|
101
|
+
resetTextSpace(): void;
|
|
102
|
+
resetLineHeight(): void;
|
|
103
|
+
speechToText(): void;
|
|
104
|
+
textToSpeech(text: string): void;
|
|
105
|
+
listen(): void;
|
|
106
|
+
read(e?: Event): void;
|
|
107
|
+
runHotkey(name: string): void;
|
|
108
|
+
toggleMenu(): void;
|
|
109
|
+
invoke(action: string, button: HTMLElement): void;
|
|
110
|
+
build(): void;
|
|
111
|
+
updateReadGuide(e: Event | TouchEvent | any): void;
|
|
112
|
+
resetIfDefined(src: string, dest: any, prop: string): void;
|
|
113
|
+
onChange(updateSession: boolean): void;
|
|
114
|
+
createScreenShot(url: string): Promise<string>;
|
|
115
|
+
injectCss(injectFull: boolean): void;
|
|
116
|
+
removeCSS(): void;
|
|
117
|
+
}
|
|
118
|
+
interface IAccessibilityOptions {
|
|
119
|
+
icon?: IAccessibilityIconOptions;
|
|
120
|
+
hotkeys?: IAccessibilityHotkeysOptions;
|
|
121
|
+
guide?: IAccessibilityGuideOptions;
|
|
122
|
+
labels?: IAccessibilityMenuLabelsOptions;
|
|
123
|
+
textToSpeechLang?: string;
|
|
124
|
+
speechToTextLang?: string;
|
|
125
|
+
textPixelMode?: boolean;
|
|
126
|
+
textEmlMode?: boolean;
|
|
127
|
+
textSizeFactor?: number;
|
|
128
|
+
modules?: IAccessibilityModulesOptions;
|
|
129
|
+
modulesOrder?: Array<IAccessibilityModuleOrder>;
|
|
130
|
+
session?: IAccessibilitySessionOptions;
|
|
131
|
+
iframeModals?: Array<IIframeModal>;
|
|
132
|
+
customFunctions?: Array<ICustomFunction>;
|
|
133
|
+
statement?: IAccessibilityUrlOptions;
|
|
134
|
+
feedback?: IAccessibilityUrlOptions;
|
|
135
|
+
language?: IAccessibilityLanguageOptions;
|
|
136
|
+
linkSelector?: string;
|
|
137
|
+
logoImage?: string;
|
|
138
|
+
suppressCssInjection?: boolean;
|
|
139
|
+
suppressDomInjection?: boolean;
|
|
140
|
+
animations?: IAccessibilityAnimationsOptions;
|
|
141
|
+
}
|
|
142
|
+
interface ICustomFunction {
|
|
143
|
+
method: (cf: ICustomFunction, active: boolean) => void;
|
|
144
|
+
buttonText: string;
|
|
145
|
+
id: any;
|
|
146
|
+
toggle?: boolean;
|
|
147
|
+
icon?: string;
|
|
148
|
+
emoji?: string;
|
|
149
|
+
}
|
|
150
|
+
interface IIframeModal {
|
|
151
|
+
iframeUrl: string;
|
|
152
|
+
buttonText: string;
|
|
153
|
+
icon?: string;
|
|
154
|
+
emoji?: string;
|
|
155
|
+
}
|
|
156
|
+
interface IAccessibilityIconOptions {
|
|
157
|
+
img?: string;
|
|
158
|
+
imgElem?: IJsonToHtml;
|
|
159
|
+
fontFaceSrc?: Array<string>;
|
|
160
|
+
fontClass?: string;
|
|
161
|
+
useEmojis?: boolean;
|
|
162
|
+
fontFamilyValidation?: string;
|
|
163
|
+
tabIndex?: number;
|
|
164
|
+
closeIcon?: string;
|
|
165
|
+
resetIcon?: string;
|
|
166
|
+
closeIconElem?: IJsonToHtml;
|
|
167
|
+
resetIconElem?: IJsonToHtml;
|
|
168
|
+
}
|
|
169
|
+
interface IAccessibilityIconPositionOptions {
|
|
170
|
+
top?: IUnitsDim;
|
|
171
|
+
bottom?: IUnitsDim;
|
|
172
|
+
left?: IUnitsDim;
|
|
173
|
+
right?: IUnitsDim;
|
|
174
|
+
type?: string;
|
|
175
|
+
}
|
|
176
|
+
interface IAccessibilityIconDimensionsOptions {
|
|
177
|
+
width: IUnitsDim;
|
|
178
|
+
height: IUnitsDim;
|
|
179
|
+
}
|
|
180
|
+
interface IAccessibilityHotkeysOptions {
|
|
181
|
+
enabled?: boolean;
|
|
182
|
+
helpTitles?: boolean;
|
|
183
|
+
keys: IAccessibilityHotkeysKeysOptions;
|
|
184
|
+
}
|
|
185
|
+
interface IAccessibilityHotkeysKeysOptions {
|
|
186
|
+
toggleMenu: Array<any>;
|
|
187
|
+
invertColors: Array<any>;
|
|
188
|
+
grayHues: Array<any>;
|
|
189
|
+
underlineLinks: Array<any>;
|
|
190
|
+
bigCursor: Array<any>;
|
|
191
|
+
readingGuide: Array<any>;
|
|
192
|
+
textToSpeech: Array<any>;
|
|
193
|
+
speechToText: Array<any>;
|
|
194
|
+
disableAnimations: Array<any>;
|
|
195
|
+
}
|
|
196
|
+
interface IAccessibilityGuideOptions {
|
|
197
|
+
cBorder: string;
|
|
198
|
+
cBackground: string;
|
|
199
|
+
height: string;
|
|
200
|
+
}
|
|
201
|
+
interface IAccessibilityMenuDimensionsOptions {
|
|
202
|
+
width: IUnitsDim;
|
|
203
|
+
height: IUnitsDim;
|
|
204
|
+
}
|
|
205
|
+
interface IAccessibilityMenuLabelsOptions {
|
|
206
|
+
resetTitle: string;
|
|
207
|
+
closeTitle: string;
|
|
208
|
+
menuTitle: string;
|
|
209
|
+
increaseText: string;
|
|
210
|
+
decreaseText: string;
|
|
211
|
+
increaseTextSpacing: string;
|
|
212
|
+
decreaseTextSpacing: string;
|
|
213
|
+
invertColors: string;
|
|
214
|
+
grayHues: string;
|
|
215
|
+
bigCursor: string;
|
|
216
|
+
readingGuide: string;
|
|
217
|
+
underlineLinks: string;
|
|
218
|
+
textToSpeech: string;
|
|
219
|
+
speechToText: string;
|
|
220
|
+
disableAnimations: string;
|
|
221
|
+
increaseLineHeight: string;
|
|
222
|
+
decreaseLineHeight: string;
|
|
223
|
+
hotkeyPrefix: string;
|
|
224
|
+
dyslexicFont: string;
|
|
225
|
+
hideImages: string;
|
|
226
|
+
}
|
|
227
|
+
interface IAccessibilityModulesOptions {
|
|
228
|
+
increaseText?: boolean;
|
|
229
|
+
decreaseText?: boolean;
|
|
230
|
+
increaseTextSpacing?: boolean;
|
|
231
|
+
decreaseTextSpacing?: boolean;
|
|
232
|
+
increaseLineHeight?: boolean;
|
|
233
|
+
decreaseLineHeight?: boolean;
|
|
234
|
+
invertColors?: boolean;
|
|
235
|
+
grayHues?: boolean;
|
|
236
|
+
bigCursor?: boolean;
|
|
237
|
+
readingGuide?: boolean;
|
|
238
|
+
underlineLinks?: boolean;
|
|
239
|
+
textToSpeech?: boolean;
|
|
240
|
+
speechToText?: boolean;
|
|
241
|
+
disableAnimations?: boolean;
|
|
242
|
+
dyslexicFont?: boolean;
|
|
243
|
+
hideImages?: boolean;
|
|
244
|
+
}
|
|
245
|
+
interface IAccessibilityAnimationsOptions {
|
|
246
|
+
buttons?: boolean;
|
|
247
|
+
}
|
|
248
|
+
declare enum AccessibilityModulesType {
|
|
249
|
+
increaseText = 1,
|
|
250
|
+
decreaseText = 2,
|
|
251
|
+
increaseTextSpacing = 3,
|
|
252
|
+
decreaseTextSpacing = 4,
|
|
253
|
+
increaseLineHeight = 5,
|
|
254
|
+
decreaseLineHeight = 6,
|
|
255
|
+
invertColors = 7,
|
|
256
|
+
grayHues = 8,
|
|
257
|
+
bigCursor = 9,
|
|
258
|
+
readingGuide = 10,
|
|
259
|
+
underlineLinks = 11,
|
|
260
|
+
textToSpeech = 12,
|
|
261
|
+
speechToText = 13,
|
|
262
|
+
disableAnimations = 14,
|
|
263
|
+
iframeModals = 15,
|
|
264
|
+
customFunctions = 16,
|
|
265
|
+
dyslexicFont = 17,
|
|
266
|
+
hideImages = 18
|
|
267
|
+
}
|
|
268
|
+
interface IAccessibilityModuleOrder {
|
|
269
|
+
order: number;
|
|
270
|
+
type: AccessibilityModulesType;
|
|
271
|
+
}
|
|
272
|
+
interface IAccessibilitySessionOptions {
|
|
273
|
+
persistent?: boolean;
|
|
274
|
+
}
|
|
275
|
+
interface IAccessibilityUrlOptions {
|
|
276
|
+
url: string;
|
|
277
|
+
}
|
|
278
|
+
interface IAccessibilityLanguageOptions {
|
|
279
|
+
textToSpeechLang: string;
|
|
280
|
+
speechToTextLang: string;
|
|
281
|
+
}
|
|
282
|
+
interface ISessionState {
|
|
283
|
+
textSize: number;
|
|
284
|
+
textSpace: number;
|
|
285
|
+
lineHeight: number;
|
|
286
|
+
invertColors?: boolean;
|
|
287
|
+
grayHues?: boolean;
|
|
288
|
+
underlineLinks?: boolean;
|
|
289
|
+
bigCursor?: boolean;
|
|
290
|
+
readingGuide?: boolean;
|
|
291
|
+
}
|
|
292
|
+
interface IStateValues {
|
|
293
|
+
underlineLinks?: boolean;
|
|
294
|
+
textToSpeech?: boolean;
|
|
295
|
+
bigCursor?: boolean;
|
|
296
|
+
readingGuide?: boolean;
|
|
297
|
+
invertColors?: boolean;
|
|
298
|
+
grayHues?: boolean;
|
|
299
|
+
speechToText?: boolean;
|
|
300
|
+
disableAnimations?: boolean;
|
|
301
|
+
dyslexicFont?: boolean;
|
|
302
|
+
hideImages?: boolean;
|
|
303
|
+
speechRate?: number;
|
|
304
|
+
body: any;
|
|
305
|
+
html: any;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
declare class Accessibility implements IAccessibility {
|
|
309
|
+
static CSS_CLASS_NAME: string;
|
|
310
|
+
static MENU_WIDTH: string;
|
|
311
|
+
private _isReading;
|
|
312
|
+
private _common;
|
|
313
|
+
private _storage;
|
|
314
|
+
private _options;
|
|
315
|
+
private _sessionState;
|
|
316
|
+
private _htmlInitFS;
|
|
317
|
+
private _body;
|
|
318
|
+
private _html;
|
|
319
|
+
private _icon;
|
|
320
|
+
private _menu;
|
|
321
|
+
private _htmlOrgFontSize;
|
|
322
|
+
private _stateValues;
|
|
323
|
+
private _recognition;
|
|
324
|
+
private _speechToTextTarget;
|
|
325
|
+
private _onKeyDownBind;
|
|
326
|
+
private _fixedDefaultFont;
|
|
327
|
+
menuInterface: IMenuInterface;
|
|
328
|
+
options: IAccessibilityOptions;
|
|
329
|
+
constructor(options?: IAccessibilityOptions);
|
|
330
|
+
get stateValues(): IStateValues;
|
|
331
|
+
set stateValues(value: IStateValues);
|
|
332
|
+
get html(): HTMLElement;
|
|
333
|
+
get body(): HTMLBodyElement;
|
|
334
|
+
get menu(): HTMLElement;
|
|
335
|
+
get sessionState(): ISessionState;
|
|
336
|
+
set sessionState(value: ISessionState);
|
|
337
|
+
get common(): Common;
|
|
338
|
+
get recognition(): any;
|
|
339
|
+
get isReading(): boolean;
|
|
340
|
+
set isReading(value: boolean);
|
|
341
|
+
get fixedDefaultFont(): string;
|
|
342
|
+
private get defaultOptions();
|
|
343
|
+
initFontSize(): void;
|
|
344
|
+
fontFallback(): void;
|
|
345
|
+
addDefaultOptions(options: IAccessibilityOptions): void;
|
|
346
|
+
addModuleOrderIfNotDefined(): void;
|
|
347
|
+
disabledUnsupportedFeatures(): void;
|
|
348
|
+
injectCss(injectFull: boolean): void;
|
|
349
|
+
removeCSS(): void;
|
|
350
|
+
injectIcon(): HTMLElement;
|
|
351
|
+
parseKeys(arr: Array<any>): string;
|
|
352
|
+
injectMenu(): HTMLElement;
|
|
353
|
+
getVoices(): Promise<SpeechSynthesisVoice[]>;
|
|
354
|
+
injectTts(): Promise<void>;
|
|
355
|
+
addListeners(): void;
|
|
356
|
+
sortModuleTypes(): void;
|
|
357
|
+
disableUnsupportedModulesAndSort(): void;
|
|
358
|
+
resetAll(): void;
|
|
359
|
+
resetTextSize(): void;
|
|
360
|
+
resetLineHeight(): void;
|
|
361
|
+
resetTextSpace(): void;
|
|
362
|
+
alterTextSize(isIncrease: boolean): void;
|
|
363
|
+
alterLineHeight(isIncrease: boolean): void;
|
|
364
|
+
alterTextSpace(isIncrease: boolean): void;
|
|
365
|
+
speechToText(): void;
|
|
366
|
+
textToSpeech(text: string): void;
|
|
367
|
+
createScreenShot(url: string): Promise<string>;
|
|
368
|
+
listen(): void;
|
|
369
|
+
read(e: Event): void;
|
|
370
|
+
runHotkey(name: string): void;
|
|
371
|
+
toggleMenu(): void;
|
|
372
|
+
invoke(action: string, button: HTMLElement): void;
|
|
373
|
+
onKeyDown(e: KeyboardEvent): void;
|
|
374
|
+
build(): void;
|
|
375
|
+
updateReadGuide(e: Event | TouchEvent | any): void;
|
|
376
|
+
resetIfDefined(src: string, dest: any, prop: string): void;
|
|
377
|
+
onChange(updateSession: boolean): void;
|
|
378
|
+
saveSession(): void;
|
|
379
|
+
setSessionFromCache(): void;
|
|
380
|
+
destroy(): void;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
interface AccessibilityTheme {
|
|
384
|
+
/** Cor principal do ícone e botões ativos */
|
|
385
|
+
primaryColor?: string;
|
|
386
|
+
/** Cor de fundo do menu */
|
|
387
|
+
menuBackground?: string;
|
|
388
|
+
/** Cor do texto no menu */
|
|
389
|
+
menuColor?: string;
|
|
390
|
+
/** Cor de fundo do ícone flutuante */
|
|
391
|
+
iconBackground?: string;
|
|
392
|
+
/** Cor do ícone flutuante */
|
|
393
|
+
iconColor?: string;
|
|
394
|
+
/** Largura do menu (ex: '300px', '25vw') */
|
|
395
|
+
menuWidth?: string;
|
|
396
|
+
/** Border radius do menu e ícone */
|
|
397
|
+
borderRadius?: string;
|
|
398
|
+
/** Família de fonte do menu */
|
|
399
|
+
fontFamily?: string;
|
|
400
|
+
/** Cor do texto dos itens do menu */
|
|
401
|
+
itemColor?: string;
|
|
402
|
+
/** Cor de fundo dos botões do menu */
|
|
403
|
+
itemButtonBackground?: string;
|
|
404
|
+
/** Cor ao passar o mouse nos botões */
|
|
405
|
+
itemButtonHoverBackground?: string;
|
|
406
|
+
/** Cor dos ícones dos itens */
|
|
407
|
+
itemIconColor?: string;
|
|
408
|
+
/** Sombra do ícone flutuante */
|
|
409
|
+
iconBoxShadow?: string;
|
|
410
|
+
/** Altura do menu */
|
|
411
|
+
menuHeight?: string;
|
|
412
|
+
/** Altura máxima do menu */
|
|
413
|
+
menuMaxHeight?: string;
|
|
414
|
+
/** Posição top do menu */
|
|
415
|
+
menuTop?: string;
|
|
416
|
+
}
|
|
417
|
+
declare function createThemeCss(theme: AccessibilityTheme): string;
|
|
418
|
+
declare function applyTheme(theme: AccessibilityTheme): void;
|
|
419
|
+
declare function removeTheme(): void;
|
|
420
|
+
|
|
421
|
+
declare const ptBRLabels: IAccessibilityMenuLabelsOptions;
|
|
422
|
+
|
|
423
|
+
interface CreateModuleConfig {
|
|
424
|
+
/** ID único do módulo */
|
|
425
|
+
id: string;
|
|
426
|
+
/** Texto exibido no botão */
|
|
427
|
+
label: string;
|
|
428
|
+
/** Ícone Material Icons (quando não usa emojis) */
|
|
429
|
+
icon?: string;
|
|
430
|
+
/** Emoji (quando usa emojis) */
|
|
431
|
+
emoji?: string;
|
|
432
|
+
/** Se true, o botão alterna entre ativo/inativo */
|
|
433
|
+
toggle?: boolean;
|
|
434
|
+
/** Chamado quando o módulo é ativado */
|
|
435
|
+
onActivate: () => void;
|
|
436
|
+
/** Chamado quando o módulo é desativado (apenas se toggle = true) */
|
|
437
|
+
onDeactivate?: () => void;
|
|
438
|
+
}
|
|
439
|
+
declare function createModule(config: CreateModuleConfig): ICustomFunction;
|
|
440
|
+
declare function createModules(configs: CreateModuleConfig[]): ICustomFunction[];
|
|
441
|
+
|
|
442
|
+
export { Accessibility, AccessibilityModulesType, type AccessibilityTheme, type CreateModuleConfig, type IAccessibility, type IAccessibilityAnimationsOptions, type IAccessibilityGuideOptions, type IAccessibilityHotkeysKeysOptions, type IAccessibilityHotkeysOptions, type IAccessibilityIconDimensionsOptions, type IAccessibilityIconOptions, type IAccessibilityIconPositionOptions, type IAccessibilityMenuDimensionsOptions, type IAccessibilityMenuLabelsOptions, type IAccessibilityModulesOptions, type IAccessibilityOptions, type IAccessibilitySessionOptions, type ICustomFunction, type IIframeModal, type IMenuInterface, type ISessionState, type IStateValues, applyTheme, createModule, createModules, createThemeCss, Accessibility as default, ptBRLabels, removeTheme };
|