@sankhyalabs/ezui 6.2.0-dev.3 → 6.2.0-dev.5
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/{app-globals-cdb08d04.js → app-globals-0a67e214.js} +3 -1
- package/dist/cjs/ez-classic-input.cjs.entry.js +318 -0
- package/dist/cjs/ez-classic-text-area.cjs.entry.js +86 -0
- package/dist/cjs/ez-icon.cjs.entry.js +1 -1
- package/dist/cjs/ez-list-item.cjs.entry.js +22 -0
- package/dist/cjs/ezui.cjs.js +2 -2
- package/dist/cjs/index-a7b0c73d.js +12 -0
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +3 -0
- package/dist/collection/components/ez-classic-input/ez-classic-input.css +140 -0
- package/dist/collection/components/ez-classic-input/ez-classic-input.js +547 -0
- package/dist/collection/components/ez-classic-input/interfaces/optionsSetFocus.js +1 -0
- package/dist/collection/components/ez-classic-input/utils/maskFormatter.js +194 -0
- package/dist/collection/components/ez-classic-text-area/ez-classic-text-area.css +179 -0
- package/dist/collection/components/ez-classic-text-area/ez-classic-text-area.js +479 -0
- package/dist/collection/components/ez-classic-text-area/interfaces/optionsSetFocus.js +1 -0
- package/dist/collection/components/ez-icon/ez-icon.css +23 -18
- package/dist/collection/components/ez-list-item/ez-list-item.css +61 -0
- package/dist/collection/components/ez-list-item/ez-list-item.js +78 -0
- package/dist/collection/global/app-init.js +3 -1
- package/dist/custom-elements/index.d.ts +18 -0
- package/dist/custom-elements/index.js +423 -7
- package/dist/esm/{app-globals-8c57b015.js → app-globals-8a94d86c.js} +3 -1
- package/dist/esm/ez-classic-input.entry.js +314 -0
- package/dist/esm/ez-classic-text-area.entry.js +82 -0
- package/dist/esm/ez-icon.entry.js +1 -1
- package/dist/esm/ez-list-item.entry.js +18 -0
- package/dist/esm/ezui.js +2 -2
- package/dist/esm/index-baa5e267.js +12 -0
- package/dist/esm/loader.js +2 -2
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/p-48effc69.entry.js +1 -0
- package/dist/ezui/p-b2b1a1a7.entry.js +1 -0
- package/dist/ezui/p-d6742c1e.entry.js +1 -0
- package/dist/ezui/p-e78e87f5.entry.js +1 -0
- package/dist/types/components/ez-classic-input/ez-classic-input.d.ts +78 -0
- package/dist/types/components/ez-classic-input/interfaces/optionsSetFocus.d.ts +4 -0
- package/dist/types/components/ez-classic-input/utils/maskFormatter.d.ts +30 -0
- package/dist/types/components/ez-classic-text-area/ez-classic-text-area.d.ts +61 -0
- package/dist/types/components/ez-classic-text-area/interfaces/optionsSetFocus.d.ts +4 -0
- package/dist/types/components/ez-list-item/ez-list-item.d.ts +9 -0
- package/dist/types/components.d.ts +401 -0
- package/package.json +1 -1
- package/react/components.d.ts +3 -0
- package/react/components.js +3 -0
- package/react/components.js.map +1 -1
- package/dist/ezui/p-7eb6115c.entry.js +0 -1
- /package/dist/ezui/{p-76ad2e26.js → p-07819d50.js} +0 -0
|
@@ -14,6 +14,8 @@ import { CardItem } from "./components/ez-card-item/ez-card-item";
|
|
|
14
14
|
import { ChartAxis, ChartType } from "./components/ez-chart/interfaces";
|
|
15
15
|
import { ChartSerie, SerieClickEvent } from "./components/ez-chart/interfaces/ChartSerie";
|
|
16
16
|
import { CheckMode } from "./components/ez-check/CheckMode";
|
|
17
|
+
import { OptionsSetFocus } from "./components/ez-classic-input/interfaces/optionsSetFocus";
|
|
18
|
+
import { OptionsSetFocus as OptionsSetFocus1 } from "./components/ez-classic-text-area/interfaces/optionsSetFocus";
|
|
17
19
|
import { IEzCheckBoxListPosition, IOption, ISearchArgument } from "./components/ez-combo-box/ez-combo-box";
|
|
18
20
|
import { TFocusOptions } from "./components/ez-text-input/ez-text-input";
|
|
19
21
|
import { IEzCheckBoxListPosition as IEzCheckBoxListPosition1, IOption as IOption1 } from "./components/ez-combo-box/ez-combo-box";
|
|
@@ -427,6 +429,170 @@ export namespace Components {
|
|
|
427
429
|
*/
|
|
428
430
|
"value": boolean;
|
|
429
431
|
}
|
|
432
|
+
interface EzClassicInput {
|
|
433
|
+
/**
|
|
434
|
+
* Define se o valor emitido pelo evento ezChange deve conter a máscara aplicada (padrão: false)
|
|
435
|
+
*/
|
|
436
|
+
"emitMaskedValue"?: boolean;
|
|
437
|
+
/**
|
|
438
|
+
* Define se o input está habilitado
|
|
439
|
+
*/
|
|
440
|
+
"enabled"?: boolean;
|
|
441
|
+
/**
|
|
442
|
+
* Texto de ajuda exibido abaixo do input
|
|
443
|
+
*/
|
|
444
|
+
"helpText"?: string;
|
|
445
|
+
/**
|
|
446
|
+
* Texto do label exibido acima do input
|
|
447
|
+
*/
|
|
448
|
+
"label"?: string;
|
|
449
|
+
/**
|
|
450
|
+
* Define se o ícone da esquerda é clicável
|
|
451
|
+
*/
|
|
452
|
+
"leftIconClickable"?: boolean;
|
|
453
|
+
/**
|
|
454
|
+
* Nome do ícone à esquerda
|
|
455
|
+
*/
|
|
456
|
+
"leftIconName"?: string;
|
|
457
|
+
/**
|
|
458
|
+
* Título do ícone à esquerda (tooltip)
|
|
459
|
+
*/
|
|
460
|
+
"leftIconTooltip"?: string;
|
|
461
|
+
/**
|
|
462
|
+
* Aplica uma máscara no conteúdo conforme o padrão estabelecido. Para mais informações acesse: https://gilded-nasturtium-6b64dd.netlify.app/docs/utilities/api/classes/maskformatter/
|
|
463
|
+
*/
|
|
464
|
+
"mask"?: string;
|
|
465
|
+
/**
|
|
466
|
+
* Tamanho máximo do valor
|
|
467
|
+
*/
|
|
468
|
+
"maxlength"?: number;
|
|
469
|
+
/**
|
|
470
|
+
* Tamanho mínimo do valor
|
|
471
|
+
*/
|
|
472
|
+
"minlength"?: number;
|
|
473
|
+
/**
|
|
474
|
+
* Nome do input
|
|
475
|
+
*/
|
|
476
|
+
"name"?: string;
|
|
477
|
+
/**
|
|
478
|
+
* Placeholder do input
|
|
479
|
+
*/
|
|
480
|
+
"placeholder"?: string;
|
|
481
|
+
/**
|
|
482
|
+
* Define se o input é somente leitura
|
|
483
|
+
*/
|
|
484
|
+
"readonly"?: boolean;
|
|
485
|
+
/**
|
|
486
|
+
* Define se o ícone da direita é clicável
|
|
487
|
+
*/
|
|
488
|
+
"rightIconClickable"?: boolean;
|
|
489
|
+
/**
|
|
490
|
+
* Nome do ícone à direita
|
|
491
|
+
*/
|
|
492
|
+
"rightIconName"?: string;
|
|
493
|
+
/**
|
|
494
|
+
* Título do ícone à direita (tooltip)
|
|
495
|
+
*/
|
|
496
|
+
"rightIconTooltip"?: string;
|
|
497
|
+
/**
|
|
498
|
+
* Remove o foco do campo.
|
|
499
|
+
*/
|
|
500
|
+
"setBlur": () => Promise<void>;
|
|
501
|
+
/**
|
|
502
|
+
* Aplica o foco no campo.
|
|
503
|
+
*/
|
|
504
|
+
"setFocus": (option?: OptionsSetFocus) => Promise<void>;
|
|
505
|
+
/**
|
|
506
|
+
* Estado visual do input: default, error, success ou warning
|
|
507
|
+
*/
|
|
508
|
+
"state"?: "default" | "error" | "success" | "warning";
|
|
509
|
+
/**
|
|
510
|
+
* Tipo do input (ex: text, password, email, etc)
|
|
511
|
+
*/
|
|
512
|
+
"type": string;
|
|
513
|
+
/**
|
|
514
|
+
* Valor do input
|
|
515
|
+
*/
|
|
516
|
+
"value"?: string;
|
|
517
|
+
}
|
|
518
|
+
interface EzClassicTextArea {
|
|
519
|
+
/**
|
|
520
|
+
* Define se a textarea está habilitada
|
|
521
|
+
*/
|
|
522
|
+
"enabled"?: boolean;
|
|
523
|
+
/**
|
|
524
|
+
* Texto de ajuda exibido abaixo da textarea
|
|
525
|
+
*/
|
|
526
|
+
"helpText"?: string;
|
|
527
|
+
/**
|
|
528
|
+
* Texto do rótulo exibido acima da área de texto
|
|
529
|
+
*/
|
|
530
|
+
"label"?: string;
|
|
531
|
+
/**
|
|
532
|
+
* Define se o ícone da esquerda é clicável
|
|
533
|
+
*/
|
|
534
|
+
"leftIconClickable"?: boolean;
|
|
535
|
+
/**
|
|
536
|
+
* Nome do ícone à esquerda
|
|
537
|
+
*/
|
|
538
|
+
"leftIconName"?: string;
|
|
539
|
+
/**
|
|
540
|
+
* Título do ícone à esquerda (tooltip)
|
|
541
|
+
*/
|
|
542
|
+
"leftIconTooltip"?: string;
|
|
543
|
+
/**
|
|
544
|
+
* Número máximo de caracteres permitidos
|
|
545
|
+
*/
|
|
546
|
+
"maxlength"?: number;
|
|
547
|
+
/**
|
|
548
|
+
* Nome da textarea
|
|
549
|
+
*/
|
|
550
|
+
"name"?: string;
|
|
551
|
+
/**
|
|
552
|
+
* Texto de placeholder exibido quando a área de texto está vazia
|
|
553
|
+
*/
|
|
554
|
+
"placeholder"?: string;
|
|
555
|
+
/**
|
|
556
|
+
* Se a área de texto é somente leitura
|
|
557
|
+
*/
|
|
558
|
+
"readonly"?: boolean;
|
|
559
|
+
/**
|
|
560
|
+
* Comportamento de redimensionamento da área de texto
|
|
561
|
+
*/
|
|
562
|
+
"resize"?: 'none' | 'both' | 'horizontal' | 'vertical';
|
|
563
|
+
/**
|
|
564
|
+
* Define se o ícone da direita é clicável
|
|
565
|
+
*/
|
|
566
|
+
"rightIconClickable"?: boolean;
|
|
567
|
+
/**
|
|
568
|
+
* Nome do ícone à direita
|
|
569
|
+
*/
|
|
570
|
+
"rightIconName"?: string;
|
|
571
|
+
/**
|
|
572
|
+
* Título do ícone à direita (tooltip)
|
|
573
|
+
*/
|
|
574
|
+
"rightIconTooltip"?: string;
|
|
575
|
+
/**
|
|
576
|
+
* Define o número de linhas da área de texto
|
|
577
|
+
*/
|
|
578
|
+
"rows"?: number;
|
|
579
|
+
/**
|
|
580
|
+
* Remove o foco do campo.
|
|
581
|
+
*/
|
|
582
|
+
"setBlur": () => Promise<void>;
|
|
583
|
+
/**
|
|
584
|
+
* Aplica o foco no campo.
|
|
585
|
+
*/
|
|
586
|
+
"setFocus": (option?: OptionsSetFocus1) => Promise<void>;
|
|
587
|
+
/**
|
|
588
|
+
* Estado visual da textarea: default, error, success ou warning
|
|
589
|
+
*/
|
|
590
|
+
"state"?: "default" | "error" | "success" | "warning";
|
|
591
|
+
/**
|
|
592
|
+
* Valor atual da área de texto
|
|
593
|
+
*/
|
|
594
|
+
"value"?: string;
|
|
595
|
+
}
|
|
430
596
|
interface EzCollapsibleBox {
|
|
431
597
|
/**
|
|
432
598
|
* Aplica o foco no campo de edição de título.
|
|
@@ -1339,6 +1505,20 @@ export namespace Components {
|
|
|
1339
1505
|
*/
|
|
1340
1506
|
"useGroups": boolean;
|
|
1341
1507
|
}
|
|
1508
|
+
interface EzListItem {
|
|
1509
|
+
/**
|
|
1510
|
+
* Nome do ícone que deve ser exibido no item.
|
|
1511
|
+
*/
|
|
1512
|
+
"iconName"?: string;
|
|
1513
|
+
/**
|
|
1514
|
+
* Texto do item da lista.
|
|
1515
|
+
*/
|
|
1516
|
+
"text"?: string;
|
|
1517
|
+
/**
|
|
1518
|
+
* Título do item da lista.
|
|
1519
|
+
*/
|
|
1520
|
+
"titleText"?: string;
|
|
1521
|
+
}
|
|
1342
1522
|
interface EzLoadingBar {
|
|
1343
1523
|
/**
|
|
1344
1524
|
* Oculta o ez-loading-bar.
|
|
@@ -2944,6 +3124,14 @@ export interface EzChipCustomEvent<T> extends CustomEvent<T> {
|
|
|
2944
3124
|
detail: T;
|
|
2945
3125
|
target: HTMLEzChipElement;
|
|
2946
3126
|
}
|
|
3127
|
+
export interface EzClassicInputCustomEvent<T> extends CustomEvent<T> {
|
|
3128
|
+
detail: T;
|
|
3129
|
+
target: HTMLEzClassicInputElement;
|
|
3130
|
+
}
|
|
3131
|
+
export interface EzClassicTextAreaCustomEvent<T> extends CustomEvent<T> {
|
|
3132
|
+
detail: T;
|
|
3133
|
+
target: HTMLEzClassicTextAreaElement;
|
|
3134
|
+
}
|
|
2947
3135
|
export interface EzCollapsibleBoxCustomEvent<T> extends CustomEvent<T> {
|
|
2948
3136
|
detail: T;
|
|
2949
3137
|
target: HTMLEzCollapsibleBoxElement;
|
|
@@ -3207,6 +3395,18 @@ declare global {
|
|
|
3207
3395
|
prototype: HTMLEzChipElement;
|
|
3208
3396
|
new (): HTMLEzChipElement;
|
|
3209
3397
|
};
|
|
3398
|
+
interface HTMLEzClassicInputElement extends Components.EzClassicInput, HTMLStencilElement {
|
|
3399
|
+
}
|
|
3400
|
+
var HTMLEzClassicInputElement: {
|
|
3401
|
+
prototype: HTMLEzClassicInputElement;
|
|
3402
|
+
new (): HTMLEzClassicInputElement;
|
|
3403
|
+
};
|
|
3404
|
+
interface HTMLEzClassicTextAreaElement extends Components.EzClassicTextArea, HTMLStencilElement {
|
|
3405
|
+
}
|
|
3406
|
+
var HTMLEzClassicTextAreaElement: {
|
|
3407
|
+
prototype: HTMLEzClassicTextAreaElement;
|
|
3408
|
+
new (): HTMLEzClassicTextAreaElement;
|
|
3409
|
+
};
|
|
3210
3410
|
interface HTMLEzCollapsibleBoxElement extends Components.EzCollapsibleBox, HTMLStencilElement {
|
|
3211
3411
|
}
|
|
3212
3412
|
var HTMLEzCollapsibleBoxElement: {
|
|
@@ -3321,6 +3521,12 @@ declare global {
|
|
|
3321
3521
|
prototype: HTMLEzListElement;
|
|
3322
3522
|
new (): HTMLEzListElement;
|
|
3323
3523
|
};
|
|
3524
|
+
interface HTMLEzListItemElement extends Components.EzListItem, HTMLStencilElement {
|
|
3525
|
+
}
|
|
3526
|
+
var HTMLEzListItemElement: {
|
|
3527
|
+
prototype: HTMLEzListItemElement;
|
|
3528
|
+
new (): HTMLEzListItemElement;
|
|
3529
|
+
};
|
|
3324
3530
|
interface HTMLEzLoadingBarElement extends Components.EzLoadingBar, HTMLStencilElement {
|
|
3325
3531
|
}
|
|
3326
3532
|
var HTMLEzLoadingBarElement: {
|
|
@@ -3605,6 +3811,8 @@ declare global {
|
|
|
3605
3811
|
"ez-chart": HTMLEzChartElement;
|
|
3606
3812
|
"ez-check": HTMLEzCheckElement;
|
|
3607
3813
|
"ez-chip": HTMLEzChipElement;
|
|
3814
|
+
"ez-classic-input": HTMLEzClassicInputElement;
|
|
3815
|
+
"ez-classic-text-area": HTMLEzClassicTextAreaElement;
|
|
3608
3816
|
"ez-collapsible-box": HTMLEzCollapsibleBoxElement;
|
|
3609
3817
|
"ez-combo-box": HTMLEzComboBoxElement;
|
|
3610
3818
|
"ez-combo-box-list": HTMLEzComboBoxListElement;
|
|
@@ -3624,6 +3832,7 @@ declare global {
|
|
|
3624
3832
|
"ez-icon": HTMLEzIconElement;
|
|
3625
3833
|
"ez-link-builder": HTMLEzLinkBuilderElement;
|
|
3626
3834
|
"ez-list": HTMLEzListElement;
|
|
3835
|
+
"ez-list-item": HTMLEzListItemElement;
|
|
3627
3836
|
"ez-loading-bar": HTMLEzLoadingBarElement;
|
|
3628
3837
|
"ez-modal": HTMLEzModalElement;
|
|
3629
3838
|
"ez-modal-container": HTMLEzModalContainerElement;
|
|
@@ -4042,6 +4251,178 @@ declare namespace LocalJSX {
|
|
|
4042
4251
|
*/
|
|
4043
4252
|
"value"?: boolean;
|
|
4044
4253
|
}
|
|
4254
|
+
interface EzClassicInput {
|
|
4255
|
+
/**
|
|
4256
|
+
* Define se o valor emitido pelo evento ezChange deve conter a máscara aplicada (padrão: false)
|
|
4257
|
+
*/
|
|
4258
|
+
"emitMaskedValue"?: boolean;
|
|
4259
|
+
/**
|
|
4260
|
+
* Define se o input está habilitado
|
|
4261
|
+
*/
|
|
4262
|
+
"enabled"?: boolean;
|
|
4263
|
+
/**
|
|
4264
|
+
* Texto de ajuda exibido abaixo do input
|
|
4265
|
+
*/
|
|
4266
|
+
"helpText"?: string;
|
|
4267
|
+
/**
|
|
4268
|
+
* Texto do label exibido acima do input
|
|
4269
|
+
*/
|
|
4270
|
+
"label"?: string;
|
|
4271
|
+
/**
|
|
4272
|
+
* Define se o ícone da esquerda é clicável
|
|
4273
|
+
*/
|
|
4274
|
+
"leftIconClickable"?: boolean;
|
|
4275
|
+
/**
|
|
4276
|
+
* Nome do ícone à esquerda
|
|
4277
|
+
*/
|
|
4278
|
+
"leftIconName"?: string;
|
|
4279
|
+
/**
|
|
4280
|
+
* Título do ícone à esquerda (tooltip)
|
|
4281
|
+
*/
|
|
4282
|
+
"leftIconTooltip"?: string;
|
|
4283
|
+
/**
|
|
4284
|
+
* Aplica uma máscara no conteúdo conforme o padrão estabelecido. Para mais informações acesse: https://gilded-nasturtium-6b64dd.netlify.app/docs/utilities/api/classes/maskformatter/
|
|
4285
|
+
*/
|
|
4286
|
+
"mask"?: string;
|
|
4287
|
+
/**
|
|
4288
|
+
* Tamanho máximo do valor
|
|
4289
|
+
*/
|
|
4290
|
+
"maxlength"?: number;
|
|
4291
|
+
/**
|
|
4292
|
+
* Tamanho mínimo do valor
|
|
4293
|
+
*/
|
|
4294
|
+
"minlength"?: number;
|
|
4295
|
+
/**
|
|
4296
|
+
* Nome do input
|
|
4297
|
+
*/
|
|
4298
|
+
"name"?: string;
|
|
4299
|
+
/**
|
|
4300
|
+
* Evento disparado quando o input perde o foco.
|
|
4301
|
+
*/
|
|
4302
|
+
"onEzBlur"?: (event: EzClassicInputCustomEvent<string>) => void;
|
|
4303
|
+
/**
|
|
4304
|
+
* Evento disparado quando o valor do input muda.
|
|
4305
|
+
*/
|
|
4306
|
+
"onEzChange"?: (event: EzClassicInputCustomEvent<string>) => void;
|
|
4307
|
+
/**
|
|
4308
|
+
* Evento disparado quando um ícone é clicado. Payload: { icon: "left" | "right" }
|
|
4309
|
+
*/
|
|
4310
|
+
"onIconClick"?: (event: EzClassicInputCustomEvent<{ icon: "left" | "right" }>) => void;
|
|
4311
|
+
/**
|
|
4312
|
+
* Placeholder do input
|
|
4313
|
+
*/
|
|
4314
|
+
"placeholder"?: string;
|
|
4315
|
+
/**
|
|
4316
|
+
* Define se o input é somente leitura
|
|
4317
|
+
*/
|
|
4318
|
+
"readonly"?: boolean;
|
|
4319
|
+
/**
|
|
4320
|
+
* Define se o ícone da direita é clicável
|
|
4321
|
+
*/
|
|
4322
|
+
"rightIconClickable"?: boolean;
|
|
4323
|
+
/**
|
|
4324
|
+
* Nome do ícone à direita
|
|
4325
|
+
*/
|
|
4326
|
+
"rightIconName"?: string;
|
|
4327
|
+
/**
|
|
4328
|
+
* Título do ícone à direita (tooltip)
|
|
4329
|
+
*/
|
|
4330
|
+
"rightIconTooltip"?: string;
|
|
4331
|
+
/**
|
|
4332
|
+
* Estado visual do input: default, error, success ou warning
|
|
4333
|
+
*/
|
|
4334
|
+
"state"?: "default" | "error" | "success" | "warning";
|
|
4335
|
+
/**
|
|
4336
|
+
* Tipo do input (ex: text, password, email, etc)
|
|
4337
|
+
*/
|
|
4338
|
+
"type"?: string;
|
|
4339
|
+
/**
|
|
4340
|
+
* Valor do input
|
|
4341
|
+
*/
|
|
4342
|
+
"value"?: string;
|
|
4343
|
+
}
|
|
4344
|
+
interface EzClassicTextArea {
|
|
4345
|
+
/**
|
|
4346
|
+
* Define se a textarea está habilitada
|
|
4347
|
+
*/
|
|
4348
|
+
"enabled"?: boolean;
|
|
4349
|
+
/**
|
|
4350
|
+
* Texto de ajuda exibido abaixo da textarea
|
|
4351
|
+
*/
|
|
4352
|
+
"helpText"?: string;
|
|
4353
|
+
/**
|
|
4354
|
+
* Texto do rótulo exibido acima da área de texto
|
|
4355
|
+
*/
|
|
4356
|
+
"label"?: string;
|
|
4357
|
+
/**
|
|
4358
|
+
* Define se o ícone da esquerda é clicável
|
|
4359
|
+
*/
|
|
4360
|
+
"leftIconClickable"?: boolean;
|
|
4361
|
+
/**
|
|
4362
|
+
* Nome do ícone à esquerda
|
|
4363
|
+
*/
|
|
4364
|
+
"leftIconName"?: string;
|
|
4365
|
+
/**
|
|
4366
|
+
* Título do ícone à esquerda (tooltip)
|
|
4367
|
+
*/
|
|
4368
|
+
"leftIconTooltip"?: string;
|
|
4369
|
+
/**
|
|
4370
|
+
* Número máximo de caracteres permitidos
|
|
4371
|
+
*/
|
|
4372
|
+
"maxlength"?: number;
|
|
4373
|
+
/**
|
|
4374
|
+
* Nome da textarea
|
|
4375
|
+
*/
|
|
4376
|
+
"name"?: string;
|
|
4377
|
+
/**
|
|
4378
|
+
* Evento emitido quando a área de texto perde foco
|
|
4379
|
+
*/
|
|
4380
|
+
"onEzBlur"?: (event: EzClassicTextAreaCustomEvent<string>) => void;
|
|
4381
|
+
/**
|
|
4382
|
+
* Evento emitido quando o valor da área de texto muda
|
|
4383
|
+
*/
|
|
4384
|
+
"onEzChange"?: (event: EzClassicTextAreaCustomEvent<string>) => void;
|
|
4385
|
+
/**
|
|
4386
|
+
* Evento disparado quando um ícone é clicado. Payload: { icon: "left" | "right" }
|
|
4387
|
+
*/
|
|
4388
|
+
"onIconClick"?: (event: EzClassicTextAreaCustomEvent<{ icon: "left" | "right" }>) => void;
|
|
4389
|
+
/**
|
|
4390
|
+
* Texto de placeholder exibido quando a área de texto está vazia
|
|
4391
|
+
*/
|
|
4392
|
+
"placeholder"?: string;
|
|
4393
|
+
/**
|
|
4394
|
+
* Se a área de texto é somente leitura
|
|
4395
|
+
*/
|
|
4396
|
+
"readonly"?: boolean;
|
|
4397
|
+
/**
|
|
4398
|
+
* Comportamento de redimensionamento da área de texto
|
|
4399
|
+
*/
|
|
4400
|
+
"resize"?: 'none' | 'both' | 'horizontal' | 'vertical';
|
|
4401
|
+
/**
|
|
4402
|
+
* Define se o ícone da direita é clicável
|
|
4403
|
+
*/
|
|
4404
|
+
"rightIconClickable"?: boolean;
|
|
4405
|
+
/**
|
|
4406
|
+
* Nome do ícone à direita
|
|
4407
|
+
*/
|
|
4408
|
+
"rightIconName"?: string;
|
|
4409
|
+
/**
|
|
4410
|
+
* Título do ícone à direita (tooltip)
|
|
4411
|
+
*/
|
|
4412
|
+
"rightIconTooltip"?: string;
|
|
4413
|
+
/**
|
|
4414
|
+
* Define o número de linhas da área de texto
|
|
4415
|
+
*/
|
|
4416
|
+
"rows"?: number;
|
|
4417
|
+
/**
|
|
4418
|
+
* Estado visual da textarea: default, error, success ou warning
|
|
4419
|
+
*/
|
|
4420
|
+
"state"?: "default" | "error" | "success" | "warning";
|
|
4421
|
+
/**
|
|
4422
|
+
* Valor atual da área de texto
|
|
4423
|
+
*/
|
|
4424
|
+
"value"?: string;
|
|
4425
|
+
}
|
|
4045
4426
|
interface EzCollapsibleBox {
|
|
4046
4427
|
/**
|
|
4047
4428
|
* Define seu o componente deve ter borda
|
|
@@ -4861,6 +5242,20 @@ declare namespace LocalJSX {
|
|
|
4861
5242
|
*/
|
|
4862
5243
|
"useGroups"?: boolean;
|
|
4863
5244
|
}
|
|
5245
|
+
interface EzListItem {
|
|
5246
|
+
/**
|
|
5247
|
+
* Nome do ícone que deve ser exibido no item.
|
|
5248
|
+
*/
|
|
5249
|
+
"iconName"?: string;
|
|
5250
|
+
/**
|
|
5251
|
+
* Texto do item da lista.
|
|
5252
|
+
*/
|
|
5253
|
+
"text"?: string;
|
|
5254
|
+
/**
|
|
5255
|
+
* Título do item da lista.
|
|
5256
|
+
*/
|
|
5257
|
+
"titleText"?: string;
|
|
5258
|
+
}
|
|
4864
5259
|
interface EzLoadingBar {
|
|
4865
5260
|
}
|
|
4866
5261
|
interface EzModal {
|
|
@@ -6300,6 +6695,8 @@ declare namespace LocalJSX {
|
|
|
6300
6695
|
"ez-chart": EzChart;
|
|
6301
6696
|
"ez-check": EzCheck;
|
|
6302
6697
|
"ez-chip": EzChip;
|
|
6698
|
+
"ez-classic-input": EzClassicInput;
|
|
6699
|
+
"ez-classic-text-area": EzClassicTextArea;
|
|
6303
6700
|
"ez-collapsible-box": EzCollapsibleBox;
|
|
6304
6701
|
"ez-combo-box": EzComboBox;
|
|
6305
6702
|
"ez-combo-box-list": EzComboBoxList;
|
|
@@ -6319,6 +6716,7 @@ declare namespace LocalJSX {
|
|
|
6319
6716
|
"ez-icon": EzIcon;
|
|
6320
6717
|
"ez-link-builder": EzLinkBuilder;
|
|
6321
6718
|
"ez-list": EzList;
|
|
6719
|
+
"ez-list-item": EzListItem;
|
|
6322
6720
|
"ez-loading-bar": EzLoadingBar;
|
|
6323
6721
|
"ez-modal": EzModal;
|
|
6324
6722
|
"ez-modal-container": EzModalContainer;
|
|
@@ -6383,6 +6781,8 @@ declare module "@stencil/core" {
|
|
|
6383
6781
|
"ez-chart": LocalJSX.EzChart & JSXBase.HTMLAttributes<HTMLEzChartElement>;
|
|
6384
6782
|
"ez-check": LocalJSX.EzCheck & JSXBase.HTMLAttributes<HTMLEzCheckElement>;
|
|
6385
6783
|
"ez-chip": LocalJSX.EzChip & JSXBase.HTMLAttributes<HTMLEzChipElement>;
|
|
6784
|
+
"ez-classic-input": LocalJSX.EzClassicInput & JSXBase.HTMLAttributes<HTMLEzClassicInputElement>;
|
|
6785
|
+
"ez-classic-text-area": LocalJSX.EzClassicTextArea & JSXBase.HTMLAttributes<HTMLEzClassicTextAreaElement>;
|
|
6386
6786
|
"ez-collapsible-box": LocalJSX.EzCollapsibleBox & JSXBase.HTMLAttributes<HTMLEzCollapsibleBoxElement>;
|
|
6387
6787
|
"ez-combo-box": LocalJSX.EzComboBox & JSXBase.HTMLAttributes<HTMLEzComboBoxElement>;
|
|
6388
6788
|
"ez-combo-box-list": LocalJSX.EzComboBoxList & JSXBase.HTMLAttributes<HTMLEzComboBoxListElement>;
|
|
@@ -6402,6 +6802,7 @@ declare module "@stencil/core" {
|
|
|
6402
6802
|
"ez-icon": LocalJSX.EzIcon & JSXBase.HTMLAttributes<HTMLEzIconElement>;
|
|
6403
6803
|
"ez-link-builder": LocalJSX.EzLinkBuilder & JSXBase.HTMLAttributes<HTMLEzLinkBuilderElement>;
|
|
6404
6804
|
"ez-list": LocalJSX.EzList & JSXBase.HTMLAttributes<HTMLEzListElement>;
|
|
6805
|
+
"ez-list-item": LocalJSX.EzListItem & JSXBase.HTMLAttributes<HTMLEzListItemElement>;
|
|
6405
6806
|
"ez-loading-bar": LocalJSX.EzLoadingBar & JSXBase.HTMLAttributes<HTMLEzLoadingBarElement>;
|
|
6406
6807
|
"ez-modal": LocalJSX.EzModal & JSXBase.HTMLAttributes<HTMLEzModalElement>;
|
|
6407
6808
|
"ez-modal-container": LocalJSX.EzModalContainer & JSXBase.HTMLAttributes<HTMLEzModalContainerElement>;
|
package/package.json
CHANGED
package/react/components.d.ts
CHANGED
|
@@ -12,6 +12,8 @@ export declare const EzCardItem: import("react").ForwardRefExoticComponent<JSX.E
|
|
|
12
12
|
export declare const EzChart: import("react").ForwardRefExoticComponent<JSX.EzChart & Omit<import("react").HTMLAttributes<HTMLEzChartElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzChartElement>>;
|
|
13
13
|
export declare const EzCheck: import("react").ForwardRefExoticComponent<JSX.EzCheck & Omit<import("react").HTMLAttributes<HTMLEzCheckElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzCheckElement>>;
|
|
14
14
|
export declare const EzChip: import("react").ForwardRefExoticComponent<JSX.EzChip & Omit<import("react").HTMLAttributes<HTMLEzChipElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzChipElement>>;
|
|
15
|
+
export declare const EzClassicInput: import("react").ForwardRefExoticComponent<JSX.EzClassicInput & Omit<import("react").HTMLAttributes<HTMLEzClassicInputElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzClassicInputElement>>;
|
|
16
|
+
export declare const EzClassicTextArea: import("react").ForwardRefExoticComponent<JSX.EzClassicTextArea & Omit<import("react").HTMLAttributes<HTMLEzClassicTextAreaElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzClassicTextAreaElement>>;
|
|
15
17
|
export declare const EzCollapsibleBox: import("react").ForwardRefExoticComponent<JSX.EzCollapsibleBox & Omit<import("react").HTMLAttributes<HTMLEzCollapsibleBoxElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzCollapsibleBoxElement>>;
|
|
16
18
|
export declare const EzComboBox: import("react").ForwardRefExoticComponent<JSX.EzComboBox & Omit<import("react").HTMLAttributes<HTMLEzComboBoxElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzComboBoxElement>>;
|
|
17
19
|
export declare const EzComboBoxList: import("react").ForwardRefExoticComponent<JSX.EzComboBoxList & Omit<import("react").HTMLAttributes<HTMLEzComboBoxListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzComboBoxListElement>>;
|
|
@@ -31,6 +33,7 @@ export declare const EzGuideNavigator: import("react").ForwardRefExoticComponent
|
|
|
31
33
|
export declare const EzIcon: import("react").ForwardRefExoticComponent<JSX.EzIcon & Omit<import("react").HTMLAttributes<HTMLEzIconElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzIconElement>>;
|
|
32
34
|
export declare const EzLinkBuilder: import("react").ForwardRefExoticComponent<JSX.EzLinkBuilder & Omit<import("react").HTMLAttributes<HTMLEzLinkBuilderElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzLinkBuilderElement>>;
|
|
33
35
|
export declare const EzList: import("react").ForwardRefExoticComponent<JSX.EzList & Omit<import("react").HTMLAttributes<HTMLEzListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzListElement>>;
|
|
36
|
+
export declare const EzListItem: import("react").ForwardRefExoticComponent<JSX.EzListItem & Omit<import("react").HTMLAttributes<HTMLEzListItemElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzListItemElement>>;
|
|
34
37
|
export declare const EzLoadingBar: import("react").ForwardRefExoticComponent<JSX.EzLoadingBar & Omit<import("react").HTMLAttributes<HTMLEzLoadingBarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzLoadingBarElement>>;
|
|
35
38
|
export declare const EzModal: import("react").ForwardRefExoticComponent<JSX.EzModal & Omit<import("react").HTMLAttributes<HTMLEzModalElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzModalElement>>;
|
|
36
39
|
export declare const EzModalContainer: import("react").ForwardRefExoticComponent<JSX.EzModalContainer & Omit<import("react").HTMLAttributes<HTMLEzModalContainerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLEzModalContainerElement>>;
|
package/react/components.js
CHANGED
|
@@ -15,6 +15,8 @@ export const EzCardItem = /*@__PURE__*/ createReactComponent('ez-card-item');
|
|
|
15
15
|
export const EzChart = /*@__PURE__*/ createReactComponent('ez-chart');
|
|
16
16
|
export const EzCheck = /*@__PURE__*/ createReactComponent('ez-check');
|
|
17
17
|
export const EzChip = /*@__PURE__*/ createReactComponent('ez-chip');
|
|
18
|
+
export const EzClassicInput = /*@__PURE__*/ createReactComponent('ez-classic-input');
|
|
19
|
+
export const EzClassicTextArea = /*@__PURE__*/ createReactComponent('ez-classic-text-area');
|
|
18
20
|
export const EzCollapsibleBox = /*@__PURE__*/ createReactComponent('ez-collapsible-box');
|
|
19
21
|
export const EzComboBox = /*@__PURE__*/ createReactComponent('ez-combo-box');
|
|
20
22
|
export const EzComboBoxList = /*@__PURE__*/ createReactComponent('ez-combo-box-list');
|
|
@@ -34,6 +36,7 @@ export const EzGuideNavigator = /*@__PURE__*/ createReactComponent('ez-guide-nav
|
|
|
34
36
|
export const EzIcon = /*@__PURE__*/ createReactComponent('ez-icon');
|
|
35
37
|
export const EzLinkBuilder = /*@__PURE__*/ createReactComponent('ez-link-builder');
|
|
36
38
|
export const EzList = /*@__PURE__*/ createReactComponent('ez-list');
|
|
39
|
+
export const EzListItem = /*@__PURE__*/ createReactComponent('ez-list-item');
|
|
37
40
|
export const EzLoadingBar = /*@__PURE__*/ createReactComponent('ez-loading-bar');
|
|
38
41
|
export const EzModal = /*@__PURE__*/ createReactComponent('ez-modal');
|
|
39
42
|
export const EzModalContainer = /*@__PURE__*/ createReactComponent('ez-modal-container');
|
package/react/components.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.js","sourceRoot":"","sources":["../src/components.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"components.js","sourceRoot":"","sources":["../src/components.ts"],"names":[],"mappings":"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"}
|