@ionic/angular 8.8.20-dev.11787158518.168a2fea → 8.8.20-dev.11788449221.155f9f1e

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 (646) 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/css/core.css +1 -1
  13. package/css/core.css.map +1 -1
  14. package/css/display.css +1 -1
  15. package/css/display.css.map +1 -1
  16. package/css/flex-utils.css +1 -1
  17. package/css/flex-utils.css.map +1 -1
  18. package/css/float-elements.css.map +1 -1
  19. package/css/global.bundle.css.map +1 -1
  20. package/css/ionic/bundle.ionic.css +1 -0
  21. package/css/ionic/bundle.ionic.css.map +1 -0
  22. package/css/ionic/core.ionic.css +1 -0
  23. package/css/ionic/core.ionic.css.map +1 -0
  24. package/css/ionic/global.bundle.ionic.css +1 -0
  25. package/css/ionic/global.bundle.ionic.css.map +1 -0
  26. package/css/ionic/ionic-swiper.ionic.css +1 -0
  27. package/css/ionic/ionic-swiper.ionic.css.map +1 -0
  28. package/css/ionic/link.ionic.css +1 -0
  29. package/css/ionic/link.ionic.css.map +1 -0
  30. package/css/ionic/structure.ionic.css +1 -0
  31. package/css/ionic/structure.ionic.css.map +1 -0
  32. package/css/ionic/typography.ionic.css +1 -0
  33. package/css/ionic/typography.ionic.css.map +1 -0
  34. package/css/ionic/utils.bundle.ionic.css +1 -0
  35. package/css/ionic/utils.bundle.ionic.css.map +1 -0
  36. package/css/ionic-swiper.css +1 -1
  37. package/css/ionic-swiper.css.map +1 -1
  38. package/css/ionic.bundle.css +1 -1
  39. package/css/ionic.bundle.css.map +1 -1
  40. package/css/normalize.css.map +1 -1
  41. package/css/padding.css.map +1 -1
  42. package/css/palettes/dark.always.css.map +1 -1
  43. package/css/palettes/dark.class.css.map +1 -1
  44. package/css/palettes/dark.system.css.map +1 -1
  45. package/css/palettes/high-contrast-dark.always.css.map +1 -1
  46. package/css/palettes/high-contrast-dark.class.css.map +1 -1
  47. package/css/palettes/high-contrast-dark.system.css.map +1 -1
  48. package/css/palettes/high-contrast.always.css.map +1 -1
  49. package/css/palettes/high-contrast.class.css.map +1 -1
  50. package/css/palettes/high-contrast.system.css.map +1 -1
  51. package/css/structure.css.map +1 -1
  52. package/css/text-alignment.css.map +1 -1
  53. package/css/text-transformation.css.map +1 -1
  54. package/css/typography.css.map +1 -1
  55. package/css/utils.bundle.css +1 -1
  56. package/css/utils.bundle.css.map +1 -1
  57. package/{dist/lazy/directives → directives}/control-value-accessors/boolean-value-accessor.d.ts +1 -1
  58. package/{dist/lazy/directives → directives}/control-value-accessors/numeric-value-accessor.d.ts +1 -1
  59. package/{dist/lazy/directives → directives}/control-value-accessors/select-value-accessor.d.ts +1 -1
  60. package/{dist/lazy/directives → directives}/control-value-accessors/text-value-accessor.d.ts +1 -1
  61. package/directives/proxies-list.d.ts +2 -0
  62. package/{dist/lazy/directives → directives}/proxies.d.ts +269 -340
  63. package/esm2022/app-initialize.mjs +29 -0
  64. package/esm2022/common/directives/control-value-accessors/index.mjs +2 -0
  65. package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +153 -0
  66. package/esm2022/common/directives/navigation/back-button.mjs +61 -0
  67. package/esm2022/common/directives/navigation/nav-params.mjs +47 -0
  68. package/esm2022/common/directives/navigation/nav.mjs +49 -0
  69. package/esm2022/common/directives/navigation/router-link-delegate.mjs +190 -0
  70. package/esm2022/common/directives/navigation/router-outlet.mjs +480 -0
  71. package/esm2022/common/directives/navigation/stack-controller.mjs +283 -0
  72. package/esm2022/common/directives/navigation/stack-utils.mjs +73 -0
  73. package/esm2022/common/directives/navigation/tabs.mjs +279 -0
  74. package/esm2022/common/index.mjs +20 -0
  75. package/esm2022/common/ionic-angular-common.mjs +5 -0
  76. package/esm2022/common/overlays/modal.mjs +103 -0
  77. package/esm2022/common/overlays/popover.mjs +91 -0
  78. package/esm2022/common/providers/angular-delegate.mjs +210 -0
  79. package/esm2022/common/providers/config.mjs +45 -0
  80. package/esm2022/common/providers/dom-controller.mjs +45 -0
  81. package/esm2022/common/providers/menu-controller.mjs +114 -0
  82. package/esm2022/common/providers/nav-controller.mjs +235 -0
  83. package/esm2022/common/providers/platform.mjs +258 -0
  84. package/esm2022/common/types/interfaces.mjs +2 -0
  85. package/esm2022/common/types/ionic-lifecycle-hooks.mjs +5 -0
  86. package/esm2022/common/types/overlay-options.mjs +2 -0
  87. package/esm2022/common/utils/overlay.mjs +26 -0
  88. package/esm2022/common/utils/proxy.mjs +47 -0
  89. package/esm2022/common/utils/routing.mjs +55 -0
  90. package/esm2022/common/utils/util.mjs +10 -0
  91. package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
  92. package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +42 -0
  93. package/esm2022/directives/control-value-accessors/index.mjs +5 -0
  94. package/esm2022/directives/control-value-accessors/numeric-value-accessor.mjs +50 -0
  95. package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +39 -0
  96. package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +38 -0
  97. package/esm2022/directives/navigation/ion-back-button.mjs +24 -0
  98. package/esm2022/directives/navigation/ion-nav.mjs +21 -0
  99. package/esm2022/directives/navigation/ion-router-outlet.mjs +52 -0
  100. package/esm2022/directives/navigation/ion-tabs.mjs +59 -0
  101. package/esm2022/directives/navigation/router-link-delegate.mjs +32 -0
  102. package/esm2022/directives/overlays/modal.mjs +22 -0
  103. package/esm2022/directives/overlays/popover.mjs +18 -0
  104. package/esm2022/directives/proxies-list.mjs +93 -0
  105. package/esm2022/directives/proxies.mjs +2465 -0
  106. package/esm2022/directives/validators/index.mjs +3 -0
  107. package/esm2022/directives/validators/max-validator.mjs +27 -0
  108. package/esm2022/directives/validators/min-validator.mjs +27 -0
  109. package/esm2022/index.mjs +32 -0
  110. package/esm2022/ionic-angular.mjs +5 -0
  111. package/esm2022/ionic-module.mjs +111 -0
  112. package/esm2022/providers/action-sheet-controller.mjs +19 -0
  113. package/esm2022/providers/alert-controller.mjs +19 -0
  114. package/esm2022/providers/animation-controller.mjs +38 -0
  115. package/esm2022/providers/gesture-controller.mjs +33 -0
  116. package/esm2022/providers/loading-controller.mjs +19 -0
  117. package/esm2022/providers/menu-controller.mjs +19 -0
  118. package/esm2022/providers/modal-controller.mjs +26 -0
  119. package/esm2022/providers/picker-controller.mjs +22 -0
  120. package/esm2022/providers/popover-controller.mjs +19 -0
  121. package/esm2022/providers/toast-controller.mjs +19 -0
  122. package/esm2022/standalone/directives/angular-component-lib/utils.mjs +59 -0
  123. package/esm2022/standalone/directives/checkbox.mjs +76 -0
  124. package/esm2022/standalone/directives/datetime.mjs +95 -0
  125. package/esm2022/standalone/directives/icon.mjs +35 -0
  126. package/esm2022/standalone/directives/index.mjs +13 -0
  127. package/esm2022/standalone/directives/input-otp.mjs +90 -0
  128. package/esm2022/standalone/directives/input.mjs +113 -0
  129. package/esm2022/standalone/directives/proxies.mjs +2356 -0
  130. package/esm2022/standalone/directives/radio-group.mjs +60 -0
  131. package/esm2022/standalone/directives/range.mjs +78 -0
  132. package/esm2022/standalone/directives/searchbar.mjs +82 -0
  133. package/esm2022/standalone/directives/segment.mjs +60 -0
  134. package/esm2022/standalone/directives/select.mjs +84 -0
  135. package/esm2022/standalone/directives/textarea.mjs +91 -0
  136. package/esm2022/standalone/directives/toggle.mjs +76 -0
  137. package/esm2022/standalone/index.mjs +25 -0
  138. package/esm2022/standalone/ionic-angular-standalone.mjs +5 -0
  139. package/esm2022/standalone/navigation/back-button.mjs +32 -0
  140. package/esm2022/standalone/navigation/nav.mjs +28 -0
  141. package/esm2022/standalone/navigation/router-link-delegate.mjs +28 -0
  142. package/esm2022/standalone/navigation/router-outlet.mjs +60 -0
  143. package/esm2022/standalone/navigation/tabs.mjs +58 -0
  144. package/esm2022/standalone/overlays/modal.mjs +32 -0
  145. package/esm2022/standalone/overlays/popover.mjs +28 -0
  146. package/esm2022/standalone/providers/action-sheet-controller.mjs +21 -0
  147. package/esm2022/standalone/providers/alert-controller.mjs +21 -0
  148. package/esm2022/standalone/providers/animation-controller.mjs +38 -0
  149. package/esm2022/standalone/providers/gesture-controller.mjs +33 -0
  150. package/esm2022/standalone/providers/ionic-angular.mjs +38 -0
  151. package/esm2022/standalone/providers/loading-controller.mjs +21 -0
  152. package/esm2022/standalone/providers/menu-controller.mjs +19 -0
  153. package/esm2022/standalone/providers/modal-controller.mjs +28 -0
  154. package/esm2022/standalone/providers/picker-controller.mjs +24 -0
  155. package/esm2022/standalone/providers/popover-controller.mjs +21 -0
  156. package/esm2022/standalone/providers/toast-controller.mjs +21 -0
  157. package/fesm2022/ionic-angular-common.mjs +2791 -0
  158. package/fesm2022/ionic-angular-common.mjs.map +1 -0
  159. package/fesm2022/ionic-angular-standalone.mjs +3655 -0
  160. package/fesm2022/ionic-angular-standalone.mjs.map +1 -0
  161. package/fesm2022/ionic-angular.mjs +3231 -0
  162. package/fesm2022/ionic-angular.mjs.map +1 -0
  163. package/{dist/lazy/index.d.ts → index.d.ts} +2 -1
  164. package/ionic-module.d.ts +28 -0
  165. package/package.json +30 -172
  166. package/providers/picker-controller.d.ts +11 -0
  167. package/{dist/schematics → schematics}/add/index.js +6 -6
  168. package/schematics/utils/ast.js +32 -0
  169. package/{dist/schematics → schematics}/utils/config.js +11 -10
  170. package/{dist/schematics → schematics}/utils/package.js +4 -6
  171. package/standalone/directives/proxies.d.ts +1062 -0
  172. package/{dist/standalone → standalone}/index.d.ts +2 -1
  173. package/standalone/providers/picker-controller.d.ts +11 -0
  174. package/dist/common/directives/control-value-accessors/index.js +0 -2
  175. package/dist/common/directives/control-value-accessors/index.js.map +0 -1
  176. package/dist/common/directives/control-value-accessors/value-accessor.js +0 -152
  177. package/dist/common/directives/control-value-accessors/value-accessor.js.map +0 -1
  178. package/dist/common/directives/navigation/back-button.js +0 -61
  179. package/dist/common/directives/navigation/back-button.js.map +0 -1
  180. package/dist/common/directives/navigation/nav-params.js +0 -47
  181. package/dist/common/directives/navigation/nav-params.js.map +0 -1
  182. package/dist/common/directives/navigation/nav.js +0 -49
  183. package/dist/common/directives/navigation/nav.js.map +0 -1
  184. package/dist/common/directives/navigation/router-link-delegate.js +0 -188
  185. package/dist/common/directives/navigation/router-link-delegate.js.map +0 -1
  186. package/dist/common/directives/navigation/router-outlet.js +0 -476
  187. package/dist/common/directives/navigation/router-outlet.js.map +0 -1
  188. package/dist/common/directives/navigation/stack-controller.js +0 -282
  189. package/dist/common/directives/navigation/stack-controller.js.map +0 -1
  190. package/dist/common/directives/navigation/stack-utils.js +0 -73
  191. package/dist/common/directives/navigation/stack-utils.js.map +0 -1
  192. package/dist/common/directives/navigation/tabs.js +0 -290
  193. package/dist/common/directives/navigation/tabs.js.map +0 -1
  194. package/dist/common/index.js +0 -20
  195. package/dist/common/index.js.map +0 -1
  196. package/dist/common/overlays/modal.js +0 -96
  197. package/dist/common/overlays/modal.js.map +0 -1
  198. package/dist/common/overlays/popover.js +0 -84
  199. package/dist/common/overlays/popover.js.map +0 -1
  200. package/dist/common/providers/angular-delegate.js +0 -229
  201. package/dist/common/providers/angular-delegate.js.map +0 -1
  202. package/dist/common/providers/config.js +0 -44
  203. package/dist/common/providers/config.js.map +0 -1
  204. package/dist/common/providers/dom-controller.js +0 -44
  205. package/dist/common/providers/dom-controller.js.map +0 -1
  206. package/dist/common/providers/menu-controller.js +0 -114
  207. package/dist/common/providers/menu-controller.js.map +0 -1
  208. package/dist/common/providers/nav-controller.js +0 -232
  209. package/dist/common/providers/nav-controller.js.map +0 -1
  210. package/dist/common/providers/platform.js +0 -256
  211. package/dist/common/providers/platform.js.map +0 -1
  212. package/dist/common/types/interfaces.js +0 -2
  213. package/dist/common/types/interfaces.js.map +0 -1
  214. package/dist/common/types/ionic-lifecycle-hooks.js +0 -5
  215. package/dist/common/types/ionic-lifecycle-hooks.js.map +0 -1
  216. package/dist/common/types/overlay-options.js +0 -2
  217. package/dist/common/types/overlay-options.js.map +0 -1
  218. package/dist/common/utils/overlay.js +0 -26
  219. package/dist/common/utils/overlay.js.map +0 -1
  220. package/dist/common/utils/proxy.js +0 -47
  221. package/dist/common/utils/proxy.js.map +0 -1
  222. package/dist/common/utils/routing.js +0 -55
  223. package/dist/common/utils/routing.js.map +0 -1
  224. package/dist/common/utils/util.js +0 -10
  225. package/dist/common/utils/util.js.map +0 -1
  226. package/dist/lazy/app-initialize.js +0 -29
  227. package/dist/lazy/app-initialize.js.map +0 -1
  228. package/dist/lazy/directives/angular-component-lib/utils.js +0 -59
  229. package/dist/lazy/directives/angular-component-lib/utils.js.map +0 -1
  230. package/dist/lazy/directives/control-value-accessors/boolean-value-accessor.js +0 -47
  231. package/dist/lazy/directives/control-value-accessors/boolean-value-accessor.js.map +0 -1
  232. package/dist/lazy/directives/control-value-accessors/index.js +0 -5
  233. package/dist/lazy/directives/control-value-accessors/index.js.map +0 -1
  234. package/dist/lazy/directives/control-value-accessors/numeric-value-accessor.js +0 -55
  235. package/dist/lazy/directives/control-value-accessors/numeric-value-accessor.js.map +0 -1
  236. package/dist/lazy/directives/control-value-accessors/select-value-accessor.js +0 -44
  237. package/dist/lazy/directives/control-value-accessors/select-value-accessor.js.map +0 -1
  238. package/dist/lazy/directives/control-value-accessors/text-value-accessor.js +0 -43
  239. package/dist/lazy/directives/control-value-accessors/text-value-accessor.js.map +0 -1
  240. package/dist/lazy/directives/navigation/ion-back-button.js +0 -24
  241. package/dist/lazy/directives/navigation/ion-back-button.js.map +0 -1
  242. package/dist/lazy/directives/navigation/ion-nav.js +0 -21
  243. package/dist/lazy/directives/navigation/ion-nav.js.map +0 -1
  244. package/dist/lazy/directives/navigation/ion-router-outlet.js +0 -52
  245. package/dist/lazy/directives/navigation/ion-router-outlet.js.map +0 -1
  246. package/dist/lazy/directives/navigation/ion-tabs.js +0 -58
  247. package/dist/lazy/directives/navigation/ion-tabs.js.map +0 -1
  248. package/dist/lazy/directives/navigation/router-link-delegate.js +0 -32
  249. package/dist/lazy/directives/navigation/router-link-delegate.js.map +0 -1
  250. package/dist/lazy/directives/overlays/modal.js +0 -22
  251. package/dist/lazy/directives/overlays/modal.js.map +0 -1
  252. package/dist/lazy/directives/overlays/popover.js +0 -18
  253. package/dist/lazy/directives/overlays/popover.js.map +0 -1
  254. package/dist/lazy/directives/proxies-list.d.ts +0 -2
  255. package/dist/lazy/directives/proxies-list.js +0 -89
  256. package/dist/lazy/directives/proxies-list.js.map +0 -1
  257. package/dist/lazy/directives/proxies.js +0 -2759
  258. package/dist/lazy/directives/proxies.js.map +0 -1
  259. package/dist/lazy/directives/validators/index.js +0 -3
  260. package/dist/lazy/directives/validators/index.js.map +0 -1
  261. package/dist/lazy/directives/validators/max-validator.js +0 -26
  262. package/dist/lazy/directives/validators/max-validator.js.map +0 -1
  263. package/dist/lazy/directives/validators/min-validator.js +0 -26
  264. package/dist/lazy/directives/validators/min-validator.js.map +0 -1
  265. package/dist/lazy/index.js +0 -34
  266. package/dist/lazy/index.js.map +0 -1
  267. package/dist/lazy/ionic-module.d.ts +0 -38
  268. package/dist/lazy/ionic-module.js +0 -121
  269. package/dist/lazy/ionic-module.js.map +0 -1
  270. package/dist/lazy/providers/action-sheet-controller.js +0 -18
  271. package/dist/lazy/providers/action-sheet-controller.js.map +0 -1
  272. package/dist/lazy/providers/alert-controller.js +0 -18
  273. package/dist/lazy/providers/alert-controller.js.map +0 -1
  274. package/dist/lazy/providers/animation-controller.js +0 -37
  275. package/dist/lazy/providers/animation-controller.js.map +0 -1
  276. package/dist/lazy/providers/gesture-controller.js +0 -32
  277. package/dist/lazy/providers/gesture-controller.js.map +0 -1
  278. package/dist/lazy/providers/loading-controller.js +0 -18
  279. package/dist/lazy/providers/loading-controller.js.map +0 -1
  280. package/dist/lazy/providers/menu-controller.js +0 -18
  281. package/dist/lazy/providers/menu-controller.js.map +0 -1
  282. package/dist/lazy/providers/modal-controller.js +0 -25
  283. package/dist/lazy/providers/modal-controller.js.map +0 -1
  284. package/dist/lazy/providers/popover-controller.js +0 -19
  285. package/dist/lazy/providers/popover-controller.js.map +0 -1
  286. package/dist/lazy/providers/toast-controller.js +0 -18
  287. package/dist/lazy/providers/toast-controller.js.map +0 -1
  288. package/dist/schematics/utils/ast.js +0 -64
  289. package/dist/standalone/directives/angular-component-lib/utils.js +0 -59
  290. package/dist/standalone/directives/angular-component-lib/utils.js.map +0 -1
  291. package/dist/standalone/directives/checkbox.js +0 -75
  292. package/dist/standalone/directives/checkbox.js.map +0 -1
  293. package/dist/standalone/directives/datetime.js +0 -93
  294. package/dist/standalone/directives/datetime.js.map +0 -1
  295. package/dist/standalone/directives/icon.js +0 -35
  296. package/dist/standalone/directives/icon.js.map +0 -1
  297. package/dist/standalone/directives/index.js +0 -13
  298. package/dist/standalone/directives/index.js.map +0 -1
  299. package/dist/standalone/directives/input-otp.js +0 -89
  300. package/dist/standalone/directives/input-otp.js.map +0 -1
  301. package/dist/standalone/directives/input.js +0 -112
  302. package/dist/standalone/directives/input.js.map +0 -1
  303. package/dist/standalone/directives/ion-accordion-group.d.ts +0 -21
  304. package/dist/standalone/directives/ion-accordion-group.js +0 -40
  305. package/dist/standalone/directives/ion-accordion-group.js.map +0 -1
  306. package/dist/standalone/directives/ion-accordion.d.ts +0 -12
  307. package/dist/standalone/directives/ion-accordion.js +0 -36
  308. package/dist/standalone/directives/ion-accordion.js.map +0 -1
  309. package/dist/standalone/directives/ion-action-sheet.d.ts +0 -58
  310. package/dist/standalone/directives/ion-action-sheet.js +0 -62
  311. package/dist/standalone/directives/ion-action-sheet.js.map +0 -1
  312. package/dist/standalone/directives/ion-alert.d.ts +0 -58
  313. package/dist/standalone/directives/ion-alert.js +0 -62
  314. package/dist/standalone/directives/ion-alert.js.map +0 -1
  315. package/dist/standalone/directives/ion-app.d.ts +0 -12
  316. package/dist/standalone/directives/ion-app.js +0 -36
  317. package/dist/standalone/directives/ion-app.js.map +0 -1
  318. package/dist/standalone/directives/ion-avatar.d.ts +0 -12
  319. package/dist/standalone/directives/ion-avatar.js +0 -35
  320. package/dist/standalone/directives/ion-avatar.js.map +0 -1
  321. package/dist/standalone/directives/ion-backdrop.d.ts +0 -18
  322. package/dist/standalone/directives/ion-backdrop.js +0 -40
  323. package/dist/standalone/directives/ion-backdrop.js.map +0 -1
  324. package/dist/standalone/directives/ion-badge.d.ts +0 -12
  325. package/dist/standalone/directives/ion-badge.js +0 -36
  326. package/dist/standalone/directives/ion-badge.js.map +0 -1
  327. package/dist/standalone/directives/ion-breadcrumb.d.ts +0 -23
  328. package/dist/standalone/directives/ion-breadcrumb.js +0 -43
  329. package/dist/standalone/directives/ion-breadcrumb.js.map +0 -1
  330. package/dist/standalone/directives/ion-breadcrumbs.d.ts +0 -19
  331. package/dist/standalone/directives/ion-breadcrumbs.js +0 -40
  332. package/dist/standalone/directives/ion-breadcrumbs.js.map +0 -1
  333. package/dist/standalone/directives/ion-button.d.ts +0 -23
  334. package/dist/standalone/directives/ion-button.js +0 -43
  335. package/dist/standalone/directives/ion-button.js.map +0 -1
  336. package/dist/standalone/directives/ion-buttons.d.ts +0 -12
  337. package/dist/standalone/directives/ion-buttons.js +0 -36
  338. package/dist/standalone/directives/ion-buttons.js.map +0 -1
  339. package/dist/standalone/directives/ion-card-content.d.ts +0 -12
  340. package/dist/standalone/directives/ion-card-content.js +0 -36
  341. package/dist/standalone/directives/ion-card-content.js.map +0 -1
  342. package/dist/standalone/directives/ion-card-header.d.ts +0 -12
  343. package/dist/standalone/directives/ion-card-header.js +0 -36
  344. package/dist/standalone/directives/ion-card-header.js.map +0 -1
  345. package/dist/standalone/directives/ion-card-subtitle.d.ts +0 -12
  346. package/dist/standalone/directives/ion-card-subtitle.js +0 -36
  347. package/dist/standalone/directives/ion-card-subtitle.js.map +0 -1
  348. package/dist/standalone/directives/ion-card-title.d.ts +0 -12
  349. package/dist/standalone/directives/ion-card-title.js +0 -36
  350. package/dist/standalone/directives/ion-card-title.js.map +0 -1
  351. package/dist/standalone/directives/ion-card.d.ts +0 -12
  352. package/dist/standalone/directives/ion-card.js +0 -36
  353. package/dist/standalone/directives/ion-card.js.map +0 -1
  354. package/dist/standalone/directives/ion-chip.d.ts +0 -12
  355. package/dist/standalone/directives/ion-chip.js +0 -36
  356. package/dist/standalone/directives/ion-chip.js.map +0 -1
  357. package/dist/standalone/directives/ion-col.d.ts +0 -12
  358. package/dist/standalone/directives/ion-col.js +0 -36
  359. package/dist/standalone/directives/ion-col.js.map +0 -1
  360. package/dist/standalone/directives/ion-content.d.ts +0 -33
  361. package/dist/standalone/directives/ion-content.js +0 -47
  362. package/dist/standalone/directives/ion-content.js.map +0 -1
  363. package/dist/standalone/directives/ion-datetime-button.d.ts +0 -12
  364. package/dist/standalone/directives/ion-datetime-button.js +0 -36
  365. package/dist/standalone/directives/ion-datetime-button.js.map +0 -1
  366. package/dist/standalone/directives/ion-fab-button.d.ts +0 -23
  367. package/dist/standalone/directives/ion-fab-button.js +0 -43
  368. package/dist/standalone/directives/ion-fab-button.js.map +0 -1
  369. package/dist/standalone/directives/ion-fab-list.d.ts +0 -12
  370. package/dist/standalone/directives/ion-fab-list.js +0 -36
  371. package/dist/standalone/directives/ion-fab-list.js.map +0 -1
  372. package/dist/standalone/directives/ion-fab.d.ts +0 -12
  373. package/dist/standalone/directives/ion-fab.js +0 -37
  374. package/dist/standalone/directives/ion-fab.js.map +0 -1
  375. package/dist/standalone/directives/ion-footer.d.ts +0 -12
  376. package/dist/standalone/directives/ion-footer.js +0 -36
  377. package/dist/standalone/directives/ion-footer.js.map +0 -1
  378. package/dist/standalone/directives/ion-grid.d.ts +0 -12
  379. package/dist/standalone/directives/ion-grid.js +0 -36
  380. package/dist/standalone/directives/ion-grid.js.map +0 -1
  381. package/dist/standalone/directives/ion-header.d.ts +0 -12
  382. package/dist/standalone/directives/ion-header.js +0 -36
  383. package/dist/standalone/directives/ion-header.js.map +0 -1
  384. package/dist/standalone/directives/ion-img.d.ts +0 -28
  385. package/dist/standalone/directives/ion-img.js +0 -46
  386. package/dist/standalone/directives/ion-img.js.map +0 -1
  387. package/dist/standalone/directives/ion-infinite-scroll-content.d.ts +0 -12
  388. package/dist/standalone/directives/ion-infinite-scroll-content.js +0 -36
  389. package/dist/standalone/directives/ion-infinite-scroll-content.js.map +0 -1
  390. package/dist/standalone/directives/ion-infinite-scroll.d.ts +0 -21
  391. package/dist/standalone/directives/ion-infinite-scroll.js +0 -41
  392. package/dist/standalone/directives/ion-infinite-scroll.js.map +0 -1
  393. package/dist/standalone/directives/ion-input-password-toggle.d.ts +0 -12
  394. package/dist/standalone/directives/ion-input-password-toggle.js +0 -36
  395. package/dist/standalone/directives/ion-input-password-toggle.js.map +0 -1
  396. package/dist/standalone/directives/ion-item-divider.d.ts +0 -12
  397. package/dist/standalone/directives/ion-item-divider.js +0 -36
  398. package/dist/standalone/directives/ion-item-divider.js.map +0 -1
  399. package/dist/standalone/directives/ion-item-group.d.ts +0 -12
  400. package/dist/standalone/directives/ion-item-group.js +0 -35
  401. package/dist/standalone/directives/ion-item-group.js.map +0 -1
  402. package/dist/standalone/directives/ion-item-option.d.ts +0 -12
  403. package/dist/standalone/directives/ion-item-option.js +0 -36
  404. package/dist/standalone/directives/ion-item-option.js.map +0 -1
  405. package/dist/standalone/directives/ion-item-options.d.ts +0 -18
  406. package/dist/standalone/directives/ion-item-options.js +0 -40
  407. package/dist/standalone/directives/ion-item-options.js.map +0 -1
  408. package/dist/standalone/directives/ion-item-sliding.d.ts +0 -18
  409. package/dist/standalone/directives/ion-item-sliding.js +0 -41
  410. package/dist/standalone/directives/ion-item-sliding.js.map +0 -1
  411. package/dist/standalone/directives/ion-item.d.ts +0 -12
  412. package/dist/standalone/directives/ion-item.js +0 -36
  413. package/dist/standalone/directives/ion-item.js.map +0 -1
  414. package/dist/standalone/directives/ion-label.d.ts +0 -12
  415. package/dist/standalone/directives/ion-label.js +0 -36
  416. package/dist/standalone/directives/ion-label.js.map +0 -1
  417. package/dist/standalone/directives/ion-list-header.d.ts +0 -12
  418. package/dist/standalone/directives/ion-list-header.js +0 -36
  419. package/dist/standalone/directives/ion-list-header.js.map +0 -1
  420. package/dist/standalone/directives/ion-list.d.ts +0 -12
  421. package/dist/standalone/directives/ion-list.js +0 -37
  422. package/dist/standalone/directives/ion-list.js.map +0 -1
  423. package/dist/standalone/directives/ion-loading.d.ts +0 -58
  424. package/dist/standalone/directives/ion-loading.js +0 -62
  425. package/dist/standalone/directives/ion-loading.js.map +0 -1
  426. package/dist/standalone/directives/ion-menu-button.d.ts +0 -12
  427. package/dist/standalone/directives/ion-menu-button.js +0 -36
  428. package/dist/standalone/directives/ion-menu-button.js.map +0 -1
  429. package/dist/standalone/directives/ion-menu-toggle.d.ts +0 -12
  430. package/dist/standalone/directives/ion-menu-toggle.js +0 -36
  431. package/dist/standalone/directives/ion-menu-toggle.js.map +0 -1
  432. package/dist/standalone/directives/ion-menu.d.ts +0 -34
  433. package/dist/standalone/directives/ion-menu.js +0 -50
  434. package/dist/standalone/directives/ion-menu.js.map +0 -1
  435. package/dist/standalone/directives/ion-nav-link.d.ts +0 -12
  436. package/dist/standalone/directives/ion-nav-link.js +0 -36
  437. package/dist/standalone/directives/ion-nav-link.js.map +0 -1
  438. package/dist/standalone/directives/ion-note.d.ts +0 -12
  439. package/dist/standalone/directives/ion-note.js +0 -36
  440. package/dist/standalone/directives/ion-note.js.map +0 -1
  441. package/dist/standalone/directives/ion-picker-column-option.d.ts +0 -12
  442. package/dist/standalone/directives/ion-picker-column-option.js +0 -36
  443. package/dist/standalone/directives/ion-picker-column-option.js.map +0 -1
  444. package/dist/standalone/directives/ion-picker-column.d.ts +0 -21
  445. package/dist/standalone/directives/ion-picker-column.js +0 -41
  446. package/dist/standalone/directives/ion-picker-column.js.map +0 -1
  447. package/dist/standalone/directives/ion-picker.d.ts +0 -12
  448. package/dist/standalone/directives/ion-picker.js +0 -36
  449. package/dist/standalone/directives/ion-picker.js.map +0 -1
  450. package/dist/standalone/directives/ion-progress-bar.d.ts +0 -12
  451. package/dist/standalone/directives/ion-progress-bar.js +0 -36
  452. package/dist/standalone/directives/ion-progress-bar.js.map +0 -1
  453. package/dist/standalone/directives/ion-radio.d.ts +0 -23
  454. package/dist/standalone/directives/ion-radio.js +0 -43
  455. package/dist/standalone/directives/ion-radio.js.map +0 -1
  456. package/dist/standalone/directives/ion-refresher-content.d.ts +0 -12
  457. package/dist/standalone/directives/ion-refresher-content.js +0 -36
  458. package/dist/standalone/directives/ion-refresher-content.js.map +0 -1
  459. package/dist/standalone/directives/ion-refresher.d.ts +0 -45
  460. package/dist/standalone/directives/ion-refresher.js +0 -53
  461. package/dist/standalone/directives/ion-refresher.js.map +0 -1
  462. package/dist/standalone/directives/ion-reorder-group.d.ts +0 -44
  463. package/dist/standalone/directives/ion-reorder-group.js +0 -50
  464. package/dist/standalone/directives/ion-reorder-group.js.map +0 -1
  465. package/dist/standalone/directives/ion-reorder.d.ts +0 -12
  466. package/dist/standalone/directives/ion-reorder.js +0 -35
  467. package/dist/standalone/directives/ion-reorder.js.map +0 -1
  468. package/dist/standalone/directives/ion-ripple-effect.d.ts +0 -12
  469. package/dist/standalone/directives/ion-ripple-effect.js +0 -37
  470. package/dist/standalone/directives/ion-ripple-effect.js.map +0 -1
  471. package/dist/standalone/directives/ion-row.d.ts +0 -12
  472. package/dist/standalone/directives/ion-row.js +0 -35
  473. package/dist/standalone/directives/ion-row.js.map +0 -1
  474. package/dist/standalone/directives/ion-segment-button.d.ts +0 -12
  475. package/dist/standalone/directives/ion-segment-button.js +0 -36
  476. package/dist/standalone/directives/ion-segment-button.js.map +0 -1
  477. package/dist/standalone/directives/ion-segment-content.d.ts +0 -12
  478. package/dist/standalone/directives/ion-segment-content.js +0 -35
  479. package/dist/standalone/directives/ion-segment-content.js.map +0 -1
  480. package/dist/standalone/directives/ion-segment-view.d.ts +0 -19
  481. package/dist/standalone/directives/ion-segment-view.js +0 -40
  482. package/dist/standalone/directives/ion-segment-view.js.map +0 -1
  483. package/dist/standalone/directives/ion-select-modal.d.ts +0 -12
  484. package/dist/standalone/directives/ion-select-modal.js +0 -36
  485. package/dist/standalone/directives/ion-select-modal.js.map +0 -1
  486. package/dist/standalone/directives/ion-select-option.d.ts +0 -12
  487. package/dist/standalone/directives/ion-select-option.js +0 -36
  488. package/dist/standalone/directives/ion-select-option.js.map +0 -1
  489. package/dist/standalone/directives/ion-skeleton-text.d.ts +0 -12
  490. package/dist/standalone/directives/ion-skeleton-text.js +0 -36
  491. package/dist/standalone/directives/ion-skeleton-text.js.map +0 -1
  492. package/dist/standalone/directives/ion-spinner.d.ts +0 -12
  493. package/dist/standalone/directives/ion-spinner.js +0 -36
  494. package/dist/standalone/directives/ion-spinner.js.map +0 -1
  495. package/dist/standalone/directives/ion-split-pane.d.ts +0 -22
  496. package/dist/standalone/directives/ion-split-pane.js +0 -40
  497. package/dist/standalone/directives/ion-split-pane.js.map +0 -1
  498. package/dist/standalone/directives/ion-tab-bar.d.ts +0 -12
  499. package/dist/standalone/directives/ion-tab-bar.js +0 -36
  500. package/dist/standalone/directives/ion-tab-bar.js.map +0 -1
  501. package/dist/standalone/directives/ion-tab-button.d.ts +0 -12
  502. package/dist/standalone/directives/ion-tab-button.js +0 -36
  503. package/dist/standalone/directives/ion-tab-button.js.map +0 -1
  504. package/dist/standalone/directives/ion-tab.d.ts +0 -12
  505. package/dist/standalone/directives/ion-tab.js +0 -37
  506. package/dist/standalone/directives/ion-tab.js.map +0 -1
  507. package/dist/standalone/directives/ion-text.d.ts +0 -12
  508. package/dist/standalone/directives/ion-text.js +0 -36
  509. package/dist/standalone/directives/ion-text.js.map +0 -1
  510. package/dist/standalone/directives/ion-thumbnail.d.ts +0 -12
  511. package/dist/standalone/directives/ion-thumbnail.js +0 -35
  512. package/dist/standalone/directives/ion-thumbnail.js.map +0 -1
  513. package/dist/standalone/directives/ion-title.d.ts +0 -12
  514. package/dist/standalone/directives/ion-title.js +0 -36
  515. package/dist/standalone/directives/ion-title.js.map +0 -1
  516. package/dist/standalone/directives/ion-toast.d.ts +0 -58
  517. package/dist/standalone/directives/ion-toast.js +0 -62
  518. package/dist/standalone/directives/ion-toast.js.map +0 -1
  519. package/dist/standalone/directives/ion-toolbar.d.ts +0 -12
  520. package/dist/standalone/directives/ion-toolbar.js +0 -36
  521. package/dist/standalone/directives/ion-toolbar.js.map +0 -1
  522. package/dist/standalone/directives/proxies.d.ts +0 -77
  523. package/dist/standalone/directives/proxies.js +0 -79
  524. package/dist/standalone/directives/proxies.js.map +0 -1
  525. package/dist/standalone/directives/radio-group.js +0 -59
  526. package/dist/standalone/directives/radio-group.js.map +0 -1
  527. package/dist/standalone/directives/range.js +0 -77
  528. package/dist/standalone/directives/range.js.map +0 -1
  529. package/dist/standalone/directives/searchbar.js +0 -81
  530. package/dist/standalone/directives/searchbar.js.map +0 -1
  531. package/dist/standalone/directives/segment.js +0 -59
  532. package/dist/standalone/directives/segment.js.map +0 -1
  533. package/dist/standalone/directives/select.js +0 -83
  534. package/dist/standalone/directives/select.js.map +0 -1
  535. package/dist/standalone/directives/textarea.js +0 -90
  536. package/dist/standalone/directives/textarea.js.map +0 -1
  537. package/dist/standalone/directives/toggle.js +0 -75
  538. package/dist/standalone/directives/toggle.js.map +0 -1
  539. package/dist/standalone/index.js +0 -24
  540. package/dist/standalone/index.js.map +0 -1
  541. package/dist/standalone/navigation/back-button.js +0 -32
  542. package/dist/standalone/navigation/back-button.js.map +0 -1
  543. package/dist/standalone/navigation/nav.js +0 -28
  544. package/dist/standalone/navigation/nav.js.map +0 -1
  545. package/dist/standalone/navigation/router-link-delegate.js +0 -26
  546. package/dist/standalone/navigation/router-link-delegate.js.map +0 -1
  547. package/dist/standalone/navigation/router-outlet.js +0 -60
  548. package/dist/standalone/navigation/router-outlet.js.map +0 -1
  549. package/dist/standalone/navigation/tabs.js +0 -57
  550. package/dist/standalone/navigation/tabs.js.map +0 -1
  551. package/dist/standalone/overlays/modal.js +0 -32
  552. package/dist/standalone/overlays/modal.js.map +0 -1
  553. package/dist/standalone/overlays/popover.js +0 -28
  554. package/dist/standalone/overlays/popover.js.map +0 -1
  555. package/dist/standalone/providers/action-sheet-controller.js +0 -20
  556. package/dist/standalone/providers/action-sheet-controller.js.map +0 -1
  557. package/dist/standalone/providers/alert-controller.js +0 -20
  558. package/dist/standalone/providers/alert-controller.js.map +0 -1
  559. package/dist/standalone/providers/animation-controller.js +0 -37
  560. package/dist/standalone/providers/animation-controller.js.map +0 -1
  561. package/dist/standalone/providers/gesture-controller.js +0 -32
  562. package/dist/standalone/providers/gesture-controller.js.map +0 -1
  563. package/dist/standalone/providers/ionic-angular.js +0 -38
  564. package/dist/standalone/providers/ionic-angular.js.map +0 -1
  565. package/dist/standalone/providers/loading-controller.js +0 -20
  566. package/dist/standalone/providers/loading-controller.js.map +0 -1
  567. package/dist/standalone/providers/menu-controller.js +0 -18
  568. package/dist/standalone/providers/menu-controller.js.map +0 -1
  569. package/dist/standalone/providers/modal-controller.js +0 -27
  570. package/dist/standalone/providers/modal-controller.js.map +0 -1
  571. package/dist/standalone/providers/popover-controller.js +0 -21
  572. package/dist/standalone/providers/popover-controller.js.map +0 -1
  573. package/dist/standalone/providers/toast-controller.js +0 -20
  574. package/dist/standalone/providers/toast-controller.js.map +0 -1
  575. /package/{dist/lazy/app-initialize.d.ts → app-initialize.d.ts} +0 -0
  576. /package/{dist/common → common}/directives/control-value-accessors/index.d.ts +0 -0
  577. /package/{dist/common → common}/directives/navigation/nav-params.d.ts +0 -0
  578. /package/{dist/common → common}/directives/navigation/stack-controller.d.ts +0 -0
  579. /package/{dist/common → common}/directives/navigation/stack-utils.d.ts +0 -0
  580. /package/{dist/common → common}/providers/config.d.ts +0 -0
  581. /package/{dist/common → common}/providers/dom-controller.d.ts +0 -0
  582. /package/{dist/common → common}/providers/menu-controller.d.ts +0 -0
  583. /package/{dist/common → common}/providers/nav-controller.d.ts +0 -0
  584. /package/{dist/common → common}/providers/platform.d.ts +0 -0
  585. /package/{dist/common → common}/types/interfaces.d.ts +0 -0
  586. /package/{dist/common → common}/types/ionic-lifecycle-hooks.d.ts +0 -0
  587. /package/{dist/common → common}/types/overlay-options.d.ts +0 -0
  588. /package/{dist/common → common}/utils/overlay.d.ts +0 -0
  589. /package/{dist/common → common}/utils/proxy.d.ts +0 -0
  590. /package/{dist/common → common}/utils/routing.d.ts +0 -0
  591. /package/{dist/common → common}/utils/util.d.ts +0 -0
  592. /package/{dist/lazy/directives → directives}/angular-component-lib/utils.d.ts +0 -0
  593. /package/{dist/lazy/directives → directives}/control-value-accessors/index.d.ts +0 -0
  594. /package/{dist/lazy/directives → directives}/navigation/ion-back-button.d.ts +0 -0
  595. /package/{dist/lazy/directives → directives}/navigation/ion-nav.d.ts +0 -0
  596. /package/{dist/lazy/directives → directives}/navigation/ion-router-outlet.d.ts +0 -0
  597. /package/{dist/lazy/directives → directives}/navigation/ion-tabs.d.ts +0 -0
  598. /package/{dist/lazy/directives → directives}/navigation/router-link-delegate.d.ts +0 -0
  599. /package/{dist/lazy/directives → directives}/overlays/modal.d.ts +0 -0
  600. /package/{dist/lazy/directives → directives}/overlays/popover.d.ts +0 -0
  601. /package/{dist/lazy/directives → directives}/validators/index.d.ts +0 -0
  602. /package/{dist/lazy/directives → directives}/validators/max-validator.d.ts +0 -0
  603. /package/{dist/lazy/directives → directives}/validators/min-validator.d.ts +0 -0
  604. /package/{dist/lazy/providers → providers}/action-sheet-controller.d.ts +0 -0
  605. /package/{dist/lazy/providers → providers}/alert-controller.d.ts +0 -0
  606. /package/{dist/lazy/providers → providers}/animation-controller.d.ts +0 -0
  607. /package/{dist/lazy/providers → providers}/gesture-controller.d.ts +0 -0
  608. /package/{dist/lazy/providers → providers}/loading-controller.d.ts +0 -0
  609. /package/{dist/lazy/providers → providers}/menu-controller.d.ts +0 -0
  610. /package/{dist/lazy/providers → providers}/modal-controller.d.ts +0 -0
  611. /package/{dist/lazy/providers → providers}/popover-controller.d.ts +0 -0
  612. /package/{dist/lazy/providers → providers}/toast-controller.d.ts +0 -0
  613. /package/{dist/schematics → schematics}/add/files/root/theme/variables.css +0 -0
  614. /package/{dist/schematics → schematics}/add/schema.json +0 -0
  615. /package/{dist/schematics → schematics}/collection.json +0 -0
  616. /package/{dist/standalone → standalone}/directives/angular-component-lib/utils.d.ts +0 -0
  617. /package/{dist/standalone → standalone}/directives/checkbox.d.ts +0 -0
  618. /package/{dist/standalone → standalone}/directives/datetime.d.ts +0 -0
  619. /package/{dist/standalone → standalone}/directives/icon.d.ts +0 -0
  620. /package/{dist/standalone → standalone}/directives/index.d.ts +0 -0
  621. /package/{dist/standalone → standalone}/directives/input-otp.d.ts +0 -0
  622. /package/{dist/standalone → standalone}/directives/input.d.ts +0 -0
  623. /package/{dist/standalone → standalone}/directives/radio-group.d.ts +0 -0
  624. /package/{dist/standalone → standalone}/directives/range.d.ts +0 -0
  625. /package/{dist/standalone → standalone}/directives/searchbar.d.ts +0 -0
  626. /package/{dist/standalone → standalone}/directives/segment.d.ts +0 -0
  627. /package/{dist/standalone → standalone}/directives/select.d.ts +0 -0
  628. /package/{dist/standalone → standalone}/directives/textarea.d.ts +0 -0
  629. /package/{dist/standalone → standalone}/directives/toggle.d.ts +0 -0
  630. /package/{dist/standalone → standalone}/navigation/back-button.d.ts +0 -0
  631. /package/{dist/standalone → standalone}/navigation/nav.d.ts +0 -0
  632. /package/{dist/standalone → standalone}/navigation/router-link-delegate.d.ts +0 -0
  633. /package/{dist/standalone → standalone}/navigation/router-outlet.d.ts +0 -0
  634. /package/{dist/standalone → standalone}/navigation/tabs.d.ts +0 -0
  635. /package/{dist/standalone → standalone}/overlays/modal.d.ts +0 -0
  636. /package/{dist/standalone → standalone}/overlays/popover.d.ts +0 -0
  637. /package/{dist/standalone → standalone}/providers/action-sheet-controller.d.ts +0 -0
  638. /package/{dist/standalone → standalone}/providers/alert-controller.d.ts +0 -0
  639. /package/{dist/standalone → standalone}/providers/animation-controller.d.ts +0 -0
  640. /package/{dist/standalone → standalone}/providers/gesture-controller.d.ts +0 -0
  641. /package/{dist/standalone → standalone}/providers/ionic-angular.d.ts +0 -0
  642. /package/{dist/standalone → standalone}/providers/loading-controller.d.ts +0 -0
  643. /package/{dist/standalone → standalone}/providers/menu-controller.d.ts +0 -0
  644. /package/{dist/standalone → standalone}/providers/modal-controller.d.ts +0 -0
  645. /package/{dist/standalone → standalone}/providers/popover-controller.d.ts +0 -0
  646. /package/{dist/standalone → standalone}/providers/toast-controller.d.ts +0 -0
@@ -1,38 +0,0 @@
1
- import { ModuleWithProviders } from '@angular/core';
2
- import { IonicConfig } from '@ionic/core';
3
- import * as i0 from "@angular/core";
4
- import * as i1 from "./directives/proxies";
5
- import * as i2 from "./directives/overlays/modal";
6
- import * as i3 from "./directives/overlays/popover";
7
- import * as i4 from "./directives/control-value-accessors/boolean-value-accessor";
8
- import * as i5 from "./directives/control-value-accessors/numeric-value-accessor";
9
- import * as i6 from "./directives/control-value-accessors/select-value-accessor";
10
- import * as i7 from "./directives/control-value-accessors/text-value-accessor";
11
- import * as i8 from "./directives/navigation/ion-tabs";
12
- import * as i9 from "./directives/navigation/ion-router-outlet";
13
- import * as i10 from "./directives/navigation/ion-back-button";
14
- import * as i11 from "./directives/navigation/ion-nav";
15
- import * as i12 from "./directives/navigation/router-link-delegate";
16
- import * as i13 from "./directives/validators/min-validator";
17
- import * as i14 from "./directives/validators/max-validator";
18
- import * as i15 from "@angular/common";
19
- type OptInAngularFeatures = {
20
- useSetInputAPI?: boolean;
21
- };
22
- /**
23
- * @deprecated `IonicModule` is deprecated and will be removed in a future major version.
24
- * Use `provideIonicAngular()` instead, which works in both standalone and NgModule-based
25
- * applications. Refer to https://ionicframework.com/docs/angular/build-options for migration steps.
26
- */
27
- export declare class IonicModule {
28
- /**
29
- * @deprecated `IonicModule.forRoot()` is deprecated and will be removed in a future major version.
30
- * Use `provideIonicAngular()` instead. Any config passed here can be passed as an object to that
31
- * function. Refer to https://ionicframework.com/docs/angular/build-options for migration steps.
32
- */
33
- static forRoot(config?: IonicConfig & OptInAngularFeatures): ModuleWithProviders<IonicModule>;
34
- static ɵfac: i0.ɵɵFactoryDeclaration<IonicModule, never>;
35
- static ɵmod: i0.ɵɵNgModuleDeclaration<IonicModule, [typeof i1.IonAccordion, typeof i1.IonAccordionGroup, typeof i1.IonActionSheet, typeof i1.IonAlert, typeof i1.IonApp, typeof i1.IonAvatar, typeof i1.IonBackdrop, typeof i1.IonBadge, typeof i1.IonBreadcrumb, typeof i1.IonBreadcrumbs, typeof i1.IonButton, typeof i1.IonButtons, typeof i1.IonCard, typeof i1.IonCardContent, typeof i1.IonCardHeader, typeof i1.IonCardSubtitle, typeof i1.IonCardTitle, typeof i1.IonCheckbox, typeof i1.IonChip, typeof i1.IonCol, typeof i1.IonContent, typeof i1.IonDatetime, typeof i1.IonDatetimeButton, typeof i1.IonFab, typeof i1.IonFabButton, typeof i1.IonFabList, typeof i1.IonFooter, typeof i1.IonGrid, typeof i1.IonHeader, typeof i1.IonIcon, typeof i1.IonImg, typeof i1.IonInfiniteScroll, typeof i1.IonInfiniteScrollContent, typeof i1.IonInput, typeof i1.IonInputOtp, typeof i1.IonInputPasswordToggle, typeof i1.IonItem, typeof i1.IonItemDivider, typeof i1.IonItemGroup, typeof i1.IonItemOption, typeof i1.IonItemOptions, typeof i1.IonItemSliding, typeof i1.IonLabel, typeof i1.IonList, typeof i1.IonListHeader, typeof i1.IonLoading, typeof i1.IonMenu, typeof i1.IonMenuButton, typeof i1.IonMenuToggle, typeof i1.IonNavLink, typeof i1.IonNote, typeof i1.IonPicker, typeof i1.IonPickerColumn, typeof i1.IonPickerColumnOption, typeof i1.IonProgressBar, typeof i1.IonRadio, typeof i1.IonRadioGroup, typeof i1.IonRange, typeof i1.IonRefresher, typeof i1.IonRefresherContent, typeof i1.IonReorder, typeof i1.IonReorderGroup, typeof i1.IonRippleEffect, typeof i1.IonRow, typeof i1.IonSearchbar, typeof i1.IonSegment, typeof i1.IonSegmentButton, typeof i1.IonSegmentContent, typeof i1.IonSegmentView, typeof i1.IonSelect, typeof i1.IonSelectModal, typeof i1.IonSelectOption, typeof i1.IonSkeletonText, typeof i1.IonSpinner, typeof i1.IonSplitPane, typeof i1.IonTab, typeof i1.IonTabBar, typeof i1.IonTabButton, typeof i1.IonText, typeof i1.IonTextarea, typeof i1.IonThumbnail, typeof i1.IonTitle, typeof i1.IonToast, typeof i1.IonToggle, typeof i1.IonToolbar, typeof i2.IonModal, typeof i3.IonPopover, typeof i4.BooleanValueAccessorDirective, typeof i5.NumericValueAccessorDirective, typeof i6.SelectValueAccessorDirective, typeof i7.TextValueAccessorDirective, typeof i8.IonTabs, typeof i9.IonRouterOutlet, typeof i10.IonBackButton, typeof i11.IonNav, typeof i12.RouterLinkDelegateDirective, typeof i12.RouterLinkWithHrefDelegateDirective, typeof i13.IonMinValidator, typeof i14.IonMaxValidator], [typeof i15.CommonModule], [typeof i1.IonAccordion, typeof i1.IonAccordionGroup, typeof i1.IonActionSheet, typeof i1.IonAlert, typeof i1.IonApp, typeof i1.IonAvatar, typeof i1.IonBackdrop, typeof i1.IonBadge, typeof i1.IonBreadcrumb, typeof i1.IonBreadcrumbs, typeof i1.IonButton, typeof i1.IonButtons, typeof i1.IonCard, typeof i1.IonCardContent, typeof i1.IonCardHeader, typeof i1.IonCardSubtitle, typeof i1.IonCardTitle, typeof i1.IonCheckbox, typeof i1.IonChip, typeof i1.IonCol, typeof i1.IonContent, typeof i1.IonDatetime, typeof i1.IonDatetimeButton, typeof i1.IonFab, typeof i1.IonFabButton, typeof i1.IonFabList, typeof i1.IonFooter, typeof i1.IonGrid, typeof i1.IonHeader, typeof i1.IonIcon, typeof i1.IonImg, typeof i1.IonInfiniteScroll, typeof i1.IonInfiniteScrollContent, typeof i1.IonInput, typeof i1.IonInputOtp, typeof i1.IonInputPasswordToggle, typeof i1.IonItem, typeof i1.IonItemDivider, typeof i1.IonItemGroup, typeof i1.IonItemOption, typeof i1.IonItemOptions, typeof i1.IonItemSliding, typeof i1.IonLabel, typeof i1.IonList, typeof i1.IonListHeader, typeof i1.IonLoading, typeof i1.IonMenu, typeof i1.IonMenuButton, typeof i1.IonMenuToggle, typeof i1.IonNavLink, typeof i1.IonNote, typeof i1.IonPicker, typeof i1.IonPickerColumn, typeof i1.IonPickerColumnOption, typeof i1.IonProgressBar, typeof i1.IonRadio, typeof i1.IonRadioGroup, typeof i1.IonRange, typeof i1.IonRefresher, typeof i1.IonRefresherContent, typeof i1.IonReorder, typeof i1.IonReorderGroup, typeof i1.IonRippleEffect, typeof i1.IonRow, typeof i1.IonSearchbar, typeof i1.IonSegment, typeof i1.IonSegmentButton, typeof i1.IonSegmentContent, typeof i1.IonSegmentView, typeof i1.IonSelect, typeof i1.IonSelectModal, typeof i1.IonSelectOption, typeof i1.IonSkeletonText, typeof i1.IonSpinner, typeof i1.IonSplitPane, typeof i1.IonTab, typeof i1.IonTabBar, typeof i1.IonTabButton, typeof i1.IonText, typeof i1.IonTextarea, typeof i1.IonThumbnail, typeof i1.IonTitle, typeof i1.IonToast, typeof i1.IonToggle, typeof i1.IonToolbar, typeof i2.IonModal, typeof i3.IonPopover, typeof i4.BooleanValueAccessorDirective, typeof i5.NumericValueAccessorDirective, typeof i6.SelectValueAccessorDirective, typeof i7.TextValueAccessorDirective, typeof i8.IonTabs, typeof i9.IonRouterOutlet, typeof i10.IonBackButton, typeof i11.IonNav, typeof i12.RouterLinkDelegateDirective, typeof i12.RouterLinkWithHrefDelegateDirective, typeof i13.IonMinValidator, typeof i14.IonMaxValidator]>;
36
- static ɵinj: i0.ɵɵInjectorDeclaration<IonicModule>;
37
- }
38
- export {};
@@ -1,121 +0,0 @@
1
- import { CommonModule, DOCUMENT } from '@angular/common';
2
- import { APP_INITIALIZER, NgModule, NgZone } from '@angular/core';
3
- import { ConfigToken, AngularDelegate, provideComponentInputBinding } from '@ionic/angular/common';
4
- import { appInitialize } from './app-initialize';
5
- import { BooleanValueAccessorDirective, NumericValueAccessorDirective, SelectValueAccessorDirective, TextValueAccessorDirective, } from './directives/control-value-accessors';
6
- import { IonBackButton } from './directives/navigation/ion-back-button';
7
- import { IonNav } from './directives/navigation/ion-nav';
8
- import { IonRouterOutlet } from './directives/navigation/ion-router-outlet';
9
- import { IonTabs } from './directives/navigation/ion-tabs';
10
- import { RouterLinkDelegateDirective, RouterLinkWithHrefDelegateDirective, } from './directives/navigation/router-link-delegate';
11
- import { IonModal } from './directives/overlays/modal';
12
- import { IonPopover } from './directives/overlays/popover';
13
- import { DIRECTIVES } from './directives/proxies-list';
14
- import { IonMaxValidator, IonMinValidator } from './directives/validators';
15
- import { ModalController } from './providers/modal-controller';
16
- import { PopoverController } from './providers/popover-controller';
17
- import * as i0 from "@angular/core";
18
- import * as i1 from "./directives/proxies";
19
- const DECLARATIONS = [
20
- // generated proxies
21
- ...DIRECTIVES,
22
- // manual proxies
23
- IonModal,
24
- IonPopover,
25
- // ngModel accessors
26
- BooleanValueAccessorDirective,
27
- NumericValueAccessorDirective,
28
- SelectValueAccessorDirective,
29
- TextValueAccessorDirective,
30
- // navigation
31
- IonTabs,
32
- IonRouterOutlet,
33
- IonBackButton,
34
- IonNav,
35
- RouterLinkDelegateDirective,
36
- RouterLinkWithHrefDelegateDirective,
37
- // validators
38
- IonMinValidator,
39
- IonMaxValidator,
40
- ];
41
- /**
42
- * @deprecated `IonicModule` is deprecated and will be removed in a future major version.
43
- * Use `provideIonicAngular()` instead, which works in both standalone and NgModule-based
44
- * applications. Refer to https://ionicframework.com/docs/angular/build-options for migration steps.
45
- */
46
- export class IonicModule {
47
- /**
48
- * @deprecated `IonicModule.forRoot()` is deprecated and will be removed in a future major version.
49
- * Use `provideIonicAngular()` instead. Any config passed here can be passed as an object to that
50
- * function. Refer to https://ionicframework.com/docs/angular/build-options for migration steps.
51
- */
52
- static forRoot(config = {}) {
53
- console.warn(`[Ionic Warning]: IonicModule has been deprecated in favor of provideIonicAngular() and will be removed in a future major version. Refer to https://ionicframework.com/docs/angular/build-options for migration steps.`);
54
- return {
55
- ngModule: IonicModule,
56
- providers: [
57
- {
58
- provide: ConfigToken,
59
- useValue: config,
60
- },
61
- {
62
- provide: APP_INITIALIZER,
63
- useFactory: appInitialize,
64
- multi: true,
65
- deps: [ConfigToken, DOCUMENT, NgZone],
66
- },
67
- AngularDelegate,
68
- provideComponentInputBinding(),
69
- ],
70
- };
71
- }
72
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonicModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
73
- /** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.0", ngImport: i0, type: IonicModule, declarations: [i1.IonAccordion, i1.IonAccordionGroup, i1.IonActionSheet, i1.IonAlert, i1.IonApp, i1.IonAvatar, i1.IonBackdrop, i1.IonBadge, i1.IonBreadcrumb, i1.IonBreadcrumbs, i1.IonButton, i1.IonButtons, i1.IonCard, i1.IonCardContent, i1.IonCardHeader, i1.IonCardSubtitle, i1.IonCardTitle, i1.IonCheckbox, i1.IonChip, i1.IonCol, i1.IonContent, i1.IonDatetime, i1.IonDatetimeButton, i1.IonFab, i1.IonFabButton, i1.IonFabList, i1.IonFooter, i1.IonGrid, i1.IonHeader, i1.IonIcon, i1.IonImg, i1.IonInfiniteScroll, i1.IonInfiniteScrollContent, i1.IonInput, i1.IonInputOtp, i1.IonInputPasswordToggle, i1.IonItem, i1.IonItemDivider, i1.IonItemGroup, i1.IonItemOption, i1.IonItemOptions, i1.IonItemSliding, i1.IonLabel, i1.IonList, i1.IonListHeader, i1.IonLoading, i1.IonMenu, i1.IonMenuButton, i1.IonMenuToggle, i1.IonNavLink, i1.IonNote, i1.IonPicker, i1.IonPickerColumn, i1.IonPickerColumnOption, i1.IonProgressBar, i1.IonRadio, i1.IonRadioGroup, i1.IonRange, i1.IonRefresher, i1.IonRefresherContent, i1.IonReorder, i1.IonReorderGroup, i1.IonRippleEffect, i1.IonRow, i1.IonSearchbar, i1.IonSegment, i1.IonSegmentButton, i1.IonSegmentContent, i1.IonSegmentView, i1.IonSelect, i1.IonSelectModal, i1.IonSelectOption, i1.IonSkeletonText, i1.IonSpinner, i1.IonSplitPane, i1.IonTab, i1.IonTabBar, i1.IonTabButton, i1.IonText, i1.IonTextarea, i1.IonThumbnail, i1.IonTitle, i1.IonToast, i1.IonToggle, i1.IonToolbar,
74
- // manual proxies
75
- IonModal,
76
- IonPopover,
77
- // ngModel accessors
78
- BooleanValueAccessorDirective,
79
- NumericValueAccessorDirective,
80
- SelectValueAccessorDirective,
81
- TextValueAccessorDirective,
82
- // navigation
83
- IonTabs,
84
- IonRouterOutlet,
85
- IonBackButton,
86
- IonNav,
87
- RouterLinkDelegateDirective,
88
- RouterLinkWithHrefDelegateDirective,
89
- // validators
90
- IonMinValidator,
91
- IonMaxValidator], imports: [CommonModule], exports: [i1.IonAccordion, i1.IonAccordionGroup, i1.IonActionSheet, i1.IonAlert, i1.IonApp, i1.IonAvatar, i1.IonBackdrop, i1.IonBadge, i1.IonBreadcrumb, i1.IonBreadcrumbs, i1.IonButton, i1.IonButtons, i1.IonCard, i1.IonCardContent, i1.IonCardHeader, i1.IonCardSubtitle, i1.IonCardTitle, i1.IonCheckbox, i1.IonChip, i1.IonCol, i1.IonContent, i1.IonDatetime, i1.IonDatetimeButton, i1.IonFab, i1.IonFabButton, i1.IonFabList, i1.IonFooter, i1.IonGrid, i1.IonHeader, i1.IonIcon, i1.IonImg, i1.IonInfiniteScroll, i1.IonInfiniteScrollContent, i1.IonInput, i1.IonInputOtp, i1.IonInputPasswordToggle, i1.IonItem, i1.IonItemDivider, i1.IonItemGroup, i1.IonItemOption, i1.IonItemOptions, i1.IonItemSliding, i1.IonLabel, i1.IonList, i1.IonListHeader, i1.IonLoading, i1.IonMenu, i1.IonMenuButton, i1.IonMenuToggle, i1.IonNavLink, i1.IonNote, i1.IonPicker, i1.IonPickerColumn, i1.IonPickerColumnOption, i1.IonProgressBar, i1.IonRadio, i1.IonRadioGroup, i1.IonRange, i1.IonRefresher, i1.IonRefresherContent, i1.IonReorder, i1.IonReorderGroup, i1.IonRippleEffect, i1.IonRow, i1.IonSearchbar, i1.IonSegment, i1.IonSegmentButton, i1.IonSegmentContent, i1.IonSegmentView, i1.IonSelect, i1.IonSelectModal, i1.IonSelectOption, i1.IonSkeletonText, i1.IonSpinner, i1.IonSplitPane, i1.IonTab, i1.IonTabBar, i1.IonTabButton, i1.IonText, i1.IonTextarea, i1.IonThumbnail, i1.IonTitle, i1.IonToast, i1.IonToggle, i1.IonToolbar,
92
- // manual proxies
93
- IonModal,
94
- IonPopover,
95
- // ngModel accessors
96
- BooleanValueAccessorDirective,
97
- NumericValueAccessorDirective,
98
- SelectValueAccessorDirective,
99
- TextValueAccessorDirective,
100
- // navigation
101
- IonTabs,
102
- IonRouterOutlet,
103
- IonBackButton,
104
- IonNav,
105
- RouterLinkDelegateDirective,
106
- RouterLinkWithHrefDelegateDirective,
107
- // validators
108
- IonMinValidator,
109
- IonMaxValidator] });
110
- /** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonicModule, providers: [ModalController, PopoverController], imports: [CommonModule] });
111
- }
112
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: IonicModule, decorators: [{
113
- type: NgModule,
114
- args: [{
115
- declarations: DECLARATIONS,
116
- exports: DECLARATIONS,
117
- providers: [ModalController, PopoverController],
118
- imports: [CommonModule],
119
- }]
120
- }] });
121
- //# sourceMappingURL=ionic-module.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ionic-module.js","sourceRoot":"","sources":["../../src/lazy/ionic-module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAuB,eAAe,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvF,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,4BAA4B,EAAE,MAAM,uBAAuB,CAAC;AAGnG,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EACL,6BAA6B,EAC7B,6BAA6B,EAC7B,4BAA4B,EAC5B,0BAA0B,GAC3B,MAAM,sCAAsC,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,yCAAyC,CAAC;AACxE,OAAO,EAAE,MAAM,EAAE,MAAM,iCAAiC,CAAC;AACzD,OAAO,EAAE,eAAe,EAAE,MAAM,2CAA2C,CAAC;AAC5E,OAAO,EAAE,OAAO,EAAE,MAAM,kCAAkC,CAAC;AAC3D,OAAO,EACL,2BAA2B,EAC3B,mCAAmC,GACpC,MAAM,8CAA8C,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AACvD,OAAO,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC3E,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC/D,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;;;AAEnE,MAAM,YAAY,GAAG;IACnB,oBAAoB;IACpB,GAAG,UAAU;IAEb,iBAAiB;IACjB,QAAQ;IACR,UAAU;IAEV,oBAAoB;IACpB,6BAA6B;IAC7B,6BAA6B;IAC7B,4BAA4B;IAC5B,0BAA0B;IAE1B,aAAa;IACb,OAAO;IACP,eAAe;IACf,aAAa;IACb,MAAM;IACN,2BAA2B;IAC3B,mCAAmC;IAEnC,aAAa;IACb,eAAe;IACf,eAAe;CAChB,CAAC;AAMF;;;;GAIG;AAOH,MAAM,OAAO,WAAW;IACtB;;;;OAIG;IACH,MAAM,CAAC,OAAO,CAAC,SAA6C,EAAE;QAC5D,OAAO,CAAC,IAAI,CACV,uNAAuN,CACxN,CAAC;QACF,OAAO;YACL,QAAQ,EAAE,WAAW;YACrB,SAAS,EAAE;gBACT;oBACE,OAAO,EAAE,WAAW;oBACpB,QAAQ,EAAE,MAAM;iBACjB;gBACD;oBACE,OAAO,EAAE,eAAe;oBACxB,UAAU,EAAE,aAAa;oBACzB,KAAK,EAAE,IAAI;oBACX,IAAI,EAAE,CAAC,WAAW,EAAE,QAAQ,EAAE,MAAM,CAAC;iBACtC;gBACD,eAAe;gBACf,4BAA4B,EAAE;aAC/B;SACF,CAAC;IACJ,CAAC;0HA3BU,WAAW;2HAAX,WAAW;YAtCtB,iBAAiB;YACjB,QAAQ;YACR,UAAU;YAEV,oBAAoB;YACpB,6BAA6B;YAC7B,6BAA6B;YAC7B,4BAA4B;YAC5B,0BAA0B;YAE1B,aAAa;YACb,OAAO;YACP,eAAe;YACf,aAAa;YACb,MAAM;YACN,2BAA2B;YAC3B,mCAAmC;YAEnC,aAAa;YACb,eAAe;YACf,eAAe,aAgBL,YAAY;YApCtB,iBAAiB;YACjB,QAAQ;YACR,UAAU;YAEV,oBAAoB;YACpB,6BAA6B;YAC7B,6BAA6B;YAC7B,4BAA4B;YAC5B,0BAA0B;YAE1B,aAAa;YACb,OAAO;YACP,eAAe;YACf,aAAa;YACb,MAAM;YACN,2BAA2B;YAC3B,mCAAmC;YAEnC,aAAa;YACb,eAAe;YACf,eAAe;2HAkBJ,WAAW,aAHX,CAAC,eAAe,EAAE,iBAAiB,CAAC,YACrC,YAAY;;2FAEX,WAAW;kBANvB,QAAQ;mBAAC;oBACR,YAAY,EAAE,YAAY;oBAC1B,OAAO,EAAE,YAAY;oBACrB,SAAS,EAAE,CAAC,eAAe,EAAE,iBAAiB,CAAC;oBAC/C,OAAO,EAAE,CAAC,YAAY,CAAC;iBACxB","sourcesContent":["import { CommonModule, DOCUMENT } from '@angular/common';\nimport { ModuleWithProviders, APP_INITIALIZER, NgModule, NgZone } from '@angular/core';\nimport { ConfigToken, AngularDelegate, provideComponentInputBinding } from '@ionic/angular/common';\nimport { IonicConfig } from '@ionic/core';\n\nimport { appInitialize } from './app-initialize';\nimport {\n BooleanValueAccessorDirective,\n NumericValueAccessorDirective,\n SelectValueAccessorDirective,\n TextValueAccessorDirective,\n} from './directives/control-value-accessors';\nimport { IonBackButton } from './directives/navigation/ion-back-button';\nimport { IonNav } from './directives/navigation/ion-nav';\nimport { IonRouterOutlet } from './directives/navigation/ion-router-outlet';\nimport { IonTabs } from './directives/navigation/ion-tabs';\nimport {\n RouterLinkDelegateDirective,\n RouterLinkWithHrefDelegateDirective,\n} from './directives/navigation/router-link-delegate';\nimport { IonModal } from './directives/overlays/modal';\nimport { IonPopover } from './directives/overlays/popover';\nimport { DIRECTIVES } from './directives/proxies-list';\nimport { IonMaxValidator, IonMinValidator } from './directives/validators';\nimport { ModalController } from './providers/modal-controller';\nimport { PopoverController } from './providers/popover-controller';\n\nconst DECLARATIONS = [\n // generated proxies\n ...DIRECTIVES,\n\n // manual proxies\n IonModal,\n IonPopover,\n\n // ngModel accessors\n BooleanValueAccessorDirective,\n NumericValueAccessorDirective,\n SelectValueAccessorDirective,\n TextValueAccessorDirective,\n\n // navigation\n IonTabs,\n IonRouterOutlet,\n IonBackButton,\n IonNav,\n RouterLinkDelegateDirective,\n RouterLinkWithHrefDelegateDirective,\n\n // validators\n IonMinValidator,\n IonMaxValidator,\n];\n\ntype OptInAngularFeatures = {\n useSetInputAPI?: boolean;\n};\n\n/**\n * @deprecated `IonicModule` is deprecated and will be removed in a future major version.\n * Use `provideIonicAngular()` instead, which works in both standalone and NgModule-based\n * applications. Refer to https://ionicframework.com/docs/angular/build-options for migration steps.\n */\n@NgModule({\n declarations: DECLARATIONS,\n exports: DECLARATIONS,\n providers: [ModalController, PopoverController],\n imports: [CommonModule],\n})\nexport class IonicModule {\n /**\n * @deprecated `IonicModule.forRoot()` is deprecated and will be removed in a future major version.\n * Use `provideIonicAngular()` instead. Any config passed here can be passed as an object to that\n * function. Refer to https://ionicframework.com/docs/angular/build-options for migration steps.\n */\n static forRoot(config: IonicConfig & OptInAngularFeatures = {}): ModuleWithProviders<IonicModule> {\n console.warn(\n `[Ionic Warning]: IonicModule has been deprecated in favor of provideIonicAngular() and will be removed in a future major version. Refer to https://ionicframework.com/docs/angular/build-options for migration steps.`\n );\n return {\n ngModule: IonicModule,\n providers: [\n {\n provide: ConfigToken,\n useValue: config,\n },\n {\n provide: APP_INITIALIZER,\n useFactory: appInitialize,\n multi: true,\n deps: [ConfigToken, DOCUMENT, NgZone],\n },\n AngularDelegate,\n provideComponentInputBinding(),\n ],\n };\n }\n}\n"]}
@@ -1,18 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import { OverlayBaseController } from '@ionic/angular/common';
3
- import { actionSheetController } from '@ionic/core';
4
- import * as i0 from "@angular/core";
5
- export class ActionSheetController extends OverlayBaseController {
6
- constructor() {
7
- super(actionSheetController);
8
- }
9
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
10
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, providedIn: 'root' });
11
- }
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ActionSheetController, decorators: [{
13
- type: Injectable,
14
- args: [{
15
- providedIn: 'root',
16
- }]
17
- }], ctorParameters: () => [] });
18
- //# sourceMappingURL=action-sheet-controller.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"action-sheet-controller.js","sourceRoot":"","sources":["../../../src/lazy/providers/action-sheet-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE9D,OAAO,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAC;;AAKpD,MAAM,OAAO,qBAAsB,SAAQ,qBAAoE;IAC7G;QACE,KAAK,CAAC,qBAAqB,CAAC,CAAC;IAC/B,CAAC;0HAHU,qBAAqB;8HAArB,qBAAqB,cAFpB,MAAM;;2FAEP,qBAAqB;kBAHjC,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable } from '@angular/core';\nimport { OverlayBaseController } from '@ionic/angular/common';\nimport type { ActionSheetOptions } from '@ionic/core';\nimport { actionSheetController } from '@ionic/core';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ActionSheetController extends OverlayBaseController<ActionSheetOptions, HTMLIonActionSheetElement> {\n constructor() {\n super(actionSheetController);\n }\n}\n"]}
@@ -1,18 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import { OverlayBaseController } from '@ionic/angular/common';
3
- import { alertController } from '@ionic/core';
4
- import * as i0 from "@angular/core";
5
- export class AlertController extends OverlayBaseController {
6
- constructor() {
7
- super(alertController);
8
- }
9
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
10
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, providedIn: 'root' });
11
- }
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AlertController, decorators: [{
13
- type: Injectable,
14
- args: [{
15
- providedIn: 'root',
16
- }]
17
- }], ctorParameters: () => [] });
18
- //# sourceMappingURL=alert-controller.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"alert-controller.js","sourceRoot":"","sources":["../../../src/lazy/providers/alert-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE9D,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;;AAK9C,MAAM,OAAO,eAAgB,SAAQ,qBAAwD;IAC3F;QACE,KAAK,CAAC,eAAe,CAAC,CAAC;IACzB,CAAC;0HAHU,eAAe;8HAAf,eAAe,cAFd,MAAM;;2FAEP,eAAe;kBAH3B,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable } from '@angular/core';\nimport { OverlayBaseController } from '@ionic/angular/common';\nimport type { AlertOptions } from '@ionic/core';\nimport { alertController } from '@ionic/core';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AlertController extends OverlayBaseController<AlertOptions, HTMLIonAlertElement> {\n constructor() {\n super(alertController);\n }\n}\n"]}
@@ -1,37 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import { createAnimation, getTimeGivenProgression } from '@ionic/core';
3
- import * as i0 from "@angular/core";
4
- export class AnimationController {
5
- /**
6
- * Create a new animation
7
- */
8
- create(animationId) {
9
- return createAnimation(animationId);
10
- }
11
- /**
12
- * EXPERIMENTAL
13
- *
14
- * Given a progression and a cubic bezier function,
15
- * this utility returns the time value(s) at which the
16
- * cubic bezier reaches the given time progression.
17
- *
18
- * If the cubic bezier never reaches the progression
19
- * the result will be an empty array.
20
- *
21
- * This is most useful for switching between easing curves
22
- * when doing a gesture animation (i.e. going from linear easing
23
- * during a drag, to another easing when `progressEnd` is called)
24
- */
25
- easingTime(p0, p1, p2, p3, progression) {
26
- return getTimeGivenProgression(p0, p1, p2, p3, progression);
27
- }
28
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
29
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, providedIn: 'root' });
30
- }
31
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: AnimationController, decorators: [{
32
- type: Injectable,
33
- args: [{
34
- providedIn: 'root',
35
- }]
36
- }] });
37
- //# sourceMappingURL=animation-controller.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"animation-controller.js","sourceRoot":"","sources":["../../../src/lazy/providers/animation-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,eAAe,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;;AAMvE,MAAM,OAAO,mBAAmB;IAC9B;;OAEG;IACH,MAAM,CAAC,WAAoB;QACzB,OAAO,eAAe,CAAC,WAAW,CAAC,CAAC;IACtC,CAAC;IAED;;;;;;;;;;;;;OAaG;IACH,UAAU,CAAC,EAAY,EAAE,EAAY,EAAE,EAAY,EAAE,EAAY,EAAE,WAAmB;QACpF,OAAO,uBAAuB,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,WAAW,CAAC,CAAC;IAC9D,CAAC;0HAxBU,mBAAmB;8HAAnB,mBAAmB,cAFlB,MAAM;;2FAEP,mBAAmB;kBAH/B,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable } from '@angular/core';\nimport { createAnimation, getTimeGivenProgression } from '@ionic/core';\nimport type { Animation } from '@ionic/core';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AnimationController {\n /**\n * Create a new animation\n */\n create(animationId?: string): Animation {\n return createAnimation(animationId);\n }\n\n /**\n * EXPERIMENTAL\n *\n * Given a progression and a cubic bezier function,\n * this utility returns the time value(s) at which the\n * cubic bezier reaches the given time progression.\n *\n * If the cubic bezier never reaches the progression\n * the result will be an empty array.\n *\n * This is most useful for switching between easing curves\n * when doing a gesture animation (i.e. going from linear easing\n * during a drag, to another easing when `progressEnd` is called)\n */\n easingTime(p0: number[], p1: number[], p2: number[], p3: number[], progression: number): number[] {\n return getTimeGivenProgression(p0, p1, p2, p3, progression);\n }\n}\n"]}
@@ -1,32 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import { createGesture } from '@ionic/core';
3
- import * as i0 from "@angular/core";
4
- export class GestureController {
5
- zone;
6
- constructor(zone) {
7
- this.zone = zone;
8
- }
9
- /**
10
- * Create a new gesture
11
- */
12
- create(opts, runInsideAngularZone = false) {
13
- if (runInsideAngularZone) {
14
- Object.getOwnPropertyNames(opts).forEach((key) => {
15
- if (typeof opts[key] === 'function') {
16
- const fn = opts[key];
17
- opts[key] = (...props) => this.zone.run(() => fn(...props));
18
- }
19
- });
20
- }
21
- return createGesture(opts);
22
- }
23
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
24
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, providedIn: 'root' });
25
- }
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: GestureController, decorators: [{
27
- type: Injectable,
28
- args: [{
29
- providedIn: 'root',
30
- }]
31
- }], ctorParameters: () => [{ type: i0.NgZone }] });
32
- //# sourceMappingURL=gesture-controller.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"gesture-controller.js","sourceRoot":"","sources":["../../../src/lazy/providers/gesture-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAU,MAAM,eAAe,CAAC;AAEnD,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;;AAK5C,MAAM,OAAO,iBAAiB;IACR;IAApB,YAAoB,IAAY;QAAZ,SAAI,GAAJ,IAAI,CAAQ;IAAG,CAAC;IACpC;;OAEG;IACH,MAAM,CAAC,IAAmB,EAAE,oBAAoB,GAAG,KAAK;QACtD,IAAI,oBAAoB,EAAE,CAAC;YACzB,MAAM,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;gBAC/C,IAAI,OAAO,IAAI,CAAC,GAAG,CAAC,KAAK,UAAU,EAAE,CAAC;oBACpC,MAAM,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;oBACrB,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,KAAY,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC;gBACrE,CAAC;YACH,CAAC,CAAC,CAAC;QACL,CAAC;QAED,OAAO,aAAa,CAAC,IAAI,CAAC,CAAC;IAC7B,CAAC;0HAhBU,iBAAiB;8HAAjB,iBAAiB,cAFhB,MAAM;;2FAEP,iBAAiB;kBAH7B,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable, NgZone } from '@angular/core';\nimport type { Gesture, GestureConfig } from '@ionic/core';\nimport { createGesture } from '@ionic/core';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class GestureController {\n constructor(private zone: NgZone) {}\n /**\n * Create a new gesture\n */\n create(opts: GestureConfig, runInsideAngularZone = false): Gesture {\n if (runInsideAngularZone) {\n Object.getOwnPropertyNames(opts).forEach((key) => {\n if (typeof opts[key] === 'function') {\n const fn = opts[key];\n opts[key] = (...props: any[]) => this.zone.run(() => fn(...props));\n }\n });\n }\n\n return createGesture(opts);\n }\n}\n"]}
@@ -1,18 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import { OverlayBaseController } from '@ionic/angular/common';
3
- import { loadingController } from '@ionic/core';
4
- import * as i0 from "@angular/core";
5
- export class LoadingController extends OverlayBaseController {
6
- constructor() {
7
- super(loadingController);
8
- }
9
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
10
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, providedIn: 'root' });
11
- }
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: LoadingController, decorators: [{
13
- type: Injectable,
14
- args: [{
15
- providedIn: 'root',
16
- }]
17
- }], ctorParameters: () => [] });
18
- //# sourceMappingURL=loading-controller.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"loading-controller.js","sourceRoot":"","sources":["../../../src/lazy/providers/loading-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE9D,OAAO,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;;AAKhD,MAAM,OAAO,iBAAkB,SAAQ,qBAA4D;IACjG;QACE,KAAK,CAAC,iBAAiB,CAAC,CAAC;IAC3B,CAAC;0HAHU,iBAAiB;8HAAjB,iBAAiB,cAFhB,MAAM;;2FAEP,iBAAiB;kBAH7B,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable } from '@angular/core';\nimport { OverlayBaseController } from '@ionic/angular/common';\nimport type { LoadingOptions } from '@ionic/core';\nimport { loadingController } from '@ionic/core';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class LoadingController extends OverlayBaseController<LoadingOptions, HTMLIonLoadingElement> {\n constructor() {\n super(loadingController);\n }\n}\n"]}
@@ -1,18 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import { MenuController as MenuControllerBase } from '@ionic/angular/common';
3
- import { menuController } from '@ionic/core';
4
- import * as i0 from "@angular/core";
5
- export class MenuController extends MenuControllerBase {
6
- constructor() {
7
- super(menuController);
8
- }
9
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
10
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, providedIn: 'root' });
11
- }
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MenuController, decorators: [{
13
- type: Injectable,
14
- args: [{
15
- providedIn: 'root',
16
- }]
17
- }], ctorParameters: () => [] });
18
- //# sourceMappingURL=menu-controller.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"menu-controller.js","sourceRoot":"","sources":["../../../src/lazy/providers/menu-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,cAAc,IAAI,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;;AAK7C,MAAM,OAAO,cAAe,SAAQ,kBAAkB;IACpD;QACE,KAAK,CAAC,cAAc,CAAC,CAAC;IACxB,CAAC;0HAHU,cAAc;8HAAd,cAAc,cAFb,MAAM;;2FAEP,cAAc;kBAH1B,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable } from '@angular/core';\nimport { MenuController as MenuControllerBase } from '@ionic/angular/common';\nimport { menuController } from '@ionic/core';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class MenuController extends MenuControllerBase {\n constructor() {\n super(menuController);\n }\n}\n"]}
@@ -1,25 +0,0 @@
1
- import { Injector, Injectable, EnvironmentInjector, inject } from '@angular/core';
2
- import { AngularDelegate, OverlayBaseController } from '@ionic/angular/common';
3
- import { modalController } from '@ionic/core';
4
- import * as i0 from "@angular/core";
5
- export class ModalController extends OverlayBaseController {
6
- angularDelegate = inject(AngularDelegate);
7
- injector = inject(Injector);
8
- environmentInjector = inject(EnvironmentInjector);
9
- constructor() {
10
- super(modalController);
11
- }
12
- create(opts) {
13
- const { injector: customInjector, ...restOpts } = opts;
14
- return super.create({
15
- ...restOpts,
16
- delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),
17
- });
18
- }
19
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
20
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController });
21
- }
22
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ModalController, decorators: [{
23
- type: Injectable
24
- }], ctorParameters: () => [] });
25
- //# sourceMappingURL=modal-controller.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"modal-controller.js","sourceRoot":"","sources":["../../../src/lazy/providers/modal-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,mBAAmB,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAClF,OAAO,EAAE,eAAe,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE/E,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;;AAG9C,MAAM,OAAO,eAAgB,SAAQ,qBAAwD;IACnF,eAAe,GAAG,MAAM,CAAC,eAAe,CAAC,CAAC;IAC1C,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;IAC5B,mBAAmB,GAAG,MAAM,CAAC,mBAAmB,CAAC,CAAC;IAE1D;QACE,KAAK,CAAC,eAAe,CAAC,CAAC;IACzB,CAAC;IAED,MAAM,CAAC,IAAkB;QACvB,MAAM,EAAE,QAAQ,EAAE,cAAc,EAAE,GAAG,QAAQ,EAAE,GAAG,IAAI,CAAC;QACvD,OAAO,KAAK,CAAC,MAAM,CAAC;YAClB,GAAG,QAAQ;YACX,QAAQ,EAAE,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,IAAI,CAAC,mBAAmB,EAAE,IAAI,CAAC,QAAQ,EAAE,OAAO,EAAE,cAAc,CAAC;SACxG,CAAC,CAAC;IACL,CAAC;0HAfU,eAAe;8HAAf,eAAe;;2FAAf,eAAe;kBAD3B,UAAU","sourcesContent":["import { Injector, Injectable, EnvironmentInjector, inject } from '@angular/core';\nimport { AngularDelegate, OverlayBaseController } from '@ionic/angular/common';\nimport type { ModalOptions } from '@ionic/angular/common';\nimport { modalController } from '@ionic/core';\n\n@Injectable()\nexport class ModalController extends OverlayBaseController<ModalOptions, HTMLIonModalElement> {\n private angularDelegate = inject(AngularDelegate);\n private injector = inject(Injector);\n private environmentInjector = inject(EnvironmentInjector);\n\n constructor() {\n super(modalController);\n }\n\n create(opts: ModalOptions): Promise<HTMLIonModalElement> {\n const { injector: customInjector, ...restOpts } = opts;\n return super.create({\n ...restOpts,\n delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'modal', customInjector),\n });\n }\n}\n"]}
@@ -1,19 +0,0 @@
1
- import { Injector, inject, EnvironmentInjector } from '@angular/core';
2
- import { AngularDelegate, OverlayBaseController } from '@ionic/angular/common';
3
- import { popoverController } from '@ionic/core';
4
- export class PopoverController extends OverlayBaseController {
5
- angularDelegate = inject(AngularDelegate);
6
- injector = inject(Injector);
7
- environmentInjector = inject(EnvironmentInjector);
8
- constructor() {
9
- super(popoverController);
10
- }
11
- create(opts) {
12
- const { injector: customInjector, ...restOpts } = opts;
13
- return super.create({
14
- ...restOpts,
15
- delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'popover', customInjector),
16
- });
17
- }
18
- }
19
- //# sourceMappingURL=popover-controller.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"popover-controller.js","sourceRoot":"","sources":["../../../src/lazy/providers/popover-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AACtE,OAAO,EAAE,eAAe,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE/E,OAAO,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAEhD,MAAM,OAAO,iBAAkB,SAAQ,qBAA4D;IACzF,eAAe,GAAG,MAAM,CAAC,eAAe,CAAC,CAAC;IAC1C,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;IAC5B,mBAAmB,GAAG,MAAM,CAAC,mBAAmB,CAAC,CAAC;IAE1D;QACE,KAAK,CAAC,iBAAiB,CAAC,CAAC;IAC3B,CAAC;IAED,MAAM,CAAC,IAAoB;QACzB,MAAM,EAAE,QAAQ,EAAE,cAAc,EAAE,GAAG,QAAQ,EAAE,GAAG,IAAI,CAAC;QACvD,OAAO,KAAK,CAAC,MAAM,CAAC;YAClB,GAAG,QAAQ;YACX,QAAQ,EAAE,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,IAAI,CAAC,mBAAmB,EAAE,IAAI,CAAC,QAAQ,EAAE,SAAS,EAAE,cAAc,CAAC;SAC1G,CAAC,CAAC;IACL,CAAC;CACF","sourcesContent":["import { Injector, inject, EnvironmentInjector } from '@angular/core';\nimport { AngularDelegate, OverlayBaseController } from '@ionic/angular/common';\nimport type { PopoverOptions } from '@ionic/angular/common';\nimport { popoverController } from '@ionic/core';\n\nexport class PopoverController extends OverlayBaseController<PopoverOptions, HTMLIonPopoverElement> {\n private angularDelegate = inject(AngularDelegate);\n private injector = inject(Injector);\n private environmentInjector = inject(EnvironmentInjector);\n\n constructor() {\n super(popoverController);\n }\n\n create(opts: PopoverOptions): Promise<HTMLIonPopoverElement> {\n const { injector: customInjector, ...restOpts } = opts;\n return super.create({\n ...restOpts,\n delegate: this.angularDelegate.create(this.environmentInjector, this.injector, 'popover', customInjector),\n });\n }\n}\n"]}
@@ -1,18 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import { OverlayBaseController } from '@ionic/angular/common';
3
- import { toastController } from '@ionic/core';
4
- import * as i0 from "@angular/core";
5
- export class ToastController extends OverlayBaseController {
6
- constructor() {
7
- super(toastController);
8
- }
9
- /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
10
- /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, providedIn: 'root' });
11
- }
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: ToastController, decorators: [{
13
- type: Injectable,
14
- args: [{
15
- providedIn: 'root',
16
- }]
17
- }], ctorParameters: () => [] });
18
- //# sourceMappingURL=toast-controller.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"toast-controller.js","sourceRoot":"","sources":["../../../src/lazy/providers/toast-controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AAE9D,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;;AAK9C,MAAM,OAAO,eAAgB,SAAQ,qBAAwD;IAC3F;QACE,KAAK,CAAC,eAAe,CAAC,CAAC;IACzB,CAAC;0HAHU,eAAe;8HAAf,eAAe,cAFd,MAAM;;2FAEP,eAAe;kBAH3B,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB","sourcesContent":["import { Injectable } from '@angular/core';\nimport { OverlayBaseController } from '@ionic/angular/common';\nimport type { ToastOptions } from '@ionic/core';\nimport { toastController } from '@ionic/core';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ToastController extends OverlayBaseController<ToastOptions, HTMLIonToastElement> {\n constructor() {\n super(toastController);\n }\n}\n"]}
@@ -1,64 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || (function () {
19
- var ownKeys = function(o) {
20
- ownKeys = Object.getOwnPropertyNames || function (o) {
21
- var ar = [];
22
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
- return ar;
24
- };
25
- return ownKeys(o);
26
- };
27
- return function (mod) {
28
- if (mod && mod.__esModule) return mod;
29
- var result = {};
30
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
- __setModuleDefault(result, mod);
32
- return result;
33
- };
34
- })();
35
- Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.addIonicModuleImportToNgModule = addIonicModuleImportToNgModule;
37
- const schematics_1 = require("@angular-devkit/schematics");
38
- const ast_utils_1 = require("@schematics/angular/utility/ast-utils");
39
- const change_1 = require("@schematics/angular/utility/change");
40
- const ts = __importStar(require("typescript"));
41
- /**
42
- * Reads file given path and returns TypeScript source file.
43
- */
44
- function getSourceFile(host, path) {
45
- const buffer = host.read(path);
46
- if (!buffer) {
47
- throw new schematics_1.SchematicsException(`Could not find file for path: ${path}`);
48
- }
49
- const content = buffer.toString();
50
- const source = ts.createSourceFile(path, content, ts.ScriptTarget.Latest, true);
51
- return source;
52
- }
53
- /**
54
- * Import and add module to root app module.
55
- */
56
- function addIonicModuleImportToNgModule(host, modulePath) {
57
- const recorder = host.beginUpdate(modulePath);
58
- const moduleSource = getSourceFile(host, modulePath);
59
- const ionicModuleChange = (0, ast_utils_1.insertImport)(moduleSource, modulePath, 'IonicModule', '@ionic/angular/lazy');
60
- (0, change_1.applyToUpdateRecorder)(recorder, [ionicModuleChange]);
61
- const metadataChange = (0, ast_utils_1.addSymbolToNgModuleMetadata)(moduleSource, modulePath, 'imports', 'IonicModule.forRoot({})');
62
- (0, change_1.applyToUpdateRecorder)(recorder, metadataChange);
63
- host.commitUpdate(recorder);
64
- }
@@ -1,59 +0,0 @@
1
- /* eslint-disable */
2
- /* tslint:disable */
3
- import { fromEvent } from 'rxjs';
4
- export const proxyInputs = (Cmp, inputs) => {
5
- const Prototype = Cmp.prototype;
6
- inputs.forEach((item) => {
7
- Object.defineProperty(Prototype, item, {
8
- get() {
9
- return this.el[item];
10
- },
11
- set(val) {
12
- this.z.runOutsideAngular(() => (this.el[item] = val));
13
- },
14
- /**
15
- * In the event that proxyInputs is called
16
- * multiple times re-defining these inputs
17
- * will cause an error to be thrown. As a result
18
- * we set configurable: true to indicate these
19
- * properties can be changed.
20
- */
21
- configurable: true,
22
- });
23
- });
24
- };
25
- export const proxyMethods = (Cmp, methods) => {
26
- const Prototype = Cmp.prototype;
27
- methods.forEach((methodName) => {
28
- Prototype[methodName] = function () {
29
- const args = arguments;
30
- return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
31
- };
32
- });
33
- };
34
- export const proxyOutputs = (instance, el, events) => {
35
- events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
36
- };
37
- export const defineCustomElement = (tagName, customElement) => {
38
- if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
39
- customElements.define(tagName, customElement);
40
- }
41
- };
42
- // tslint:disable-next-line: only-arrow-functions
43
- export function ProxyCmp(opts) {
44
- const decorator = function (cls) {
45
- const { defineCustomElementFn, inputs, methods } = opts;
46
- if (defineCustomElementFn !== undefined) {
47
- defineCustomElementFn();
48
- }
49
- if (inputs) {
50
- proxyInputs(cls, inputs);
51
- }
52
- if (methods) {
53
- proxyMethods(cls, methods);
54
- }
55
- return cls;
56
- };
57
- return decorator;
58
- }
59
- //# sourceMappingURL=utils.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../../src/standalone/directives/angular-component-lib/utils.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB,OAAO,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AAEjC,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,GAAQ,EAAE,MAAgB,EAAE,EAAE;IACxD,MAAM,SAAS,GAAG,GAAG,CAAC,SAAS,CAAC;IAChC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;QACtB,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,IAAI,EAAE;YACrC,GAAG;gBACD,OAAO,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC;YACvB,CAAC;YACD,GAAG,CAAC,GAAQ;gBACV,IAAI,CAAC,CAAC,CAAC,iBAAiB,CAAC,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;YACxD,CAAC;YACD;;;;;;eAMG;YACH,YAAY,EAAE,IAAI;SACnB,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,GAAQ,EAAE,OAAiB,EAAE,EAAE;IAC1D,MAAM,SAAS,GAAG,GAAG,CAAC,SAAS,CAAC;IAChC,OAAO,CAAC,OAAO,CAAC,CAAC,UAAU,EAAE,EAAE;QAC7B,SAAS,CAAC,UAAU,CAAC,GAAG;YACtB,MAAM,IAAI,GAAG,SAAS,CAAC;YACvB,OAAO,IAAI,CAAC,CAAC,CAAC,iBAAiB,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC;QAClF,CAAC,CAAC;IACJ,CAAC,CAAC,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,QAAa,EAAE,EAAO,EAAE,MAAgB,EAAE,EAAE;IACvE,MAAM,CAAC,OAAO,CAAC,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC,QAAQ,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,EAAE,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;AAClF,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,OAAe,EAAE,aAAkB,EAAE,EAAE;IACzE,IAAI,aAAa,KAAK,SAAS,IAAI,OAAO,cAAc,KAAK,WAAW,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC;QACzG,cAAc,CAAC,MAAM,CAAC,OAAO,EAAE,aAAa,CAAC,CAAC;IAChD,CAAC;AACH,CAAC,CAAC;AAEF,iDAAiD;AACjD,MAAM,UAAU,QAAQ,CAAC,IAAyE;IAChG,MAAM,SAAS,GAAG,UAAU,GAAQ;QAClC,MAAM,EAAE,qBAAqB,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;QAExD,IAAI,qBAAqB,KAAK,SAAS,EAAE,CAAC;YACxC,qBAAqB,EAAE,CAAC;QAC1B,CAAC;QAED,IAAI,MAAM,EAAE,CAAC;YACX,WAAW,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC;QAC3B,CAAC;QACD,IAAI,OAAO,EAAE,CAAC;YACZ,YAAY,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;QAC7B,CAAC;QACD,OAAO,GAAG,CAAC;IACb,CAAC,CAAC;IACF,OAAO,SAAS,CAAC;AACnB,CAAC","sourcesContent":["/* eslint-disable */\n/* tslint:disable */\nimport { fromEvent } from 'rxjs';\n\nexport const proxyInputs = (Cmp: any, inputs: string[]) => {\n const Prototype = Cmp.prototype;\n inputs.forEach((item) => {\n Object.defineProperty(Prototype, item, {\n get() {\n return this.el[item];\n },\n set(val: any) {\n this.z.runOutsideAngular(() => (this.el[item] = val));\n },\n /**\n * In the event that proxyInputs is called\n * multiple times re-defining these inputs\n * will cause an error to be thrown. As a result\n * we set configurable: true to indicate these\n * properties can be changed.\n */\n configurable: true,\n });\n });\n};\n\nexport const proxyMethods = (Cmp: any, methods: string[]) => {\n const Prototype = Cmp.prototype;\n methods.forEach((methodName) => {\n Prototype[methodName] = function () {\n const args = arguments;\n return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));\n };\n });\n};\n\nexport const proxyOutputs = (instance: any, el: any, events: string[]) => {\n events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));\n};\n\nexport const defineCustomElement = (tagName: string, customElement: any) => {\n if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {\n customElements.define(tagName, customElement);\n }\n};\n\n// tslint:disable-next-line: only-arrow-functions\nexport function ProxyCmp(opts: { defineCustomElementFn?: () => void; inputs?: any; methods?: any }) {\n const decorator = function (cls: any) {\n const { defineCustomElementFn, inputs, methods } = opts;\n\n if (defineCustomElementFn !== undefined) {\n defineCustomElementFn();\n }\n\n if (inputs) {\n proxyInputs(cls, inputs);\n }\n if (methods) {\n proxyMethods(cls, methods);\n }\n return cls;\n };\n return decorator;\n}\n"]}