@amiceli/papierjs 0.1.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (126) hide show
  1. package/dist/cjs/{index-e5bb90c8.js → index-bb0e67a4.js} +331 -5
  2. package/dist/cjs/index-bb0e67a4.js.map +1 -0
  3. package/dist/cjs/loader.cjs.js +2 -2
  4. package/dist/cjs/p-alert.cjs.entry.js +1 -1
  5. package/dist/cjs/p-badge.cjs.entry.js +34 -0
  6. package/dist/cjs/p-badge.cjs.entry.js.map +1 -0
  7. package/dist/cjs/p-breadcrumb-item.cjs.entry.js +35 -0
  8. package/dist/cjs/p-breadcrumb-item.cjs.entry.js.map +1 -0
  9. package/dist/cjs/p-breadcrumb.cjs.entry.js +41 -0
  10. package/dist/cjs/p-breadcrumb.cjs.entry.js.map +1 -0
  11. package/dist/cjs/p-button.cjs.entry.js +2 -2
  12. package/dist/cjs/p-dropdown-item.cjs.entry.js +2 -2
  13. package/dist/cjs/p-dropdown.cjs.entry.js +3 -3
  14. package/dist/cjs/p-input-text.cjs.entry.js +2 -2
  15. package/dist/cjs/p-leaf.cjs.entry.js +26 -0
  16. package/dist/cjs/p-leaf.cjs.entry.js.map +1 -0
  17. package/dist/cjs/p-modal.cjs.entry.js +29 -0
  18. package/dist/cjs/p-modal.cjs.entry.js.map +1 -0
  19. package/dist/cjs/p-progress-bar.cjs.entry.js +2 -2
  20. package/dist/cjs/papierjs.cjs.js +2 -2
  21. package/dist/collection/collection-manifest.json +5 -0
  22. package/dist/collection/components/badge/badge.css +3222 -0
  23. package/dist/collection/components/badge/badge.js +82 -0
  24. package/dist/collection/components/badge/badge.js.map +1 -0
  25. package/dist/collection/components/breadcrumb/breadcrumb.css +3396 -0
  26. package/dist/collection/components/breadcrumb/breadcrumb.js +64 -0
  27. package/dist/collection/components/breadcrumb/breadcrumb.js.map +1 -0
  28. package/dist/collection/components/breadcrumb-item/breadcrumb-item.js +97 -0
  29. package/dist/collection/components/breadcrumb-item/breadcrumb-item.js.map +1 -0
  30. package/dist/collection/components/button/button.js +1 -1
  31. package/dist/collection/components/dropdown/dropdown.js +2 -2
  32. package/dist/collection/components/dropdown-item/dropdown-item.js +1 -1
  33. package/dist/collection/components/input/input-text/input-text.js +1 -1
  34. package/dist/collection/components/leaf/leaf.css +3219 -0
  35. package/dist/collection/components/leaf/leaf.js +48 -0
  36. package/dist/collection/components/leaf/leaf.js.map +1 -0
  37. package/dist/collection/components/p-modal/p-modal.css +3224 -0
  38. package/dist/collection/components/p-modal/p-modal.js +61 -0
  39. package/dist/collection/components/p-modal/p-modal.js.map +1 -0
  40. package/dist/collection/components/p-modal/p-modal.preview.js +26 -0
  41. package/dist/collection/components/p-modal/p-modal.preview.js.map +1 -0
  42. package/dist/collection/components/progress-bar/progress-bar.js +1 -1
  43. package/dist/components/index.js +1 -1
  44. package/dist/components/{p-92aa42e7.js → p-784ab1ae.js} +294 -6
  45. package/dist/components/p-784ab1ae.js.map +1 -0
  46. package/dist/components/p-alert.js +1 -1
  47. package/dist/components/p-badge.d.ts +11 -0
  48. package/dist/components/p-badge.js +52 -0
  49. package/dist/components/p-badge.js.map +1 -0
  50. package/dist/components/p-breadcrumb-item.d.ts +11 -0
  51. package/dist/components/p-breadcrumb-item.js +54 -0
  52. package/dist/components/p-breadcrumb-item.js.map +1 -0
  53. package/dist/components/p-breadcrumb.d.ts +11 -0
  54. package/dist/components/p-breadcrumb.js +58 -0
  55. package/dist/components/p-breadcrumb.js.map +1 -0
  56. package/dist/components/p-button.js +2 -2
  57. package/dist/components/p-dropdown-item.js +2 -2
  58. package/dist/components/p-dropdown.js +3 -3
  59. package/dist/components/p-input-text.js +2 -2
  60. package/dist/components/p-leaf.d.ts +11 -0
  61. package/dist/components/p-leaf.js +42 -0
  62. package/dist/components/p-leaf.js.map +1 -0
  63. package/dist/components/p-modal.d.ts +11 -0
  64. package/dist/components/p-modal.js +48 -0
  65. package/dist/components/p-modal.js.map +1 -0
  66. package/dist/components/p-progress-bar.js +2 -2
  67. package/dist/esm/{index-809c10ff.js → index-d88148b4.js} +331 -6
  68. package/dist/esm/index-d88148b4.js.map +1 -0
  69. package/dist/esm/loader.js +3 -3
  70. package/dist/esm/p-alert.entry.js +1 -1
  71. package/dist/esm/p-badge.entry.js +30 -0
  72. package/dist/esm/p-badge.entry.js.map +1 -0
  73. package/dist/esm/p-breadcrumb-item.entry.js +31 -0
  74. package/dist/esm/p-breadcrumb-item.entry.js.map +1 -0
  75. package/dist/esm/p-breadcrumb.entry.js +37 -0
  76. package/dist/esm/p-breadcrumb.entry.js.map +1 -0
  77. package/dist/esm/p-button.entry.js +2 -2
  78. package/dist/esm/p-dropdown-item.entry.js +2 -2
  79. package/dist/esm/p-dropdown.entry.js +3 -3
  80. package/dist/esm/p-input-text.entry.js +2 -2
  81. package/dist/esm/p-leaf.entry.js +22 -0
  82. package/dist/esm/p-leaf.entry.js.map +1 -0
  83. package/dist/esm/p-modal.entry.js +25 -0
  84. package/dist/esm/p-modal.entry.js.map +1 -0
  85. package/dist/esm/p-progress-bar.entry.js +2 -2
  86. package/dist/esm/papierjs.js +3 -3
  87. package/dist/papierjs/p-022f2011.entry.js +2 -0
  88. package/dist/papierjs/p-022f2011.entry.js.map +1 -0
  89. package/dist/papierjs/p-1cac6dc4.entry.js +2 -0
  90. package/dist/papierjs/p-1cac6dc4.entry.js.map +1 -0
  91. package/dist/papierjs/p-2ed960c9.entry.js +2 -0
  92. package/dist/papierjs/p-2ed960c9.entry.js.map +1 -0
  93. package/dist/papierjs/p-5f857750.entry.js +2 -0
  94. package/dist/papierjs/p-5f857750.entry.js.map +1 -0
  95. package/dist/papierjs/{p-6e9110f7.entry.js → p-704b216f.entry.js} +3 -3
  96. package/dist/papierjs/{p-8e9a6ac4.entry.js → p-7f976699.entry.js} +2 -2
  97. package/dist/papierjs/{p-ce66a0db.entry.js → p-8240849e.entry.js} +2 -2
  98. package/dist/papierjs/p-8b96fa1d.js +3 -0
  99. package/dist/papierjs/p-8b96fa1d.js.map +1 -0
  100. package/dist/papierjs/{p-99159731.entry.js → p-ca16de19.entry.js} +2 -2
  101. package/dist/papierjs/{p-c3243b73.entry.js → p-d2178145.entry.js} +2 -2
  102. package/dist/papierjs/p-ebbd3c9d.entry.js +2 -0
  103. package/dist/papierjs/p-ebbd3c9d.entry.js.map +1 -0
  104. package/dist/papierjs/{p-de62cf76.entry.js → p-ff268801.entry.js} +2 -2
  105. package/dist/papierjs/papierjs.esm.js +1 -1
  106. package/dist/papierjs/papierjs.esm.js.map +1 -1
  107. package/dist/types/components/badge/badge.d.ts +9 -0
  108. package/dist/types/components/breadcrumb/breadcrumb.d.ts +7 -0
  109. package/dist/types/components/breadcrumb-item/breadcrumb-item.d.ts +8 -0
  110. package/dist/types/components/leaf/leaf.d.ts +5 -0
  111. package/dist/types/components/p-modal/p-modal.d.ts +6 -0
  112. package/dist/types/components/p-modal/p-modal.preview.d.ts +1 -0
  113. package/dist/types/components.d.ts +81 -0
  114. package/package.json +7 -7
  115. package/readme.md +14 -6
  116. package/dist/cjs/index-e5bb90c8.js.map +0 -1
  117. package/dist/components/p-92aa42e7.js.map +0 -1
  118. package/dist/esm/index-809c10ff.js.map +0 -1
  119. package/dist/papierjs/p-45914d24.js +0 -3
  120. package/dist/papierjs/p-45914d24.js.map +0 -1
  121. /package/dist/papierjs/{p-6e9110f7.entry.js.map → p-704b216f.entry.js.map} +0 -0
  122. /package/dist/papierjs/{p-8e9a6ac4.entry.js.map → p-7f976699.entry.js.map} +0 -0
  123. /package/dist/papierjs/{p-ce66a0db.entry.js.map → p-8240849e.entry.js.map} +0 -0
  124. /package/dist/papierjs/{p-99159731.entry.js.map → p-ca16de19.entry.js.map} +0 -0
  125. /package/dist/papierjs/{p-c3243b73.entry.js.map → p-d2178145.entry.js.map} +0 -0
  126. /package/dist/papierjs/{p-de62cf76.entry.js.map → p-ff268801.entry.js.map} +0 -0
@@ -0,0 +1,64 @@
1
+ import { h } from "@stencil/core";
2
+ export class Alert {
3
+ constructor() {
4
+ this.dark = false;
5
+ }
6
+ getParentClass() {
7
+ let cssClass = 'papier is--block breadcrumb';
8
+ if (this.dark) {
9
+ cssClass = `${cssClass} is--dark`;
10
+ }
11
+ return cssClass;
12
+ }
13
+ componentDidLoad() {
14
+ var _a;
15
+ const items = Array.from(this.el.getElementsByTagName('p-breadcrumb-item'));
16
+ if (this.dark) {
17
+ for (const item of items) {
18
+ item.setAttribute('dark', 'true');
19
+ }
20
+ }
21
+ (_a = items.at(0)) === null || _a === void 0 ? void 0 : _a.setAttribute('first', 'true');
22
+ }
23
+ render() {
24
+ return (h("div", { key: 'af2eebdd03d8ef458f5d0f22d3110c13bcf8d727', class: this.getParentClass() }, h("div", { key: '0176c685a86512b9ca4fc1db688e762c3a9c0a23', class: "border" }, h("slot", { key: '8496e8639f445bb57f0a695de9f73072341265ae' }))));
25
+ }
26
+ static get is() { return "p-breadcrumb"; }
27
+ static get encapsulation() { return "shadow"; }
28
+ static get originalStyleUrls() {
29
+ return {
30
+ "$": ["breadcrumb.scss"]
31
+ };
32
+ }
33
+ static get styleUrls() {
34
+ return {
35
+ "$": ["breadcrumb.css"]
36
+ };
37
+ }
38
+ static get properties() {
39
+ return {
40
+ "dark": {
41
+ "type": "boolean",
42
+ "mutable": false,
43
+ "complexType": {
44
+ "original": "boolean",
45
+ "resolved": "boolean",
46
+ "references": {}
47
+ },
48
+ "required": false,
49
+ "optional": true,
50
+ "docs": {
51
+ "tags": [],
52
+ "text": ""
53
+ },
54
+ "getter": false,
55
+ "setter": false,
56
+ "attribute": "dark",
57
+ "reflect": false,
58
+ "defaultValue": "false"
59
+ }
60
+ };
61
+ }
62
+ static get elementRef() { return "el"; }
63
+ }
64
+ //# sourceMappingURL=breadcrumb.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"breadcrumb.js","sourceRoot":"","sources":["../../../src/components/breadcrumb/breadcrumb.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,EAAE,MAAM,eAAe,CAAA;AAO3D,MAAM,OAAO,KAAK;IALlB;QAOI,SAAI,GAAa,KAAK,CAAA;KAqCzB;IAjCU,cAAc;QACjB,IAAI,QAAQ,GAAG,6BAA6B,CAAA;QAE5C,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC;YACZ,QAAQ,GAAG,GAAG,QAAQ,WAAW,CAAA;QACrC,CAAC;QAED,OAAO,QAAQ,CAAA;IACnB,CAAC;IAEM,gBAAgB;;QACnB,MAAM,KAAK,GAAG,KAAK,CAAC,IAAI,CACpB,IAAI,CAAC,EAAE,CAAC,oBAAoB,CAAC,mBAAmB,CAAC,CACpD,CAAA;QAED,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC;YACZ,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;gBACvB,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;YACrC,CAAC;QACL,CAAC;QAED,MAAA,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,0CAAE,YAAY,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;IAC9C,CAAC;IAED,MAAM;QACF,OAAO,CACH,4DAAK,KAAK,EAAE,IAAI,CAAC,cAAc,EAAE;YAC7B,4DAAK,KAAK,EAAC,QAAQ;gBACf,8DAAQ,CACN,CACJ,CACT,CAAA;IACL,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CACJ","sourcesContent":["import { Component, Element, Prop, h } from '@stencil/core'\n\n@Component({\n tag: 'p-breadcrumb',\n styleUrl: 'breadcrumb.scss',\n shadow: true,\n})\nexport class Alert {\n @Prop()\n dark?: boolean = false\n @Element()\n public el: HTMLElement\n\n public getParentClass() {\n let cssClass = 'papier is--block breadcrumb'\n\n if (this.dark) {\n cssClass = `${cssClass} is--dark`\n }\n\n return cssClass\n }\n\n public componentDidLoad() {\n const items = Array.from(\n this.el.getElementsByTagName('p-breadcrumb-item'),\n )\n\n if (this.dark) {\n for (const item of items) {\n item.setAttribute('dark', 'true')\n }\n }\n\n items.at(0)?.setAttribute('first', 'true')\n }\n\n render() {\n return (\n <div class={this.getParentClass()}>\n <div class=\"border\">\n <slot />\n </div>\n </div>\n )\n }\n}\n"]}
@@ -0,0 +1,97 @@
1
+ import { h } from "@stencil/core";
2
+ export class Alert {
3
+ constructor() {
4
+ this.dark = false;
5
+ this.first = false;
6
+ }
7
+ getParentClass() {
8
+ let cssClass = 'papier breadcrumb-item';
9
+ if (this.dark) {
10
+ cssClass = `${cssClass} is--dark`;
11
+ }
12
+ if (this.first) {
13
+ cssClass = `${cssClass} is--first`;
14
+ }
15
+ return cssClass;
16
+ }
17
+ render() {
18
+ return (h("span", { key: '42d46bd89135edd09f7b42a1cda15739e87b95df', class: this.getParentClass() }, this.link ? (h("a", { href: this.link }, h("slot", null))) : (h("slot", null))));
19
+ }
20
+ static get is() { return "p-breadcrumb-item"; }
21
+ static get encapsulation() { return "shadow"; }
22
+ static get originalStyleUrls() {
23
+ return {
24
+ "$": ["../breadcrumb/breadcrumb.scss"]
25
+ };
26
+ }
27
+ static get styleUrls() {
28
+ return {
29
+ "$": ["../breadcrumb/breadcrumb.css"]
30
+ };
31
+ }
32
+ static get properties() {
33
+ return {
34
+ "dark": {
35
+ "type": "boolean",
36
+ "mutable": false,
37
+ "complexType": {
38
+ "original": "boolean",
39
+ "resolved": "boolean",
40
+ "references": {}
41
+ },
42
+ "required": false,
43
+ "optional": true,
44
+ "docs": {
45
+ "tags": [],
46
+ "text": ""
47
+ },
48
+ "getter": false,
49
+ "setter": false,
50
+ "attribute": "dark",
51
+ "reflect": false,
52
+ "defaultValue": "false"
53
+ },
54
+ "first": {
55
+ "type": "boolean",
56
+ "mutable": false,
57
+ "complexType": {
58
+ "original": "boolean",
59
+ "resolved": "boolean",
60
+ "references": {}
61
+ },
62
+ "required": false,
63
+ "optional": true,
64
+ "docs": {
65
+ "tags": [],
66
+ "text": ""
67
+ },
68
+ "getter": false,
69
+ "setter": false,
70
+ "attribute": "first",
71
+ "reflect": false,
72
+ "defaultValue": "false"
73
+ },
74
+ "link": {
75
+ "type": "string",
76
+ "mutable": false,
77
+ "complexType": {
78
+ "original": "string",
79
+ "resolved": "string",
80
+ "references": {}
81
+ },
82
+ "required": false,
83
+ "optional": true,
84
+ "docs": {
85
+ "tags": [],
86
+ "text": ""
87
+ },
88
+ "getter": false,
89
+ "setter": false,
90
+ "attribute": "link",
91
+ "reflect": false
92
+ }
93
+ };
94
+ }
95
+ static get elementRef() { return "el"; }
96
+ }
97
+ //# sourceMappingURL=breadcrumb-item.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"breadcrumb-item.js","sourceRoot":"","sources":["../../../src/components/breadcrumb-item/breadcrumb-item.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,EAAE,MAAM,eAAe,CAAA;AAO3D,MAAM,OAAO,KAAK;IALlB;QAOI,SAAI,GAAa,KAAK,CAAA;QAEtB,UAAK,GAAa,KAAK,CAAA;KAgC1B;IA1BU,cAAc;QACjB,IAAI,QAAQ,GAAG,wBAAwB,CAAA;QAEvC,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC;YACZ,QAAQ,GAAG,GAAG,QAAQ,WAAW,CAAA;QACrC,CAAC;QACD,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;YACb,QAAQ,GAAG,GAAG,QAAQ,YAAY,CAAA;QACtC,CAAC;QAED,OAAO,QAAQ,CAAA;IACnB,CAAC;IAED,MAAM;QACF,OAAO,CACH,6DAAM,KAAK,EAAE,IAAI,CAAC,cAAc,EAAE,IAC7B,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CACT,SAAG,IAAI,EAAE,IAAI,CAAC,IAAI;YACd,eAAQ,CACR,CACP,CAAC,CAAC,CAAC,CACA,eAAQ,CACX,CACE,CACV,CAAA;IACL,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CACJ","sourcesContent":["import { Component, Element, Prop, h } from '@stencil/core'\n\n@Component({\n tag: 'p-breadcrumb-item',\n styleUrl: '../breadcrumb/breadcrumb.scss',\n shadow: true,\n})\nexport class Alert {\n @Prop()\n dark?: boolean = false\n @Prop()\n first?: boolean = false\n @Prop()\n link?: string\n @Element()\n public el: HTMLElement\n\n public getParentClass() {\n let cssClass = 'papier breadcrumb-item'\n\n if (this.dark) {\n cssClass = `${cssClass} is--dark`\n }\n if (this.first) {\n cssClass = `${cssClass} is--first`\n }\n\n return cssClass\n }\n\n render() {\n return (\n <span class={this.getParentClass()}>\n {this.link ? (\n <a href={this.link}>\n <slot />\n </a>\n ) : (\n <slot />\n )}\n </span>\n )\n }\n}\n"]}
@@ -38,7 +38,7 @@ export class Button {
38
38
  return cssClass;
39
39
  }
40
40
  render() {
41
- return (h("div", { key: '597893e05d6a5a2432e4a4aa0ec7ea4e5934c657', class: this.getParentClass() }, h("button", { key: '0fa7c40002b479f0cf80fee09976357b61d00d4c', disabled: this.disabled, type: "button", class: this.getClass() }, h("slot", { key: '489bc0c324547c9f8ac1ac475cf8a27b66324a98' }))));
41
+ return (h("div", { key: '1c618ca8e283cc22ad0fff8395c262dd891b89e0', class: this.getParentClass() }, h("button", { key: '717a834ccb80db04f6ee66c8f210e0208b316eaa', disabled: this.disabled, type: "button", class: this.getClass() }, h("slot", { key: 'fb587d8a9c051a2212e38806dabeca4bac4e503b' }))));
42
42
  }
43
43
  static get is() { return "p-button"; }
44
44
  static get encapsulation() { return "shadow"; }
@@ -48,9 +48,9 @@ export class Alert {
48
48
  render() {
49
49
  const selected = this.getSelectedValue();
50
50
  const arrowIcon = feather.icons['chevron-down'].toSvg();
51
- return (h("div", { key: '002a7bfa5e5a36233fbd47863293d73467ca774a', class: this.getParentClass() }, h("div", { key: 'ea64fcb682d0e76f00bf73e97e9a3a553b78ee3a', class: "dropdown__header border border-primary", onClick: () => {
51
+ return (h("div", { key: '9f7c66a6e8ef3f1a050364e6b6cc1da192b86f73', class: this.getParentClass() }, h("div", { key: '9782c6a363e58d6c3b18ccc6d33c9493ab01b6a6', class: "dropdown__header border border-primary", onClick: () => {
52
52
  this.open = !this.open;
53
- } }, h("span", { key: 'c48011555dcbbd1a889961dad4ed4729cd1179dc' }, selected), h("span", { key: 'dd4a5176c381eaa15688d67076a8078d9e7da163', class: "for--icon", innerHTML: arrowIcon })), h("div", { key: '19c9a60f2d163bd9bc5c8a1579fa1afc099942d8', class: "dropdown__children" }, h("slot", { key: 'ce9d8b28fe0f9421f5b3023056bb20455729d8cd' }))));
53
+ } }, h("span", { key: '4b2953444c789ed80dc4cb414aef552c3b3c1dd5' }, selected), h("span", { key: 'e41e42ae315100c022a7b49c290e7c4e9f030468', class: "for--icon", innerHTML: arrowIcon })), h("div", { key: '82d2dd647027e24bcf858a7488f017db6b3e5657', class: "dropdown__children" }, h("slot", { key: '8227a8fc7c135db8f14f961038073f225849cfad' }))));
54
54
  }
55
55
  static get is() { return "p-dropdown"; }
56
56
  static get encapsulation() { return "shadow"; }
@@ -15,7 +15,7 @@ export class Alert {
15
15
  this.changeEvent.emit(this.value);
16
16
  }
17
17
  render() {
18
- return (h("div", { key: '543df4195168fbce2f872da8f2f66e92bcf2f32e', class: this.getParentClass(), onClick: () => this.sendClick() }, h("div", { key: 'ea21c2644e2020afa722b4f1492afc8875086edd', class: "border border-primary" }, h("slot", { key: '9df042457b82b7e88f3b12e7431b51c02919be61' }))));
18
+ return (h("div", { key: '94bab7bc42903a879c4899f35eac67259080a99c', class: this.getParentClass(), onClick: () => this.sendClick() }, h("div", { key: '775566e66267d4cf735b85dc417d53e63c76beb4', class: "border border-primary" }, h("slot", { key: '9887e58b530f5a4918085631625cd9a03ca19496' }))));
19
19
  }
20
20
  static get is() { return "p-dropdown-item"; }
21
21
  static get encapsulation() { return "shadow"; }
@@ -25,7 +25,7 @@ export class InputText {
25
25
  this.changeEvent.emit(e.target.value);
26
26
  }
27
27
  render() {
28
- return (h("div", { key: '6f21cd264cc73d32e61814a02ee06b2e029ef7c0', class: this.getParentClass() }, this.label && (h("label", { key: '49de6b7cd6d184726bd9b707a472efd475aa50d5', htmlFor: "paperInputs1" }, this.label, this.required ? '*' : '')), h("input", { key: '6e051636164ab41b8f14a312ce7c6827c48349b4', type: "text", placeholder: this.placeholder, id: "paperInputs1", disabled: this.disabled, value: this.value, onChange: (e) => this.onChange(e) })));
28
+ return (h("div", { key: '01fa99378a561daf3460675737bcd3ab0c49fddb', class: this.getParentClass() }, this.label && (h("label", { key: '2011bbd3366da16a5cb3004c7f69e1739eaf44ba', htmlFor: "paperInputs1" }, this.label, this.required ? '*' : '')), h("input", { key: '3c3641de9df5db826a622dfcc33e257d771561ee', type: "text", placeholder: this.placeholder, id: "paperInputs1", disabled: this.disabled, value: this.value, onChange: (e) => this.onChange(e) })));
29
29
  }
30
30
  static get is() { return "p-input-text"; }
31
31
  static get encapsulation() { return "shadow"; }