@3t-transform/threeteeui 0.0.15 → 0.0.17

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 (153) hide show
  1. package/dist/cjs/index-864b7110.js +1531 -0
  2. package/dist/cjs/index.cjs.js +2 -0
  3. package/dist/cjs/loader.cjs.js +22 -0
  4. package/dist/cjs/tttx-button.cjs.entry.js +34 -0
  5. package/dist/cjs/tttx-checkbox.cjs.entry.js +28 -0
  6. package/dist/cjs/tttx-form.cjs.entry.js +374 -0
  7. package/dist/cjs/tttx-icon.cjs.entry.js +21 -0
  8. package/dist/cjs/tttx-input-calendar.cjs.entry.js +125 -0
  9. package/dist/cjs/tttx-keyvalue-block.cjs.entry.js +33 -0
  10. package/dist/cjs/tttx-list.cjs.entry.js +198 -0
  11. package/dist/cjs/tttx-loading-spinner.cjs.entry.js +26 -0
  12. package/dist/cjs/tttx-popover-content.cjs.entry.js +23 -0
  13. package/dist/cjs/tttx-standalone-input.cjs.entry.js +136 -0
  14. package/dist/cjs/tttx-table.cjs.entry.js +60 -0
  15. package/dist/cjs/tttx.cjs.js +23 -0
  16. package/dist/collection/collection-manifest.json +22 -0
  17. package/dist/collection/components/atoms/tttx-button/tttx-button.css +138 -0
  18. package/dist/collection/components/atoms/tttx-button/tttx-button.js +110 -0
  19. package/dist/collection/components/atoms/tttx-button/tttx-button.stories.js +74 -0
  20. package/dist/collection/components/atoms/tttx-icon/tttx-icon.css +108 -0
  21. package/dist/collection/components/atoms/tttx-icon/tttx-icon.js +62 -0
  22. package/dist/collection/components/atoms/tttx-icon/tttx-icon.stories.js +22 -0
  23. package/dist/collection/components/atoms/tttx-keyvalue-block/tttx-keyvalue-block.css +26 -0
  24. package/dist/collection/components/atoms/tttx-keyvalue-block/tttx-keyvalue-block.js +56 -0
  25. package/dist/collection/components/atoms/tttx-keyvalue-block/tttx-keyvalue-block.stories.js +12 -0
  26. package/dist/collection/components/atoms/tttx-loading-spinner/tttx-loading-spinner.css +48 -0
  27. package/dist/collection/components/atoms/tttx-loading-spinner/tttx-loading-spinner.js +67 -0
  28. package/dist/collection/components/atoms/tttx-loading-spinner/tttx-loading-spinner.stories.js +17 -0
  29. package/dist/collection/components/atoms/tttx-popover-content/tttx-popover-content.css +30 -0
  30. package/dist/collection/components/atoms/tttx-popover-content/tttx-popover-content.js +97 -0
  31. package/dist/collection/components/atoms/tttx-popover-content/tttx-popover-content.stories.js +23 -0
  32. package/dist/collection/components/atoms/ttx-checkbox/tttx-checkbox.css +181 -0
  33. package/dist/collection/components/atoms/ttx-checkbox/tttx-checkbox.js +102 -0
  34. package/dist/collection/components/atoms/ttx-checkbox/tttx-checkbox.stories.js +13 -0
  35. package/dist/collection/components/molecules/tttx-form/tttx-form.css +314 -0
  36. package/dist/collection/components/molecules/tttx-form/tttx-form.js +452 -0
  37. package/dist/collection/components/molecules/tttx-form/tttx-form.stories.js +109 -0
  38. package/dist/collection/components/molecules/tttx-input-calendar/tttx-input-calendar.css +93 -0
  39. package/dist/collection/components/molecules/tttx-input-calendar/tttx-input-calendar.js +174 -0
  40. package/dist/collection/components/molecules/tttx-input-calendar/tttx-input-calendar.stories.js +27 -0
  41. package/dist/collection/components/molecules/tttx-list/tttx-list.css +56 -0
  42. package/dist/collection/components/molecules/tttx-list/tttx-list.js +312 -0
  43. package/dist/collection/components/molecules/tttx-list/tttx-list.stories.js +37 -0
  44. package/dist/collection/components/molecules/tttx-standalone-input/tttx-standalone-input.css +177 -0
  45. package/dist/collection/components/molecules/tttx-standalone-input/tttx-standalone-input.js +570 -0
  46. package/dist/collection/components/molecules/tttx-standalone-input/tttx-standalone-input.stories.js +156 -0
  47. package/dist/collection/components/molecules/tttx-table/tttx-table.css +166 -0
  48. package/dist/collection/components/molecules/tttx-table/tttx-table.js +174 -0
  49. package/dist/collection/components/molecules/tttx-table/tttx-table.stories.js +81 -0
  50. package/dist/collection/components/palette.stories.js +88 -0
  51. package/dist/collection/docs/gettingstarted-developer.stories.js +9 -0
  52. package/dist/collection/icons.js +2838 -0
  53. package/dist/collection/index.js +1 -0
  54. package/dist/components/index.d.ts +41 -0
  55. package/dist/components/index.js +12 -0
  56. package/dist/components/tttx-button.d.ts +11 -0
  57. package/dist/components/tttx-button.js +6 -0
  58. package/dist/components/tttx-button2.js +56 -0
  59. package/dist/components/tttx-checkbox.d.ts +11 -0
  60. package/dist/components/tttx-checkbox.js +46 -0
  61. package/dist/components/tttx-form.d.ts +11 -0
  62. package/dist/components/tttx-form.js +391 -0
  63. package/dist/components/tttx-icon.d.ts +11 -0
  64. package/dist/components/tttx-icon.js +6 -0
  65. package/dist/components/tttx-icon2.js +35 -0
  66. package/dist/components/tttx-input-calendar.d.ts +11 -0
  67. package/dist/components/tttx-input-calendar.js +157 -0
  68. package/dist/components/tttx-keyvalue-block.d.ts +11 -0
  69. package/dist/components/tttx-keyvalue-block.js +49 -0
  70. package/dist/components/tttx-list.d.ts +11 -0
  71. package/dist/components/tttx-list.js +225 -0
  72. package/dist/components/tttx-loading-spinner.d.ts +11 -0
  73. package/dist/components/tttx-loading-spinner.js +6 -0
  74. package/dist/components/tttx-loading-spinner2.js +40 -0
  75. package/dist/components/tttx-popover-content.d.ts +11 -0
  76. package/dist/components/tttx-popover-content.js +6 -0
  77. package/dist/components/tttx-popover-content2.js +39 -0
  78. package/dist/components/tttx-standalone-input.d.ts +11 -0
  79. package/dist/components/tttx-standalone-input.js +179 -0
  80. package/dist/components/tttx-table.d.ts +11 -0
  81. package/dist/components/tttx-table.js +91 -0
  82. package/dist/esm/index-232e347b.js +1502 -0
  83. package/dist/esm/index.js +1 -0
  84. package/dist/esm/loader.js +18 -0
  85. package/dist/esm/polyfills/core-js.js +11 -0
  86. package/dist/esm/polyfills/css-shim.js +1 -0
  87. package/dist/esm/polyfills/dom.js +79 -0
  88. package/dist/esm/polyfills/es5-html-element.js +1 -0
  89. package/dist/esm/polyfills/index.js +34 -0
  90. package/dist/esm/polyfills/system.js +6 -0
  91. package/dist/esm/tttx-button.entry.js +30 -0
  92. package/dist/esm/tttx-checkbox.entry.js +24 -0
  93. package/dist/esm/tttx-form.entry.js +370 -0
  94. package/dist/esm/tttx-icon.entry.js +17 -0
  95. package/dist/esm/tttx-input-calendar.entry.js +121 -0
  96. package/dist/esm/tttx-keyvalue-block.entry.js +29 -0
  97. package/dist/esm/tttx-list.entry.js +194 -0
  98. package/dist/esm/tttx-loading-spinner.entry.js +22 -0
  99. package/dist/esm/tttx-popover-content.entry.js +19 -0
  100. package/dist/esm/tttx-standalone-input.entry.js +132 -0
  101. package/dist/esm/tttx-table.entry.js +56 -0
  102. package/dist/esm/tttx.js +18 -0
  103. package/dist/index.cjs.js +1 -0
  104. package/dist/index.js +1 -0
  105. package/dist/tttx/index.esm.js +0 -0
  106. package/dist/tttx/p-01e1894e.entry.js +1 -0
  107. package/dist/tttx/p-184c4fae.js +2 -0
  108. package/dist/tttx/p-1bc3dfee.entry.js +1 -0
  109. package/dist/tttx/p-1cf8f9e8.entry.js +1 -0
  110. package/dist/tttx/p-220f7519.entry.js +1 -0
  111. package/dist/tttx/p-3973b7dd.entry.js +1 -0
  112. package/dist/tttx/p-5247e827.entry.js +1 -0
  113. package/dist/tttx/p-6828fe6f.entry.js +1 -0
  114. package/dist/tttx/p-81904eed.entry.js +1 -0
  115. package/dist/tttx/p-cf107fb6.entry.js +1 -0
  116. package/dist/tttx/p-f56fe662.entry.js +1 -0
  117. package/dist/tttx/p-fe4c70b2.entry.js +1 -0
  118. package/dist/tttx/tttx.esm.js +1 -0
  119. package/dist/types/components/atoms/tttx-button/tttx-button.d.ts +10 -0
  120. package/dist/types/components/atoms/tttx-button/tttx-button.stories.d.ts +10 -0
  121. package/dist/types/components/atoms/tttx-icon/tttx-icon.d.ts +5 -0
  122. package/dist/types/components/atoms/tttx-icon/tttx-icon.stories.d.ts +20 -0
  123. package/dist/types/components/atoms/tttx-keyvalue-block/tttx-keyvalue-block.d.ts +4 -0
  124. package/dist/types/components/atoms/tttx-keyvalue-block/tttx-keyvalue-block.stories.d.ts +6 -0
  125. package/dist/types/components/atoms/tttx-loading-spinner/tttx-loading-spinner.d.ts +6 -0
  126. package/dist/types/components/atoms/tttx-loading-spinner/tttx-loading-spinner.stories.d.ts +17 -0
  127. package/dist/types/components/atoms/tttx-popover-content/tttx-popover-content.d.ts +7 -0
  128. package/dist/types/components/atoms/tttx-popover-content/tttx-popover-content.stories.d.ts +18 -0
  129. package/dist/types/components/atoms/ttx-checkbox/tttx-checkbox.d.ts +9 -0
  130. package/dist/types/components/atoms/ttx-checkbox/tttx-checkbox.stories.d.ts +6 -0
  131. package/dist/types/components/molecules/tttx-form/tttx-form.d.ts +134 -0
  132. package/dist/types/components/molecules/tttx-form/tttx-form.stories.d.ts +12 -0
  133. package/dist/types/components/molecules/tttx-input-calendar/tttx-input-calendar.d.ts +19 -0
  134. package/dist/types/components/molecules/tttx-input-calendar/tttx-input-calendar.stories.d.ts +26 -0
  135. package/dist/types/components/molecules/tttx-list/tttx-list.d.ts +51 -0
  136. package/dist/types/components/molecules/tttx-list/tttx-list.stories.d.ts +13 -0
  137. package/dist/types/components/molecules/tttx-standalone-input/tttx-standalone-input.d.ts +38 -0
  138. package/dist/types/components/molecules/tttx-standalone-input/tttx-standalone-input.stories.d.ts +106 -0
  139. package/dist/types/components/molecules/tttx-table/tttx-table.d.ts +15 -0
  140. package/dist/types/components/molecules/tttx-table/tttx-table.stories.d.ts +21 -0
  141. package/dist/types/components/palette.stories.d.ts +6 -0
  142. package/dist/types/components.d.ts +295 -0
  143. package/dist/types/docs/gettingstarted-developer.stories.d.ts +5 -0
  144. package/dist/types/icons.d.ts +2 -0
  145. package/dist/types/index.d.ts +1 -0
  146. package/dist/types/stencil-public-runtime.d.ts +1637 -0
  147. package/loader/cdn.js +3 -0
  148. package/loader/index.cjs.js +3 -0
  149. package/loader/index.d.ts +21 -0
  150. package/loader/index.es2017.js +3 -0
  151. package/loader/index.js +4 -0
  152. package/loader/package.json +11 -0
  153. package/package.json +4 -4
@@ -0,0 +1,570 @@
1
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
2
+ import { Host, h } from '@stencil/core';
3
+ export class TttxInput {
4
+ constructor() {
5
+ this.label = undefined;
6
+ this.showerrormsg = undefined;
7
+ this.errormsg = undefined;
8
+ this.iconleft = undefined;
9
+ this.iconright = undefined;
10
+ this.autocapitalize = undefined;
11
+ this.autocomplete = undefined;
12
+ this.autofocus = undefined;
13
+ this.checked = undefined;
14
+ this.disabled = undefined;
15
+ this.max = undefined;
16
+ this.maxlength = undefined;
17
+ this.min = undefined;
18
+ this.minlength = undefined;
19
+ this.name = undefined;
20
+ this.pattern = undefined;
21
+ this.placeholder = undefined;
22
+ this.readonly = undefined;
23
+ this.required = undefined;
24
+ this.step = undefined;
25
+ this.type = 'text';
26
+ this.value = undefined;
27
+ }
28
+ handleChange(event) {
29
+ const target = event.target;
30
+ this.value = target.value;
31
+ this.valueChanged.emit(target.value);
32
+ }
33
+ handleFocus(event) {
34
+ const target = event.target;
35
+ this.focusChanged.emit(target.value);
36
+ }
37
+ handleBlur(event) {
38
+ const target = event.target;
39
+ this.blurChanged.emit(target.value);
40
+ }
41
+ render() {
42
+ const classNames = ['standalone', this.showerrormsg ? 'invalid' : ''].join(' ');
43
+ return (h(Host, null, h("label", { class: 'inputBlock' }, this.label, !this.required ? h("span", { class: "optional" }, "\u00A0(optional)") : '', this.iconleft && (h("div", { class: "icon-left" }, h("tttx-icon", { icon: this.iconleft, color: "grey" }))), h("input", { class: classNames, autocapitalize: this.type === 'url' || this.type === 'email' || this.type === 'password' ? this.autocapitalize : null, autofocus: this.autofocus, autocomplete: this.type === 'text' ||
44
+ this.type === 'search' ||
45
+ this.type === 'url' ||
46
+ this.type === 'tel' ||
47
+ this.type === 'email' ||
48
+ this.type === 'password' ||
49
+ this.type === 'datepickers' ||
50
+ this.type === 'range' ||
51
+ this.type === 'color'
52
+ ? this.autocomplete
53
+ : null, checked: this.type === 'checkbox' || this.type === 'radio' ? this.checked : null, disabled: !this.required ? this.disabled : null, max: this.type === 'date' ||
54
+ this.type === 'month' ||
55
+ this.type === 'week' ||
56
+ this.type === 'time' ||
57
+ this.type === 'datetime-local' ||
58
+ this.type === 'number' ||
59
+ this.type === 'range'
60
+ ? this.max
61
+ : null, maxlength: this.maxlength, min: this.type === 'date' ||
62
+ this.type === 'month' ||
63
+ this.type === 'week' ||
64
+ this.type === 'time' ||
65
+ this.type === 'datetime-local' ||
66
+ this.type === 'number' ||
67
+ this.type === 'range'
68
+ ? this.min
69
+ : null, minlength: this.minlength, name: this.name, pattern: this.type === 'text' ||
70
+ this.type === 'date' ||
71
+ this.type === 'search' ||
72
+ this.type === 'url' ||
73
+ this.type === 'tel' ||
74
+ this.type === 'email' ||
75
+ this.type === 'password'
76
+ ? this.pattern
77
+ : null, placeholder: this.type === 'text' ||
78
+ this.type === 'tel' ||
79
+ this.type === 'email' ||
80
+ this.type === 'url' ||
81
+ this.type === 'password' ||
82
+ this.type === 'search'
83
+ ? this.placeholder
84
+ : null, readonly: this.type === 'text' ||
85
+ this.type === 'search' ||
86
+ this.type === 'url' ||
87
+ this.type === 'tel' ||
88
+ this.type === 'email' ||
89
+ this.type === 'password' ||
90
+ this.type === 'date' ||
91
+ this.type === 'month' ||
92
+ this.type === 'week' ||
93
+ this.type === 'time' ||
94
+ this.type === 'datetime-local' ||
95
+ this.type === 'number'
96
+ ? this.readonly
97
+ : null, required: this.type === 'text' ||
98
+ this.type === 'search' ||
99
+ this.type === 'url' ||
100
+ this.type === 'tel' ||
101
+ this.type === 'email' ||
102
+ this.type === 'password' ||
103
+ this.type === 'date' ||
104
+ this.type === 'month' ||
105
+ this.type === 'week' ||
106
+ this.type === 'time' ||
107
+ this.type === 'datetime-local' ||
108
+ this.type === 'number' ||
109
+ this.type === 'checkbox' ||
110
+ this.type === 'radio' ||
111
+ this.type === 'file'
112
+ ? this.required
113
+ : null, step: this.type === 'date' ||
114
+ this.type === 'month' ||
115
+ this.type === 'week' ||
116
+ this.type === 'time' ||
117
+ this.type === 'datetime-local' ||
118
+ this.type === 'number' ||
119
+ this.type === 'range'
120
+ ? this.step
121
+ : null, type: this.type, value: this.value, onBlur: this.handleBlur.bind(this), onFocus: this.handleFocus.bind(this), onInput: this.handleChange.bind(this) }), this.iconright && (h("div", { class: "icon-right" }, h("tttx-icon", { icon: this.iconright, color: "grey" }))), h("span", { class: ['errorBubble', this.showerrormsg && this.errormsg ? 'visible' : ''].join(' ') }, h("span", { class: "material-symbols-rounded validationicon" }, "warning"), " ", this.errormsg))));
122
+ }
123
+ static get is() { return "tttx-standalone-input"; }
124
+ static get encapsulation() { return "shadow"; }
125
+ static get originalStyleUrls() {
126
+ return {
127
+ "$": ["./tttx-standalone-input.scss"]
128
+ };
129
+ }
130
+ static get styleUrls() {
131
+ return {
132
+ "$": ["tttx-standalone-input.css"]
133
+ };
134
+ }
135
+ static get properties() {
136
+ return {
137
+ "label": {
138
+ "type": "string",
139
+ "mutable": false,
140
+ "complexType": {
141
+ "original": "string",
142
+ "resolved": "string",
143
+ "references": {}
144
+ },
145
+ "required": false,
146
+ "optional": false,
147
+ "docs": {
148
+ "tags": [],
149
+ "text": ""
150
+ },
151
+ "attribute": "label",
152
+ "reflect": false
153
+ },
154
+ "showerrormsg": {
155
+ "type": "boolean",
156
+ "mutable": false,
157
+ "complexType": {
158
+ "original": "boolean",
159
+ "resolved": "boolean",
160
+ "references": {}
161
+ },
162
+ "required": false,
163
+ "optional": false,
164
+ "docs": {
165
+ "tags": [],
166
+ "text": ""
167
+ },
168
+ "attribute": "showerrormsg",
169
+ "reflect": false
170
+ },
171
+ "errormsg": {
172
+ "type": "string",
173
+ "mutable": false,
174
+ "complexType": {
175
+ "original": "string",
176
+ "resolved": "string",
177
+ "references": {}
178
+ },
179
+ "required": false,
180
+ "optional": false,
181
+ "docs": {
182
+ "tags": [],
183
+ "text": ""
184
+ },
185
+ "attribute": "errormsg",
186
+ "reflect": false
187
+ },
188
+ "iconleft": {
189
+ "type": "string",
190
+ "mutable": false,
191
+ "complexType": {
192
+ "original": "string",
193
+ "resolved": "string",
194
+ "references": {}
195
+ },
196
+ "required": false,
197
+ "optional": false,
198
+ "docs": {
199
+ "tags": [],
200
+ "text": ""
201
+ },
202
+ "attribute": "iconleft",
203
+ "reflect": false
204
+ },
205
+ "iconright": {
206
+ "type": "string",
207
+ "mutable": false,
208
+ "complexType": {
209
+ "original": "string",
210
+ "resolved": "string",
211
+ "references": {}
212
+ },
213
+ "required": false,
214
+ "optional": false,
215
+ "docs": {
216
+ "tags": [],
217
+ "text": ""
218
+ },
219
+ "attribute": "iconright",
220
+ "reflect": false
221
+ },
222
+ "autocapitalize": {
223
+ "type": "string",
224
+ "mutable": false,
225
+ "complexType": {
226
+ "original": "string",
227
+ "resolved": "string",
228
+ "references": {}
229
+ },
230
+ "required": false,
231
+ "optional": false,
232
+ "docs": {
233
+ "tags": [],
234
+ "text": ""
235
+ },
236
+ "attribute": "autocapitalize",
237
+ "reflect": false
238
+ },
239
+ "autocomplete": {
240
+ "type": "string",
241
+ "mutable": false,
242
+ "complexType": {
243
+ "original": "'off' | 'on'",
244
+ "resolved": "\"off\" | \"on\"",
245
+ "references": {}
246
+ },
247
+ "required": false,
248
+ "optional": false,
249
+ "docs": {
250
+ "tags": [],
251
+ "text": ""
252
+ },
253
+ "attribute": "autocomplete",
254
+ "reflect": false
255
+ },
256
+ "autofocus": {
257
+ "type": "boolean",
258
+ "mutable": false,
259
+ "complexType": {
260
+ "original": "boolean",
261
+ "resolved": "boolean",
262
+ "references": {}
263
+ },
264
+ "required": false,
265
+ "optional": false,
266
+ "docs": {
267
+ "tags": [],
268
+ "text": ""
269
+ },
270
+ "attribute": "autofocus",
271
+ "reflect": false
272
+ },
273
+ "checked": {
274
+ "type": "boolean",
275
+ "mutable": false,
276
+ "complexType": {
277
+ "original": "boolean",
278
+ "resolved": "boolean",
279
+ "references": {}
280
+ },
281
+ "required": false,
282
+ "optional": false,
283
+ "docs": {
284
+ "tags": [],
285
+ "text": ""
286
+ },
287
+ "attribute": "checked",
288
+ "reflect": false
289
+ },
290
+ "disabled": {
291
+ "type": "boolean",
292
+ "mutable": false,
293
+ "complexType": {
294
+ "original": "boolean",
295
+ "resolved": "boolean",
296
+ "references": {}
297
+ },
298
+ "required": false,
299
+ "optional": false,
300
+ "docs": {
301
+ "tags": [],
302
+ "text": ""
303
+ },
304
+ "attribute": "disabled",
305
+ "reflect": false
306
+ },
307
+ "max": {
308
+ "type": "any",
309
+ "mutable": false,
310
+ "complexType": {
311
+ "original": "MinMaxDates | number",
312
+ "resolved": "`${number}${number}${number}${number}-${number}${number}-${number}${number}T${number}${number}:${number}${number}` | `${number}${number}${number}${number}-${number}${number}-${number}${number}` | `${number}${number}${number}${number}-${number}${number}` | `${number}${number}${number}${number}-W${number}${number}` | `${number}${number}:${number}${number}` | number",
313
+ "references": {
314
+ "MinMaxDates": {
315
+ "location": "local"
316
+ }
317
+ }
318
+ },
319
+ "required": false,
320
+ "optional": false,
321
+ "docs": {
322
+ "tags": [],
323
+ "text": ""
324
+ },
325
+ "attribute": "max",
326
+ "reflect": false
327
+ },
328
+ "maxlength": {
329
+ "type": "any",
330
+ "mutable": false,
331
+ "complexType": {
332
+ "original": "string | number",
333
+ "resolved": "number | string",
334
+ "references": {}
335
+ },
336
+ "required": false,
337
+ "optional": false,
338
+ "docs": {
339
+ "tags": [],
340
+ "text": ""
341
+ },
342
+ "attribute": "maxlength",
343
+ "reflect": false
344
+ },
345
+ "min": {
346
+ "type": "any",
347
+ "mutable": false,
348
+ "complexType": {
349
+ "original": "MinMaxDates | number",
350
+ "resolved": "`${number}${number}${number}${number}-${number}${number}-${number}${number}T${number}${number}:${number}${number}` | `${number}${number}${number}${number}-${number}${number}-${number}${number}` | `${number}${number}${number}${number}-${number}${number}` | `${number}${number}${number}${number}-W${number}${number}` | `${number}${number}:${number}${number}` | number",
351
+ "references": {
352
+ "MinMaxDates": {
353
+ "location": "local"
354
+ }
355
+ }
356
+ },
357
+ "required": false,
358
+ "optional": false,
359
+ "docs": {
360
+ "tags": [],
361
+ "text": ""
362
+ },
363
+ "attribute": "min",
364
+ "reflect": false
365
+ },
366
+ "minlength": {
367
+ "type": "any",
368
+ "mutable": false,
369
+ "complexType": {
370
+ "original": "string | number",
371
+ "resolved": "number | string",
372
+ "references": {}
373
+ },
374
+ "required": false,
375
+ "optional": false,
376
+ "docs": {
377
+ "tags": [],
378
+ "text": ""
379
+ },
380
+ "attribute": "minlength",
381
+ "reflect": false
382
+ },
383
+ "name": {
384
+ "type": "string",
385
+ "mutable": false,
386
+ "complexType": {
387
+ "original": "string",
388
+ "resolved": "string",
389
+ "references": {}
390
+ },
391
+ "required": false,
392
+ "optional": false,
393
+ "docs": {
394
+ "tags": [],
395
+ "text": ""
396
+ },
397
+ "attribute": "name",
398
+ "reflect": false
399
+ },
400
+ "pattern": {
401
+ "type": "string",
402
+ "mutable": false,
403
+ "complexType": {
404
+ "original": "string",
405
+ "resolved": "string",
406
+ "references": {}
407
+ },
408
+ "required": false,
409
+ "optional": false,
410
+ "docs": {
411
+ "tags": [],
412
+ "text": ""
413
+ },
414
+ "attribute": "pattern",
415
+ "reflect": false
416
+ },
417
+ "placeholder": {
418
+ "type": "string",
419
+ "mutable": false,
420
+ "complexType": {
421
+ "original": "string",
422
+ "resolved": "string",
423
+ "references": {}
424
+ },
425
+ "required": false,
426
+ "optional": false,
427
+ "docs": {
428
+ "tags": [],
429
+ "text": ""
430
+ },
431
+ "attribute": "placeholder",
432
+ "reflect": false
433
+ },
434
+ "readonly": {
435
+ "type": "any",
436
+ "mutable": false,
437
+ "complexType": {
438
+ "original": "string | boolean",
439
+ "resolved": "boolean | string",
440
+ "references": {}
441
+ },
442
+ "required": false,
443
+ "optional": false,
444
+ "docs": {
445
+ "tags": [],
446
+ "text": ""
447
+ },
448
+ "attribute": "readonly",
449
+ "reflect": false
450
+ },
451
+ "required": {
452
+ "type": "boolean",
453
+ "mutable": false,
454
+ "complexType": {
455
+ "original": "boolean",
456
+ "resolved": "boolean",
457
+ "references": {}
458
+ },
459
+ "required": false,
460
+ "optional": false,
461
+ "docs": {
462
+ "tags": [],
463
+ "text": ""
464
+ },
465
+ "attribute": "required",
466
+ "reflect": false
467
+ },
468
+ "step": {
469
+ "type": "any",
470
+ "mutable": false,
471
+ "complexType": {
472
+ "original": "string | number",
473
+ "resolved": "number | string",
474
+ "references": {}
475
+ },
476
+ "required": false,
477
+ "optional": false,
478
+ "docs": {
479
+ "tags": [],
480
+ "text": ""
481
+ },
482
+ "attribute": "step",
483
+ "reflect": false
484
+ },
485
+ "type": {
486
+ "type": "string",
487
+ "mutable": false,
488
+ "complexType": {
489
+ "original": "string",
490
+ "resolved": "string",
491
+ "references": {}
492
+ },
493
+ "required": false,
494
+ "optional": false,
495
+ "docs": {
496
+ "tags": [],
497
+ "text": ""
498
+ },
499
+ "attribute": "type",
500
+ "reflect": false,
501
+ "defaultValue": "'text'"
502
+ },
503
+ "value": {
504
+ "type": "any",
505
+ "mutable": true,
506
+ "complexType": {
507
+ "original": "string | number",
508
+ "resolved": "number | string",
509
+ "references": {}
510
+ },
511
+ "required": false,
512
+ "optional": false,
513
+ "docs": {
514
+ "tags": [],
515
+ "text": ""
516
+ },
517
+ "attribute": "value",
518
+ "reflect": false
519
+ }
520
+ };
521
+ }
522
+ static get events() {
523
+ return [{
524
+ "method": "valueChanged",
525
+ "name": "valueChanged",
526
+ "bubbles": true,
527
+ "cancelable": true,
528
+ "composed": true,
529
+ "docs": {
530
+ "tags": [],
531
+ "text": ""
532
+ },
533
+ "complexType": {
534
+ "original": "string",
535
+ "resolved": "string",
536
+ "references": {}
537
+ }
538
+ }, {
539
+ "method": "focusChanged",
540
+ "name": "focusChanged",
541
+ "bubbles": true,
542
+ "cancelable": true,
543
+ "composed": true,
544
+ "docs": {
545
+ "tags": [],
546
+ "text": ""
547
+ },
548
+ "complexType": {
549
+ "original": "string",
550
+ "resolved": "string",
551
+ "references": {}
552
+ }
553
+ }, {
554
+ "method": "blurChanged",
555
+ "name": "blurChanged",
556
+ "bubbles": true,
557
+ "cancelable": true,
558
+ "composed": true,
559
+ "docs": {
560
+ "tags": [],
561
+ "text": ""
562
+ },
563
+ "complexType": {
564
+ "original": "string",
565
+ "resolved": "string",
566
+ "references": {}
567
+ }
568
+ }];
569
+ }
570
+ }