@ionic/angular 8.8.19-dev.11787076261.138d5922 → 8.8.19-dev.11787083540.1511caf2

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 (600) hide show
  1. package/README.md +7 -9
  2. package/{dist/common → common}/directives/control-value-accessors/value-accessor.d.ts +1 -1
  3. package/{dist/common → common}/directives/navigation/back-button.d.ts +1 -1
  4. package/{dist/common → common}/directives/navigation/nav.d.ts +1 -1
  5. package/{dist/common → common}/directives/navigation/router-link-delegate.d.ts +2 -2
  6. package/{dist/common → common}/directives/navigation/router-outlet.d.ts +1 -1
  7. package/{dist/common → common}/directives/navigation/tabs.d.ts +1 -9
  8. package/{dist/common → common}/index.d.ts +1 -1
  9. package/{dist/common → common}/overlays/modal.d.ts +1 -1
  10. package/{dist/common → common}/overlays/popover.d.ts +1 -1
  11. package/{dist/common → common}/providers/angular-delegate.d.ts +2 -2
  12. package/{dist/lazy/directives → directives}/control-value-accessors/boolean-value-accessor.d.ts +1 -1
  13. package/{dist/lazy/directives → directives}/control-value-accessors/numeric-value-accessor.d.ts +1 -1
  14. package/{dist/lazy/directives → directives}/control-value-accessors/select-value-accessor.d.ts +1 -1
  15. package/{dist/lazy/directives → directives}/control-value-accessors/text-value-accessor.d.ts +1 -1
  16. package/{dist/lazy/directives → directives}/proxies-list.d.ts +1 -1
  17. package/{dist/lazy/directives → directives}/proxies.d.ts +191 -290
  18. package/esm2022/app-initialize.mjs +29 -0
  19. package/esm2022/common/directives/control-value-accessors/index.mjs +2 -0
  20. package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +153 -0
  21. package/esm2022/common/directives/navigation/back-button.mjs +61 -0
  22. package/esm2022/common/directives/navigation/nav-params.mjs +47 -0
  23. package/esm2022/common/directives/navigation/nav.mjs +49 -0
  24. package/esm2022/common/directives/navigation/router-link-delegate.mjs +190 -0
  25. package/esm2022/common/directives/navigation/router-outlet.mjs +480 -0
  26. package/esm2022/common/directives/navigation/stack-controller.mjs +283 -0
  27. package/esm2022/common/directives/navigation/stack-utils.mjs +73 -0
  28. package/esm2022/common/directives/navigation/tabs.mjs +279 -0
  29. package/esm2022/common/index.mjs +20 -0
  30. package/esm2022/common/ionic-angular-common.mjs +5 -0
  31. package/esm2022/common/overlays/modal.mjs +103 -0
  32. package/esm2022/common/overlays/popover.mjs +91 -0
  33. package/esm2022/common/providers/angular-delegate.mjs +210 -0
  34. package/esm2022/common/providers/config.mjs +45 -0
  35. package/esm2022/common/providers/dom-controller.mjs +45 -0
  36. package/esm2022/common/providers/menu-controller.mjs +114 -0
  37. package/esm2022/common/providers/nav-controller.mjs +235 -0
  38. package/esm2022/common/providers/platform.mjs +258 -0
  39. package/esm2022/common/types/interfaces.mjs +2 -0
  40. package/esm2022/common/types/ionic-lifecycle-hooks.mjs +5 -0
  41. package/esm2022/common/types/overlay-options.mjs +2 -0
  42. package/esm2022/common/utils/overlay.mjs +26 -0
  43. package/esm2022/common/utils/proxy.mjs +47 -0
  44. package/esm2022/common/utils/routing.mjs +55 -0
  45. package/esm2022/common/utils/util.mjs +10 -0
  46. package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
  47. package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +42 -0
  48. package/esm2022/directives/control-value-accessors/index.mjs +5 -0
  49. package/esm2022/directives/control-value-accessors/numeric-value-accessor.mjs +50 -0
  50. package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +39 -0
  51. package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +38 -0
  52. package/esm2022/directives/navigation/ion-back-button.mjs +24 -0
  53. package/esm2022/directives/navigation/ion-nav.mjs +21 -0
  54. package/esm2022/directives/navigation/ion-router-outlet.mjs +52 -0
  55. package/esm2022/directives/navigation/ion-tabs.mjs +59 -0
  56. package/esm2022/directives/navigation/router-link-delegate.mjs +32 -0
  57. package/esm2022/directives/overlays/modal.mjs +22 -0
  58. package/esm2022/directives/overlays/popover.mjs +18 -0
  59. package/esm2022/directives/proxies-list.mjs +90 -0
  60. package/esm2022/directives/proxies.mjs +2373 -0
  61. package/esm2022/directives/validators/index.mjs +3 -0
  62. package/esm2022/directives/validators/max-validator.mjs +27 -0
  63. package/esm2022/directives/validators/min-validator.mjs +27 -0
  64. package/esm2022/index.mjs +32 -0
  65. package/esm2022/ionic-angular.mjs +5 -0
  66. package/esm2022/ionic-module.mjs +111 -0
  67. package/esm2022/providers/action-sheet-controller.mjs +19 -0
  68. package/esm2022/providers/alert-controller.mjs +19 -0
  69. package/esm2022/providers/animation-controller.mjs +38 -0
  70. package/esm2022/providers/gesture-controller.mjs +33 -0
  71. package/esm2022/providers/loading-controller.mjs +19 -0
  72. package/esm2022/providers/menu-controller.mjs +19 -0
  73. package/esm2022/providers/modal-controller.mjs +26 -0
  74. package/esm2022/providers/picker-controller.mjs +22 -0
  75. package/esm2022/providers/popover-controller.mjs +19 -0
  76. package/esm2022/providers/toast-controller.mjs +19 -0
  77. package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
  78. package/esm2022/standalone/directives/checkbox.mjs +76 -0
  79. package/esm2022/standalone/directives/datetime.mjs +95 -0
  80. package/esm2022/standalone/directives/icon.mjs +35 -0
  81. package/esm2022/standalone/directives/index.mjs +13 -0
  82. package/esm2022/standalone/directives/input-otp.mjs +90 -0
  83. package/esm2022/standalone/directives/input.mjs +113 -0
  84. package/esm2022/standalone/directives/proxies.mjs +2260 -0
  85. package/esm2022/standalone/directives/radio-group.mjs +60 -0
  86. package/esm2022/standalone/directives/range.mjs +78 -0
  87. package/esm2022/standalone/directives/searchbar.mjs +82 -0
  88. package/esm2022/standalone/directives/segment.mjs +60 -0
  89. package/esm2022/standalone/directives/select.mjs +84 -0
  90. package/esm2022/standalone/directives/textarea.mjs +91 -0
  91. package/esm2022/standalone/directives/toggle.mjs +76 -0
  92. package/esm2022/standalone/index.mjs +25 -0
  93. package/esm2022/standalone/ionic-angular-standalone.mjs +5 -0
  94. package/esm2022/standalone/navigation/back-button.mjs +32 -0
  95. package/esm2022/standalone/navigation/nav.mjs +28 -0
  96. package/esm2022/standalone/navigation/router-link-delegate.mjs +28 -0
  97. package/esm2022/standalone/navigation/router-outlet.mjs +60 -0
  98. package/esm2022/standalone/navigation/tabs.mjs +58 -0
  99. package/esm2022/standalone/overlays/modal.mjs +32 -0
  100. package/esm2022/standalone/overlays/popover.mjs +28 -0
  101. package/esm2022/standalone/providers/action-sheet-controller.mjs +21 -0
  102. package/esm2022/standalone/providers/alert-controller.mjs +21 -0
  103. package/esm2022/standalone/providers/animation-controller.mjs +38 -0
  104. package/esm2022/standalone/providers/gesture-controller.mjs +33 -0
  105. package/esm2022/standalone/providers/ionic-angular.mjs +38 -0
  106. package/esm2022/standalone/providers/loading-controller.mjs +21 -0
  107. package/esm2022/standalone/providers/menu-controller.mjs +19 -0
  108. package/esm2022/standalone/providers/modal-controller.mjs +28 -0
  109. package/esm2022/standalone/providers/picker-controller.mjs +24 -0
  110. package/esm2022/standalone/providers/popover-controller.mjs +21 -0
  111. package/esm2022/standalone/providers/toast-controller.mjs +21 -0
  112. package/fesm2022/ionic-angular-common.mjs +2791 -0
  113. package/fesm2022/ionic-angular-common.mjs.map +1 -0
  114. package/fesm2022/ionic-angular-standalone.mjs +3562 -0
  115. package/fesm2022/ionic-angular-standalone.mjs.map +1 -0
  116. package/fesm2022/ionic-angular.mjs +3139 -0
  117. package/fesm2022/ionic-angular.mjs.map +1 -0
  118. package/{dist/lazy/index.d.ts → index.d.ts} +2 -1
  119. package/ionic-module.d.ts +28 -0
  120. package/package.json +30 -172
  121. package/providers/picker-controller.d.ts +11 -0
  122. package/{dist/schematics → schematics}/add/index.js +6 -6
  123. package/schematics/utils/ast.js +32 -0
  124. package/{dist/schematics → schematics}/utils/config.js +11 -10
  125. package/{dist/schematics → schematics}/utils/package.js +4 -6
  126. package/standalone/directives/proxies.d.ts +1035 -0
  127. package/{dist/standalone → standalone}/index.d.ts +2 -1
  128. package/standalone/providers/picker-controller.d.ts +11 -0
  129. package/dist/common/directives/control-value-accessors/index.js +0 -2
  130. package/dist/common/directives/control-value-accessors/index.js.map +0 -1
  131. package/dist/common/directives/control-value-accessors/value-accessor.js +0 -152
  132. package/dist/common/directives/control-value-accessors/value-accessor.js.map +0 -1
  133. package/dist/common/directives/navigation/back-button.js +0 -61
  134. package/dist/common/directives/navigation/back-button.js.map +0 -1
  135. package/dist/common/directives/navigation/nav-params.js +0 -47
  136. package/dist/common/directives/navigation/nav-params.js.map +0 -1
  137. package/dist/common/directives/navigation/nav.js +0 -49
  138. package/dist/common/directives/navigation/nav.js.map +0 -1
  139. package/dist/common/directives/navigation/router-link-delegate.js +0 -188
  140. package/dist/common/directives/navigation/router-link-delegate.js.map +0 -1
  141. package/dist/common/directives/navigation/router-outlet.js +0 -476
  142. package/dist/common/directives/navigation/router-outlet.js.map +0 -1
  143. package/dist/common/directives/navigation/stack-controller.js +0 -282
  144. package/dist/common/directives/navigation/stack-controller.js.map +0 -1
  145. package/dist/common/directives/navigation/stack-utils.js +0 -73
  146. package/dist/common/directives/navigation/stack-utils.js.map +0 -1
  147. package/dist/common/directives/navigation/tabs.js +0 -290
  148. package/dist/common/directives/navigation/tabs.js.map +0 -1
  149. package/dist/common/index.js +0 -20
  150. package/dist/common/index.js.map +0 -1
  151. package/dist/common/overlays/modal.js +0 -96
  152. package/dist/common/overlays/modal.js.map +0 -1
  153. package/dist/common/overlays/popover.js +0 -84
  154. package/dist/common/overlays/popover.js.map +0 -1
  155. package/dist/common/providers/angular-delegate.js +0 -229
  156. package/dist/common/providers/angular-delegate.js.map +0 -1
  157. package/dist/common/providers/config.js +0 -44
  158. package/dist/common/providers/config.js.map +0 -1
  159. package/dist/common/providers/dom-controller.js +0 -44
  160. package/dist/common/providers/dom-controller.js.map +0 -1
  161. package/dist/common/providers/menu-controller.js +0 -114
  162. package/dist/common/providers/menu-controller.js.map +0 -1
  163. package/dist/common/providers/nav-controller.js +0 -232
  164. package/dist/common/providers/nav-controller.js.map +0 -1
  165. package/dist/common/providers/platform.js +0 -256
  166. package/dist/common/providers/platform.js.map +0 -1
  167. package/dist/common/types/interfaces.js +0 -2
  168. package/dist/common/types/interfaces.js.map +0 -1
  169. package/dist/common/types/ionic-lifecycle-hooks.js +0 -5
  170. package/dist/common/types/ionic-lifecycle-hooks.js.map +0 -1
  171. package/dist/common/types/overlay-options.js +0 -2
  172. package/dist/common/types/overlay-options.js.map +0 -1
  173. package/dist/common/utils/overlay.js +0 -26
  174. package/dist/common/utils/overlay.js.map +0 -1
  175. package/dist/common/utils/proxy.js +0 -47
  176. package/dist/common/utils/proxy.js.map +0 -1
  177. package/dist/common/utils/routing.js +0 -55
  178. package/dist/common/utils/routing.js.map +0 -1
  179. package/dist/common/utils/util.js +0 -10
  180. package/dist/common/utils/util.js.map +0 -1
  181. package/dist/lazy/app-initialize.js +0 -29
  182. package/dist/lazy/app-initialize.js.map +0 -1
  183. package/dist/lazy/directives/angular-component-lib/utils.js +0 -59
  184. package/dist/lazy/directives/angular-component-lib/utils.js.map +0 -1
  185. package/dist/lazy/directives/control-value-accessors/boolean-value-accessor.js +0 -47
  186. package/dist/lazy/directives/control-value-accessors/boolean-value-accessor.js.map +0 -1
  187. package/dist/lazy/directives/control-value-accessors/index.js +0 -5
  188. package/dist/lazy/directives/control-value-accessors/index.js.map +0 -1
  189. package/dist/lazy/directives/control-value-accessors/numeric-value-accessor.js +0 -55
  190. package/dist/lazy/directives/control-value-accessors/numeric-value-accessor.js.map +0 -1
  191. package/dist/lazy/directives/control-value-accessors/select-value-accessor.js +0 -44
  192. package/dist/lazy/directives/control-value-accessors/select-value-accessor.js.map +0 -1
  193. package/dist/lazy/directives/control-value-accessors/text-value-accessor.js +0 -43
  194. package/dist/lazy/directives/control-value-accessors/text-value-accessor.js.map +0 -1
  195. package/dist/lazy/directives/navigation/ion-back-button.js +0 -24
  196. package/dist/lazy/directives/navigation/ion-back-button.js.map +0 -1
  197. package/dist/lazy/directives/navigation/ion-nav.js +0 -21
  198. package/dist/lazy/directives/navigation/ion-nav.js.map +0 -1
  199. package/dist/lazy/directives/navigation/ion-router-outlet.js +0 -52
  200. package/dist/lazy/directives/navigation/ion-router-outlet.js.map +0 -1
  201. package/dist/lazy/directives/navigation/ion-tabs.js +0 -58
  202. package/dist/lazy/directives/navigation/ion-tabs.js.map +0 -1
  203. package/dist/lazy/directives/navigation/router-link-delegate.js +0 -32
  204. package/dist/lazy/directives/navigation/router-link-delegate.js.map +0 -1
  205. package/dist/lazy/directives/overlays/modal.js +0 -22
  206. package/dist/lazy/directives/overlays/modal.js.map +0 -1
  207. package/dist/lazy/directives/overlays/popover.js +0 -18
  208. package/dist/lazy/directives/overlays/popover.js.map +0 -1
  209. package/dist/lazy/directives/proxies-list.js +0 -89
  210. package/dist/lazy/directives/proxies-list.js.map +0 -1
  211. package/dist/lazy/directives/proxies.js +0 -2759
  212. package/dist/lazy/directives/proxies.js.map +0 -1
  213. package/dist/lazy/directives/validators/index.js +0 -3
  214. package/dist/lazy/directives/validators/index.js.map +0 -1
  215. package/dist/lazy/directives/validators/max-validator.js +0 -26
  216. package/dist/lazy/directives/validators/max-validator.js.map +0 -1
  217. package/dist/lazy/directives/validators/min-validator.js +0 -26
  218. package/dist/lazy/directives/validators/min-validator.js.map +0 -1
  219. package/dist/lazy/index.js +0 -34
  220. package/dist/lazy/index.js.map +0 -1
  221. package/dist/lazy/ionic-module.d.ts +0 -38
  222. package/dist/lazy/ionic-module.js +0 -121
  223. package/dist/lazy/ionic-module.js.map +0 -1
  224. package/dist/lazy/providers/action-sheet-controller.js +0 -18
  225. package/dist/lazy/providers/action-sheet-controller.js.map +0 -1
  226. package/dist/lazy/providers/alert-controller.js +0 -18
  227. package/dist/lazy/providers/alert-controller.js.map +0 -1
  228. package/dist/lazy/providers/animation-controller.js +0 -37
  229. package/dist/lazy/providers/animation-controller.js.map +0 -1
  230. package/dist/lazy/providers/gesture-controller.js +0 -32
  231. package/dist/lazy/providers/gesture-controller.js.map +0 -1
  232. package/dist/lazy/providers/loading-controller.js +0 -18
  233. package/dist/lazy/providers/loading-controller.js.map +0 -1
  234. package/dist/lazy/providers/menu-controller.js +0 -18
  235. package/dist/lazy/providers/menu-controller.js.map +0 -1
  236. package/dist/lazy/providers/modal-controller.js +0 -25
  237. package/dist/lazy/providers/modal-controller.js.map +0 -1
  238. package/dist/lazy/providers/popover-controller.js +0 -19
  239. package/dist/lazy/providers/popover-controller.js.map +0 -1
  240. package/dist/lazy/providers/toast-controller.js +0 -18
  241. package/dist/lazy/providers/toast-controller.js.map +0 -1
  242. package/dist/schematics/utils/ast.js +0 -64
  243. package/dist/standalone/directives/angular-component-lib/utils.js +0 -59
  244. package/dist/standalone/directives/angular-component-lib/utils.js.map +0 -1
  245. package/dist/standalone/directives/checkbox.js +0 -75
  246. package/dist/standalone/directives/checkbox.js.map +0 -1
  247. package/dist/standalone/directives/datetime.js +0 -93
  248. package/dist/standalone/directives/datetime.js.map +0 -1
  249. package/dist/standalone/directives/icon.js +0 -35
  250. package/dist/standalone/directives/icon.js.map +0 -1
  251. package/dist/standalone/directives/index.js +0 -13
  252. package/dist/standalone/directives/index.js.map +0 -1
  253. package/dist/standalone/directives/input-otp.js +0 -89
  254. package/dist/standalone/directives/input-otp.js.map +0 -1
  255. package/dist/standalone/directives/input.js +0 -112
  256. package/dist/standalone/directives/input.js.map +0 -1
  257. package/dist/standalone/directives/ion-accordion-group.d.ts +0 -21
  258. package/dist/standalone/directives/ion-accordion-group.js +0 -40
  259. package/dist/standalone/directives/ion-accordion-group.js.map +0 -1
  260. package/dist/standalone/directives/ion-accordion.d.ts +0 -12
  261. package/dist/standalone/directives/ion-accordion.js +0 -36
  262. package/dist/standalone/directives/ion-accordion.js.map +0 -1
  263. package/dist/standalone/directives/ion-action-sheet.d.ts +0 -58
  264. package/dist/standalone/directives/ion-action-sheet.js +0 -62
  265. package/dist/standalone/directives/ion-action-sheet.js.map +0 -1
  266. package/dist/standalone/directives/ion-alert.d.ts +0 -58
  267. package/dist/standalone/directives/ion-alert.js +0 -62
  268. package/dist/standalone/directives/ion-alert.js.map +0 -1
  269. package/dist/standalone/directives/ion-app.d.ts +0 -12
  270. package/dist/standalone/directives/ion-app.js +0 -36
  271. package/dist/standalone/directives/ion-app.js.map +0 -1
  272. package/dist/standalone/directives/ion-avatar.d.ts +0 -12
  273. package/dist/standalone/directives/ion-avatar.js +0 -35
  274. package/dist/standalone/directives/ion-avatar.js.map +0 -1
  275. package/dist/standalone/directives/ion-backdrop.d.ts +0 -18
  276. package/dist/standalone/directives/ion-backdrop.js +0 -40
  277. package/dist/standalone/directives/ion-backdrop.js.map +0 -1
  278. package/dist/standalone/directives/ion-badge.d.ts +0 -12
  279. package/dist/standalone/directives/ion-badge.js +0 -36
  280. package/dist/standalone/directives/ion-badge.js.map +0 -1
  281. package/dist/standalone/directives/ion-breadcrumb.d.ts +0 -23
  282. package/dist/standalone/directives/ion-breadcrumb.js +0 -43
  283. package/dist/standalone/directives/ion-breadcrumb.js.map +0 -1
  284. package/dist/standalone/directives/ion-breadcrumbs.d.ts +0 -19
  285. package/dist/standalone/directives/ion-breadcrumbs.js +0 -40
  286. package/dist/standalone/directives/ion-breadcrumbs.js.map +0 -1
  287. package/dist/standalone/directives/ion-button.d.ts +0 -23
  288. package/dist/standalone/directives/ion-button.js +0 -43
  289. package/dist/standalone/directives/ion-button.js.map +0 -1
  290. package/dist/standalone/directives/ion-buttons.d.ts +0 -12
  291. package/dist/standalone/directives/ion-buttons.js +0 -36
  292. package/dist/standalone/directives/ion-buttons.js.map +0 -1
  293. package/dist/standalone/directives/ion-card-content.d.ts +0 -12
  294. package/dist/standalone/directives/ion-card-content.js +0 -36
  295. package/dist/standalone/directives/ion-card-content.js.map +0 -1
  296. package/dist/standalone/directives/ion-card-header.d.ts +0 -12
  297. package/dist/standalone/directives/ion-card-header.js +0 -36
  298. package/dist/standalone/directives/ion-card-header.js.map +0 -1
  299. package/dist/standalone/directives/ion-card-subtitle.d.ts +0 -12
  300. package/dist/standalone/directives/ion-card-subtitle.js +0 -36
  301. package/dist/standalone/directives/ion-card-subtitle.js.map +0 -1
  302. package/dist/standalone/directives/ion-card-title.d.ts +0 -12
  303. package/dist/standalone/directives/ion-card-title.js +0 -36
  304. package/dist/standalone/directives/ion-card-title.js.map +0 -1
  305. package/dist/standalone/directives/ion-card.d.ts +0 -12
  306. package/dist/standalone/directives/ion-card.js +0 -36
  307. package/dist/standalone/directives/ion-card.js.map +0 -1
  308. package/dist/standalone/directives/ion-chip.d.ts +0 -12
  309. package/dist/standalone/directives/ion-chip.js +0 -36
  310. package/dist/standalone/directives/ion-chip.js.map +0 -1
  311. package/dist/standalone/directives/ion-col.d.ts +0 -12
  312. package/dist/standalone/directives/ion-col.js +0 -36
  313. package/dist/standalone/directives/ion-col.js.map +0 -1
  314. package/dist/standalone/directives/ion-content.d.ts +0 -33
  315. package/dist/standalone/directives/ion-content.js +0 -47
  316. package/dist/standalone/directives/ion-content.js.map +0 -1
  317. package/dist/standalone/directives/ion-datetime-button.d.ts +0 -12
  318. package/dist/standalone/directives/ion-datetime-button.js +0 -36
  319. package/dist/standalone/directives/ion-datetime-button.js.map +0 -1
  320. package/dist/standalone/directives/ion-fab-button.d.ts +0 -23
  321. package/dist/standalone/directives/ion-fab-button.js +0 -43
  322. package/dist/standalone/directives/ion-fab-button.js.map +0 -1
  323. package/dist/standalone/directives/ion-fab-list.d.ts +0 -12
  324. package/dist/standalone/directives/ion-fab-list.js +0 -36
  325. package/dist/standalone/directives/ion-fab-list.js.map +0 -1
  326. package/dist/standalone/directives/ion-fab.d.ts +0 -12
  327. package/dist/standalone/directives/ion-fab.js +0 -37
  328. package/dist/standalone/directives/ion-fab.js.map +0 -1
  329. package/dist/standalone/directives/ion-footer.d.ts +0 -12
  330. package/dist/standalone/directives/ion-footer.js +0 -36
  331. package/dist/standalone/directives/ion-footer.js.map +0 -1
  332. package/dist/standalone/directives/ion-grid.d.ts +0 -12
  333. package/dist/standalone/directives/ion-grid.js +0 -36
  334. package/dist/standalone/directives/ion-grid.js.map +0 -1
  335. package/dist/standalone/directives/ion-header.d.ts +0 -12
  336. package/dist/standalone/directives/ion-header.js +0 -36
  337. package/dist/standalone/directives/ion-header.js.map +0 -1
  338. package/dist/standalone/directives/ion-img.d.ts +0 -28
  339. package/dist/standalone/directives/ion-img.js +0 -46
  340. package/dist/standalone/directives/ion-img.js.map +0 -1
  341. package/dist/standalone/directives/ion-infinite-scroll-content.d.ts +0 -12
  342. package/dist/standalone/directives/ion-infinite-scroll-content.js +0 -36
  343. package/dist/standalone/directives/ion-infinite-scroll-content.js.map +0 -1
  344. package/dist/standalone/directives/ion-infinite-scroll.d.ts +0 -21
  345. package/dist/standalone/directives/ion-infinite-scroll.js +0 -41
  346. package/dist/standalone/directives/ion-infinite-scroll.js.map +0 -1
  347. package/dist/standalone/directives/ion-input-password-toggle.d.ts +0 -12
  348. package/dist/standalone/directives/ion-input-password-toggle.js +0 -36
  349. package/dist/standalone/directives/ion-input-password-toggle.js.map +0 -1
  350. package/dist/standalone/directives/ion-item-divider.d.ts +0 -12
  351. package/dist/standalone/directives/ion-item-divider.js +0 -36
  352. package/dist/standalone/directives/ion-item-divider.js.map +0 -1
  353. package/dist/standalone/directives/ion-item-group.d.ts +0 -12
  354. package/dist/standalone/directives/ion-item-group.js +0 -35
  355. package/dist/standalone/directives/ion-item-group.js.map +0 -1
  356. package/dist/standalone/directives/ion-item-option.d.ts +0 -12
  357. package/dist/standalone/directives/ion-item-option.js +0 -36
  358. package/dist/standalone/directives/ion-item-option.js.map +0 -1
  359. package/dist/standalone/directives/ion-item-options.d.ts +0 -18
  360. package/dist/standalone/directives/ion-item-options.js +0 -40
  361. package/dist/standalone/directives/ion-item-options.js.map +0 -1
  362. package/dist/standalone/directives/ion-item-sliding.d.ts +0 -18
  363. package/dist/standalone/directives/ion-item-sliding.js +0 -41
  364. package/dist/standalone/directives/ion-item-sliding.js.map +0 -1
  365. package/dist/standalone/directives/ion-item.d.ts +0 -12
  366. package/dist/standalone/directives/ion-item.js +0 -36
  367. package/dist/standalone/directives/ion-item.js.map +0 -1
  368. package/dist/standalone/directives/ion-label.d.ts +0 -12
  369. package/dist/standalone/directives/ion-label.js +0 -36
  370. package/dist/standalone/directives/ion-label.js.map +0 -1
  371. package/dist/standalone/directives/ion-list-header.d.ts +0 -12
  372. package/dist/standalone/directives/ion-list-header.js +0 -36
  373. package/dist/standalone/directives/ion-list-header.js.map +0 -1
  374. package/dist/standalone/directives/ion-list.d.ts +0 -12
  375. package/dist/standalone/directives/ion-list.js +0 -37
  376. package/dist/standalone/directives/ion-list.js.map +0 -1
  377. package/dist/standalone/directives/ion-loading.d.ts +0 -58
  378. package/dist/standalone/directives/ion-loading.js +0 -62
  379. package/dist/standalone/directives/ion-loading.js.map +0 -1
  380. package/dist/standalone/directives/ion-menu-button.d.ts +0 -12
  381. package/dist/standalone/directives/ion-menu-button.js +0 -36
  382. package/dist/standalone/directives/ion-menu-button.js.map +0 -1
  383. package/dist/standalone/directives/ion-menu-toggle.d.ts +0 -12
  384. package/dist/standalone/directives/ion-menu-toggle.js +0 -36
  385. package/dist/standalone/directives/ion-menu-toggle.js.map +0 -1
  386. package/dist/standalone/directives/ion-menu.d.ts +0 -34
  387. package/dist/standalone/directives/ion-menu.js +0 -50
  388. package/dist/standalone/directives/ion-menu.js.map +0 -1
  389. package/dist/standalone/directives/ion-nav-link.d.ts +0 -12
  390. package/dist/standalone/directives/ion-nav-link.js +0 -36
  391. package/dist/standalone/directives/ion-nav-link.js.map +0 -1
  392. package/dist/standalone/directives/ion-note.d.ts +0 -12
  393. package/dist/standalone/directives/ion-note.js +0 -36
  394. package/dist/standalone/directives/ion-note.js.map +0 -1
  395. package/dist/standalone/directives/ion-picker-column-option.d.ts +0 -12
  396. package/dist/standalone/directives/ion-picker-column-option.js +0 -36
  397. package/dist/standalone/directives/ion-picker-column-option.js.map +0 -1
  398. package/dist/standalone/directives/ion-picker-column.d.ts +0 -21
  399. package/dist/standalone/directives/ion-picker-column.js +0 -41
  400. package/dist/standalone/directives/ion-picker-column.js.map +0 -1
  401. package/dist/standalone/directives/ion-picker.d.ts +0 -12
  402. package/dist/standalone/directives/ion-picker.js +0 -36
  403. package/dist/standalone/directives/ion-picker.js.map +0 -1
  404. package/dist/standalone/directives/ion-progress-bar.d.ts +0 -12
  405. package/dist/standalone/directives/ion-progress-bar.js +0 -36
  406. package/dist/standalone/directives/ion-progress-bar.js.map +0 -1
  407. package/dist/standalone/directives/ion-radio.d.ts +0 -23
  408. package/dist/standalone/directives/ion-radio.js +0 -43
  409. package/dist/standalone/directives/ion-radio.js.map +0 -1
  410. package/dist/standalone/directives/ion-refresher-content.d.ts +0 -12
  411. package/dist/standalone/directives/ion-refresher-content.js +0 -36
  412. package/dist/standalone/directives/ion-refresher-content.js.map +0 -1
  413. package/dist/standalone/directives/ion-refresher.d.ts +0 -45
  414. package/dist/standalone/directives/ion-refresher.js +0 -53
  415. package/dist/standalone/directives/ion-refresher.js.map +0 -1
  416. package/dist/standalone/directives/ion-reorder-group.d.ts +0 -44
  417. package/dist/standalone/directives/ion-reorder-group.js +0 -50
  418. package/dist/standalone/directives/ion-reorder-group.js.map +0 -1
  419. package/dist/standalone/directives/ion-reorder.d.ts +0 -12
  420. package/dist/standalone/directives/ion-reorder.js +0 -35
  421. package/dist/standalone/directives/ion-reorder.js.map +0 -1
  422. package/dist/standalone/directives/ion-ripple-effect.d.ts +0 -12
  423. package/dist/standalone/directives/ion-ripple-effect.js +0 -37
  424. package/dist/standalone/directives/ion-ripple-effect.js.map +0 -1
  425. package/dist/standalone/directives/ion-row.d.ts +0 -12
  426. package/dist/standalone/directives/ion-row.js +0 -35
  427. package/dist/standalone/directives/ion-row.js.map +0 -1
  428. package/dist/standalone/directives/ion-segment-button.d.ts +0 -12
  429. package/dist/standalone/directives/ion-segment-button.js +0 -36
  430. package/dist/standalone/directives/ion-segment-button.js.map +0 -1
  431. package/dist/standalone/directives/ion-segment-content.d.ts +0 -12
  432. package/dist/standalone/directives/ion-segment-content.js +0 -35
  433. package/dist/standalone/directives/ion-segment-content.js.map +0 -1
  434. package/dist/standalone/directives/ion-segment-view.d.ts +0 -19
  435. package/dist/standalone/directives/ion-segment-view.js +0 -40
  436. package/dist/standalone/directives/ion-segment-view.js.map +0 -1
  437. package/dist/standalone/directives/ion-select-modal.d.ts +0 -12
  438. package/dist/standalone/directives/ion-select-modal.js +0 -36
  439. package/dist/standalone/directives/ion-select-modal.js.map +0 -1
  440. package/dist/standalone/directives/ion-select-option.d.ts +0 -12
  441. package/dist/standalone/directives/ion-select-option.js +0 -36
  442. package/dist/standalone/directives/ion-select-option.js.map +0 -1
  443. package/dist/standalone/directives/ion-skeleton-text.d.ts +0 -12
  444. package/dist/standalone/directives/ion-skeleton-text.js +0 -36
  445. package/dist/standalone/directives/ion-skeleton-text.js.map +0 -1
  446. package/dist/standalone/directives/ion-spinner.d.ts +0 -12
  447. package/dist/standalone/directives/ion-spinner.js +0 -36
  448. package/dist/standalone/directives/ion-spinner.js.map +0 -1
  449. package/dist/standalone/directives/ion-split-pane.d.ts +0 -22
  450. package/dist/standalone/directives/ion-split-pane.js +0 -40
  451. package/dist/standalone/directives/ion-split-pane.js.map +0 -1
  452. package/dist/standalone/directives/ion-tab-bar.d.ts +0 -12
  453. package/dist/standalone/directives/ion-tab-bar.js +0 -36
  454. package/dist/standalone/directives/ion-tab-bar.js.map +0 -1
  455. package/dist/standalone/directives/ion-tab-button.d.ts +0 -12
  456. package/dist/standalone/directives/ion-tab-button.js +0 -36
  457. package/dist/standalone/directives/ion-tab-button.js.map +0 -1
  458. package/dist/standalone/directives/ion-tab.d.ts +0 -12
  459. package/dist/standalone/directives/ion-tab.js +0 -37
  460. package/dist/standalone/directives/ion-tab.js.map +0 -1
  461. package/dist/standalone/directives/ion-text.d.ts +0 -12
  462. package/dist/standalone/directives/ion-text.js +0 -36
  463. package/dist/standalone/directives/ion-text.js.map +0 -1
  464. package/dist/standalone/directives/ion-thumbnail.d.ts +0 -12
  465. package/dist/standalone/directives/ion-thumbnail.js +0 -35
  466. package/dist/standalone/directives/ion-thumbnail.js.map +0 -1
  467. package/dist/standalone/directives/ion-title.d.ts +0 -12
  468. package/dist/standalone/directives/ion-title.js +0 -36
  469. package/dist/standalone/directives/ion-title.js.map +0 -1
  470. package/dist/standalone/directives/ion-toast.d.ts +0 -58
  471. package/dist/standalone/directives/ion-toast.js +0 -62
  472. package/dist/standalone/directives/ion-toast.js.map +0 -1
  473. package/dist/standalone/directives/ion-toolbar.d.ts +0 -12
  474. package/dist/standalone/directives/ion-toolbar.js +0 -36
  475. package/dist/standalone/directives/ion-toolbar.js.map +0 -1
  476. package/dist/standalone/directives/proxies.d.ts +0 -77
  477. package/dist/standalone/directives/proxies.js +0 -79
  478. package/dist/standalone/directives/proxies.js.map +0 -1
  479. package/dist/standalone/directives/radio-group.js +0 -59
  480. package/dist/standalone/directives/radio-group.js.map +0 -1
  481. package/dist/standalone/directives/range.js +0 -77
  482. package/dist/standalone/directives/range.js.map +0 -1
  483. package/dist/standalone/directives/searchbar.js +0 -81
  484. package/dist/standalone/directives/searchbar.js.map +0 -1
  485. package/dist/standalone/directives/segment.js +0 -59
  486. package/dist/standalone/directives/segment.js.map +0 -1
  487. package/dist/standalone/directives/select.js +0 -83
  488. package/dist/standalone/directives/select.js.map +0 -1
  489. package/dist/standalone/directives/textarea.js +0 -90
  490. package/dist/standalone/directives/textarea.js.map +0 -1
  491. package/dist/standalone/directives/toggle.js +0 -75
  492. package/dist/standalone/directives/toggle.js.map +0 -1
  493. package/dist/standalone/index.js +0 -24
  494. package/dist/standalone/index.js.map +0 -1
  495. package/dist/standalone/navigation/back-button.js +0 -32
  496. package/dist/standalone/navigation/back-button.js.map +0 -1
  497. package/dist/standalone/navigation/nav.js +0 -28
  498. package/dist/standalone/navigation/nav.js.map +0 -1
  499. package/dist/standalone/navigation/router-link-delegate.js +0 -26
  500. package/dist/standalone/navigation/router-link-delegate.js.map +0 -1
  501. package/dist/standalone/navigation/router-outlet.js +0 -60
  502. package/dist/standalone/navigation/router-outlet.js.map +0 -1
  503. package/dist/standalone/navigation/tabs.js +0 -57
  504. package/dist/standalone/navigation/tabs.js.map +0 -1
  505. package/dist/standalone/overlays/modal.js +0 -32
  506. package/dist/standalone/overlays/modal.js.map +0 -1
  507. package/dist/standalone/overlays/popover.js +0 -28
  508. package/dist/standalone/overlays/popover.js.map +0 -1
  509. package/dist/standalone/providers/action-sheet-controller.js +0 -20
  510. package/dist/standalone/providers/action-sheet-controller.js.map +0 -1
  511. package/dist/standalone/providers/alert-controller.js +0 -20
  512. package/dist/standalone/providers/alert-controller.js.map +0 -1
  513. package/dist/standalone/providers/animation-controller.js +0 -37
  514. package/dist/standalone/providers/animation-controller.js.map +0 -1
  515. package/dist/standalone/providers/gesture-controller.js +0 -32
  516. package/dist/standalone/providers/gesture-controller.js.map +0 -1
  517. package/dist/standalone/providers/ionic-angular.js +0 -38
  518. package/dist/standalone/providers/ionic-angular.js.map +0 -1
  519. package/dist/standalone/providers/loading-controller.js +0 -20
  520. package/dist/standalone/providers/loading-controller.js.map +0 -1
  521. package/dist/standalone/providers/menu-controller.js +0 -18
  522. package/dist/standalone/providers/menu-controller.js.map +0 -1
  523. package/dist/standalone/providers/modal-controller.js +0 -27
  524. package/dist/standalone/providers/modal-controller.js.map +0 -1
  525. package/dist/standalone/providers/popover-controller.js +0 -21
  526. package/dist/standalone/providers/popover-controller.js.map +0 -1
  527. package/dist/standalone/providers/toast-controller.js +0 -20
  528. package/dist/standalone/providers/toast-controller.js.map +0 -1
  529. /package/{dist/lazy/app-initialize.d.ts → app-initialize.d.ts} +0 -0
  530. /package/{dist/common → common}/directives/control-value-accessors/index.d.ts +0 -0
  531. /package/{dist/common → common}/directives/navigation/nav-params.d.ts +0 -0
  532. /package/{dist/common → common}/directives/navigation/stack-controller.d.ts +0 -0
  533. /package/{dist/common → common}/directives/navigation/stack-utils.d.ts +0 -0
  534. /package/{dist/common → common}/providers/config.d.ts +0 -0
  535. /package/{dist/common → common}/providers/dom-controller.d.ts +0 -0
  536. /package/{dist/common → common}/providers/menu-controller.d.ts +0 -0
  537. /package/{dist/common → common}/providers/nav-controller.d.ts +0 -0
  538. /package/{dist/common → common}/providers/platform.d.ts +0 -0
  539. /package/{dist/common → common}/types/interfaces.d.ts +0 -0
  540. /package/{dist/common → common}/types/ionic-lifecycle-hooks.d.ts +0 -0
  541. /package/{dist/common → common}/types/overlay-options.d.ts +0 -0
  542. /package/{dist/common → common}/utils/overlay.d.ts +0 -0
  543. /package/{dist/common → common}/utils/proxy.d.ts +0 -0
  544. /package/{dist/common → common}/utils/routing.d.ts +0 -0
  545. /package/{dist/common → common}/utils/util.d.ts +0 -0
  546. /package/{dist/lazy/directives → directives}/angular-component-lib/utils.d.ts +0 -0
  547. /package/{dist/lazy/directives → directives}/control-value-accessors/index.d.ts +0 -0
  548. /package/{dist/lazy/directives → directives}/navigation/ion-back-button.d.ts +0 -0
  549. /package/{dist/lazy/directives → directives}/navigation/ion-nav.d.ts +0 -0
  550. /package/{dist/lazy/directives → directives}/navigation/ion-router-outlet.d.ts +0 -0
  551. /package/{dist/lazy/directives → directives}/navigation/ion-tabs.d.ts +0 -0
  552. /package/{dist/lazy/directives → directives}/navigation/router-link-delegate.d.ts +0 -0
  553. /package/{dist/lazy/directives → directives}/overlays/modal.d.ts +0 -0
  554. /package/{dist/lazy/directives → directives}/overlays/popover.d.ts +0 -0
  555. /package/{dist/lazy/directives → directives}/validators/index.d.ts +0 -0
  556. /package/{dist/lazy/directives → directives}/validators/max-validator.d.ts +0 -0
  557. /package/{dist/lazy/directives → directives}/validators/min-validator.d.ts +0 -0
  558. /package/{dist/lazy/providers → providers}/action-sheet-controller.d.ts +0 -0
  559. /package/{dist/lazy/providers → providers}/alert-controller.d.ts +0 -0
  560. /package/{dist/lazy/providers → providers}/animation-controller.d.ts +0 -0
  561. /package/{dist/lazy/providers → providers}/gesture-controller.d.ts +0 -0
  562. /package/{dist/lazy/providers → providers}/loading-controller.d.ts +0 -0
  563. /package/{dist/lazy/providers → providers}/menu-controller.d.ts +0 -0
  564. /package/{dist/lazy/providers → providers}/modal-controller.d.ts +0 -0
  565. /package/{dist/lazy/providers → providers}/popover-controller.d.ts +0 -0
  566. /package/{dist/lazy/providers → providers}/toast-controller.d.ts +0 -0
  567. /package/{dist/schematics → schematics}/add/files/root/theme/variables.css +0 -0
  568. /package/{dist/schematics → schematics}/add/schema.json +0 -0
  569. /package/{dist/schematics → schematics}/collection.json +0 -0
  570. /package/{dist/standalone → standalone}/directives/angular-component-lib/utils.d.ts +0 -0
  571. /package/{dist/standalone → standalone}/directives/checkbox.d.ts +0 -0
  572. /package/{dist/standalone → standalone}/directives/datetime.d.ts +0 -0
  573. /package/{dist/standalone → standalone}/directives/icon.d.ts +0 -0
  574. /package/{dist/standalone → standalone}/directives/index.d.ts +0 -0
  575. /package/{dist/standalone → standalone}/directives/input-otp.d.ts +0 -0
  576. /package/{dist/standalone → standalone}/directives/input.d.ts +0 -0
  577. /package/{dist/standalone → standalone}/directives/radio-group.d.ts +0 -0
  578. /package/{dist/standalone → standalone}/directives/range.d.ts +0 -0
  579. /package/{dist/standalone → standalone}/directives/searchbar.d.ts +0 -0
  580. /package/{dist/standalone → standalone}/directives/segment.d.ts +0 -0
  581. /package/{dist/standalone → standalone}/directives/select.d.ts +0 -0
  582. /package/{dist/standalone → standalone}/directives/textarea.d.ts +0 -0
  583. /package/{dist/standalone → standalone}/directives/toggle.d.ts +0 -0
  584. /package/{dist/standalone → standalone}/navigation/back-button.d.ts +0 -0
  585. /package/{dist/standalone → standalone}/navigation/nav.d.ts +0 -0
  586. /package/{dist/standalone → standalone}/navigation/router-link-delegate.d.ts +0 -0
  587. /package/{dist/standalone → standalone}/navigation/router-outlet.d.ts +0 -0
  588. /package/{dist/standalone → standalone}/navigation/tabs.d.ts +0 -0
  589. /package/{dist/standalone → standalone}/overlays/modal.d.ts +0 -0
  590. /package/{dist/standalone → standalone}/overlays/popover.d.ts +0 -0
  591. /package/{dist/standalone → standalone}/providers/action-sheet-controller.d.ts +0 -0
  592. /package/{dist/standalone → standalone}/providers/alert-controller.d.ts +0 -0
  593. /package/{dist/standalone → standalone}/providers/animation-controller.d.ts +0 -0
  594. /package/{dist/standalone → standalone}/providers/gesture-controller.d.ts +0 -0
  595. /package/{dist/standalone → standalone}/providers/ionic-angular.d.ts +0 -0
  596. /package/{dist/standalone → standalone}/providers/loading-controller.d.ts +0 -0
  597. /package/{dist/standalone → standalone}/providers/menu-controller.d.ts +0 -0
  598. /package/{dist/standalone → standalone}/providers/modal-controller.d.ts +0 -0
  599. /package/{dist/standalone → standalone}/providers/popover-controller.d.ts +0 -0
  600. /package/{dist/standalone → standalone}/providers/toast-controller.d.ts +0 -0
@@ -1 +0,0 @@
1
- {"version":3,"file":"ion-accordion.js","sourceRoot":"","sources":["../../../src/standalone/directives/ion-accordion.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,8CAA8C;AAC9C,OAAO,EAAE,uBAAuB,EAAqB,SAAS,EAAsB,MAAM,eAAe,CAAC;AAE1G,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAIzD,OAAO,EAAE,mBAAmB,IAAI,kBAAkB,EAAE,MAAM,yCAAyC,CAAC;;AAa7F,IAAM,YAAY,GAAlB,MAAM,YAAY;IAEoC;IADjD,EAAE,CAA0B;IACtC,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS;QAAT,MAAC,GAAD,CAAC,CAAQ;QAClE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;IAC5B,CAAC;0HALU,YAAY;8GAAZ,YAAY,2NAJb,2BAA2B;;AAI1B,YAAY;IAXxB,QAAQ,CAAC;QACR,qBAAqB,EAAE,kBAAkB;QACzC,MAAM,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,YAAY,EAAE,gBAAgB,EAAE,OAAO,CAAC;KAClF,CAAC;GAQW,YAAY,CAMxB;;2FANY,YAAY;kBAPxB,SAAS;mBAAC;oBACT,QAAQ,EAAE,eAAe;oBACzB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,YAAY,EAAE,gBAAgB,EAAE,OAAO,CAAC;iBAClF","sourcesContent":["/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@ionic/core/components';\n\nimport { defineCustomElement as defineIonAccordion } from '@ionic/core/components/ion-accordion.js';\n\n@ProxyCmp({\n defineCustomElementFn: defineIonAccordion,\n inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value']\n})\n@Component({\n selector: 'ion-accordion',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['disabled', 'mode', 'readonly', 'toggleIcon', 'toggleIconSlot', 'value'],\n})\nexport class IonAccordion {\n protected el: HTMLIonAccordionElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface IonAccordion extends Components.IonAccordion {}\n\n\n"]}
@@ -1,58 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, NgZone, EventEmitter } from '@angular/core';
2
- import type { Components } from '@ionic/core/components';
3
- import type { IonActionSheetCustomEvent } from '@ionic/core/components';
4
- import type { OverlayEventDetail as IIonActionSheetOverlayEventDetail } from '@ionic/core/components';
5
- import * as i0 from "@angular/core";
6
- export declare class IonActionSheet {
7
- protected z: NgZone;
8
- protected el: HTMLIonActionSheetElement;
9
- ionActionSheetDidPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
10
- ionActionSheetWillPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
11
- ionActionSheetWillDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
12
- ionActionSheetDidDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
13
- didPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
14
- willPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
15
- willDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
16
- didDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail<any>>>;
17
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
18
- static ɵfac: i0.ɵɵFactoryDeclaration<IonActionSheet, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<IonActionSheet, "ion-action-sheet", never, { "animated": { "alias": "animated"; "required": false; }; "backdropDismiss": { "alias": "backdropDismiss"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "enterAnimation": { "alias": "enterAnimation"; "required": false; }; "header": { "alias": "header"; "required": false; }; "htmlAttributes": { "alias": "htmlAttributes"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "keyboardClose": { "alias": "keyboardClose"; "required": false; }; "leaveAnimation": { "alias": "leaveAnimation"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "subHeader": { "alias": "subHeader"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, { "ionActionSheetDidPresent": "ionActionSheetDidPresent"; "ionActionSheetWillPresent": "ionActionSheetWillPresent"; "ionActionSheetWillDismiss": "ionActionSheetWillDismiss"; "ionActionSheetDidDismiss": "ionActionSheetDidDismiss"; "didPresent": "didPresent"; "willPresent": "willPresent"; "willDismiss": "willDismiss"; "didDismiss": "didDismiss"; }, never, ["*"], true, never>;
20
- }
21
- export declare interface IonActionSheet extends Components.IonActionSheet {
22
- /**
23
- * Emitted after the action sheet has presented.
24
- */
25
- ionActionSheetDidPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
26
- /**
27
- * Emitted before the action sheet has presented.
28
- */
29
- ionActionSheetWillPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
30
- /**
31
- * Emitted before the action sheet has dismissed.
32
- */
33
- ionActionSheetWillDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>;
34
- /**
35
- * Emitted after the action sheet has dismissed.
36
- */
37
- ionActionSheetDidDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>;
38
- /**
39
- * Emitted after the action sheet has presented.
40
- Shorthand for ionActionSheetWillDismiss.
41
- */
42
- didPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
43
- /**
44
- * Emitted before the action sheet has presented.
45
- Shorthand for ionActionSheetWillPresent.
46
- */
47
- willPresent: EventEmitter<IonActionSheetCustomEvent<void>>;
48
- /**
49
- * Emitted before the action sheet has dismissed.
50
- Shorthand for ionActionSheetWillDismiss.
51
- */
52
- willDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>;
53
- /**
54
- * Emitted after the action sheet has dismissed.
55
- Shorthand for ionActionSheetDidDismiss.
56
- */
57
- didDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>;
58
- }
@@ -1,62 +0,0 @@
1
- import { __decorate } from "tslib";
2
- /* tslint:disable */
3
- /* auto-generated angular directive proxies */
4
- import { ChangeDetectionStrategy, Component, EventEmitter, Output } from '@angular/core';
5
- import { ProxyCmp } from './angular-component-lib/utils';
6
- import { defineCustomElement as defineIonActionSheet } from '@ionic/core/components/ion-action-sheet.js';
7
- import * as i0 from "@angular/core";
8
- let IonActionSheet = class IonActionSheet {
9
- z;
10
- el;
11
- ionActionSheetDidPresent = new EventEmitter();
12
- ionActionSheetWillPresent = new EventEmitter();
13
- ionActionSheetWillDismiss = new EventEmitter();
14
- ionActionSheetDidDismiss = new EventEmitter();
15
- didPresent = new EventEmitter();
16
- willPresent = new EventEmitter();
17
- willDismiss = new EventEmitter();
18
- didDismiss = new EventEmitter();
19
- constructor(c, r, z) {
20
- this.z = z;
21
- c.detach();
22
- this.el = r.nativeElement;
23
- }
24
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonActionSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
25
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonActionSheet, isStandalone: true, selector: "ion-action-sheet", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", mode: "mode", subHeader: "subHeader", translucent: "translucent", trigger: "trigger" }, outputs: { ionActionSheetDidPresent: "ionActionSheetDidPresent", ionActionSheetWillPresent: "ionActionSheetWillPresent", ionActionSheetWillDismiss: "ionActionSheetWillDismiss", ionActionSheetDidDismiss: "ionActionSheetDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
26
- };
27
- IonActionSheet = __decorate([
28
- ProxyCmp({
29
- defineCustomElementFn: defineIonActionSheet,
30
- inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],
31
- methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
32
- })
33
- ], IonActionSheet);
34
- export { IonActionSheet };
35
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonActionSheet, decorators: [{
36
- type: Component,
37
- args: [{
38
- selector: 'ion-action-sheet',
39
- changeDetection: ChangeDetectionStrategy.OnPush,
40
- template: '<ng-content></ng-content>',
41
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
42
- inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],
43
- outputs: ['ionActionSheetDidPresent', 'ionActionSheetWillPresent', 'ionActionSheetWillDismiss', 'ionActionSheetDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss'],
44
- }]
45
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionActionSheetDidPresent: [{
46
- type: Output
47
- }], ionActionSheetWillPresent: [{
48
- type: Output
49
- }], ionActionSheetWillDismiss: [{
50
- type: Output
51
- }], ionActionSheetDidDismiss: [{
52
- type: Output
53
- }], didPresent: [{
54
- type: Output
55
- }], willPresent: [{
56
- type: Output
57
- }], willDismiss: [{
58
- type: Output
59
- }], didDismiss: [{
60
- type: Output
61
- }] } });
62
- //# sourceMappingURL=ion-action-sheet.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ion-action-sheet.js","sourceRoot":"","sources":["../../../src/standalone/directives/ion-action-sheet.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,8CAA8C;AAC9C,OAAO,EAAE,uBAAuB,EAAqB,SAAS,EAAsB,YAAY,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAEhI,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAIzD,OAAO,EAAE,mBAAmB,IAAI,oBAAoB,EAAE,MAAM,4CAA4C,CAAC;;AAelG,IAAM,cAAc,GAApB,MAAM,cAAc;IAUkC;IATjD,EAAE,CAA4B;IAC9B,wBAAwB,GAAG,IAAI,YAAY,EAAmC,CAAC;IAC/E,yBAAyB,GAAG,IAAI,YAAY,EAAmC,CAAC;IAChF,yBAAyB,GAAG,IAAI,YAAY,EAAgE,CAAC;IAC7G,wBAAwB,GAAG,IAAI,YAAY,EAAgE,CAAC;IAC5G,UAAU,GAAG,IAAI,YAAY,EAAmC,CAAC;IACjE,WAAW,GAAG,IAAI,YAAY,EAAmC,CAAC;IAClE,WAAW,GAAG,IAAI,YAAY,EAAgE,CAAC;IAC/F,UAAU,GAAG,IAAI,YAAY,EAAgE,CAAC;IACxG,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS;QAAT,MAAC,GAAD,CAAC,CAAQ;QAClE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;IAC5B,CAAC;0HAbU,cAAc;8GAAd,cAAc,ixBALf,2BAA2B;;AAK1B,cAAc;IAb1B,QAAQ,CAAC;QACR,qBAAqB,EAAE,oBAAoB;QAC3C,MAAM,EAAE,CAAC,UAAU,EAAE,iBAAiB,EAAE,SAAS,EAAE,UAAU,EAAE,gBAAgB,EAAE,QAAQ,EAAE,gBAAgB,EAAE,QAAQ,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,EAAE,WAAW,EAAE,aAAa,EAAE,SAAS,CAAC;QACxM,OAAO,EAAE,CAAC,SAAS,EAAE,SAAS,EAAE,cAAc,EAAE,eAAe,CAAC;KACjE,CAAC;GASW,cAAc,CAc1B;;2FAdY,cAAc;kBAR1B,SAAS;mBAAC;oBACT,QAAQ,EAAE,kBAAkB;oBAC5B,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,CAAC,UAAU,EAAE,iBAAiB,EAAE,SAAS,EAAE,UAAU,EAAE,gBAAgB,EAAE,QAAQ,EAAE,gBAAgB,EAAE,QAAQ,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,EAAE,WAAW,EAAE,aAAa,EAAE,SAAS,CAAC;oBACxM,OAAO,EAAE,CAAC,0BAA0B,EAAE,2BAA2B,EAAE,2BAA2B,EAAE,0BAA0B,EAAE,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,YAAY,CAAC;iBACtL;;sBAGE,MAAM;;sBACN,MAAM;;sBACN,MAAM;;sBACN,MAAM;;sBACN,MAAM;;sBACN,MAAM;;sBACN,MAAM;;sBACN,MAAM","sourcesContent":["/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone, EventEmitter, Output } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@ionic/core/components';\n\nimport { defineCustomElement as defineIonActionSheet } from '@ionic/core/components/ion-action-sheet.js';\n\n@ProxyCmp({\n defineCustomElementFn: defineIonActionSheet,\n inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],\n methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']\n})\n@Component({\n selector: 'ion-action-sheet',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'isOpen', 'keyboardClose', 'leaveAnimation', 'mode', 'subHeader', 'translucent', 'trigger'],\n outputs: ['ionActionSheetDidPresent', 'ionActionSheetWillPresent', 'ionActionSheetWillDismiss', 'ionActionSheetDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss'],\n})\nexport class IonActionSheet {\n protected el: HTMLIonActionSheetElement;\n @Output() ionActionSheetDidPresent = new EventEmitter<IonActionSheetCustomEvent<void>>();\n @Output() ionActionSheetWillPresent = new EventEmitter<IonActionSheetCustomEvent<void>>();\n @Output() ionActionSheetWillDismiss = new EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>();\n @Output() ionActionSheetDidDismiss = new EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>();\n @Output() didPresent = new EventEmitter<IonActionSheetCustomEvent<void>>();\n @Output() willPresent = new EventEmitter<IonActionSheetCustomEvent<void>>();\n @Output() willDismiss = new EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>();\n @Output() didDismiss = new EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { IonActionSheetCustomEvent } from '@ionic/core/components';\nimport type { OverlayEventDetail as IIonActionSheetOverlayEventDetail } from '@ionic/core/components';\n\nexport declare interface IonActionSheet extends Components.IonActionSheet {\n /**\n * Emitted after the action sheet has presented.\n */\n ionActionSheetDidPresent: EventEmitter<IonActionSheetCustomEvent<void>>;\n /**\n * Emitted before the action sheet has presented.\n */\n ionActionSheetWillPresent: EventEmitter<IonActionSheetCustomEvent<void>>;\n /**\n * Emitted before the action sheet has dismissed.\n */\n ionActionSheetWillDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>;\n /**\n * Emitted after the action sheet has dismissed.\n */\n ionActionSheetDidDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>;\n /**\n * Emitted after the action sheet has presented.\nShorthand for ionActionSheetWillDismiss.\n */\n didPresent: EventEmitter<IonActionSheetCustomEvent<void>>;\n /**\n * Emitted before the action sheet has presented.\nShorthand for ionActionSheetWillPresent.\n */\n willPresent: EventEmitter<IonActionSheetCustomEvent<void>>;\n /**\n * Emitted before the action sheet has dismissed.\nShorthand for ionActionSheetWillDismiss.\n */\n willDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>;\n /**\n * Emitted after the action sheet has dismissed.\nShorthand for ionActionSheetDidDismiss.\n */\n didDismiss: EventEmitter<IonActionSheetCustomEvent<IIonActionSheetOverlayEventDetail>>;\n}\n\n\n"]}
@@ -1,58 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, NgZone, EventEmitter } from '@angular/core';
2
- import type { Components } from '@ionic/core/components';
3
- import type { IonAlertCustomEvent } from '@ionic/core/components';
4
- import type { OverlayEventDetail as IIonAlertOverlayEventDetail } from '@ionic/core/components';
5
- import * as i0 from "@angular/core";
6
- export declare class IonAlert {
7
- protected z: NgZone;
8
- protected el: HTMLIonAlertElement;
9
- ionAlertDidPresent: EventEmitter<IonAlertCustomEvent<void>>;
10
- ionAlertWillPresent: EventEmitter<IonAlertCustomEvent<void>>;
11
- ionAlertWillDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail<any>>>;
12
- ionAlertDidDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail<any>>>;
13
- didPresent: EventEmitter<IonAlertCustomEvent<void>>;
14
- willPresent: EventEmitter<IonAlertCustomEvent<void>>;
15
- willDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail<any>>>;
16
- didDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail<any>>>;
17
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
18
- static ɵfac: i0.ɵɵFactoryDeclaration<IonAlert, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<IonAlert, "ion-alert", never, { "animated": { "alias": "animated"; "required": false; }; "backdropDismiss": { "alias": "backdropDismiss"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "enterAnimation": { "alias": "enterAnimation"; "required": false; }; "header": { "alias": "header"; "required": false; }; "htmlAttributes": { "alias": "htmlAttributes"; "required": false; }; "inputs": { "alias": "inputs"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "keyboardClose": { "alias": "keyboardClose"; "required": false; }; "leaveAnimation": { "alias": "leaveAnimation"; "required": false; }; "message": { "alias": "message"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "subHeader": { "alias": "subHeader"; "required": false; }; "translucent": { "alias": "translucent"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, { "ionAlertDidPresent": "ionAlertDidPresent"; "ionAlertWillPresent": "ionAlertWillPresent"; "ionAlertWillDismiss": "ionAlertWillDismiss"; "ionAlertDidDismiss": "ionAlertDidDismiss"; "didPresent": "didPresent"; "willPresent": "willPresent"; "willDismiss": "willDismiss"; "didDismiss": "didDismiss"; }, never, ["*"], true, never>;
20
- }
21
- export declare interface IonAlert extends Components.IonAlert {
22
- /**
23
- * Emitted after the alert has presented.
24
- */
25
- ionAlertDidPresent: EventEmitter<IonAlertCustomEvent<void>>;
26
- /**
27
- * Emitted before the alert has presented.
28
- */
29
- ionAlertWillPresent: EventEmitter<IonAlertCustomEvent<void>>;
30
- /**
31
- * Emitted before the alert has dismissed.
32
- */
33
- ionAlertWillDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>;
34
- /**
35
- * Emitted after the alert has dismissed.
36
- */
37
- ionAlertDidDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>;
38
- /**
39
- * Emitted after the alert has presented.
40
- Shorthand for ionAlertWillDismiss.
41
- */
42
- didPresent: EventEmitter<IonAlertCustomEvent<void>>;
43
- /**
44
- * Emitted before the alert has presented.
45
- Shorthand for ionAlertWillPresent.
46
- */
47
- willPresent: EventEmitter<IonAlertCustomEvent<void>>;
48
- /**
49
- * Emitted before the alert has dismissed.
50
- Shorthand for ionAlertWillDismiss.
51
- */
52
- willDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>;
53
- /**
54
- * Emitted after the alert has dismissed.
55
- Shorthand for ionAlertDidDismiss.
56
- */
57
- didDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>;
58
- }
@@ -1,62 +0,0 @@
1
- import { __decorate } from "tslib";
2
- /* tslint:disable */
3
- /* auto-generated angular directive proxies */
4
- import { ChangeDetectionStrategy, Component, EventEmitter, Output } from '@angular/core';
5
- import { ProxyCmp } from './angular-component-lib/utils';
6
- import { defineCustomElement as defineIonAlert } from '@ionic/core/components/ion-alert.js';
7
- import * as i0 from "@angular/core";
8
- let IonAlert = class IonAlert {
9
- z;
10
- el;
11
- ionAlertDidPresent = new EventEmitter();
12
- ionAlertWillPresent = new EventEmitter();
13
- ionAlertWillDismiss = new EventEmitter();
14
- ionAlertDidDismiss = new EventEmitter();
15
- didPresent = new EventEmitter();
16
- willPresent = new EventEmitter();
17
- willDismiss = new EventEmitter();
18
- didDismiss = new EventEmitter();
19
- constructor(c, r, z) {
20
- this.z = z;
21
- c.detach();
22
- this.el = r.nativeElement;
23
- }
24
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
25
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAlert, isStandalone: true, selector: "ion-alert", inputs: { animated: "animated", backdropDismiss: "backdropDismiss", buttons: "buttons", cssClass: "cssClass", enterAnimation: "enterAnimation", header: "header", htmlAttributes: "htmlAttributes", inputs: "inputs", isOpen: "isOpen", keyboardClose: "keyboardClose", leaveAnimation: "leaveAnimation", message: "message", mode: "mode", subHeader: "subHeader", translucent: "translucent", trigger: "trigger" }, outputs: { ionAlertDidPresent: "ionAlertDidPresent", ionAlertWillPresent: "ionAlertWillPresent", ionAlertWillDismiss: "ionAlertWillDismiss", ionAlertDidDismiss: "ionAlertDidDismiss", didPresent: "didPresent", willPresent: "willPresent", willDismiss: "willDismiss", didDismiss: "didDismiss" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
26
- };
27
- IonAlert = __decorate([
28
- ProxyCmp({
29
- defineCustomElementFn: defineIonAlert,
30
- inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],
31
- methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']
32
- })
33
- ], IonAlert);
34
- export { IonAlert };
35
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAlert, decorators: [{
36
- type: Component,
37
- args: [{
38
- selector: 'ion-alert',
39
- changeDetection: ChangeDetectionStrategy.OnPush,
40
- template: '<ng-content></ng-content>',
41
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
42
- inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],
43
- outputs: ['ionAlertDidPresent', 'ionAlertWillPresent', 'ionAlertWillDismiss', 'ionAlertDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss'],
44
- }]
45
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionAlertDidPresent: [{
46
- type: Output
47
- }], ionAlertWillPresent: [{
48
- type: Output
49
- }], ionAlertWillDismiss: [{
50
- type: Output
51
- }], ionAlertDidDismiss: [{
52
- type: Output
53
- }], didPresent: [{
54
- type: Output
55
- }], willPresent: [{
56
- type: Output
57
- }], willDismiss: [{
58
- type: Output
59
- }], didDismiss: [{
60
- type: Output
61
- }] } });
62
- //# sourceMappingURL=ion-alert.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ion-alert.js","sourceRoot":"","sources":["../../../src/standalone/directives/ion-alert.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,8CAA8C;AAC9C,OAAO,EAAE,uBAAuB,EAAqB,SAAS,EAAsB,YAAY,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAEhI,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAIzD,OAAO,EAAE,mBAAmB,IAAI,cAAc,EAAE,MAAM,qCAAqC,CAAC;;AAerF,IAAM,QAAQ,GAAd,MAAM,QAAQ;IAUwC;IATjD,EAAE,CAAsB;IACxB,kBAAkB,GAAG,IAAI,YAAY,EAA6B,CAAC;IACnE,mBAAmB,GAAG,IAAI,YAAY,EAA6B,CAAC;IACpE,mBAAmB,GAAG,IAAI,YAAY,EAAoD,CAAC;IAC3F,kBAAkB,GAAG,IAAI,YAAY,EAAoD,CAAC;IAC1F,UAAU,GAAG,IAAI,YAAY,EAA6B,CAAC;IAC3D,WAAW,GAAG,IAAI,YAAY,EAA6B,CAAC;IAC5D,WAAW,GAAG,IAAI,YAAY,EAAoD,CAAC;IACnF,UAAU,GAAG,IAAI,YAAY,EAAoD,CAAC;IAC5F,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS;QAAT,MAAC,GAAD,CAAC,CAAQ;QAClE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;IAC5B,CAAC;0HAbU,QAAQ;8GAAR,QAAQ,gwBALT,2BAA2B;;AAK1B,QAAQ;IAbpB,QAAQ,CAAC;QACR,qBAAqB,EAAE,cAAc;QACrC,MAAM,EAAE,CAAC,UAAU,EAAE,iBAAiB,EAAE,SAAS,EAAE,UAAU,EAAE,gBAAgB,EAAE,QAAQ,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE,gBAAgB,EAAE,SAAS,EAAE,MAAM,EAAE,WAAW,EAAE,aAAa,EAAE,SAAS,CAAC;QAC7N,OAAO,EAAE,CAAC,SAAS,EAAE,SAAS,EAAE,cAAc,EAAE,eAAe,CAAC;KACjE,CAAC;GASW,QAAQ,CAcpB;;2FAdY,QAAQ;kBARpB,SAAS;mBAAC;oBACT,QAAQ,EAAE,WAAW;oBACrB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,CAAC,UAAU,EAAE,iBAAiB,EAAE,SAAS,EAAE,UAAU,EAAE,gBAAgB,EAAE,QAAQ,EAAE,gBAAgB,EAAE,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE,gBAAgB,EAAE,SAAS,EAAE,MAAM,EAAE,WAAW,EAAE,aAAa,EAAE,SAAS,CAAC;oBAC7N,OAAO,EAAE,CAAC,oBAAoB,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,aAAa,EAAE,YAAY,CAAC;iBAC9J;;sBAGE,MAAM;;sBACN,MAAM;;sBACN,MAAM;;sBACN,MAAM;;sBACN,MAAM;;sBACN,MAAM;;sBACN,MAAM;;sBACN,MAAM","sourcesContent":["/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone, EventEmitter, Output } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@ionic/core/components';\n\nimport { defineCustomElement as defineIonAlert } from '@ionic/core/components/ion-alert.js';\n\n@ProxyCmp({\n defineCustomElementFn: defineIonAlert,\n inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],\n methods: ['present', 'dismiss', 'onDidDismiss', 'onWillDismiss']\n})\n@Component({\n selector: 'ion-alert',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['animated', 'backdropDismiss', 'buttons', 'cssClass', 'enterAnimation', 'header', 'htmlAttributes', 'inputs', 'isOpen', 'keyboardClose', 'leaveAnimation', 'message', 'mode', 'subHeader', 'translucent', 'trigger'],\n outputs: ['ionAlertDidPresent', 'ionAlertWillPresent', 'ionAlertWillDismiss', 'ionAlertDidDismiss', 'didPresent', 'willPresent', 'willDismiss', 'didDismiss'],\n})\nexport class IonAlert {\n protected el: HTMLIonAlertElement;\n @Output() ionAlertDidPresent = new EventEmitter<IonAlertCustomEvent<void>>();\n @Output() ionAlertWillPresent = new EventEmitter<IonAlertCustomEvent<void>>();\n @Output() ionAlertWillDismiss = new EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>();\n @Output() ionAlertDidDismiss = new EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>();\n @Output() didPresent = new EventEmitter<IonAlertCustomEvent<void>>();\n @Output() willPresent = new EventEmitter<IonAlertCustomEvent<void>>();\n @Output() willDismiss = new EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>();\n @Output() didDismiss = new EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { IonAlertCustomEvent } from '@ionic/core/components';\nimport type { OverlayEventDetail as IIonAlertOverlayEventDetail } from '@ionic/core/components';\n\nexport declare interface IonAlert extends Components.IonAlert {\n /**\n * Emitted after the alert has presented.\n */\n ionAlertDidPresent: EventEmitter<IonAlertCustomEvent<void>>;\n /**\n * Emitted before the alert has presented.\n */\n ionAlertWillPresent: EventEmitter<IonAlertCustomEvent<void>>;\n /**\n * Emitted before the alert has dismissed.\n */\n ionAlertWillDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>;\n /**\n * Emitted after the alert has dismissed.\n */\n ionAlertDidDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>;\n /**\n * Emitted after the alert has presented.\nShorthand for ionAlertWillDismiss.\n */\n didPresent: EventEmitter<IonAlertCustomEvent<void>>;\n /**\n * Emitted before the alert has presented.\nShorthand for ionAlertWillPresent.\n */\n willPresent: EventEmitter<IonAlertCustomEvent<void>>;\n /**\n * Emitted before the alert has dismissed.\nShorthand for ionAlertWillDismiss.\n */\n willDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>;\n /**\n * Emitted after the alert has dismissed.\nShorthand for ionAlertDidDismiss.\n */\n didDismiss: EventEmitter<IonAlertCustomEvent<IIonAlertOverlayEventDetail>>;\n}\n\n\n"]}
@@ -1,12 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
2
- import type { Components } from '@ionic/core/components';
3
- import * as i0 from "@angular/core";
4
- export declare class IonApp {
5
- protected z: NgZone;
6
- protected el: HTMLIonAppElement;
7
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
8
- static ɵfac: i0.ɵɵFactoryDeclaration<IonApp, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<IonApp, "ion-app", never, {}, {}, never, ["*"], true, never>;
10
- }
11
- export declare interface IonApp extends Components.IonApp {
12
- }
@@ -1,36 +0,0 @@
1
- import { __decorate } from "tslib";
2
- /* tslint:disable */
3
- /* auto-generated angular directive proxies */
4
- import { ChangeDetectionStrategy, Component } from '@angular/core';
5
- import { ProxyCmp } from './angular-component-lib/utils';
6
- import { defineCustomElement as defineIonApp } from '@ionic/core/components/ion-app.js';
7
- import * as i0 from "@angular/core";
8
- let IonApp = class IonApp {
9
- z;
10
- el;
11
- constructor(c, r, z) {
12
- this.z = z;
13
- c.detach();
14
- this.el = r.nativeElement;
15
- }
16
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonApp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
17
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonApp, isStandalone: true, selector: "ion-app", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
18
- };
19
- IonApp = __decorate([
20
- ProxyCmp({
21
- defineCustomElementFn: defineIonApp,
22
- methods: ['setFocus']
23
- })
24
- ], IonApp);
25
- export { IonApp };
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonApp, decorators: [{
27
- type: Component,
28
- args: [{
29
- selector: 'ion-app',
30
- changeDetection: ChangeDetectionStrategy.OnPush,
31
- template: '<ng-content></ng-content>',
32
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
33
- inputs: [],
34
- }]
35
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
36
- //# sourceMappingURL=ion-app.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ion-app.js","sourceRoot":"","sources":["../../../src/standalone/directives/ion-app.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,8CAA8C;AAC9C,OAAO,EAAE,uBAAuB,EAAqB,SAAS,EAAsB,MAAM,eAAe,CAAC;AAE1G,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAIzD,OAAO,EAAE,mBAAmB,IAAI,YAAY,EAAE,MAAM,mCAAmC,CAAC;;AAajF,IAAM,MAAM,GAAZ,MAAM,MAAM;IAE0C;IADjD,EAAE,CAAoB;IAChC,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS;QAAT,MAAC,GAAD,CAAC,CAAQ;QAClE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;IAC5B,CAAC;0HALU,MAAM;8GAAN,MAAM,mEAJP,2BAA2B;;AAI1B,MAAM;IAXlB,QAAQ,CAAC;QACR,qBAAqB,EAAE,YAAY;QACnC,OAAO,EAAE,CAAC,UAAU,CAAC;KACtB,CAAC;GAQW,MAAM,CAMlB;;2FANY,MAAM;kBAPlB,SAAS;mBAAC;oBACT,QAAQ,EAAE,SAAS;oBACnB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,EAAE;iBACX","sourcesContent":["/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@ionic/core/components';\n\nimport { defineCustomElement as defineIonApp } from '@ionic/core/components/ion-app.js';\n\n@ProxyCmp({\n defineCustomElementFn: defineIonApp,\n methods: ['setFocus']\n})\n@Component({\n selector: 'ion-app',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: [],\n})\nexport class IonApp {\n protected el: HTMLIonAppElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface IonApp extends Components.IonApp {}\n\n\n"]}
@@ -1,12 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
2
- import type { Components } from '@ionic/core/components';
3
- import * as i0 from "@angular/core";
4
- export declare class IonAvatar {
5
- protected z: NgZone;
6
- protected el: HTMLIonAvatarElement;
7
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
8
- static ɵfac: i0.ɵɵFactoryDeclaration<IonAvatar, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<IonAvatar, "ion-avatar", never, {}, {}, never, ["*"], true, never>;
10
- }
11
- export declare interface IonAvatar extends Components.IonAvatar {
12
- }
@@ -1,35 +0,0 @@
1
- import { __decorate } from "tslib";
2
- /* tslint:disable */
3
- /* auto-generated angular directive proxies */
4
- import { ChangeDetectionStrategy, Component } from '@angular/core';
5
- import { ProxyCmp } from './angular-component-lib/utils';
6
- import { defineCustomElement as defineIonAvatar } from '@ionic/core/components/ion-avatar.js';
7
- import * as i0 from "@angular/core";
8
- let IonAvatar = class IonAvatar {
9
- z;
10
- el;
11
- constructor(c, r, z) {
12
- this.z = z;
13
- c.detach();
14
- this.el = r.nativeElement;
15
- }
16
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
17
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonAvatar, isStandalone: true, selector: "ion-avatar", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
18
- };
19
- IonAvatar = __decorate([
20
- ProxyCmp({
21
- defineCustomElementFn: defineIonAvatar
22
- })
23
- ], IonAvatar);
24
- export { IonAvatar };
25
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonAvatar, decorators: [{
26
- type: Component,
27
- args: [{
28
- selector: 'ion-avatar',
29
- changeDetection: ChangeDetectionStrategy.OnPush,
30
- template: '<ng-content></ng-content>',
31
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
32
- inputs: [],
33
- }]
34
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
35
- //# sourceMappingURL=ion-avatar.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ion-avatar.js","sourceRoot":"","sources":["../../../src/standalone/directives/ion-avatar.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,8CAA8C;AAC9C,OAAO,EAAE,uBAAuB,EAAqB,SAAS,EAAsB,MAAM,eAAe,CAAC;AAE1G,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAIzD,OAAO,EAAE,mBAAmB,IAAI,eAAe,EAAE,MAAM,sCAAsC,CAAC;;AAYvF,IAAM,SAAS,GAAf,MAAM,SAAS;IAEuC;IADjD,EAAE,CAAuB;IACnC,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS;QAAT,MAAC,GAAD,CAAC,CAAQ;QAClE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;IAC5B,CAAC;0HALU,SAAS;8GAAT,SAAS,sEAJV,2BAA2B;;AAI1B,SAAS;IAVrB,QAAQ,CAAC;QACR,qBAAqB,EAAE,eAAe;KACvC,CAAC;GAQW,SAAS,CAMrB;;2FANY,SAAS;kBAPrB,SAAS;mBAAC;oBACT,QAAQ,EAAE,YAAY;oBACtB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,EAAE;iBACX","sourcesContent":["/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@ionic/core/components';\n\nimport { defineCustomElement as defineIonAvatar } from '@ionic/core/components/ion-avatar.js';\n\n@ProxyCmp({\n defineCustomElementFn: defineIonAvatar\n})\n@Component({\n selector: 'ion-avatar',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: [],\n})\nexport class IonAvatar {\n protected el: HTMLIonAvatarElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface IonAvatar extends Components.IonAvatar {}\n\n\n"]}
@@ -1,18 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, NgZone, EventEmitter } from '@angular/core';
2
- import type { Components } from '@ionic/core/components';
3
- import type { IonBackdropCustomEvent } from '@ionic/core/components';
4
- import * as i0 from "@angular/core";
5
- export declare class IonBackdrop {
6
- protected z: NgZone;
7
- protected el: HTMLIonBackdropElement;
8
- ionBackdropTap: EventEmitter<IonBackdropCustomEvent<void>>;
9
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
10
- static ɵfac: i0.ɵɵFactoryDeclaration<IonBackdrop, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<IonBackdrop, "ion-backdrop", never, { "stopPropagation": { "alias": "stopPropagation"; "required": false; }; "tappable": { "alias": "tappable"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, { "ionBackdropTap": "ionBackdropTap"; }, never, ["*"], true, never>;
12
- }
13
- export declare interface IonBackdrop extends Components.IonBackdrop {
14
- /**
15
- * Emitted when the backdrop is tapped.
16
- */
17
- ionBackdropTap: EventEmitter<IonBackdropCustomEvent<void>>;
18
- }
@@ -1,40 +0,0 @@
1
- import { __decorate } from "tslib";
2
- /* tslint:disable */
3
- /* auto-generated angular directive proxies */
4
- import { ChangeDetectionStrategy, Component, EventEmitter, Output } from '@angular/core';
5
- import { ProxyCmp } from './angular-component-lib/utils';
6
- import { defineCustomElement as defineIonBackdrop } from '@ionic/core/components/ion-backdrop.js';
7
- import * as i0 from "@angular/core";
8
- let IonBackdrop = class IonBackdrop {
9
- z;
10
- el;
11
- ionBackdropTap = new EventEmitter();
12
- constructor(c, r, z) {
13
- this.z = z;
14
- c.detach();
15
- this.el = r.nativeElement;
16
- }
17
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackdrop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
18
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBackdrop, isStandalone: true, selector: "ion-backdrop", inputs: { stopPropagation: "stopPropagation", tappable: "tappable", visible: "visible" }, outputs: { ionBackdropTap: "ionBackdropTap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
19
- };
20
- IonBackdrop = __decorate([
21
- ProxyCmp({
22
- defineCustomElementFn: defineIonBackdrop,
23
- inputs: ['stopPropagation', 'tappable', 'visible']
24
- })
25
- ], IonBackdrop);
26
- export { IonBackdrop };
27
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBackdrop, decorators: [{
28
- type: Component,
29
- args: [{
30
- selector: 'ion-backdrop',
31
- changeDetection: ChangeDetectionStrategy.OnPush,
32
- template: '<ng-content></ng-content>',
33
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
34
- inputs: ['stopPropagation', 'tappable', 'visible'],
35
- outputs: ['ionBackdropTap'],
36
- }]
37
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionBackdropTap: [{
38
- type: Output
39
- }] } });
40
- //# sourceMappingURL=ion-backdrop.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ion-backdrop.js","sourceRoot":"","sources":["../../../src/standalone/directives/ion-backdrop.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,8CAA8C;AAC9C,OAAO,EAAE,uBAAuB,EAAqB,SAAS,EAAsB,YAAY,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAEhI,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAIzD,OAAO,EAAE,mBAAmB,IAAI,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;;AAc3F,IAAM,WAAW,GAAjB,MAAM,WAAW;IAGqC;IAFjD,EAAE,CAAyB;IAC3B,cAAc,GAAG,IAAI,YAAY,EAAgC,CAAC;IAC5E,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS;QAAT,MAAC,GAAD,CAAC,CAAQ;QAClE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;IAC5B,CAAC;0HANU,WAAW;8GAAX,WAAW,iNALZ,2BAA2B;;AAK1B,WAAW;IAZvB,QAAQ,CAAC;QACR,qBAAqB,EAAE,iBAAiB;QACxC,MAAM,EAAE,CAAC,iBAAiB,EAAE,UAAU,EAAE,SAAS,CAAC;KACnD,CAAC;GASW,WAAW,CAOvB;;2FAPY,WAAW;kBARvB,SAAS;mBAAC;oBACT,QAAQ,EAAE,cAAc;oBACxB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,CAAC,iBAAiB,EAAE,UAAU,EAAE,SAAS,CAAC;oBAClD,OAAO,EAAE,CAAC,gBAAgB,CAAC;iBAC5B;;sBAGE,MAAM","sourcesContent":["/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone, EventEmitter, Output } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@ionic/core/components';\n\nimport { defineCustomElement as defineIonBackdrop } from '@ionic/core/components/ion-backdrop.js';\n\n@ProxyCmp({\n defineCustomElementFn: defineIonBackdrop,\n inputs: ['stopPropagation', 'tappable', 'visible']\n})\n@Component({\n selector: 'ion-backdrop',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['stopPropagation', 'tappable', 'visible'],\n outputs: ['ionBackdropTap'],\n})\nexport class IonBackdrop {\n protected el: HTMLIonBackdropElement;\n @Output() ionBackdropTap = new EventEmitter<IonBackdropCustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { IonBackdropCustomEvent } from '@ionic/core/components';\n\nexport declare interface IonBackdrop extends Components.IonBackdrop {\n /**\n * Emitted when the backdrop is tapped.\n */\n ionBackdropTap: EventEmitter<IonBackdropCustomEvent<void>>;\n}\n\n\n"]}
@@ -1,12 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
2
- import type { Components } from '@ionic/core/components';
3
- import * as i0 from "@angular/core";
4
- export declare class IonBadge {
5
- protected z: NgZone;
6
- protected el: HTMLIonBadgeElement;
7
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
8
- static ɵfac: i0.ɵɵFactoryDeclaration<IonBadge, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<IonBadge, "ion-badge", never, { "color": { "alias": "color"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, {}, never, ["*"], true, never>;
10
- }
11
- export declare interface IonBadge extends Components.IonBadge {
12
- }
@@ -1,36 +0,0 @@
1
- import { __decorate } from "tslib";
2
- /* tslint:disable */
3
- /* auto-generated angular directive proxies */
4
- import { ChangeDetectionStrategy, Component } from '@angular/core';
5
- import { ProxyCmp } from './angular-component-lib/utils';
6
- import { defineCustomElement as defineIonBadge } from '@ionic/core/components/ion-badge.js';
7
- import * as i0 from "@angular/core";
8
- let IonBadge = class IonBadge {
9
- z;
10
- el;
11
- constructor(c, r, z) {
12
- this.z = z;
13
- c.detach();
14
- this.el = r.nativeElement;
15
- }
16
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
17
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBadge, isStandalone: true, selector: "ion-badge", inputs: { color: "color", mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
18
- };
19
- IonBadge = __decorate([
20
- ProxyCmp({
21
- defineCustomElementFn: defineIonBadge,
22
- inputs: ['color', 'mode']
23
- })
24
- ], IonBadge);
25
- export { IonBadge };
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBadge, decorators: [{
27
- type: Component,
28
- args: [{
29
- selector: 'ion-badge',
30
- changeDetection: ChangeDetectionStrategy.OnPush,
31
- template: '<ng-content></ng-content>',
32
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
33
- inputs: ['color', 'mode'],
34
- }]
35
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
36
- //# sourceMappingURL=ion-badge.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ion-badge.js","sourceRoot":"","sources":["../../../src/standalone/directives/ion-badge.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,8CAA8C;AAC9C,OAAO,EAAE,uBAAuB,EAAqB,SAAS,EAAsB,MAAM,eAAe,CAAC;AAE1G,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAIzD,OAAO,EAAE,mBAAmB,IAAI,cAAc,EAAE,MAAM,qCAAqC,CAAC;;AAarF,IAAM,QAAQ,GAAd,MAAM,QAAQ;IAEwC;IADjD,EAAE,CAAsB;IAClC,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS;QAAT,MAAC,GAAD,CAAC,CAAQ;QAClE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;IAC5B,CAAC;0HALU,QAAQ;8GAAR,QAAQ,+GAJT,2BAA2B;;AAI1B,QAAQ;IAXpB,QAAQ,CAAC;QACR,qBAAqB,EAAE,cAAc;QACrC,MAAM,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;KAC1B,CAAC;GAQW,QAAQ,CAMpB;;2FANY,QAAQ;kBAPpB,SAAS;mBAAC;oBACT,QAAQ,EAAE,WAAW;oBACrB,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;iBAC1B","sourcesContent":["/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@ionic/core/components';\n\nimport { defineCustomElement as defineIonBadge } from '@ionic/core/components/ion-badge.js';\n\n@ProxyCmp({\n defineCustomElementFn: defineIonBadge,\n inputs: ['color', 'mode']\n})\n@Component({\n selector: 'ion-badge',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['color', 'mode'],\n})\nexport class IonBadge {\n protected el: HTMLIonBadgeElement;\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nexport declare interface IonBadge extends Components.IonBadge {}\n\n\n"]}
@@ -1,23 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, NgZone, EventEmitter } from '@angular/core';
2
- import type { Components } from '@ionic/core/components';
3
- import type { IonBreadcrumbCustomEvent } from '@ionic/core/components';
4
- import * as i0 from "@angular/core";
5
- export declare class IonBreadcrumb {
6
- protected z: NgZone;
7
- protected el: HTMLIonBreadcrumbElement;
8
- ionFocus: EventEmitter<IonBreadcrumbCustomEvent<void>>;
9
- ionBlur: EventEmitter<IonBreadcrumbCustomEvent<void>>;
10
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
11
- static ɵfac: i0.ɵɵFactoryDeclaration<IonBreadcrumb, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<IonBreadcrumb, "ion-breadcrumb", never, { "active": { "alias": "active"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "routerAnimation": { "alias": "routerAnimation"; "required": false; }; "routerDirection": { "alias": "routerDirection"; "required": false; }; "separator": { "alias": "separator"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, { "ionFocus": "ionFocus"; "ionBlur": "ionBlur"; }, never, ["*"], true, never>;
13
- }
14
- export declare interface IonBreadcrumb extends Components.IonBreadcrumb {
15
- /**
16
- * Emitted when the breadcrumb has focus.
17
- */
18
- ionFocus: EventEmitter<IonBreadcrumbCustomEvent<void>>;
19
- /**
20
- * Emitted when the breadcrumb loses focus.
21
- */
22
- ionBlur: EventEmitter<IonBreadcrumbCustomEvent<void>>;
23
- }
@@ -1,43 +0,0 @@
1
- import { __decorate } from "tslib";
2
- /* tslint:disable */
3
- /* auto-generated angular directive proxies */
4
- import { ChangeDetectionStrategy, Component, EventEmitter, Output } from '@angular/core';
5
- import { ProxyCmp } from './angular-component-lib/utils';
6
- import { defineCustomElement as defineIonBreadcrumb } from '@ionic/core/components/ion-breadcrumb.js';
7
- import * as i0 from "@angular/core";
8
- let IonBreadcrumb = class IonBreadcrumb {
9
- z;
10
- el;
11
- ionFocus = new EventEmitter();
12
- ionBlur = new EventEmitter();
13
- constructor(c, r, z) {
14
- this.z = z;
15
- c.detach();
16
- this.el = r.nativeElement;
17
- }
18
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
19
- /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.0", type: IonBreadcrumb, isStandalone: true, selector: "ion-breadcrumb", inputs: { active: "active", color: "color", disabled: "disabled", download: "download", href: "href", mode: "mode", rel: "rel", routerAnimation: "routerAnimation", routerDirection: "routerDirection", separator: "separator", target: "target" }, outputs: { ionFocus: "ionFocus", ionBlur: "ionBlur" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
20
- };
21
- IonBreadcrumb = __decorate([
22
- ProxyCmp({
23
- defineCustomElementFn: defineIonBreadcrumb,
24
- inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target']
25
- })
26
- ], IonBreadcrumb);
27
- export { IonBreadcrumb };
28
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonBreadcrumb, decorators: [{
29
- type: Component,
30
- args: [{
31
- selector: 'ion-breadcrumb',
32
- changeDetection: ChangeDetectionStrategy.OnPush,
33
- template: '<ng-content></ng-content>',
34
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
35
- inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target'],
36
- outputs: ['ionFocus', 'ionBlur'],
37
- }]
38
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ionFocus: [{
39
- type: Output
40
- }], ionBlur: [{
41
- type: Output
42
- }] } });
43
- //# sourceMappingURL=ion-breadcrumb.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ion-breadcrumb.js","sourceRoot":"","sources":["../../../src/standalone/directives/ion-breadcrumb.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,8CAA8C;AAC9C,OAAO,EAAE,uBAAuB,EAAqB,SAAS,EAAsB,YAAY,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAEhI,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAIzD,OAAO,EAAE,mBAAmB,IAAI,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;;AAc/F,IAAM,aAAa,GAAnB,MAAM,aAAa;IAImC;IAHjD,EAAE,CAA2B;IAC7B,QAAQ,GAAG,IAAI,YAAY,EAAkC,CAAC;IAC9D,OAAO,GAAG,IAAI,YAAY,EAAkC,CAAC;IACvE,YAAY,CAAoB,EAAE,CAAa,EAAY,CAAS;QAAT,MAAC,GAAD,CAAC,CAAQ;QAClE,CAAC,CAAC,MAAM,EAAE,CAAC;QACX,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC,aAAa,CAAC;IAC5B,CAAC;0HAPU,aAAa;8GAAb,aAAa,qXALd,2BAA2B;;AAK1B,aAAa;IAZzB,QAAQ,CAAC;QACR,qBAAqB,EAAE,mBAAmB;QAC1C,MAAM,EAAE,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,WAAW,EAAE,QAAQ,CAAC;KACxI,CAAC;GASW,aAAa,CAQzB;;2FARY,aAAa;kBARzB,SAAS;mBAAC;oBACT,QAAQ,EAAE,gBAAgB;oBAC1B,eAAe,EAAE,uBAAuB,CAAC,MAAM;oBAC/C,QAAQ,EAAE,2BAA2B;oBACrC,uEAAuE;oBACvE,MAAM,EAAE,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,WAAW,EAAE,QAAQ,CAAC;oBACvI,OAAO,EAAE,CAAC,UAAU,EAAE,SAAS,CAAC;iBACjC;;sBAGE,MAAM;;sBACN,MAAM","sourcesContent":["/* tslint:disable */\n/* auto-generated angular directive proxies */\nimport { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, NgZone, EventEmitter, Output } from '@angular/core';\n\nimport { ProxyCmp } from './angular-component-lib/utils';\n\nimport type { Components } from '@ionic/core/components';\n\nimport { defineCustomElement as defineIonBreadcrumb } from '@ionic/core/components/ion-breadcrumb.js';\n\n@ProxyCmp({\n defineCustomElementFn: defineIonBreadcrumb,\n inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target']\n})\n@Component({\n selector: 'ion-breadcrumb',\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: '<ng-content></ng-content>',\n // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property\n inputs: ['active', 'color', 'disabled', 'download', 'href', 'mode', 'rel', 'routerAnimation', 'routerDirection', 'separator', 'target'],\n outputs: ['ionFocus', 'ionBlur'],\n})\nexport class IonBreadcrumb {\n protected el: HTMLIonBreadcrumbElement;\n @Output() ionFocus = new EventEmitter<IonBreadcrumbCustomEvent<void>>();\n @Output() ionBlur = new EventEmitter<IonBreadcrumbCustomEvent<void>>();\n constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {\n c.detach();\n this.el = r.nativeElement;\n }\n}\n\n\nimport type { IonBreadcrumbCustomEvent } from '@ionic/core/components';\n\nexport declare interface IonBreadcrumb extends Components.IonBreadcrumb {\n /**\n * Emitted when the breadcrumb has focus.\n */\n ionFocus: EventEmitter<IonBreadcrumbCustomEvent<void>>;\n /**\n * Emitted when the breadcrumb loses focus.\n */\n ionBlur: EventEmitter<IonBreadcrumbCustomEvent<void>>;\n}\n\n\n"]}