@sankhyalabs/ezui 6.2.0-dev.2 → 6.2.0-dev.4
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-tree.cjs.entry.js +48 -7
- package/dist/cjs/ezui.cjs.js +2 -2
- package/dist/cjs/index-a7b0c73d.js +8 -0
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +2 -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-tree/ez-tree.css +4 -1
- package/dist/collection/components/ez-tree/ez-tree.js +21 -2
- package/dist/collection/components/ez-tree/subcomponents/TreeItem.js +7 -1
- package/dist/collection/components/ez-tree/types/Tree.js +37 -3
- package/dist/collection/global/app-init.js +3 -1
- package/dist/custom-elements/index.d.ts +12 -0
- package/dist/custom-elements/index.js +454 -15
- 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-tree.entry.js +48 -7
- package/dist/esm/ezui.js +2 -2
- package/dist/esm/index-baa5e267.js +8 -0
- package/dist/esm/loader.js +2 -2
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/p-2d080bdc.entry.js +1 -0
- package/dist/ezui/p-48effc69.entry.js +1 -0
- package/dist/ezui/p-b2b1a1a7.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-tree/ez-tree.d.ts +4 -0
- package/dist/types/components/ez-tree/types/Tree.d.ts +2 -1
- package/dist/types/components.d.ts +372 -0
- package/package.json +1 -1
- package/react/components.d.ts +2 -0
- package/react/components.js +2 -0
- package/react/components.js.map +1 -1
- package/dist/ezui/p-7eb6115c.entry.js +0 -1
- package/dist/ezui/p-e78b5a16.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.
|
|
@@ -2749,6 +2915,10 @@ export namespace Components {
|
|
|
2749
2915
|
* Desabilita um ou mais itens.
|
|
2750
2916
|
*/
|
|
2751
2917
|
"disableItem": (id: string | Array<string>) => Promise<void>;
|
|
2918
|
+
/**
|
|
2919
|
+
* Define se a árvore deve permitir a filtragem hierárquica.
|
|
2920
|
+
*/
|
|
2921
|
+
"enableHierarchicalFilter": boolean;
|
|
2752
2922
|
/**
|
|
2753
2923
|
* Habilita um ou mais itens.
|
|
2754
2924
|
*/
|
|
@@ -2940,6 +3110,14 @@ export interface EzChipCustomEvent<T> extends CustomEvent<T> {
|
|
|
2940
3110
|
detail: T;
|
|
2941
3111
|
target: HTMLEzChipElement;
|
|
2942
3112
|
}
|
|
3113
|
+
export interface EzClassicInputCustomEvent<T> extends CustomEvent<T> {
|
|
3114
|
+
detail: T;
|
|
3115
|
+
target: HTMLEzClassicInputElement;
|
|
3116
|
+
}
|
|
3117
|
+
export interface EzClassicTextAreaCustomEvent<T> extends CustomEvent<T> {
|
|
3118
|
+
detail: T;
|
|
3119
|
+
target: HTMLEzClassicTextAreaElement;
|
|
3120
|
+
}
|
|
2943
3121
|
export interface EzCollapsibleBoxCustomEvent<T> extends CustomEvent<T> {
|
|
2944
3122
|
detail: T;
|
|
2945
3123
|
target: HTMLEzCollapsibleBoxElement;
|
|
@@ -3203,6 +3381,18 @@ declare global {
|
|
|
3203
3381
|
prototype: HTMLEzChipElement;
|
|
3204
3382
|
new (): HTMLEzChipElement;
|
|
3205
3383
|
};
|
|
3384
|
+
interface HTMLEzClassicInputElement extends Components.EzClassicInput, HTMLStencilElement {
|
|
3385
|
+
}
|
|
3386
|
+
var HTMLEzClassicInputElement: {
|
|
3387
|
+
prototype: HTMLEzClassicInputElement;
|
|
3388
|
+
new (): HTMLEzClassicInputElement;
|
|
3389
|
+
};
|
|
3390
|
+
interface HTMLEzClassicTextAreaElement extends Components.EzClassicTextArea, HTMLStencilElement {
|
|
3391
|
+
}
|
|
3392
|
+
var HTMLEzClassicTextAreaElement: {
|
|
3393
|
+
prototype: HTMLEzClassicTextAreaElement;
|
|
3394
|
+
new (): HTMLEzClassicTextAreaElement;
|
|
3395
|
+
};
|
|
3206
3396
|
interface HTMLEzCollapsibleBoxElement extends Components.EzCollapsibleBox, HTMLStencilElement {
|
|
3207
3397
|
}
|
|
3208
3398
|
var HTMLEzCollapsibleBoxElement: {
|
|
@@ -3601,6 +3791,8 @@ declare global {
|
|
|
3601
3791
|
"ez-chart": HTMLEzChartElement;
|
|
3602
3792
|
"ez-check": HTMLEzCheckElement;
|
|
3603
3793
|
"ez-chip": HTMLEzChipElement;
|
|
3794
|
+
"ez-classic-input": HTMLEzClassicInputElement;
|
|
3795
|
+
"ez-classic-text-area": HTMLEzClassicTextAreaElement;
|
|
3604
3796
|
"ez-collapsible-box": HTMLEzCollapsibleBoxElement;
|
|
3605
3797
|
"ez-combo-box": HTMLEzComboBoxElement;
|
|
3606
3798
|
"ez-combo-box-list": HTMLEzComboBoxListElement;
|
|
@@ -4038,6 +4230,178 @@ declare namespace LocalJSX {
|
|
|
4038
4230
|
*/
|
|
4039
4231
|
"value"?: boolean;
|
|
4040
4232
|
}
|
|
4233
|
+
interface EzClassicInput {
|
|
4234
|
+
/**
|
|
4235
|
+
* Define se o valor emitido pelo evento ezChange deve conter a máscara aplicada (padrão: false)
|
|
4236
|
+
*/
|
|
4237
|
+
"emitMaskedValue"?: boolean;
|
|
4238
|
+
/**
|
|
4239
|
+
* Define se o input está habilitado
|
|
4240
|
+
*/
|
|
4241
|
+
"enabled"?: boolean;
|
|
4242
|
+
/**
|
|
4243
|
+
* Texto de ajuda exibido abaixo do input
|
|
4244
|
+
*/
|
|
4245
|
+
"helpText"?: string;
|
|
4246
|
+
/**
|
|
4247
|
+
* Texto do label exibido acima do input
|
|
4248
|
+
*/
|
|
4249
|
+
"label"?: string;
|
|
4250
|
+
/**
|
|
4251
|
+
* Define se o ícone da esquerda é clicável
|
|
4252
|
+
*/
|
|
4253
|
+
"leftIconClickable"?: boolean;
|
|
4254
|
+
/**
|
|
4255
|
+
* Nome do ícone à esquerda
|
|
4256
|
+
*/
|
|
4257
|
+
"leftIconName"?: string;
|
|
4258
|
+
/**
|
|
4259
|
+
* Título do ícone à esquerda (tooltip)
|
|
4260
|
+
*/
|
|
4261
|
+
"leftIconTooltip"?: string;
|
|
4262
|
+
/**
|
|
4263
|
+
* 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/
|
|
4264
|
+
*/
|
|
4265
|
+
"mask"?: string;
|
|
4266
|
+
/**
|
|
4267
|
+
* Tamanho máximo do valor
|
|
4268
|
+
*/
|
|
4269
|
+
"maxlength"?: number;
|
|
4270
|
+
/**
|
|
4271
|
+
* Tamanho mínimo do valor
|
|
4272
|
+
*/
|
|
4273
|
+
"minlength"?: number;
|
|
4274
|
+
/**
|
|
4275
|
+
* Nome do input
|
|
4276
|
+
*/
|
|
4277
|
+
"name"?: string;
|
|
4278
|
+
/**
|
|
4279
|
+
* Evento disparado quando o input perde o foco.
|
|
4280
|
+
*/
|
|
4281
|
+
"onEzBlur"?: (event: EzClassicInputCustomEvent<string>) => void;
|
|
4282
|
+
/**
|
|
4283
|
+
* Evento disparado quando o valor do input muda.
|
|
4284
|
+
*/
|
|
4285
|
+
"onEzChange"?: (event: EzClassicInputCustomEvent<string>) => void;
|
|
4286
|
+
/**
|
|
4287
|
+
* Evento disparado quando um ícone é clicado. Payload: { icon: "left" | "right" }
|
|
4288
|
+
*/
|
|
4289
|
+
"onIconClick"?: (event: EzClassicInputCustomEvent<{ icon: "left" | "right" }>) => void;
|
|
4290
|
+
/**
|
|
4291
|
+
* Placeholder do input
|
|
4292
|
+
*/
|
|
4293
|
+
"placeholder"?: string;
|
|
4294
|
+
/**
|
|
4295
|
+
* Define se o input é somente leitura
|
|
4296
|
+
*/
|
|
4297
|
+
"readonly"?: boolean;
|
|
4298
|
+
/**
|
|
4299
|
+
* Define se o ícone da direita é clicável
|
|
4300
|
+
*/
|
|
4301
|
+
"rightIconClickable"?: boolean;
|
|
4302
|
+
/**
|
|
4303
|
+
* Nome do ícone à direita
|
|
4304
|
+
*/
|
|
4305
|
+
"rightIconName"?: string;
|
|
4306
|
+
/**
|
|
4307
|
+
* Título do ícone à direita (tooltip)
|
|
4308
|
+
*/
|
|
4309
|
+
"rightIconTooltip"?: string;
|
|
4310
|
+
/**
|
|
4311
|
+
* Estado visual do input: default, error, success ou warning
|
|
4312
|
+
*/
|
|
4313
|
+
"state"?: "default" | "error" | "success" | "warning";
|
|
4314
|
+
/**
|
|
4315
|
+
* Tipo do input (ex: text, password, email, etc)
|
|
4316
|
+
*/
|
|
4317
|
+
"type"?: string;
|
|
4318
|
+
/**
|
|
4319
|
+
* Valor do input
|
|
4320
|
+
*/
|
|
4321
|
+
"value"?: string;
|
|
4322
|
+
}
|
|
4323
|
+
interface EzClassicTextArea {
|
|
4324
|
+
/**
|
|
4325
|
+
* Define se a textarea está habilitada
|
|
4326
|
+
*/
|
|
4327
|
+
"enabled"?: boolean;
|
|
4328
|
+
/**
|
|
4329
|
+
* Texto de ajuda exibido abaixo da textarea
|
|
4330
|
+
*/
|
|
4331
|
+
"helpText"?: string;
|
|
4332
|
+
/**
|
|
4333
|
+
* Texto do rótulo exibido acima da área de texto
|
|
4334
|
+
*/
|
|
4335
|
+
"label"?: string;
|
|
4336
|
+
/**
|
|
4337
|
+
* Define se o ícone da esquerda é clicável
|
|
4338
|
+
*/
|
|
4339
|
+
"leftIconClickable"?: boolean;
|
|
4340
|
+
/**
|
|
4341
|
+
* Nome do ícone à esquerda
|
|
4342
|
+
*/
|
|
4343
|
+
"leftIconName"?: string;
|
|
4344
|
+
/**
|
|
4345
|
+
* Título do ícone à esquerda (tooltip)
|
|
4346
|
+
*/
|
|
4347
|
+
"leftIconTooltip"?: string;
|
|
4348
|
+
/**
|
|
4349
|
+
* Número máximo de caracteres permitidos
|
|
4350
|
+
*/
|
|
4351
|
+
"maxlength"?: number;
|
|
4352
|
+
/**
|
|
4353
|
+
* Nome da textarea
|
|
4354
|
+
*/
|
|
4355
|
+
"name"?: string;
|
|
4356
|
+
/**
|
|
4357
|
+
* Evento emitido quando a área de texto perde foco
|
|
4358
|
+
*/
|
|
4359
|
+
"onEzBlur"?: (event: EzClassicTextAreaCustomEvent<string>) => void;
|
|
4360
|
+
/**
|
|
4361
|
+
* Evento emitido quando o valor da área de texto muda
|
|
4362
|
+
*/
|
|
4363
|
+
"onEzChange"?: (event: EzClassicTextAreaCustomEvent<string>) => void;
|
|
4364
|
+
/**
|
|
4365
|
+
* Evento disparado quando um ícone é clicado. Payload: { icon: "left" | "right" }
|
|
4366
|
+
*/
|
|
4367
|
+
"onIconClick"?: (event: EzClassicTextAreaCustomEvent<{ icon: "left" | "right" }>) => void;
|
|
4368
|
+
/**
|
|
4369
|
+
* Texto de placeholder exibido quando a área de texto está vazia
|
|
4370
|
+
*/
|
|
4371
|
+
"placeholder"?: string;
|
|
4372
|
+
/**
|
|
4373
|
+
* Se a área de texto é somente leitura
|
|
4374
|
+
*/
|
|
4375
|
+
"readonly"?: boolean;
|
|
4376
|
+
/**
|
|
4377
|
+
* Comportamento de redimensionamento da área de texto
|
|
4378
|
+
*/
|
|
4379
|
+
"resize"?: 'none' | 'both' | 'horizontal' | 'vertical';
|
|
4380
|
+
/**
|
|
4381
|
+
* Define se o ícone da direita é clicável
|
|
4382
|
+
*/
|
|
4383
|
+
"rightIconClickable"?: boolean;
|
|
4384
|
+
/**
|
|
4385
|
+
* Nome do ícone à direita
|
|
4386
|
+
*/
|
|
4387
|
+
"rightIconName"?: string;
|
|
4388
|
+
/**
|
|
4389
|
+
* Título do ícone à direita (tooltip)
|
|
4390
|
+
*/
|
|
4391
|
+
"rightIconTooltip"?: string;
|
|
4392
|
+
/**
|
|
4393
|
+
* Define o número de linhas da área de texto
|
|
4394
|
+
*/
|
|
4395
|
+
"rows"?: number;
|
|
4396
|
+
/**
|
|
4397
|
+
* Estado visual da textarea: default, error, success ou warning
|
|
4398
|
+
*/
|
|
4399
|
+
"state"?: "default" | "error" | "success" | "warning";
|
|
4400
|
+
/**
|
|
4401
|
+
* Valor atual da área de texto
|
|
4402
|
+
*/
|
|
4403
|
+
"value"?: string;
|
|
4404
|
+
}
|
|
4041
4405
|
interface EzCollapsibleBox {
|
|
4042
4406
|
/**
|
|
4043
4407
|
* Define seu o componente deve ter borda
|
|
@@ -6150,6 +6514,10 @@ declare namespace LocalJSX {
|
|
|
6150
6514
|
"useAnchorSize"?: boolean;
|
|
6151
6515
|
}
|
|
6152
6516
|
interface EzTree {
|
|
6517
|
+
/**
|
|
6518
|
+
* Define se a árvore deve permitir a filtragem hierárquica.
|
|
6519
|
+
*/
|
|
6520
|
+
"enableHierarchicalFilter"?: boolean;
|
|
6153
6521
|
/**
|
|
6154
6522
|
* Define uma função que vai resolver o ícone daquele item. Retorna o nome do ícone da lib de icones do DS.
|
|
6155
6523
|
*/
|
|
@@ -6292,6 +6660,8 @@ declare namespace LocalJSX {
|
|
|
6292
6660
|
"ez-chart": EzChart;
|
|
6293
6661
|
"ez-check": EzCheck;
|
|
6294
6662
|
"ez-chip": EzChip;
|
|
6663
|
+
"ez-classic-input": EzClassicInput;
|
|
6664
|
+
"ez-classic-text-area": EzClassicTextArea;
|
|
6295
6665
|
"ez-collapsible-box": EzCollapsibleBox;
|
|
6296
6666
|
"ez-combo-box": EzComboBox;
|
|
6297
6667
|
"ez-combo-box-list": EzComboBoxList;
|
|
@@ -6375,6 +6745,8 @@ declare module "@stencil/core" {
|
|
|
6375
6745
|
"ez-chart": LocalJSX.EzChart & JSXBase.HTMLAttributes<HTMLEzChartElement>;
|
|
6376
6746
|
"ez-check": LocalJSX.EzCheck & JSXBase.HTMLAttributes<HTMLEzCheckElement>;
|
|
6377
6747
|
"ez-chip": LocalJSX.EzChip & JSXBase.HTMLAttributes<HTMLEzChipElement>;
|
|
6748
|
+
"ez-classic-input": LocalJSX.EzClassicInput & JSXBase.HTMLAttributes<HTMLEzClassicInputElement>;
|
|
6749
|
+
"ez-classic-text-area": LocalJSX.EzClassicTextArea & JSXBase.HTMLAttributes<HTMLEzClassicTextAreaElement>;
|
|
6378
6750
|
"ez-collapsible-box": LocalJSX.EzCollapsibleBox & JSXBase.HTMLAttributes<HTMLEzCollapsibleBoxElement>;
|
|
6379
6751
|
"ez-combo-box": LocalJSX.EzComboBox & JSXBase.HTMLAttributes<HTMLEzComboBoxElement>;
|
|
6380
6752
|
"ez-combo-box-list": LocalJSX.EzComboBoxList & JSXBase.HTMLAttributes<HTMLEzComboBoxListElement>;
|
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>>;
|
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');
|
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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"}
|