@sankhyalabs/ezui 6.2.0-dev.3 → 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.
Files changed (42) hide show
  1. package/dist/cjs/{app-globals-cdb08d04.js → app-globals-0a67e214.js} +3 -1
  2. package/dist/cjs/ez-classic-input.cjs.entry.js +318 -0
  3. package/dist/cjs/ez-classic-text-area.cjs.entry.js +86 -0
  4. package/dist/cjs/ez-icon.cjs.entry.js +1 -1
  5. package/dist/cjs/ezui.cjs.js +2 -2
  6. package/dist/cjs/index-a7b0c73d.js +8 -0
  7. package/dist/cjs/loader.cjs.js +2 -2
  8. package/dist/collection/collection-manifest.json +2 -0
  9. package/dist/collection/components/ez-classic-input/ez-classic-input.css +140 -0
  10. package/dist/collection/components/ez-classic-input/ez-classic-input.js +547 -0
  11. package/dist/collection/components/ez-classic-input/interfaces/optionsSetFocus.js +1 -0
  12. package/dist/collection/components/ez-classic-input/utils/maskFormatter.js +194 -0
  13. package/dist/collection/components/ez-classic-text-area/ez-classic-text-area.css +179 -0
  14. package/dist/collection/components/ez-classic-text-area/ez-classic-text-area.js +479 -0
  15. package/dist/collection/components/ez-classic-text-area/interfaces/optionsSetFocus.js +1 -0
  16. package/dist/collection/components/ez-icon/ez-icon.css +23 -18
  17. package/dist/collection/global/app-init.js +3 -1
  18. package/dist/custom-elements/index.d.ts +12 -0
  19. package/dist/custom-elements/index.js +405 -7
  20. package/dist/esm/{app-globals-8c57b015.js → app-globals-8a94d86c.js} +3 -1
  21. package/dist/esm/ez-classic-input.entry.js +314 -0
  22. package/dist/esm/ez-classic-text-area.entry.js +82 -0
  23. package/dist/esm/ez-icon.entry.js +1 -1
  24. package/dist/esm/ezui.js +2 -2
  25. package/dist/esm/index-baa5e267.js +8 -0
  26. package/dist/esm/loader.js +2 -2
  27. package/dist/ezui/ezui.esm.js +1 -1
  28. package/dist/ezui/p-48effc69.entry.js +1 -0
  29. package/dist/ezui/p-b2b1a1a7.entry.js +1 -0
  30. package/dist/ezui/p-e78e87f5.entry.js +1 -0
  31. package/dist/types/components/ez-classic-input/ez-classic-input.d.ts +78 -0
  32. package/dist/types/components/ez-classic-input/interfaces/optionsSetFocus.d.ts +4 -0
  33. package/dist/types/components/ez-classic-input/utils/maskFormatter.d.ts +30 -0
  34. package/dist/types/components/ez-classic-text-area/ez-classic-text-area.d.ts +61 -0
  35. package/dist/types/components/ez-classic-text-area/interfaces/optionsSetFocus.d.ts +4 -0
  36. package/dist/types/components.d.ts +364 -0
  37. package/package.json +1 -1
  38. package/react/components.d.ts +2 -0
  39. package/react/components.js +2 -0
  40. package/react/components.js.map +1 -1
  41. package/dist/ezui/p-7eb6115c.entry.js +0 -1
  42. /package/dist/ezui/{p-76ad2e26.js → p-07819d50.js} +0 -0
@@ -0,0 +1,78 @@
1
+ import { EventEmitter } from '../../stencil-public-runtime';
2
+ import { OptionsSetFocus } from './interfaces/optionsSetFocus';
3
+ export declare class EzClassicInput {
4
+ _element: HTMLElement;
5
+ private _inputElem?;
6
+ private _maskFormatter?;
7
+ /** Tipo do input (ex: text, password, email, etc) */
8
+ type: string;
9
+ /** Valor do input */
10
+ value?: string;
11
+ /** Texto do label exibido acima do input */
12
+ label?: string;
13
+ /** Texto de ajuda exibido abaixo do input */
14
+ helpText?: string;
15
+ /** Placeholder do input */
16
+ placeholder?: string;
17
+ /** Define se o input está habilitado */
18
+ enabled?: boolean;
19
+ /** Define se o input é somente leitura */
20
+ readonly?: boolean;
21
+ /** Nome do input */
22
+ name?: string;
23
+ /** Tamanho mínimo do valor */
24
+ minlength?: number;
25
+ /** Tamanho máximo do valor */
26
+ maxlength?: number;
27
+ /** Nome do ícone à esquerda */
28
+ leftIconName?: string;
29
+ /** Nome do ícone à direita */
30
+ rightIconName?: string;
31
+ /** Título do ícone à direita (tooltip) */
32
+ rightIconTooltip?: string;
33
+ /** Título do ícone à esquerda (tooltip) */
34
+ leftIconTooltip?: string;
35
+ /** Estado visual do input: default, error, success ou warning */
36
+ state?: "default" | "error" | "success" | "warning";
37
+ /** Define se o ícone da esquerda é clicável */
38
+ leftIconClickable?: boolean;
39
+ /** Define se o ícone da direita é clicável */
40
+ rightIconClickable?: boolean;
41
+ /** Aplica uma máscara no conteúdo conforme o padrão estabelecido.
42
+ * Para mais informações acesse:
43
+ * https://gilded-nasturtium-6b64dd.netlify.app/docs/utilities/api/classes/maskformatter/
44
+ */
45
+ mask?: string;
46
+ /** Define se o valor emitido pelo evento ezChange deve conter a máscara aplicada (padrão: false) */
47
+ emitMaskedValue?: boolean;
48
+ /**
49
+ * Evento disparado quando o valor do input muda.
50
+ */
51
+ ezChange: EventEmitter<string>;
52
+ /**
53
+ * Evento disparado quando o input perde o foco.
54
+ */
55
+ ezBlur: EventEmitter<string>;
56
+ /**
57
+ * Evento disparado quando um ícone é clicado.
58
+ * Payload: { icon: "left" | "right" }
59
+ */
60
+ iconClick: EventEmitter<{
61
+ icon: "left" | "right";
62
+ }>;
63
+ /**
64
+ * Aplica o foco no campo.
65
+ */
66
+ setFocus(option?: OptionsSetFocus): Promise<void>;
67
+ /**
68
+ * Remove o foco do campo.
69
+ */
70
+ setBlur(): Promise<void>;
71
+ private onInput;
72
+ private onBlur;
73
+ private handleIconClick;
74
+ private addInfoId;
75
+ componentWillLoad(): void;
76
+ componentDidLoad(): void;
77
+ render(): any;
78
+ }
@@ -0,0 +1,4 @@
1
+ export interface OptionsSetFocus {
2
+ selectText?: boolean;
3
+ preventScroll?: boolean;
4
+ }
@@ -0,0 +1,30 @@
1
+ export declare class MaskFormatter {
2
+ private mask;
3
+ private maskChars;
4
+ constructor(mask: string);
5
+ /**
6
+ * Formata a string de acordo com a máscara
7
+ * @param value String a ser formatada
8
+ * @returns String formatada
9
+ */
10
+ format(value: string): string;
11
+ /**
12
+ * Remove caracteres que não são compatíveis com nenhuma posição da máscara
13
+ */
14
+ private removeIncompatibleChars;
15
+ /**
16
+ * Remove a máscara de uma string formatada
17
+ * @param formattedValue String formatada
18
+ * @returns String sem máscara
19
+ */
20
+ removeMask(formattedValue: string): string;
21
+ /**
22
+ * Retorna a máscara configurada
23
+ */
24
+ getMask(): string;
25
+ /**
26
+ * Gera um placeholder baseado na máscara
27
+ * @returns String com placeholder gerado
28
+ */
29
+ generatePlaceholder(): string;
30
+ }
@@ -0,0 +1,61 @@
1
+ import { EventEmitter } from '../../stencil-public-runtime';
2
+ import { OptionsSetFocus } from './interfaces/optionsSetFocus';
3
+ export declare class EzClassicTextArea {
4
+ _element: HTMLElement;
5
+ private _textAreaElem?;
6
+ /** Nome da textarea */
7
+ name?: string;
8
+ /** Texto do rótulo exibido acima da área de texto */
9
+ label?: string;
10
+ /** Texto de placeholder exibido quando a área de texto está vazia */
11
+ placeholder?: string;
12
+ /** Valor atual da área de texto */
13
+ value?: string;
14
+ /** Texto de ajuda exibido abaixo da textarea */
15
+ helpText?: string;
16
+ /** Estado visual da textarea: default, error, success ou warning */
17
+ state?: "default" | "error" | "success" | "warning";
18
+ /** Define se a textarea está habilitada */
19
+ enabled?: boolean;
20
+ /** Se a área de texto é somente leitura */
21
+ readonly?: boolean;
22
+ /** Número máximo de caracteres permitidos */
23
+ maxlength?: number;
24
+ /** Comportamento de redimensionamento da área de texto */
25
+ resize?: 'none' | 'both' | 'horizontal' | 'vertical';
26
+ /** Nome do ícone à esquerda */
27
+ leftIconName?: string;
28
+ /** Nome do ícone à direita */
29
+ rightIconName?: string;
30
+ /** Título do ícone à direita (tooltip) */
31
+ rightIconTooltip?: string;
32
+ /** Título do ícone à esquerda (tooltip) */
33
+ leftIconTooltip?: string;
34
+ /** Define se o ícone da esquerda é clicável */
35
+ leftIconClickable?: boolean;
36
+ /** Define se o ícone da direita é clicável */
37
+ rightIconClickable?: boolean;
38
+ /** Define o número de linhas da área de texto */
39
+ rows?: number;
40
+ /** Evento emitido quando o valor da área de texto muda */
41
+ ezChange: EventEmitter<string>;
42
+ /** Evento emitido quando a área de texto perde foco */
43
+ ezBlur: EventEmitter<string>;
44
+ /**
45
+ * Evento disparado quando um ícone é clicado.
46
+ * Payload: { icon: "left" | "right" }
47
+ */
48
+ iconClick: EventEmitter<{
49
+ icon: "left" | "right";
50
+ }>;
51
+ /** Aplica o foco no campo. */
52
+ setFocus(option?: OptionsSetFocus): Promise<void>;
53
+ /** Remove o foco do campo. */
54
+ setBlur(): Promise<void>;
55
+ private onBlur;
56
+ private handleInput;
57
+ private handleIconClick;
58
+ private addInfoId;
59
+ componentDidLoad(): void;
60
+ render(): any;
61
+ }
@@ -0,0 +1,4 @@
1
+ export interface OptionsSetFocus {
2
+ selectText?: boolean;
3
+ preventScroll?: boolean;
4
+ }
@@ -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.
@@ -2944,6 +3110,14 @@ export interface EzChipCustomEvent<T> extends CustomEvent<T> {
2944
3110
  detail: T;
2945
3111
  target: HTMLEzChipElement;
2946
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
+ }
2947
3121
  export interface EzCollapsibleBoxCustomEvent<T> extends CustomEvent<T> {
2948
3122
  detail: T;
2949
3123
  target: HTMLEzCollapsibleBoxElement;
@@ -3207,6 +3381,18 @@ declare global {
3207
3381
  prototype: HTMLEzChipElement;
3208
3382
  new (): HTMLEzChipElement;
3209
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
+ };
3210
3396
  interface HTMLEzCollapsibleBoxElement extends Components.EzCollapsibleBox, HTMLStencilElement {
3211
3397
  }
3212
3398
  var HTMLEzCollapsibleBoxElement: {
@@ -3605,6 +3791,8 @@ declare global {
3605
3791
  "ez-chart": HTMLEzChartElement;
3606
3792
  "ez-check": HTMLEzCheckElement;
3607
3793
  "ez-chip": HTMLEzChipElement;
3794
+ "ez-classic-input": HTMLEzClassicInputElement;
3795
+ "ez-classic-text-area": HTMLEzClassicTextAreaElement;
3608
3796
  "ez-collapsible-box": HTMLEzCollapsibleBoxElement;
3609
3797
  "ez-combo-box": HTMLEzComboBoxElement;
3610
3798
  "ez-combo-box-list": HTMLEzComboBoxListElement;
@@ -4042,6 +4230,178 @@ declare namespace LocalJSX {
4042
4230
  */
4043
4231
  "value"?: boolean;
4044
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
+ }
4045
4405
  interface EzCollapsibleBox {
4046
4406
  /**
4047
4407
  * Define seu o componente deve ter borda
@@ -6300,6 +6660,8 @@ declare namespace LocalJSX {
6300
6660
  "ez-chart": EzChart;
6301
6661
  "ez-check": EzCheck;
6302
6662
  "ez-chip": EzChip;
6663
+ "ez-classic-input": EzClassicInput;
6664
+ "ez-classic-text-area": EzClassicTextArea;
6303
6665
  "ez-collapsible-box": EzCollapsibleBox;
6304
6666
  "ez-combo-box": EzComboBox;
6305
6667
  "ez-combo-box-list": EzComboBoxList;
@@ -6383,6 +6745,8 @@ declare module "@stencil/core" {
6383
6745
  "ez-chart": LocalJSX.EzChart & JSXBase.HTMLAttributes<HTMLEzChartElement>;
6384
6746
  "ez-check": LocalJSX.EzCheck & JSXBase.HTMLAttributes<HTMLEzCheckElement>;
6385
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>;
6386
6750
  "ez-collapsible-box": LocalJSX.EzCollapsibleBox & JSXBase.HTMLAttributes<HTMLEzCollapsibleBoxElement>;
6387
6751
  "ez-combo-box": LocalJSX.EzComboBox & JSXBase.HTMLAttributes<HTMLEzComboBoxElement>;
6388
6752
  "ez-combo-box-list": LocalJSX.EzComboBoxList & JSXBase.HTMLAttributes<HTMLEzComboBoxListElement>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sankhyalabs/ezui",
3
- "version": "6.2.0-dev.3",
3
+ "version": "6.2.0-dev.4",
4
4
  "description": "Biblioteca de componentes Sankhya.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/custom-elements/index.js",
@@ -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>>;
@@ -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');
@@ -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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"}