@revolist/revogrid 3.6.4 → 3.6.5

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 (451) hide show
  1. package/custom-element/_baseIteratee.js +1 -3
  2. package/custom-element/columnService.js +4 -6
  3. package/custom-element/consts.js +1 -3
  4. package/custom-element/data.store.js +33 -55
  5. package/custom-element/debounce.js +1 -3
  6. package/custom-element/dimension.helpers.js +1 -3
  7. package/custom-element/each.js +0 -2
  8. package/custom-element/filter.button.js +0 -2
  9. package/custom-element/identity.js +0 -2
  10. package/custom-element/index.d.ts +16 -9
  11. package/custom-element/index.js +15 -4
  12. package/custom-element/isSymbol.js +1 -3
  13. package/custom-element/keys.js +1 -3
  14. package/custom-element/localScrollService.js +0 -2
  15. package/custom-element/resize-observer.js +3 -5
  16. package/custom-element/revo-grid.js +154 -29
  17. package/custom-element/revogr-clipboard.js +4 -4
  18. package/custom-element/revogr-data.js +0 -2
  19. package/custom-element/revogr-data2.js +3 -14
  20. package/custom-element/revogr-edit.js +0 -2
  21. package/custom-element/revogr-edit2.js +3 -7
  22. package/custom-element/revogr-filter-panel.js +6 -10
  23. package/custom-element/revogr-focus.js +0 -2
  24. package/custom-element/revogr-focus2.js +2 -8
  25. package/custom-element/revogr-header.js +0 -2
  26. package/custom-element/revogr-header2.js +3 -11
  27. package/custom-element/revogr-order-editor.js +0 -2
  28. package/custom-element/revogr-order-editor2.js +3 -8
  29. package/custom-element/revogr-overlay-selection.js +0 -2
  30. package/custom-element/revogr-overlay-selection2.js +3 -15
  31. package/custom-element/revogr-row-headers.js +0 -2
  32. package/custom-element/revogr-row-headers2.js +2 -9
  33. package/custom-element/revogr-scroll-virtual.js +0 -2
  34. package/custom-element/revogr-scroll-virtual2.js +2 -5
  35. package/custom-element/revogr-temp-range.js +0 -2
  36. package/custom-element/revogr-temp-range2.js +4 -8
  37. package/custom-element/revogr-viewport-scroll.js +0 -2
  38. package/custom-element/revogr-viewport-scroll2.js +11 -6
  39. package/custom-element/selection.utils.js +0 -2
  40. package/custom-element/toInteger.js +0 -2
  41. package/custom-element/toNumber.js +1 -3
  42. package/custom-element/utils.js +0 -2
  43. package/dist/cjs/css-shim-9f5bc84d.js +9 -0
  44. package/dist/cjs/{debounce-25dce8a1.js → debounce-6cea2774.js} +1 -3
  45. package/dist/cjs/dom-fcb646f0.js +78 -0
  46. package/dist/cjs/{index-5f3dfe40.js → index-cb904e00.js} +283 -577
  47. package/dist/cjs/index.cjs.js +0 -2
  48. package/dist/cjs/loader.cjs.js +16 -5
  49. package/dist/cjs/{resize-observer-7f159b88.js → resize-observer-bf327d6a.js} +3 -5
  50. package/dist/cjs/revo-grid.cjs.js +59 -11
  51. package/dist/cjs/revo-grid_11.cjs.entry.js +144 -143
  52. package/dist/cjs/revogr-clipboard.cjs.entry.js +3 -4
  53. package/dist/cjs/revogr-filter-panel.cjs.entry.js +6 -11
  54. package/dist/collection/collection-manifest.json +2 -2
  55. package/dist/collection/components/button/button.js +0 -1
  56. package/dist/collection/components/clipboard/revogr-clipboard.js +80 -82
  57. package/dist/collection/components/data/cellRenderer.js +2 -2
  58. package/dist/collection/components/data/columnService.js +3 -4
  59. package/dist/collection/components/data/revogr-data.js +219 -240
  60. package/dist/collection/components/data/rowRenderer.js +0 -1
  61. package/dist/collection/components/header/headerCellRenderer.js +3 -2
  62. package/dist/collection/components/header/headerRenderer.js +3 -2
  63. package/dist/collection/components/header/revogr-header.js +229 -244
  64. package/dist/collection/components/order/orderRenderer.js +5 -2
  65. package/dist/collection/components/order/revogr-order-editor.js +248 -257
  66. package/dist/collection/components/order/rowOrderService.js +0 -1
  67. package/dist/collection/components/overlay/autofill.service.js +0 -1
  68. package/dist/collection/components/overlay/clipboard.service.js +0 -1
  69. package/dist/collection/components/overlay/editors/edit.utils.js +0 -1
  70. package/dist/collection/components/overlay/editors/text.js +0 -1
  71. package/dist/collection/components/overlay/keyboard.service.js +0 -1
  72. package/dist/collection/components/overlay/revogr-edit.js +94 -106
  73. package/dist/collection/components/overlay/revogr-overlay-selection.js +466 -488
  74. package/dist/collection/components/overlay/selection.utils.js +0 -1
  75. package/dist/collection/components/revo-grid/revo-grid-style.css +13 -7
  76. package/dist/collection/components/revo-grid/revo-grid.js +1615 -1562
  77. package/dist/collection/components/revo-grid/viewport.helpers.js +0 -1
  78. package/dist/collection/components/revo-grid/viewport.interfaces.js +3 -1
  79. package/dist/collection/components/revo-grid/viewport.js +5 -2
  80. package/dist/collection/components/revo-grid/viewport.resize.service.js +0 -1
  81. package/dist/collection/components/revo-grid/viewport.scrolling.service.js +0 -1
  82. package/dist/collection/components/revo-grid/viewport.section.js +4 -2
  83. package/dist/collection/components/revo-grid/viewport.service.js +0 -1
  84. package/dist/collection/components/rowHeaders/revogr-row-headers.js +142 -151
  85. package/dist/collection/components/rowHeaders/row-header-render.js +0 -1
  86. package/dist/collection/components/scroll/revogr-viewport-scroll-style.css +4 -2
  87. package/dist/collection/components/scroll/revogr-viewport-scroll.js +164 -161
  88. package/dist/collection/components/scrollable/revogr-scroll-virtual.js +135 -147
  89. package/dist/collection/components/selection-focus/revogr-focus.js +125 -141
  90. package/dist/collection/components/selection-temp-range/revogr-temp-range-style.css +1 -1
  91. package/dist/collection/components/selection-temp-range/revogr-temp-range.js +74 -83
  92. package/dist/collection/global/global.js +0 -1
  93. package/dist/collection/index.js +0 -1
  94. package/dist/collection/plugins/autoSizeColumn.js +0 -1
  95. package/dist/collection/plugins/basePlugin.js +0 -1
  96. package/dist/collection/plugins/dispatcher.js +0 -1
  97. package/dist/collection/plugins/export/csv.js +0 -1
  98. package/dist/collection/plugins/export/export.plugin.js +0 -1
  99. package/dist/collection/plugins/export/types.js +3 -1
  100. package/dist/collection/plugins/filter/conditions/equal.js +0 -1
  101. package/dist/collection/plugins/filter/conditions/number/greaterThan.js +0 -1
  102. package/dist/collection/plugins/filter/conditions/number/greaterThanOrEqual.js +0 -1
  103. package/dist/collection/plugins/filter/conditions/number/lessThan.js +0 -1
  104. package/dist/collection/plugins/filter/conditions/number/lessThanOrEqual.js +0 -1
  105. package/dist/collection/plugins/filter/conditions/set.js +0 -1
  106. package/dist/collection/plugins/filter/conditions/string/beginswith.js +0 -1
  107. package/dist/collection/plugins/filter/conditions/string/contains.js +0 -1
  108. package/dist/collection/plugins/filter/filter.button.js +11 -6
  109. package/dist/collection/plugins/filter/filter.plugin.js +0 -1
  110. package/dist/collection/plugins/filter/filter.pop.js +234 -239
  111. package/dist/collection/plugins/filter/filter.service.js +0 -1
  112. package/dist/collection/plugins/filter/filter.style.css +3 -2
  113. package/dist/collection/plugins/filter/filter.types.js +3 -1
  114. package/dist/collection/plugins/groupingColumn/columnGroupsRenderer.js +0 -1
  115. package/dist/collection/plugins/groupingColumn/grouping.col.plugin.js +0 -1
  116. package/dist/collection/plugins/groupingColumn/headerGroupRenderer.js +0 -1
  117. package/dist/collection/plugins/groupingRow/grouping.const.js +0 -1
  118. package/dist/collection/plugins/groupingRow/grouping.row.expand.service.js +0 -1
  119. package/dist/collection/plugins/groupingRow/grouping.row.plugin.js +5 -6
  120. package/dist/collection/plugins/groupingRow/grouping.row.renderer.js +7 -3
  121. package/dist/collection/plugins/groupingRow/grouping.row.types.js +3 -1
  122. package/dist/collection/plugins/groupingRow/grouping.service.js +0 -1
  123. package/dist/collection/plugins/groupingRow/grouping.trimmed.service.js +0 -1
  124. package/dist/collection/plugins/moveColumn/columnDragPlugin.js +0 -1
  125. package/dist/collection/plugins/moveColumn/columnOrderHandler.js +0 -1
  126. package/dist/collection/plugins/sorting/sorting.plugin.js +3 -4
  127. package/dist/collection/plugins/sorting/sorting.sign.js +0 -1
  128. package/dist/collection/plugins/stretchPlugin.js +0 -1
  129. package/dist/collection/plugins/trimmed/trimmed.plugin.js +0 -1
  130. package/dist/collection/services/cell.helpers.js +0 -1
  131. package/dist/collection/services/column.data.provider.js +7 -8
  132. package/dist/collection/services/data.provider.js +0 -1
  133. package/dist/collection/services/dimension.provider.js +0 -1
  134. package/dist/collection/services/localScrollService.js +0 -1
  135. package/dist/collection/services/resizable.directive.js +3 -2
  136. package/dist/collection/services/selection.store.connector.js +0 -1
  137. package/dist/collection/services/viewport.provider.js +0 -1
  138. package/dist/collection/store/dataSource/data.proxy.js +0 -1
  139. package/dist/collection/store/dataSource/data.store.js +3 -4
  140. package/dist/collection/store/dimension/dimension.helpers.js +0 -1
  141. package/dist/collection/store/dimension/dimension.store.js +3 -5
  142. package/dist/collection/store/selection/selection.helpers.js +0 -1
  143. package/dist/collection/store/selection/selection.store.js +0 -1
  144. package/dist/collection/store/selection/selection.store.service.js +0 -1
  145. package/dist/collection/store/storeTypes.js +0 -1
  146. package/dist/collection/store/viewPort/viewport.helpers.js +0 -1
  147. package/dist/collection/store/viewPort/viewport.store.js +0 -1
  148. package/dist/collection/themeManager/theme.compact.js +0 -1
  149. package/dist/collection/themeManager/theme.default.js +0 -1
  150. package/dist/collection/themeManager/theme.material.js +0 -1
  151. package/dist/collection/themeManager/themeService.js +5 -6
  152. package/dist/collection/utils/closestPolifill.js +0 -1
  153. package/dist/collection/utils/consts.js +0 -1
  154. package/dist/collection/utils/generateAlphabetHeader.js +0 -1
  155. package/dist/collection/utils/keyCodes.js +0 -1
  156. package/dist/collection/utils/keyCodes.utils.js +0 -1
  157. package/dist/collection/utils/platform.js +0 -1
  158. package/dist/collection/utils/resizeObserver.js +0 -1
  159. package/dist/collection/utils/store.utils.js +0 -1
  160. package/dist/collection/utils/utils.js +0 -1
  161. package/dist/esm/css-shim-e1e1ea5e.js +7 -0
  162. package/dist/esm/{debounce-7221834a.js → debounce-e4e6dd45.js} +1 -3
  163. package/dist/esm/dom-21bd1807.js +76 -0
  164. package/dist/esm/{index-068eebfc.js → index-6f753b3c.js} +279 -577
  165. package/dist/esm/index.js +0 -2
  166. package/dist/esm/loader.js +16 -5
  167. package/dist/esm/polyfills/css-shim.js +1 -1
  168. package/dist/esm/{resize-observer-d817c4b6.js → resize-observer-00c48d78.js} +3 -5
  169. package/dist/esm/revo-grid.js +60 -9
  170. package/dist/esm/revo-grid_11.entry.js +144 -143
  171. package/dist/esm/revogr-clipboard.entry.js +3 -4
  172. package/dist/esm/revogr-filter-panel.entry.js +6 -11
  173. package/dist/esm-es5/css-shim-e1e1ea5e.js +4 -0
  174. package/dist/esm-es5/{debounce-7221834a.js → debounce-e4e6dd45.js} +1 -2
  175. package/dist/esm-es5/dom-21bd1807.js +24 -0
  176. package/dist/esm-es5/index-6f753b3c.js +4 -0
  177. package/dist/esm-es5/index.js +0 -1
  178. package/dist/esm-es5/loader.js +1 -2
  179. package/dist/esm-es5/{resize-observer-d817c4b6.js → resize-observer-00c48d78.js} +1 -2
  180. package/dist/esm-es5/revo-grid.js +1 -2
  181. package/dist/esm-es5/revo-grid_11.entry.js +2 -3
  182. package/dist/esm-es5/revogr-clipboard.entry.js +2 -3
  183. package/dist/esm-es5/revogr-filter-panel.entry.js +2 -3
  184. package/dist/revo-grid/css-shim-bcf89cc0.system.js +4 -0
  185. package/dist/revo-grid/css-shim-e1e1ea5e.js +4 -0
  186. package/dist/revo-grid/{debounce-fa358fc7.system.js → debounce-5a33c710.system.js} +1 -2
  187. package/dist/revo-grid/debounce-726bdadb.js +4 -0
  188. package/dist/revo-grid/dom-21bd1807.js +22 -0
  189. package/dist/revo-grid/dom-726246e2.system.js +24 -0
  190. package/dist/revo-grid/index-f14b41a0.system.js +5 -0
  191. package/dist/revo-grid/index-f30d1de1.js +5 -0
  192. package/dist/revo-grid/index.esm.js +0 -2
  193. package/dist/revo-grid/index.system.js +1 -2
  194. package/dist/revo-grid/resize-observer-00c48d78.js +4 -0
  195. package/dist/revo-grid/{resize-observer-64c845eb.system.js → resize-observer-8af0bc0e.system.js} +1 -2
  196. package/dist/revo-grid/revo-grid.esm.js +1 -2
  197. package/dist/revo-grid/revo-grid.js +2 -0
  198. package/dist/revo-grid/revo-grid.system.js +1 -2
  199. package/dist/revo-grid/revo-grid_11.entry.js +1 -2
  200. package/dist/revo-grid/revo-grid_11.system.entry.js +2 -3
  201. package/dist/revo-grid/revogr-clipboard.entry.js +1 -2
  202. package/dist/revo-grid/revogr-clipboard.system.entry.js +2 -3
  203. package/dist/revo-grid/revogr-filter-panel.entry.js +1 -2
  204. package/dist/revo-grid/revogr-filter-panel.system.entry.js +2 -3
  205. package/dist/types/components/data/cellRenderer.d.ts +1 -1
  206. package/dist/types/components/data/columnService.d.ts +4 -4
  207. package/dist/types/components/header/headerCellRenderer.d.ts +1 -1
  208. package/dist/types/components/header/headerRenderer.d.ts +1 -1
  209. package/dist/types/components/order/orderRenderer.d.ts +1 -1
  210. package/dist/types/components/order/rowOrderService.d.ts +1 -1
  211. package/dist/types/components/overlay/autofill.service.d.ts +1 -1
  212. package/dist/types/components/overlay/clipboard.service.d.ts +1 -1
  213. package/dist/types/components/overlay/editors/text.d.ts +1 -1
  214. package/dist/types/components/overlay/keyboard.service.d.ts +1 -1
  215. package/dist/types/components/overlay/selection.utils.d.ts +1 -1
  216. package/dist/types/components/revo-grid/viewport.d.ts +1 -1
  217. package/dist/types/components/revo-grid/viewport.interfaces.d.ts +5 -5
  218. package/dist/types/components/revo-grid/viewport.scrolling.service.d.ts +1 -1
  219. package/dist/types/components/revo-grid/viewport.section.d.ts +1 -1
  220. package/dist/types/components/revo-grid/viewport.service.d.ts +3 -3
  221. package/dist/types/components/rowHeaders/row-header-render.d.ts +1 -1
  222. package/dist/types/components.d.ts +0 -26
  223. package/dist/types/plugins/autoSizeColumn.d.ts +1 -1
  224. package/dist/types/plugins/dispatcher.d.ts +1 -1
  225. package/dist/types/plugins/export/csv.d.ts +1 -1
  226. package/dist/types/plugins/export/export.plugin.d.ts +1 -1
  227. package/dist/types/plugins/export/types.d.ts +2 -2
  228. package/dist/types/plugins/filter/filter.button.d.ts +1 -1
  229. package/dist/types/plugins/filter/filter.plugin.d.ts +6 -6
  230. package/dist/types/plugins/filter/filter.pop.d.ts +4 -4
  231. package/dist/types/plugins/filter/filter.service.d.ts +1 -1
  232. package/dist/types/plugins/filter/filter.types.d.ts +5 -5
  233. package/dist/types/plugins/groupingColumn/columnGroupsRenderer.d.ts +1 -1
  234. package/dist/types/plugins/groupingColumn/grouping.col.plugin.d.ts +1 -1
  235. package/dist/types/plugins/groupingColumn/headerGroupRenderer.d.ts +1 -1
  236. package/dist/types/plugins/groupingRow/grouping.row.renderer.d.ts +1 -1
  237. package/dist/types/plugins/groupingRow/grouping.row.types.d.ts +5 -5
  238. package/dist/types/plugins/groupingRow/grouping.service.d.ts +1 -1
  239. package/dist/types/plugins/moveColumn/columnDragPlugin.d.ts +5 -5
  240. package/dist/types/plugins/sorting/sorting.plugin.d.ts +1 -1
  241. package/dist/types/plugins/sorting/sorting.sign.d.ts +1 -1
  242. package/dist/types/plugins/trimmed/trimmed.plugin.d.ts +2 -2
  243. package/dist/types/services/column.data.provider.d.ts +4 -4
  244. package/dist/types/services/data.provider.d.ts +1 -1
  245. package/dist/types/services/dimension.provider.d.ts +2 -2
  246. package/dist/types/services/localScrollService.d.ts +1 -1
  247. package/dist/types/services/resizable.directive.d.ts +2 -2
  248. package/dist/types/services/selection.store.connector.d.ts +2 -2
  249. package/dist/types/services/viewport.provider.d.ts +1 -1
  250. package/dist/types/stencil-public-runtime.d.ts +19 -91
  251. package/dist/types/store/dataSource/data.proxy.d.ts +1 -1
  252. package/dist/types/store/dataSource/data.store.d.ts +4 -4
  253. package/dist/types/store/dimension/dimension.helpers.d.ts +3 -3
  254. package/dist/types/store/selection/selection.store.d.ts +1 -1
  255. package/dist/types/store/viewPort/viewport.helpers.d.ts +2 -2
  256. package/loader/index.d.ts +0 -9
  257. package/loader/package.json +0 -1
  258. package/package.json +1 -1
  259. package/custom-element/_baseIteratee.js.map +0 -1
  260. package/custom-element/columnService.js.map +0 -1
  261. package/custom-element/consts.js.map +0 -1
  262. package/custom-element/data.store.js.map +0 -1
  263. package/custom-element/debounce.js.map +0 -1
  264. package/custom-element/dimension.helpers.js.map +0 -1
  265. package/custom-element/each.js.map +0 -1
  266. package/custom-element/filter.button.js.map +0 -1
  267. package/custom-element/identity.js.map +0 -1
  268. package/custom-element/index.js.map +0 -1
  269. package/custom-element/isSymbol.js.map +0 -1
  270. package/custom-element/keys.js.map +0 -1
  271. package/custom-element/localScrollService.js.map +0 -1
  272. package/custom-element/resize-observer.js.map +0 -1
  273. package/custom-element/revo-grid.js.map +0 -1
  274. package/custom-element/revogr-clipboard.js.map +0 -1
  275. package/custom-element/revogr-data.js.map +0 -1
  276. package/custom-element/revogr-data2.js.map +0 -1
  277. package/custom-element/revogr-edit.js.map +0 -1
  278. package/custom-element/revogr-edit2.js.map +0 -1
  279. package/custom-element/revogr-filter-panel.js.map +0 -1
  280. package/custom-element/revogr-focus.js.map +0 -1
  281. package/custom-element/revogr-focus2.js.map +0 -1
  282. package/custom-element/revogr-header.js.map +0 -1
  283. package/custom-element/revogr-header2.js.map +0 -1
  284. package/custom-element/revogr-order-editor.js.map +0 -1
  285. package/custom-element/revogr-order-editor2.js.map +0 -1
  286. package/custom-element/revogr-overlay-selection.js.map +0 -1
  287. package/custom-element/revogr-overlay-selection2.js.map +0 -1
  288. package/custom-element/revogr-row-headers.js.map +0 -1
  289. package/custom-element/revogr-row-headers2.js.map +0 -1
  290. package/custom-element/revogr-scroll-virtual.js.map +0 -1
  291. package/custom-element/revogr-scroll-virtual2.js.map +0 -1
  292. package/custom-element/revogr-temp-range.js.map +0 -1
  293. package/custom-element/revogr-temp-range2.js.map +0 -1
  294. package/custom-element/revogr-viewport-scroll.js.map +0 -1
  295. package/custom-element/revogr-viewport-scroll2.js.map +0 -1
  296. package/custom-element/selection.utils.js.map +0 -1
  297. package/custom-element/themeService.js +0 -65
  298. package/custom-element/themeService.js.map +0 -1
  299. package/custom-element/toInteger.js.map +0 -1
  300. package/custom-element/toNumber.js.map +0 -1
  301. package/custom-element/utils.js.map +0 -1
  302. package/dist/cjs/debounce-25dce8a1.js.map +0 -1
  303. package/dist/cjs/index-5f3dfe40.js.map +0 -1
  304. package/dist/cjs/index.cjs.js.map +0 -1
  305. package/dist/cjs/loader.cjs.js.map +0 -1
  306. package/dist/cjs/resize-observer-7f159b88.js.map +0 -1
  307. package/dist/cjs/revo-grid.cjs.js.map +0 -1
  308. package/dist/cjs/revo-grid_11.cjs.entry.js.map +0 -1
  309. package/dist/cjs/revogr-clipboard.cjs.entry.js.map +0 -1
  310. package/dist/cjs/revogr-filter-panel.cjs.entry.js.map +0 -1
  311. package/dist/collection/components/button/button.js.map +0 -1
  312. package/dist/collection/components/clipboard/revogr-clipboard.js.map +0 -1
  313. package/dist/collection/components/data/cellRenderer.js.map +0 -1
  314. package/dist/collection/components/data/columnService.js.map +0 -1
  315. package/dist/collection/components/data/revogr-data.js.map +0 -1
  316. package/dist/collection/components/data/rowRenderer.js.map +0 -1
  317. package/dist/collection/components/header/headerCellRenderer.js.map +0 -1
  318. package/dist/collection/components/header/headerRenderer.js.map +0 -1
  319. package/dist/collection/components/header/revogr-header.js.map +0 -1
  320. package/dist/collection/components/order/orderRenderer.js.map +0 -1
  321. package/dist/collection/components/order/revogr-order-editor.js.map +0 -1
  322. package/dist/collection/components/order/rowOrderService.js.map +0 -1
  323. package/dist/collection/components/overlay/autofill.service.js.map +0 -1
  324. package/dist/collection/components/overlay/clipboard.service.js.map +0 -1
  325. package/dist/collection/components/overlay/editors/edit.utils.js.map +0 -1
  326. package/dist/collection/components/overlay/editors/text.js.map +0 -1
  327. package/dist/collection/components/overlay/keyboard.service.js.map +0 -1
  328. package/dist/collection/components/overlay/revogr-edit.js.map +0 -1
  329. package/dist/collection/components/overlay/revogr-overlay-selection.js.map +0 -1
  330. package/dist/collection/components/overlay/selection.utils.js.map +0 -1
  331. package/dist/collection/components/revo-grid/revo-grid.js.map +0 -1
  332. package/dist/collection/components/revo-grid/viewport.helpers.js.map +0 -1
  333. package/dist/collection/components/revo-grid/viewport.interfaces.js.map +0 -1
  334. package/dist/collection/components/revo-grid/viewport.js.map +0 -1
  335. package/dist/collection/components/revo-grid/viewport.resize.service.js.map +0 -1
  336. package/dist/collection/components/revo-grid/viewport.scrolling.service.js.map +0 -1
  337. package/dist/collection/components/revo-grid/viewport.section.js.map +0 -1
  338. package/dist/collection/components/revo-grid/viewport.service.js.map +0 -1
  339. package/dist/collection/components/rowHeaders/revogr-row-headers.js.map +0 -1
  340. package/dist/collection/components/rowHeaders/row-header-render.js.map +0 -1
  341. package/dist/collection/components/scroll/revogr-viewport-scroll.js.map +0 -1
  342. package/dist/collection/components/scrollable/revogr-scroll-virtual.js.map +0 -1
  343. package/dist/collection/components/selection-focus/revogr-focus.js.map +0 -1
  344. package/dist/collection/components/selection-temp-range/revogr-temp-range.js.map +0 -1
  345. package/dist/collection/global/global.js.map +0 -1
  346. package/dist/collection/index.js.map +0 -1
  347. package/dist/collection/plugins/autoSizeColumn.js.map +0 -1
  348. package/dist/collection/plugins/basePlugin.js.map +0 -1
  349. package/dist/collection/plugins/dispatcher.js.map +0 -1
  350. package/dist/collection/plugins/export/csv.js.map +0 -1
  351. package/dist/collection/plugins/export/export.plugin.js.map +0 -1
  352. package/dist/collection/plugins/export/types.js.map +0 -1
  353. package/dist/collection/plugins/filter/conditions/equal.js.map +0 -1
  354. package/dist/collection/plugins/filter/conditions/number/greaterThan.js.map +0 -1
  355. package/dist/collection/plugins/filter/conditions/number/greaterThanOrEqual.js.map +0 -1
  356. package/dist/collection/plugins/filter/conditions/number/lessThan.js.map +0 -1
  357. package/dist/collection/plugins/filter/conditions/number/lessThanOrEqual.js.map +0 -1
  358. package/dist/collection/plugins/filter/conditions/set.js.map +0 -1
  359. package/dist/collection/plugins/filter/conditions/string/beginswith.js.map +0 -1
  360. package/dist/collection/plugins/filter/conditions/string/contains.js.map +0 -1
  361. package/dist/collection/plugins/filter/filter.button.js.map +0 -1
  362. package/dist/collection/plugins/filter/filter.plugin.js.map +0 -1
  363. package/dist/collection/plugins/filter/filter.pop.js.map +0 -1
  364. package/dist/collection/plugins/filter/filter.service.js.map +0 -1
  365. package/dist/collection/plugins/filter/filter.types.js.map +0 -1
  366. package/dist/collection/plugins/groupingColumn/columnGroupsRenderer.js.map +0 -1
  367. package/dist/collection/plugins/groupingColumn/grouping.col.plugin.js.map +0 -1
  368. package/dist/collection/plugins/groupingColumn/headerGroupRenderer.js.map +0 -1
  369. package/dist/collection/plugins/groupingRow/grouping.const.js.map +0 -1
  370. package/dist/collection/plugins/groupingRow/grouping.row.expand.service.js.map +0 -1
  371. package/dist/collection/plugins/groupingRow/grouping.row.plugin.js.map +0 -1
  372. package/dist/collection/plugins/groupingRow/grouping.row.renderer.js.map +0 -1
  373. package/dist/collection/plugins/groupingRow/grouping.row.types.js.map +0 -1
  374. package/dist/collection/plugins/groupingRow/grouping.service.js.map +0 -1
  375. package/dist/collection/plugins/groupingRow/grouping.trimmed.service.js.map +0 -1
  376. package/dist/collection/plugins/moveColumn/columnDragPlugin.js.map +0 -1
  377. package/dist/collection/plugins/moveColumn/columnOrderHandler.js.map +0 -1
  378. package/dist/collection/plugins/sorting/sorting.plugin.js.map +0 -1
  379. package/dist/collection/plugins/sorting/sorting.sign.js.map +0 -1
  380. package/dist/collection/plugins/stretchPlugin.js.map +0 -1
  381. package/dist/collection/plugins/trimmed/trimmed.plugin.js.map +0 -1
  382. package/dist/collection/services/cell.helpers.js.map +0 -1
  383. package/dist/collection/services/column.data.provider.js.map +0 -1
  384. package/dist/collection/services/data.provider.js.map +0 -1
  385. package/dist/collection/services/dimension.provider.js.map +0 -1
  386. package/dist/collection/services/localScrollService.js.map +0 -1
  387. package/dist/collection/services/resizable.directive.js.map +0 -1
  388. package/dist/collection/services/selection.store.connector.js.map +0 -1
  389. package/dist/collection/services/viewport.provider.js.map +0 -1
  390. package/dist/collection/store/dataSource/data.proxy.js.map +0 -1
  391. package/dist/collection/store/dataSource/data.store.js.map +0 -1
  392. package/dist/collection/store/dimension/dimension.helpers.js.map +0 -1
  393. package/dist/collection/store/dimension/dimension.store.js.map +0 -1
  394. package/dist/collection/store/selection/selection.helpers.js.map +0 -1
  395. package/dist/collection/store/selection/selection.store.js.map +0 -1
  396. package/dist/collection/store/selection/selection.store.service.js.map +0 -1
  397. package/dist/collection/store/storeTypes.js.map +0 -1
  398. package/dist/collection/store/viewPort/viewport.helpers.js.map +0 -1
  399. package/dist/collection/store/viewPort/viewport.store.js.map +0 -1
  400. package/dist/collection/themeManager/theme.compact.js.map +0 -1
  401. package/dist/collection/themeManager/theme.default.js.map +0 -1
  402. package/dist/collection/themeManager/theme.material.js.map +0 -1
  403. package/dist/collection/themeManager/themeService.js.map +0 -1
  404. package/dist/collection/utils/closestPolifill.js.map +0 -1
  405. package/dist/collection/utils/consts.js.map +0 -1
  406. package/dist/collection/utils/generateAlphabetHeader.js.map +0 -1
  407. package/dist/collection/utils/keyCodes.js.map +0 -1
  408. package/dist/collection/utils/keyCodes.utils.js.map +0 -1
  409. package/dist/collection/utils/platform.js.map +0 -1
  410. package/dist/collection/utils/resizeObserver.js.map +0 -1
  411. package/dist/collection/utils/store.utils.js.map +0 -1
  412. package/dist/collection/utils/utils.js.map +0 -1
  413. package/dist/esm/debounce-7221834a.js.map +0 -1
  414. package/dist/esm/index-068eebfc.js.map +0 -1
  415. package/dist/esm/index.js.map +0 -1
  416. package/dist/esm/loader.js.map +0 -1
  417. package/dist/esm/resize-observer-d817c4b6.js.map +0 -1
  418. package/dist/esm/revo-grid.js.map +0 -1
  419. package/dist/esm/revo-grid_11.entry.js.map +0 -1
  420. package/dist/esm/revogr-clipboard.entry.js.map +0 -1
  421. package/dist/esm/revogr-filter-panel.entry.js.map +0 -1
  422. package/dist/esm-es5/debounce-7221834a.js.map +0 -1
  423. package/dist/esm-es5/index-068eebfc.js +0 -5
  424. package/dist/esm-es5/index-068eebfc.js.map +0 -1
  425. package/dist/esm-es5/index.js.map +0 -1
  426. package/dist/esm-es5/loader.js.map +0 -1
  427. package/dist/esm-es5/resize-observer-d817c4b6.js.map +0 -1
  428. package/dist/esm-es5/revo-grid.js.map +0 -1
  429. package/dist/esm-es5/revo-grid_11.entry.js.map +0 -1
  430. package/dist/esm-es5/revogr-clipboard.entry.js.map +0 -1
  431. package/dist/esm-es5/revogr-filter-panel.entry.js.map +0 -1
  432. package/dist/revo-grid/debounce-7221834a.js +0 -5
  433. package/dist/revo-grid/debounce-7221834a.js.map +0 -1
  434. package/dist/revo-grid/debounce-fa358fc7.system.js.map +0 -1
  435. package/dist/revo-grid/index-068eebfc.js +0 -6
  436. package/dist/revo-grid/index-068eebfc.js.map +0 -1
  437. package/dist/revo-grid/index-36847b63.system.js +0 -6
  438. package/dist/revo-grid/index-36847b63.system.js.map +0 -1
  439. package/dist/revo-grid/index.esm.js.map +0 -1
  440. package/dist/revo-grid/index.system.js.map +0 -1
  441. package/dist/revo-grid/resize-observer-64c845eb.system.js.map +0 -1
  442. package/dist/revo-grid/resize-observer-d817c4b6.js +0 -5
  443. package/dist/revo-grid/resize-observer-d817c4b6.js.map +0 -1
  444. package/dist/revo-grid/revo-grid.esm.js.map +0 -1
  445. package/dist/revo-grid/revo-grid.system.js.map +0 -1
  446. package/dist/revo-grid/revo-grid_11.entry.js.map +0 -1
  447. package/dist/revo-grid/revo-grid_11.system.entry.js.map +0 -1
  448. package/dist/revo-grid/revogr-clipboard.entry.js.map +0 -1
  449. package/dist/revo-grid/revogr-clipboard.system.entry.js.map +0 -1
  450. package/dist/revo-grid/revogr-filter-panel.entry.js.map +0 -1
  451. package/dist/revo-grid/revogr-filter-panel.system.entry.js.map +0 -1
@@ -25,14 +25,6 @@ function _interopNamespace(e) {
25
25
 
26
26
  const NAMESPACE = 'revo-grid';
27
27
 
28
- /**
29
- * Virtual DOM patching algorithm based on Snabbdom by
30
- * Simon Friis Vindum (@paldepind)
31
- * Licensed under the MIT License
32
- * https://github.com/snabbdom/snabbdom/blob/master/LICENSE
33
- *
34
- * Modified for Stencil's renderer and slot projection
35
- */
36
28
  let contentRef;
37
29
  let hostTagName;
38
30
  let useNativeShadowDom = false;
@@ -41,6 +33,64 @@ let checkSlotRelocate = false;
41
33
  let isSvgMode = false;
42
34
  let renderingRef = null;
43
35
  let queuePending = false;
36
+ const win = typeof window !== 'undefined' ? window : {};
37
+ const CSS = win.CSS ;
38
+ const doc = win.document || { head: {} };
39
+ const plt = {
40
+ $flags$: 0,
41
+ $resourcesUrl$: '',
42
+ jmp: (h) => h(),
43
+ raf: (h) => requestAnimationFrame(h),
44
+ ael: (el, eventName, listener, opts) => el.addEventListener(eventName, listener, opts),
45
+ rel: (el, eventName, listener, opts) => el.removeEventListener(eventName, listener, opts),
46
+ ce: (eventName, opts) => new CustomEvent(eventName, opts),
47
+ };
48
+ const promiseResolve = (v) => Promise.resolve(v);
49
+ const supportsConstructableStylesheets = /*@__PURE__*/ (() => {
50
+ try {
51
+ new CSSStyleSheet();
52
+ return typeof new CSSStyleSheet().replaceSync === 'function';
53
+ }
54
+ catch (e) { }
55
+ return false;
56
+ })()
57
+ ;
58
+ const addHostEventListeners = (elm, hostRef, listeners, attachParentListeners) => {
59
+ if (listeners) {
60
+ listeners.map(([flags, name, method]) => {
61
+ const target = getHostListenerTarget(elm, flags) ;
62
+ const handler = hostListenerProxy(hostRef, method);
63
+ const opts = hostListenerOpts(flags);
64
+ plt.ael(target, name, handler, opts);
65
+ (hostRef.$rmListeners$ = hostRef.$rmListeners$ || []).push(() => plt.rel(target, name, handler, opts));
66
+ });
67
+ }
68
+ };
69
+ const hostListenerProxy = (hostRef, methodName) => (ev) => {
70
+ try {
71
+ {
72
+ if (hostRef.$flags$ & 256 /* isListenReady */) {
73
+ // instance is ready, let's call it's member method for this event
74
+ hostRef.$lazyInstance$[methodName](ev);
75
+ }
76
+ else {
77
+ (hostRef.$queuedListeners$ = hostRef.$queuedListeners$ || []).push([methodName, ev]);
78
+ }
79
+ }
80
+ }
81
+ catch (e) {
82
+ consoleError(e);
83
+ }
84
+ };
85
+ const getHostListenerTarget = (elm, flags) => {
86
+ if (flags & 4 /* TargetDocument */)
87
+ return doc;
88
+ return elm;
89
+ };
90
+ // prettier-ignore
91
+ const hostListenerOpts = (flags) => (flags & 2 /* Capture */) !== 0;
92
+ const HYDRATED_CSS = '{visibility:hidden}.hydrated{visibility:inherit}';
93
+ const XLINK_NS = 'http://www.w3.org/1999/xlink';
44
94
  const createTime = (fnName, tagName = '') => {
45
95
  {
46
96
  return () => {
@@ -55,8 +105,75 @@ const uniqueTime = (key, measureText) => {
55
105
  };
56
106
  }
57
107
  };
58
- const HYDRATED_CSS = '{visibility:hidden}.hydrated{visibility:inherit}';
59
- const XLINK_NS = 'http://www.w3.org/1999/xlink';
108
+ const rootAppliedStyles = new WeakMap();
109
+ const registerStyle = (scopeId, cssText, allowCS) => {
110
+ let style = styles.get(scopeId);
111
+ if (supportsConstructableStylesheets && allowCS) {
112
+ style = (style || new CSSStyleSheet());
113
+ if (typeof style === 'string') {
114
+ style = cssText;
115
+ }
116
+ else {
117
+ style.replaceSync(cssText);
118
+ }
119
+ }
120
+ else {
121
+ style = cssText;
122
+ }
123
+ styles.set(scopeId, style);
124
+ };
125
+ const addStyle = (styleContainerNode, cmpMeta, mode, hostElm) => {
126
+ let scopeId = getScopeId(cmpMeta);
127
+ const style = styles.get(scopeId);
128
+ // if an element is NOT connected then getRootNode() will return the wrong root node
129
+ // so the fallback is to always use the document for the root node in those cases
130
+ styleContainerNode = styleContainerNode.nodeType === 11 /* DocumentFragment */ ? styleContainerNode : doc;
131
+ if (style) {
132
+ if (typeof style === 'string') {
133
+ styleContainerNode = styleContainerNode.head || styleContainerNode;
134
+ let appliedStyles = rootAppliedStyles.get(styleContainerNode);
135
+ let styleElm;
136
+ if (!appliedStyles) {
137
+ rootAppliedStyles.set(styleContainerNode, (appliedStyles = new Set()));
138
+ }
139
+ if (!appliedStyles.has(scopeId)) {
140
+ {
141
+ if (plt.$cssShim$) {
142
+ styleElm = plt.$cssShim$.createHostStyle(hostElm, scopeId, style, !!(cmpMeta.$flags$ & 10 /* needsScopedEncapsulation */));
143
+ const newScopeId = styleElm['s-sc'];
144
+ if (newScopeId) {
145
+ scopeId = newScopeId;
146
+ // we don't want to add this styleID to the appliedStyles Set
147
+ // since the cssVarShim might need to apply several different
148
+ // stylesheets for the same component
149
+ appliedStyles = null;
150
+ }
151
+ }
152
+ else {
153
+ styleElm = doc.createElement('style');
154
+ styleElm.innerHTML = style;
155
+ }
156
+ styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector('link'));
157
+ }
158
+ if (appliedStyles) {
159
+ appliedStyles.add(scopeId);
160
+ }
161
+ }
162
+ }
163
+ else if (!styleContainerNode.adoptedStyleSheets.includes(style)) {
164
+ styleContainerNode.adoptedStyleSheets = [...styleContainerNode.adoptedStyleSheets, style];
165
+ }
166
+ }
167
+ return scopeId;
168
+ };
169
+ const attachStyles = (hostRef) => {
170
+ const cmpMeta = hostRef.$cmpMeta$;
171
+ const elm = hostRef.$hostElement$;
172
+ const endAttachStyles = createTime('attachStyles', cmpMeta.$tagName$);
173
+ addStyle(elm.getRootNode(), cmpMeta, hostRef.$modeName$, elm);
174
+ endAttachStyles();
175
+ };
176
+ const getScopeId = (cmp, mode) => 'sc-' + (cmp.$tagName$);
60
177
  /**
61
178
  * Default style mode id
62
179
  */
@@ -70,30 +187,11 @@ const EMPTY_OBJ = {};
70
187
  */
71
188
  const SVG_NS = 'http://www.w3.org/2000/svg';
72
189
  const HTML_NS = 'http://www.w3.org/1999/xhtml';
73
- /**
74
- * Check whether a value is a 'complex type', defined here as an object or a
75
- * function.
76
- *
77
- * @param o the value to check
78
- * @returns whether it's a complex type or not
79
- */
80
190
  const isComplexType = (o) => {
81
191
  // https://jsperf.com/typeof-fn-object/5
82
192
  o = typeof o;
83
193
  return o === 'object' || o === 'function';
84
194
  };
85
- /**
86
- * Helper method for querying a `meta` tag that contains a nonce value
87
- * out of a DOM's head.
88
- *
89
- * @param doc The DOM containing the `head` to query against
90
- * @returns The content of the meta tag representing the nonce value, or `undefined` if no tag
91
- * exists or the tag has no content.
92
- */
93
- function queryNonceMetaTagContent(doc) {
94
- var _a, _b, _c;
95
- return (_c = (_b = (_a = doc.head) === null || _a === void 0 ? void 0 : _a.querySelector('meta[name="csp-nonce"]')) === null || _b === void 0 ? void 0 : _b.getAttribute('content')) !== null && _c !== void 0 ? _c : undefined;
96
- }
97
195
  /**
98
196
  * Production h() function based on Preact by
99
197
  * Jason Miller (@developit)
@@ -102,6 +200,7 @@ function queryNonceMetaTagContent(doc) {
102
200
  *
103
201
  * Modified for Stencil's compiler and vdom
104
202
  */
203
+ // const stack: any[] = [];
105
204
  // export function h(nodeName: string | d.FunctionalComponent, vnodeData: d.PropsType, child?: d.ChildType): d.VNode;
106
205
  // export function h(nodeName: string | d.FunctionalComponent, vnodeData: d.PropsType, ...children: d.ChildType[]): d.VNode;
107
206
  const h = (nodeName, vnodeData, ...children) => {
@@ -171,14 +270,6 @@ const h = (nodeName, vnodeData, ...children) => {
171
270
  }
172
271
  return vnode;
173
272
  };
174
- /**
175
- * A utility function for creating a virtual DOM node from a tag and some
176
- * possible text content.
177
- *
178
- * @param tag the tag for this element
179
- * @param text possible text content for the node
180
- * @returns a newly-minted virtual DOM node
181
- */
182
273
  const newVNode = (tag, text) => {
183
274
  const vnode = {
184
275
  $flags$: 0,
@@ -199,31 +290,11 @@ const newVNode = (tag, text) => {
199
290
  return vnode;
200
291
  };
201
292
  const Host = {};
202
- /**
203
- * Check whether a given node is a Host node or not
204
- *
205
- * @param node the virtual DOM node to check
206
- * @returns whether it's a Host node or not
207
- */
208
293
  const isHost = (node) => node && node.$tag$ === Host;
209
- /**
210
- * Implementation of {@link d.FunctionalUtilities} for Stencil's VDom.
211
- *
212
- * Note that these functions convert from {@link d.VNode} to
213
- * {@link d.ChildNode} to give functional component developers a friendly
214
- * interface.
215
- */
216
294
  const vdomFnUtils = {
217
295
  forEach: (children, cb) => children.map(convertToPublic).forEach(cb),
218
296
  map: (children, cb) => children.map(convertToPublic).map(cb).map(convertToPrivate),
219
297
  };
220
- /**
221
- * Convert a {@link d.VNode} to a {@link d.ChildNode} in order to present a
222
- * friendlier public interface (hence, 'convertToPublic').
223
- *
224
- * @param node the virtual DOM node to convert
225
- * @returns a converted child node
226
- */
227
298
  const convertToPublic = (node) => ({
228
299
  vattrs: node.$attrs$,
229
300
  vchildren: node.$children$,
@@ -232,15 +303,6 @@ const convertToPublic = (node) => ({
232
303
  vtag: node.$tag$,
233
304
  vtext: node.$text$,
234
305
  });
235
- /**
236
- * Convert a {@link d.ChildNode} back to an equivalent {@link d.VNode} in
237
- * order to use the resulting object in the virtual DOM. The initial object was
238
- * likely created as part of presenting a public API, so converting it back
239
- * involved making it 'private' again (hence, `convertToPrivate`).
240
- *
241
- * @param node the child node to convert
242
- * @returns a converted virtual DOM node
243
- */
244
306
  const convertToPrivate = (node) => {
245
307
  if (typeof node.vtag === 'function') {
246
308
  const vnodeData = Object.assign({}, node.vattrs);
@@ -259,144 +321,6 @@ const convertToPrivate = (node) => {
259
321
  vnode.$name$ = node.vname;
260
322
  return vnode;
261
323
  };
262
- /**
263
- * Parse a new property value for a given property type.
264
- *
265
- * While the prop value can reasonably be expected to be of `any` type as far as TypeScript's type checker is concerned,
266
- * it is not safe to assume that the string returned by evaluating `typeof propValue` matches:
267
- * 1. `any`, the type given to `propValue` in the function signature
268
- * 2. the type stored from `propType`.
269
- *
270
- * This function provides the capability to parse/coerce a property's value to potentially any other JavaScript type.
271
- *
272
- * Property values represented in TSX preserve their type information. In the example below, the number 0 is passed to
273
- * a component. This `propValue` will preserve its type information (`typeof propValue === 'number'`). Note that is
274
- * based on the type of the value being passed in, not the type declared of the class member decorated with `@Prop`.
275
- * ```tsx
276
- * <my-cmp prop-val={0}></my-cmp>
277
- * ```
278
- *
279
- * HTML prop values on the other hand, will always a string
280
- *
281
- * @param propValue the new value to coerce to some type
282
- * @param propType the type of the prop, expressed as a binary number
283
- * @returns the parsed/coerced value
284
- */
285
- const parsePropertyValue = (propValue, propType) => {
286
- // ensure this value is of the correct prop type
287
- if (propValue != null && !isComplexType(propValue)) {
288
- if (propType & 4 /* MEMBER_FLAGS.Boolean */) {
289
- // per the HTML spec, any string value means it is a boolean true value
290
- // but we'll cheat here and say that the string "false" is the boolean false
291
- return propValue === 'false' ? false : propValue === '' || !!propValue;
292
- }
293
- if (propType & 2 /* MEMBER_FLAGS.Number */) {
294
- // force it to be a number
295
- return parseFloat(propValue);
296
- }
297
- if (propType & 1 /* MEMBER_FLAGS.String */) {
298
- // could have been passed as a number or boolean
299
- // but we still want it as a string
300
- return String(propValue);
301
- }
302
- // redundant return here for better minification
303
- return propValue;
304
- }
305
- // not sure exactly what type we want
306
- // so no need to change to a different type
307
- return propValue;
308
- };
309
- const getElement = (ref) => (getHostRef(ref).$hostElement$ );
310
- const createEvent = (ref, name, flags) => {
311
- const elm = getElement(ref);
312
- return {
313
- emit: (detail) => {
314
- return emitEvent(elm, name, {
315
- bubbles: !!(flags & 4 /* EVENT_FLAGS.Bubbles */),
316
- composed: !!(flags & 2 /* EVENT_FLAGS.Composed */),
317
- cancelable: !!(flags & 1 /* EVENT_FLAGS.Cancellable */),
318
- detail,
319
- });
320
- },
321
- };
322
- };
323
- /**
324
- * Helper function to create & dispatch a custom Event on a provided target
325
- * @param elm the target of the Event
326
- * @param name the name to give the custom Event
327
- * @param opts options for configuring a custom Event
328
- * @returns the custom Event
329
- */
330
- const emitEvent = (elm, name, opts) => {
331
- const ev = plt.ce(name, opts);
332
- elm.dispatchEvent(ev);
333
- return ev;
334
- };
335
- const rootAppliedStyles = /*@__PURE__*/ new WeakMap();
336
- const registerStyle = (scopeId, cssText, allowCS) => {
337
- let style = styles.get(scopeId);
338
- if (supportsConstructableStylesheets && allowCS) {
339
- style = (style || new CSSStyleSheet());
340
- if (typeof style === 'string') {
341
- style = cssText;
342
- }
343
- else {
344
- style.replaceSync(cssText);
345
- }
346
- }
347
- else {
348
- style = cssText;
349
- }
350
- styles.set(scopeId, style);
351
- };
352
- const addStyle = (styleContainerNode, cmpMeta, mode, hostElm) => {
353
- var _a;
354
- let scopeId = getScopeId(cmpMeta);
355
- const style = styles.get(scopeId);
356
- // if an element is NOT connected then getRootNode() will return the wrong root node
357
- // so the fallback is to always use the document for the root node in those cases
358
- styleContainerNode = styleContainerNode.nodeType === 11 /* NODE_TYPE.DocumentFragment */ ? styleContainerNode : doc;
359
- if (style) {
360
- if (typeof style === 'string') {
361
- styleContainerNode = styleContainerNode.head || styleContainerNode;
362
- let appliedStyles = rootAppliedStyles.get(styleContainerNode);
363
- let styleElm;
364
- if (!appliedStyles) {
365
- rootAppliedStyles.set(styleContainerNode, (appliedStyles = new Set()));
366
- }
367
- if (!appliedStyles.has(scopeId)) {
368
- {
369
- // TODO(STENCIL-659): Remove code implementing the CSS variable shim
370
- {
371
- styleElm = doc.createElement('style');
372
- styleElm.innerHTML = style;
373
- }
374
- // Apply CSP nonce to the style tag if it exists
375
- const nonce = (_a = plt.$nonce$) !== null && _a !== void 0 ? _a : queryNonceMetaTagContent(doc);
376
- if (nonce != null) {
377
- styleElm.setAttribute('nonce', nonce);
378
- }
379
- styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector('link'));
380
- }
381
- if (appliedStyles) {
382
- appliedStyles.add(scopeId);
383
- }
384
- }
385
- }
386
- else if (!styleContainerNode.adoptedStyleSheets.includes(style)) {
387
- styleContainerNode.adoptedStyleSheets = [...styleContainerNode.adoptedStyleSheets, style];
388
- }
389
- }
390
- return scopeId;
391
- };
392
- const attachStyles = (hostRef) => {
393
- const cmpMeta = hostRef.$cmpMeta$;
394
- const elm = hostRef.$hostElement$;
395
- const endAttachStyles = createTime('attachStyles', cmpMeta.$tagName$);
396
- addStyle(elm.getRootNode(), cmpMeta);
397
- endAttachStyles();
398
- };
399
- const getScopeId = (cmp, mode) => 'sc-' + (cmp.$tagName$);
400
324
  /**
401
325
  * Production setAccessor() function based on Preact by
402
326
  * Jason Miller (@developit)
@@ -533,7 +457,7 @@ const setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags) => {
533
457
  }
534
458
  }
535
459
  }
536
- else if ((!isProp || flags & 4 /* VNODE_FLAGS.isHost */ || isSvg) && !isComplex) {
460
+ else if ((!isProp || flags & 4 /* isHost */ || isSvg) && !isComplex) {
537
461
  newValue = newValue === true ? '' : newValue;
538
462
  if (xlink) {
539
463
  elm.setAttributeNS(XLINK_NS, memberName, newValue);
@@ -551,7 +475,7 @@ const updateElement = (oldVnode, newVnode, isSvgMode, memberName) => {
551
475
  // if the element passed in is a shadow root, which is a document fragment
552
476
  // then we want to be adding attrs/props to the shadow root's "host" element
553
477
  // if it's not a shadow root, then we add attrs/props to the same element
554
- const elm = newVnode.$elm$.nodeType === 11 /* NODE_TYPE.DocumentFragment */ && newVnode.$elm$.host
478
+ const elm = newVnode.$elm$.nodeType === 11 /* DocumentFragment */ && newVnode.$elm$.host
555
479
  ? newVnode.$elm$.host
556
480
  : newVnode.$elm$;
557
481
  const oldVnodeAttrs = (oldVnode && oldVnode.$attrs$) || EMPTY_OBJ;
@@ -569,16 +493,6 @@ const updateElement = (oldVnode, newVnode, isSvgMode, memberName) => {
569
493
  setAccessor(elm, memberName, oldVnodeAttrs[memberName], newVnodeAttrs[memberName], isSvgMode, newVnode.$flags$);
570
494
  }
571
495
  };
572
- /**
573
- * Create a DOM Node corresponding to one of the children of a given VNode.
574
- *
575
- * @param oldParentVNode the parent VNode from the previous render
576
- * @param newParentVNode the parent VNode from the current render
577
- * @param childIndex the index of the VNode, in the _new_ parent node's
578
- * children, for which we will create a new DOM node
579
- * @param parentElm the parent DOM node which our new node will be a child of
580
- * @returns the newly created node
581
- */
582
496
  const createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
583
497
  // tslint:disable-next-line: prefer-const
584
498
  const newVNode = newParentVNode.$children$[childIndex];
@@ -592,16 +506,16 @@ const createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
592
506
  if (newVNode.$tag$ === 'slot') {
593
507
  newVNode.$flags$ |= newVNode.$children$
594
508
  ? // slot element has fallback content
595
- 2 /* VNODE_FLAGS.isSlotFallback */
509
+ 2 /* isSlotFallback */
596
510
  : // slot element does not have fallback content
597
- 1 /* VNODE_FLAGS.isSlotReference */;
511
+ 1 /* isSlotReference */;
598
512
  }
599
513
  }
600
514
  if (newVNode.$text$ !== null) {
601
515
  // create text node
602
516
  elm = newVNode.$elm$ = doc.createTextNode(newVNode.$text$);
603
517
  }
604
- else if (newVNode.$flags$ & 1 /* VNODE_FLAGS.isSlotReference */) {
518
+ else if (newVNode.$flags$ & 1 /* isSlotReference */) {
605
519
  // create a slot reference node
606
520
  elm = newVNode.$elm$ =
607
521
  doc.createTextNode('');
@@ -611,7 +525,7 @@ const createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
611
525
  isSvgMode = newVNode.$tag$ === 'svg';
612
526
  }
613
527
  // create element
614
- elm = newVNode.$elm$ = (doc.createElementNS(isSvgMode ? SVG_NS : HTML_NS, newVNode.$flags$ & 2 /* VNODE_FLAGS.isSlotFallback */
528
+ elm = newVNode.$elm$ = (doc.createElementNS(isSvgMode ? SVG_NS : HTML_NS, newVNode.$flags$ & 2 /* isSlotFallback */
615
529
  ? 'slot-fb'
616
530
  : newVNode.$tag$)
617
531
  );
@@ -646,7 +560,7 @@ const createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
646
560
  }
647
561
  {
648
562
  elm['s-hn'] = hostTagName;
649
- if (newVNode.$flags$ & (2 /* VNODE_FLAGS.isSlotFallback */ | 1 /* VNODE_FLAGS.isSlotReference */)) {
563
+ if (newVNode.$flags$ & (2 /* isSlotFallback */ | 1 /* isSlotReference */)) {
650
564
  // remember the content reference comment
651
565
  elm['s-sr'] = true;
652
566
  // remember the content reference comment
@@ -665,7 +579,7 @@ const createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
665
579
  return elm;
666
580
  };
667
581
  const putBackInOriginalLocation = (parentElm, recursive) => {
668
- plt.$flags$ |= 1 /* PLATFORM_FLAGS.isTmpDisconnected */;
582
+ plt.$flags$ |= 1 /* isTmpDisconnected */;
669
583
  const oldSlotChildNodes = parentElm.childNodes;
670
584
  for (let i = oldSlotChildNodes.length - 1; i >= 0; i--) {
671
585
  const childNode = oldSlotChildNodes[i];
@@ -686,23 +600,8 @@ const putBackInOriginalLocation = (parentElm, recursive) => {
686
600
  putBackInOriginalLocation(childNode, recursive);
687
601
  }
688
602
  }
689
- plt.$flags$ &= ~1 /* PLATFORM_FLAGS.isTmpDisconnected */;
603
+ plt.$flags$ &= ~1 /* isTmpDisconnected */;
690
604
  };
691
- /**
692
- * Create DOM nodes corresponding to a list of {@link d.Vnode} objects and
693
- * add them to the DOM in the appropriate place.
694
- *
695
- * @param parentElm the DOM node which should be used as a parent for the new
696
- * DOM nodes
697
- * @param before a child of the `parentElm` which the new children should be
698
- * inserted before (optional)
699
- * @param parentVNode the parent virtual DOM node
700
- * @param vnodes the new child virtual DOM nodes to produce DOM nodes for
701
- * @param startIdx the index in the child virtual DOM nodes at which to start
702
- * creating DOM nodes (inclusive)
703
- * @param endIdx the index in the child virtual DOM nodes at which to stop
704
- * creating DOM nodes (inclusive)
705
- */
706
605
  const addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) => {
707
606
  let containerElm = ((parentElm['s-cr'] && parentElm['s-cr'].parentNode) || parentElm);
708
607
  let childNode;
@@ -716,19 +615,6 @@ const addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) =>
716
615
  }
717
616
  }
718
617
  };
719
- /**
720
- * Remove the DOM elements corresponding to a list of {@link d.VNode} objects.
721
- * This can be used to, for instance, clean up after a list of children which
722
- * should no longer be shown.
723
- *
724
- * This function also handles some of Stencil's slot relocation logic.
725
- *
726
- * @param vnodes a list of virtual DOM nodes to remove
727
- * @param startIdx the index at which to start removing nodes (inclusive)
728
- * @param endIdx the index at which to stop removing nodes (inclusive)
729
- * @param vnode a VNode
730
- * @param elm an element
731
- */
732
618
  const removeVnodes = (vnodes, startIdx, endIdx, vnode, elm) => {
733
619
  for (; startIdx <= endIdx; ++startIdx) {
734
620
  if ((vnode = vnodes[startIdx])) {
@@ -753,74 +639,6 @@ const removeVnodes = (vnodes, startIdx, endIdx, vnode, elm) => {
753
639
  }
754
640
  }
755
641
  };
756
- /**
757
- * Reconcile the children of a new VNode with the children of an old VNode by
758
- * traversing the two collections of children, identifying nodes that are
759
- * conserved or changed, calling out to `patch` to make any necessary
760
- * updates to the DOM, and rearranging DOM nodes as needed.
761
- *
762
- * The algorithm for reconciling children works by analyzing two 'windows' onto
763
- * the two arrays of children (`oldCh` and `newCh`). We keep track of the
764
- * 'windows' by storing start and end indices and references to the
765
- * corresponding array entries. Initially the two 'windows' are basically equal
766
- * to the entire array, but we progressively narrow the windows until there are
767
- * no children left to update by doing the following:
768
- *
769
- * 1. Skip any `null` entries at the beginning or end of the two arrays, so
770
- * that if we have an initial array like the following we'll end up dealing
771
- * only with a window bounded by the highlighted elements:
772
- *
773
- * [null, null, VNode1 , ... , VNode2, null, null]
774
- * ^^^^^^ ^^^^^^
775
- *
776
- * 2. Check to see if the elements at the head and tail positions are equal
777
- * across the windows. This will basically detect elements which haven't
778
- * been added, removed, or changed position, i.e. if you had the following
779
- * VNode elements (represented as HTML):
780
- *
781
- * oldVNode: `<div><p><span>HEY</span></p></div>`
782
- * newVNode: `<div><p><span>THERE</span></p></div>`
783
- *
784
- * Then when comparing the children of the `<div>` tag we check the equality
785
- * of the VNodes corresponding to the `<p>` tags and, since they are the
786
- * same tag in the same position, we'd be able to avoid completely
787
- * re-rendering the subtree under them with a new DOM element and would just
788
- * call out to `patch` to handle reconciling their children and so on.
789
- *
790
- * 3. Check, for both windows, to see if the element at the beginning of the
791
- * window corresponds to the element at the end of the other window. This is
792
- * a heuristic which will let us identify _some_ situations in which
793
- * elements have changed position, for instance it _should_ detect that the
794
- * children nodes themselves have not changed but merely moved in the
795
- * following example:
796
- *
797
- * oldVNode: `<div><element-one /><element-two /></div>`
798
- * newVNode: `<div><element-two /><element-one /></div>`
799
- *
800
- * If we find cases like this then we also need to move the concrete DOM
801
- * elements corresponding to the moved children to write the re-order to the
802
- * DOM.
803
- *
804
- * 4. Finally, if VNodes have the `key` attribute set on them we check for any
805
- * nodes in the old children which have the same key as the first element in
806
- * our window on the new children. If we find such a node we handle calling
807
- * out to `patch`, moving relevant DOM nodes, and so on, in accordance with
808
- * what we find.
809
- *
810
- * Finally, once we've narrowed our 'windows' to the point that either of them
811
- * collapse (i.e. they have length 0) we then handle any remaining VNode
812
- * insertion or deletion that needs to happen to get a DOM state that correctly
813
- * reflects the new child VNodes. If, for instance, after our window on the old
814
- * children has collapsed we still have more nodes on the new children that
815
- * we haven't dealt with yet then we need to add them, or if the new children
816
- * collapse but we still have unhandled _old_ children then we need to make
817
- * sure the corresponding DOM nodes are removed.
818
- *
819
- * @param parentElm the node into which the parent VNode is rendered
820
- * @param oldCh the old children of the parent node
821
- * @param newVNode the new VNode which will replace the parent
822
- * @param newCh the new children of the parent node
823
- */
824
642
  const updateChildren = (parentElm, oldCh, newVNode, newCh) => {
825
643
  let oldStartIdx = 0;
826
644
  let newStartIdx = 0;
@@ -836,7 +654,7 @@ const updateChildren = (parentElm, oldCh, newVNode, newCh) => {
836
654
  let elmToMove;
837
655
  while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {
838
656
  if (oldStartVnode == null) {
839
- // VNode might have been moved left
657
+ // Vnode might have been moved left
840
658
  oldStartVnode = oldCh[++oldStartIdx];
841
659
  }
842
660
  else if (oldEndVnode == null) {
@@ -849,100 +667,37 @@ const updateChildren = (parentElm, oldCh, newVNode, newCh) => {
849
667
  newEndVnode = newCh[--newEndIdx];
850
668
  }
851
669
  else if (isSameVnode(oldStartVnode, newStartVnode)) {
852
- // if the start nodes are the same then we should patch the new VNode
853
- // onto the old one, and increment our `newStartIdx` and `oldStartIdx`
854
- // indices to reflect that. We don't need to move any DOM Nodes around
855
- // since things are matched up in order.
856
670
  patch(oldStartVnode, newStartVnode);
857
671
  oldStartVnode = oldCh[++oldStartIdx];
858
672
  newStartVnode = newCh[++newStartIdx];
859
673
  }
860
674
  else if (isSameVnode(oldEndVnode, newEndVnode)) {
861
- // likewise, if the end nodes are the same we patch new onto old and
862
- // decrement our end indices, and also likewise in this case we don't
863
- // need to move any DOM Nodes.
864
675
  patch(oldEndVnode, newEndVnode);
865
676
  oldEndVnode = oldCh[--oldEndIdx];
866
677
  newEndVnode = newCh[--newEndIdx];
867
678
  }
868
679
  else if (isSameVnode(oldStartVnode, newEndVnode)) {
869
- // case: "Vnode moved right"
870
- //
871
- // We've found that the last node in our window on the new children is
872
- // the same VNode as the _first_ node in our window on the old children
873
- // we're dealing with now. Visually, this is the layout of these two
874
- // nodes:
875
- //
876
- // newCh: [..., newStartVnode , ... , newEndVnode , ...]
877
- // ^^^^^^^^^^^
878
- // oldCh: [..., oldStartVnode , ... , oldEndVnode , ...]
879
- // ^^^^^^^^^^^^^
880
- //
881
- // In this situation we need to patch `newEndVnode` onto `oldStartVnode`
882
- // and move the DOM element for `oldStartVnode`.
680
+ // Vnode moved right
883
681
  if ((oldStartVnode.$tag$ === 'slot' || newEndVnode.$tag$ === 'slot')) {
884
682
  putBackInOriginalLocation(oldStartVnode.$elm$.parentNode, false);
885
683
  }
886
684
  patch(oldStartVnode, newEndVnode);
887
- // We need to move the element for `oldStartVnode` into a position which
888
- // will be appropriate for `newEndVnode`. For this we can use
889
- // `.insertBefore` and `oldEndVnode.$elm$.nextSibling`. If there is a
890
- // sibling for `oldEndVnode.$elm$` then we want to move the DOM node for
891
- // `oldStartVnode` between `oldEndVnode` and it's sibling, like so:
892
- //
893
- // <old-start-node />
894
- // <some-intervening-node />
895
- // <old-end-node />
896
- // <!-- -> <-- `oldStartVnode.$elm$` should be inserted here
897
- // <next-sibling />
898
- //
899
- // If instead `oldEndVnode.$elm$` has no sibling then we just want to put
900
- // the node for `oldStartVnode` at the end of the children of
901
- // `parentElm`. Luckily, `Node.nextSibling` will return `null` if there
902
- // aren't any siblings, and passing `null` to `Node.insertBefore` will
903
- // append it to the children of the parent element.
904
685
  parentElm.insertBefore(oldStartVnode.$elm$, oldEndVnode.$elm$.nextSibling);
905
686
  oldStartVnode = oldCh[++oldStartIdx];
906
687
  newEndVnode = newCh[--newEndIdx];
907
688
  }
908
689
  else if (isSameVnode(oldEndVnode, newStartVnode)) {
909
- // case: "Vnode moved left"
910
- //
911
- // We've found that the first node in our window on the new children is
912
- // the same VNode as the _last_ node in our window on the old children.
913
- // Visually, this is the layout of these two nodes:
914
- //
915
- // newCh: [..., newStartVnode , ... , newEndVnode , ...]
916
- // ^^^^^^^^^^^^^
917
- // oldCh: [..., oldStartVnode , ... , oldEndVnode , ...]
918
- // ^^^^^^^^^^^
919
- //
920
- // In this situation we need to patch `newStartVnode` onto `oldEndVnode`
921
- // (which will handle updating any changed attributes, reconciling their
922
- // children etc) but we also need to move the DOM node to which
923
- // `oldEndVnode` corresponds.
690
+ // Vnode moved left
924
691
  if ((oldStartVnode.$tag$ === 'slot' || newEndVnode.$tag$ === 'slot')) {
925
692
  putBackInOriginalLocation(oldEndVnode.$elm$.parentNode, false);
926
693
  }
927
694
  patch(oldEndVnode, newStartVnode);
928
- // We've already checked above if `oldStartVnode` and `newStartVnode` are
929
- // the same node, so since we're here we know that they are not. Thus we
930
- // can move the element for `oldEndVnode` _before_ the element for
931
- // `oldStartVnode`, leaving `oldStartVnode` to be reconciled in the
932
- // future.
933
695
  parentElm.insertBefore(oldEndVnode.$elm$, oldStartVnode.$elm$);
934
696
  oldEndVnode = oldCh[--oldEndIdx];
935
697
  newStartVnode = newCh[++newStartIdx];
936
698
  }
937
699
  else {
938
- // Here we do some checks to match up old and new nodes based on the
939
- // `$key$` attribute, which is set by putting a `key="my-key"` attribute
940
- // in the JSX for a DOM element in the implementation of a Stencil
941
- // component.
942
- //
943
- // First we check to see if there are any nodes in the array of old
944
- // children which have the same key as the first node in the new
945
- // children.
700
+ // createKeyToOldIdx
946
701
  idxInOld = -1;
947
702
  {
948
703
  for (i = oldStartIdx; i <= oldEndIdx; ++i) {
@@ -953,32 +708,23 @@ const updateChildren = (parentElm, oldCh, newVNode, newCh) => {
953
708
  }
954
709
  }
955
710
  if (idxInOld >= 0) {
956
- // We found a node in the old children which matches up with the first
957
- // node in the new children! So let's deal with that
958
711
  elmToMove = oldCh[idxInOld];
959
712
  if (elmToMove.$tag$ !== newStartVnode.$tag$) {
960
- // the tag doesn't match so we'll need a new DOM element
961
713
  node = createElm(oldCh && oldCh[newStartIdx], newVNode, idxInOld);
962
714
  }
963
715
  else {
964
716
  patch(elmToMove, newStartVnode);
965
- // invalidate the matching old node so that we won't try to update it
966
- // again later on
967
717
  oldCh[idxInOld] = undefined;
968
718
  node = elmToMove.$elm$;
969
719
  }
970
720
  newStartVnode = newCh[++newStartIdx];
971
721
  }
972
722
  else {
973
- // We either didn't find an element in the old children that matches
974
- // the key of the first new child OR the build is not using `key`
975
- // attributes at all. In either case we need to create a new element
976
- // for the new node.
723
+ // new element
977
724
  node = createElm(oldCh && oldCh[newStartIdx], newVNode, newStartIdx);
978
725
  newStartVnode = newCh[++newStartIdx];
979
726
  }
980
727
  if (node) {
981
- // if we created a new node then handle inserting it to the DOM
982
728
  {
983
729
  parentReferenceNode(oldStartVnode.$elm$).insertBefore(node, referenceNode(oldStartVnode.$elm$));
984
730
  }
@@ -986,44 +732,21 @@ const updateChildren = (parentElm, oldCh, newVNode, newCh) => {
986
732
  }
987
733
  }
988
734
  if (oldStartIdx > oldEndIdx) {
989
- // we have some more new nodes to add which don't match up with old nodes
990
735
  addVnodes(parentElm, newCh[newEndIdx + 1] == null ? null : newCh[newEndIdx + 1].$elm$, newVNode, newCh, newStartIdx, newEndIdx);
991
736
  }
992
737
  else if (newStartIdx > newEndIdx) {
993
- // there are nodes in the `oldCh` array which no longer correspond to nodes
994
- // in the new array, so lets remove them (which entails cleaning up the
995
- // relevant DOM nodes)
996
738
  removeVnodes(oldCh, oldStartIdx, oldEndIdx);
997
739
  }
998
740
  };
999
- /**
1000
- * Compare two VNodes to determine if they are the same
1001
- *
1002
- * **NB**: This function is an equality _heuristic_ based on the available
1003
- * information set on the two VNodes and can be misleading under certain
1004
- * circumstances. In particular, if the two nodes do not have `key` attrs
1005
- * (available under `$key$` on VNodes) then the function falls back on merely
1006
- * checking that they have the same tag.
1007
- *
1008
- * So, in other words, if `key` attrs are not set on VNodes which may be
1009
- * changing order within a `children` array or something along those lines then
1010
- * we could obtain a false negative and then have to do needless re-rendering
1011
- * (i.e. we'd say two VNodes aren't equal when in fact they should be).
1012
- *
1013
- * @param leftVNode the first VNode to check
1014
- * @param rightVNode the second VNode to check
1015
- * @returns whether they're equal or not
1016
- */
1017
- const isSameVnode = (leftVNode, rightVNode) => {
741
+ const isSameVnode = (vnode1, vnode2) => {
1018
742
  // compare if two vnode to see if they're "technically" the same
1019
743
  // need to have the same element tag, and same key to be the same
1020
- if (leftVNode.$tag$ === rightVNode.$tag$) {
1021
- if (leftVNode.$tag$ === 'slot') {
1022
- return leftVNode.$name$ === rightVNode.$name$;
744
+ if (vnode1.$tag$ === vnode2.$tag$) {
745
+ if (vnode1.$tag$ === 'slot') {
746
+ return vnode1.$name$ === vnode2.$name$;
1023
747
  }
1024
- // this will be set if components in the build have `key` attrs set on them
1025
748
  {
1026
- return leftVNode.$key$ === rightVNode.$key$;
749
+ return vnode1.$key$ === vnode2.$key$;
1027
750
  }
1028
751
  }
1029
752
  return false;
@@ -1036,14 +759,6 @@ const referenceNode = (node) => {
1036
759
  return (node && node['s-ol']) || node;
1037
760
  };
1038
761
  const parentReferenceNode = (node) => (node['s-ol'] ? node['s-ol'] : node).parentNode;
1039
- /**
1040
- * Handle reconciling an outdated VNode with a new one which corresponds to
1041
- * it. This function handles flushing updates to the DOM and reconciling the
1042
- * children of the two nodes (if any).
1043
- *
1044
- * @param oldVNode an old VNode whose DOM element and children we want to update
1045
- * @param newVNode a new VNode representing an updated version of the old one
1046
- */
1047
762
  const patch = (oldVNode, newVNode) => {
1048
763
  const elm = (newVNode.$elm$ = oldVNode.$elm$);
1049
764
  const oldChildren = oldVNode.$children$;
@@ -1057,6 +772,7 @@ const patch = (oldVNode, newVNode) => {
1057
772
  // only add this to the when the compiler sees we're using an svg somewhere
1058
773
  isSvgMode = tag === 'svg' ? true : tag === 'foreignObject' ? false : isSvgMode;
1059
774
  }
775
+ // element node
1060
776
  {
1061
777
  if (tag === 'slot')
1062
778
  ;
@@ -1069,7 +785,6 @@ const patch = (oldVNode, newVNode) => {
1069
785
  }
1070
786
  if (oldChildren !== null && newChildren !== null) {
1071
787
  // looks like there's child vnodes for both the old and new vnodes
1072
- // so we need to call `updateChildren` to reconcile them
1073
788
  updateChildren(elm, oldChildren, newVNode, newChildren);
1074
789
  }
1075
790
  else if (newChildren !== null) {
@@ -1110,7 +825,7 @@ const updateFallbackSlotVisibility = (elm) => {
1110
825
  let nodeType;
1111
826
  for (i = 0, ilen = childNodes.length; i < ilen; i++) {
1112
827
  childNode = childNodes[i];
1113
- if (childNode.nodeType === 1 /* NODE_TYPE.ElementNode */) {
828
+ if (childNode.nodeType === 1 /* ElementNode */) {
1114
829
  if (childNode['s-sr']) {
1115
830
  // this is a slot fallback node
1116
831
  // get the slot name for this slot reference node
@@ -1122,7 +837,7 @@ const updateFallbackSlotVisibility = (elm) => {
1122
837
  nodeType = childNodes[j].nodeType;
1123
838
  if (childNodes[j]['s-hn'] !== childNode['s-hn'] || slotNameAttr !== '') {
1124
839
  // this sibling node is from a different component OR is a named fallback slot node
1125
- if (nodeType === 1 /* NODE_TYPE.ElementNode */ && slotNameAttr === childNodes[j].getAttribute('slot')) {
840
+ if (nodeType === 1 /* ElementNode */ && slotNameAttr === childNodes[j].getAttribute('slot')) {
1126
841
  childNode.hidden = true;
1127
842
  break;
1128
843
  }
@@ -1131,8 +846,8 @@ const updateFallbackSlotVisibility = (elm) => {
1131
846
  // this is a default fallback slot node
1132
847
  // any element or text node (with content)
1133
848
  // should hide the default fallback slot node
1134
- if (nodeType === 1 /* NODE_TYPE.ElementNode */ ||
1135
- (nodeType === 3 /* NODE_TYPE.TextNode */ && childNodes[j].textContent.trim() !== '')) {
849
+ if (nodeType === 1 /* ElementNode */ ||
850
+ (nodeType === 3 /* TextNode */ && childNodes[j].textContent.trim() !== '')) {
1136
851
  childNode.hidden = true;
1137
852
  break;
1138
853
  }
@@ -1210,13 +925,13 @@ const relocateSlotContent = (elm) => {
1210
925
  }
1211
926
  }
1212
927
  }
1213
- if (childNode.nodeType === 1 /* NODE_TYPE.ElementNode */) {
928
+ if (childNode.nodeType === 1 /* ElementNode */) {
1214
929
  relocateSlotContent(childNode);
1215
930
  }
1216
931
  }
1217
932
  };
1218
933
  const isNodeLocatedInSlot = (nodeToRelocate, slotNameAttr) => {
1219
- if (nodeToRelocate.nodeType === 1 /* NODE_TYPE.ElementNode */) {
934
+ if (nodeToRelocate.nodeType === 1 /* ElementNode */) {
1220
935
  if (nodeToRelocate.getAttribute('slot') === null && slotNameAttr === '') {
1221
936
  return true;
1222
937
  }
@@ -1236,18 +951,6 @@ const callNodeRefs = (vNode) => {
1236
951
  vNode.$children$ && vNode.$children$.map(callNodeRefs);
1237
952
  }
1238
953
  };
1239
- /**
1240
- * The main entry point for Stencil's virtual DOM-based rendering engine
1241
- *
1242
- * Given a {@link d.HostRef} container and some virtual DOM nodes, this
1243
- * function will handle creating a virtual DOM tree with a single root, patching
1244
- * the current virtual DOM tree onto an old one (if any), dealing with slot
1245
- * relocation, and reflecting attributes.
1246
- *
1247
- * @param hostRef data needed to root and render the virtual DOM tree, such as
1248
- * the DOM node into which it should be rendered.
1249
- * @param renderFnResults the virtual DOM nodes to be rendered
1250
- */
1251
954
  const renderVdom = (hostRef, renderFnResults) => {
1252
955
  const hostElm = hostRef.$hostElement$;
1253
956
  const cmpMeta = hostRef.$cmpMeta$;
@@ -1259,12 +962,12 @@ const renderVdom = (hostRef, renderFnResults) => {
1259
962
  cmpMeta.$attrsToReflect$.map(([propName, attribute]) => (rootVnode.$attrs$[attribute] = hostElm[propName]));
1260
963
  }
1261
964
  rootVnode.$tag$ = null;
1262
- rootVnode.$flags$ |= 4 /* VNODE_FLAGS.isHost */;
965
+ rootVnode.$flags$ |= 4 /* isHost */;
1263
966
  hostRef.$vnode$ = rootVnode;
1264
967
  rootVnode.$elm$ = oldVNode.$elm$ = (hostElm);
1265
968
  {
1266
969
  contentRef = hostElm['s-cr'];
1267
- useNativeShadowDom = (cmpMeta.$flags$ & 1 /* CMP_FLAGS.shadowDomEncapsulation */) !== 0;
970
+ useNativeShadowDom = (cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */) !== 0;
1268
971
  // always reset
1269
972
  checkSlotFallbackVisibility = false;
1270
973
  }
@@ -1273,7 +976,7 @@ const renderVdom = (hostRef, renderFnResults) => {
1273
976
  {
1274
977
  // while we're moving nodes around existing nodes, temporarily disable
1275
978
  // the disconnectCallback from working
1276
- plt.$flags$ |= 1 /* PLATFORM_FLAGS.isTmpDisconnected */;
979
+ plt.$flags$ |= 1 /* isTmpDisconnected */;
1277
980
  if (checkSlotRelocate) {
1278
981
  relocateSlotContent(rootVnode.$elm$);
1279
982
  let relocateData;
@@ -1331,7 +1034,7 @@ const renderVdom = (hostRef, renderFnResults) => {
1331
1034
  }
1332
1035
  else {
1333
1036
  // this node doesn't have a slot home to go to, so let's hide it
1334
- if (nodeToRelocate.nodeType === 1 /* NODE_TYPE.ElementNode */) {
1037
+ if (nodeToRelocate.nodeType === 1 /* ElementNode */) {
1335
1038
  nodeToRelocate.hidden = true;
1336
1039
  }
1337
1040
  }
@@ -1342,11 +1045,37 @@ const renderVdom = (hostRef, renderFnResults) => {
1342
1045
  }
1343
1046
  // done moving nodes around
1344
1047
  // allow the disconnect callback to work again
1345
- plt.$flags$ &= ~1 /* PLATFORM_FLAGS.isTmpDisconnected */;
1048
+ plt.$flags$ &= ~1 /* isTmpDisconnected */;
1346
1049
  // always reset
1347
1050
  relocateNodes.length = 0;
1348
1051
  }
1349
1052
  };
1053
+ const getElement = (ref) => (getHostRef(ref).$hostElement$ );
1054
+ const createEvent = (ref, name, flags) => {
1055
+ const elm = getElement(ref);
1056
+ return {
1057
+ emit: (detail) => {
1058
+ return emitEvent(elm, name, {
1059
+ bubbles: !!(flags & 4 /* Bubbles */),
1060
+ composed: !!(flags & 2 /* Composed */),
1061
+ cancelable: !!(flags & 1 /* Cancellable */),
1062
+ detail,
1063
+ });
1064
+ },
1065
+ };
1066
+ };
1067
+ /**
1068
+ * Helper function to create & dispatch a custom Event on a provided target
1069
+ * @param elm the target of the Event
1070
+ * @param name the name to give the custom Event
1071
+ * @param opts options for configuring a custom Event
1072
+ * @returns the custom Event
1073
+ */
1074
+ const emitEvent = (elm, name, opts) => {
1075
+ const ev = plt.ce(name, opts);
1076
+ elm.dispatchEvent(ev);
1077
+ return ev;
1078
+ };
1350
1079
  const attachToAncestor = (hostRef, ancestorComponent) => {
1351
1080
  if (ancestorComponent && !hostRef.$onRenderResolve$ && ancestorComponent['s-p']) {
1352
1081
  ancestorComponent['s-p'].push(new Promise((r) => (hostRef.$onRenderResolve$ = r)));
@@ -1354,10 +1083,10 @@ const attachToAncestor = (hostRef, ancestorComponent) => {
1354
1083
  };
1355
1084
  const scheduleUpdate = (hostRef, isInitialLoad) => {
1356
1085
  {
1357
- hostRef.$flags$ |= 16 /* HOST_FLAGS.isQueuedForUpdate */;
1086
+ hostRef.$flags$ |= 16 /* isQueuedForUpdate */;
1358
1087
  }
1359
- if (hostRef.$flags$ & 4 /* HOST_FLAGS.isWaitingForChildren */) {
1360
- hostRef.$flags$ |= 512 /* HOST_FLAGS.needsRerender */;
1088
+ if (hostRef.$flags$ & 4 /* isWaitingForChildren */) {
1089
+ hostRef.$flags$ |= 512 /* needsRerender */;
1361
1090
  return;
1362
1091
  }
1363
1092
  attachToAncestor(hostRef, hostRef.$ancestorComponent$);
@@ -1373,7 +1102,7 @@ const dispatchHooks = (hostRef, isInitialLoad) => {
1373
1102
  let promise;
1374
1103
  if (isInitialLoad) {
1375
1104
  {
1376
- hostRef.$flags$ |= 256 /* HOST_FLAGS.isListenReady */;
1105
+ hostRef.$flags$ |= 256 /* isListenReady */;
1377
1106
  if (hostRef.$queuedListeners$) {
1378
1107
  hostRef.$queuedListeners$.map(([methodName, event]) => safeCall(instance, methodName, event));
1379
1108
  hostRef.$queuedListeners$ = null;
@@ -1402,6 +1131,9 @@ const updateComponent = async (hostRef, instance, isInitialLoad) => {
1402
1131
  {
1403
1132
  callRender(hostRef, instance);
1404
1133
  }
1134
+ if (plt.$cssShim$) {
1135
+ plt.$cssShim$.updateHost(elm);
1136
+ }
1405
1137
  if (rc) {
1406
1138
  // ok, so turns out there are some child host elements
1407
1139
  // waiting on this parent element to load
@@ -1419,7 +1151,7 @@ const updateComponent = async (hostRef, instance, isInitialLoad) => {
1419
1151
  }
1420
1152
  else {
1421
1153
  Promise.all(childrenPromises).then(postUpdate);
1422
- hostRef.$flags$ |= 4 /* HOST_FLAGS.isWaitingForChildren */;
1154
+ hostRef.$flags$ |= 4 /* isWaitingForChildren */;
1423
1155
  childrenPromises.length = 0;
1424
1156
  }
1425
1157
  }
@@ -1429,10 +1161,10 @@ const callRender = (hostRef, instance, elm) => {
1429
1161
  renderingRef = instance;
1430
1162
  instance = instance.render && instance.render();
1431
1163
  {
1432
- hostRef.$flags$ &= ~16 /* HOST_FLAGS.isQueuedForUpdate */;
1164
+ hostRef.$flags$ &= ~16 /* isQueuedForUpdate */;
1433
1165
  }
1434
1166
  {
1435
- hostRef.$flags$ |= 2 /* HOST_FLAGS.hasRendered */;
1167
+ hostRef.$flags$ |= 2 /* hasRendered */;
1436
1168
  }
1437
1169
  {
1438
1170
  {
@@ -1461,8 +1193,8 @@ const postUpdateComponent = (hostRef) => {
1461
1193
  {
1462
1194
  safeCall(instance, 'componentDidRender');
1463
1195
  }
1464
- if (!(hostRef.$flags$ & 64 /* HOST_FLAGS.hasLoadedComponent */)) {
1465
- hostRef.$flags$ |= 64 /* HOST_FLAGS.hasLoadedComponent */;
1196
+ if (!(hostRef.$flags$ & 64 /* hasLoadedComponent */)) {
1197
+ hostRef.$flags$ |= 64 /* hasLoadedComponent */;
1466
1198
  {
1467
1199
  // DOM WRITE!
1468
1200
  addHydratedFlag(elm);
@@ -1491,10 +1223,10 @@ const postUpdateComponent = (hostRef) => {
1491
1223
  hostRef.$onRenderResolve$();
1492
1224
  hostRef.$onRenderResolve$ = undefined;
1493
1225
  }
1494
- if (hostRef.$flags$ & 512 /* HOST_FLAGS.needsRerender */) {
1226
+ if (hostRef.$flags$ & 512 /* needsRerender */) {
1495
1227
  nextTick(() => scheduleUpdate(hostRef, false));
1496
1228
  }
1497
- hostRef.$flags$ &= ~(4 /* HOST_FLAGS.isWaitingForChildren */ | 512 /* HOST_FLAGS.needsRerender */);
1229
+ hostRef.$flags$ &= ~(4 /* isWaitingForChildren */ | 512 /* needsRerender */);
1498
1230
  }
1499
1231
  // ( •_•)
1500
1232
  // ( •_•)>⌐■-■
@@ -1505,7 +1237,7 @@ const forceUpdate = (ref) => {
1505
1237
  const hostRef = getHostRef(ref);
1506
1238
  const isConnected = hostRef.$hostElement$.isConnected;
1507
1239
  if (isConnected &&
1508
- (hostRef.$flags$ & (2 /* HOST_FLAGS.hasRendered */ | 16 /* HOST_FLAGS.isQueuedForUpdate */)) === 2 /* HOST_FLAGS.hasRendered */) {
1240
+ (hostRef.$flags$ & (2 /* hasRendered */ | 16 /* isQueuedForUpdate */)) === 2 /* hasRendered */) {
1509
1241
  scheduleUpdate(hostRef, false);
1510
1242
  }
1511
1243
  // Returns "true" when the forced update was successfully scheduled
@@ -1536,6 +1268,53 @@ const then = (promise, thenFn) => {
1536
1268
  };
1537
1269
  const addHydratedFlag = (elm) => elm.classList.add('hydrated')
1538
1270
  ;
1271
+ /**
1272
+ * Parse a new property value for a given property type.
1273
+ *
1274
+ * While the prop value can reasonably be expected to be of `any` type as far as TypeScript's type checker is concerned,
1275
+ * it is not safe to assume that the string returned by evaluating `typeof propValue` matches:
1276
+ * 1. `any`, the type given to `propValue` in the function signature
1277
+ * 2. the type stored from `propType`.
1278
+ *
1279
+ * This function provides the capability to parse/coerce a property's value to potentially any other JavaScript type.
1280
+ *
1281
+ * Property values represented in TSX preserve their type information. In the example below, the number 0 is passed to
1282
+ * a component. This `propValue` will preserve its type information (`typeof propValue === 'number'`). Note that is
1283
+ * based on the type of the value being passed in, not the type declared of the class member decorated with `@Prop`.
1284
+ * ```tsx
1285
+ * <my-cmp prop-val={0}></my-cmp>
1286
+ * ```
1287
+ *
1288
+ * HTML prop values on the other hand, will always a string
1289
+ *
1290
+ * @param propValue the new value to coerce to some type
1291
+ * @param propType the type of the prop, expressed as a binary number
1292
+ * @returns the parsed/coerced value
1293
+ */
1294
+ const parsePropertyValue = (propValue, propType) => {
1295
+ // ensure this value is of the correct prop type
1296
+ if (propValue != null && !isComplexType(propValue)) {
1297
+ if (propType & 4 /* Boolean */) {
1298
+ // per the HTML spec, any string value means it is a boolean true value
1299
+ // but we'll cheat here and say that the string "false" is the boolean false
1300
+ return propValue === 'false' ? false : propValue === '' || !!propValue;
1301
+ }
1302
+ if (propType & 2 /* Number */) {
1303
+ // force it to be a number
1304
+ return parseFloat(propValue);
1305
+ }
1306
+ if (propType & 1 /* String */) {
1307
+ // could have been passed as a number or boolean
1308
+ // but we still want it as a string
1309
+ return String(propValue);
1310
+ }
1311
+ // redundant return here for better minification
1312
+ return propValue;
1313
+ }
1314
+ // not sure exactly what type we want
1315
+ // so no need to change to a different type
1316
+ return propValue;
1317
+ };
1539
1318
  const getValue = (ref, propName) => getHostRef(ref).$instanceValues$.get(propName);
1540
1319
  const setValue = (ref, propName, newVal, cmpMeta) => {
1541
1320
  // check our new property value against our internal value
@@ -1548,13 +1327,13 @@ const setValue = (ref, propName, newVal, cmpMeta) => {
1548
1327
  // explicitly check for NaN on both sides, as `NaN === NaN` is always false
1549
1328
  const areBothNaN = Number.isNaN(oldVal) && Number.isNaN(newVal);
1550
1329
  const didValueChange = newVal !== oldVal && !areBothNaN;
1551
- if ((!(flags & 8 /* HOST_FLAGS.isConstructingInstance */) || oldVal === undefined) && didValueChange) {
1330
+ if ((!(flags & 8 /* isConstructingInstance */) || oldVal === undefined) && didValueChange) {
1552
1331
  // gadzooks! the property's value has changed!!
1553
1332
  // set our new value!
1554
1333
  hostRef.$instanceValues$.set(propName, newVal);
1555
1334
  if (instance) {
1556
1335
  // get an array of method names of watch functions to call
1557
- if (cmpMeta.$watchers$ && flags & 128 /* HOST_FLAGS.isWatchReady */) {
1336
+ if (cmpMeta.$watchers$ && flags & 128 /* isWatchReady */) {
1558
1337
  const watchMethods = cmpMeta.$watchers$[propName];
1559
1338
  if (watchMethods) {
1560
1339
  // this instance is watching for when this property changed
@@ -1569,7 +1348,7 @@ const setValue = (ref, propName, newVal, cmpMeta) => {
1569
1348
  });
1570
1349
  }
1571
1350
  }
1572
- if ((flags & (2 /* HOST_FLAGS.hasRendered */ | 16 /* HOST_FLAGS.isQueuedForUpdate */)) === 2 /* HOST_FLAGS.hasRendered */) {
1351
+ if ((flags & (2 /* hasRendered */ | 16 /* isQueuedForUpdate */)) === 2 /* hasRendered */) {
1573
1352
  // looks like this value actually changed, so we've got work to do!
1574
1353
  // but only if we've already rendered, otherwise just chill out
1575
1354
  // queue that we need to do an update, but don't worry about queuing
@@ -1579,16 +1358,6 @@ const setValue = (ref, propName, newVal, cmpMeta) => {
1579
1358
  }
1580
1359
  }
1581
1360
  };
1582
- /**
1583
- * Attach a series of runtime constructs to a compiled Stencil component
1584
- * constructor, including getters and setters for the `@Prop` and `@State`
1585
- * decorators, callbacks for when attributes change, and so on.
1586
- *
1587
- * @param Cstr the constructor for a component that we need to process
1588
- * @param cmpMeta metadata collected previously about the component
1589
- * @param flags a number used to store a series of bit flags
1590
- * @returns a reference to the same constructor passed in (but now mutated)
1591
- */
1592
1361
  const proxyComponent = (Cstr, cmpMeta, flags) => {
1593
1362
  if (cmpMeta.$members$) {
1594
1363
  if (Cstr.watchers) {
@@ -1598,8 +1367,8 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
1598
1367
  const members = Object.entries(cmpMeta.$members$);
1599
1368
  const prototype = Cstr.prototype;
1600
1369
  members.map(([memberName, [memberFlags]]) => {
1601
- if ((memberFlags & 31 /* MEMBER_FLAGS.Prop */ ||
1602
- ((flags & 2 /* PROXY_FLAGS.proxyState */) && memberFlags & 32 /* MEMBER_FLAGS.State */))) {
1370
+ if ((memberFlags & 31 /* Prop */ ||
1371
+ ((flags & 2 /* proxyState */) && memberFlags & 32 /* State */))) {
1603
1372
  // proxyComponent - prop
1604
1373
  Object.defineProperty(prototype, memberName, {
1605
1374
  get() {
@@ -1614,8 +1383,8 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
1614
1383
  enumerable: true,
1615
1384
  });
1616
1385
  }
1617
- else if (flags & 1 /* PROXY_FLAGS.isElementConstructor */ &&
1618
- memberFlags & 64 /* MEMBER_FLAGS.Method */) {
1386
+ else if (flags & 1 /* isElementConstructor */ &&
1387
+ memberFlags & 64 /* Method */) {
1619
1388
  // proxyComponent - method
1620
1389
  Object.defineProperty(prototype, memberName, {
1621
1390
  value(...args) {
@@ -1625,7 +1394,7 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
1625
1394
  });
1626
1395
  }
1627
1396
  });
1628
- if ((flags & 1 /* PROXY_FLAGS.isElementConstructor */)) {
1397
+ if ((flags & 1 /* isElementConstructor */)) {
1629
1398
  const attrNameToPropName = new Map();
1630
1399
  prototype.attributeChangedCallback = function (attrName, _oldValue, newValue) {
1631
1400
  plt.jmp(() => {
@@ -1681,11 +1450,11 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
1681
1450
  // create an array of attributes to observe
1682
1451
  // and also create a map of html attribute name to js property name
1683
1452
  Cstr.observedAttributes = members
1684
- .filter(([_, m]) => m[0] & 15 /* MEMBER_FLAGS.HasAttribute */) // filter to only keep props that should match attributes
1453
+ .filter(([_, m]) => m[0] & 15 /* HasAttribute */) // filter to only keep props that should match attributes
1685
1454
  .map(([propName, m]) => {
1686
1455
  const attrName = m[1] || propName;
1687
1456
  attrNameToPropName.set(attrName, propName);
1688
- if (m[0] & 512 /* MEMBER_FLAGS.ReflectAttr */) {
1457
+ if (m[0] & 512 /* ReflectAttr */) {
1689
1458
  cmpMeta.$attrsToReflect$.push([propName, attrName]);
1690
1459
  }
1691
1460
  return attrName;
@@ -1696,10 +1465,10 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
1696
1465
  };
1697
1466
  const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId, Cstr) => {
1698
1467
  // initializeComponent
1699
- if ((hostRef.$flags$ & 32 /* HOST_FLAGS.hasInitializedComponent */) === 0) {
1468
+ if ((hostRef.$flags$ & 32 /* hasInitializedComponent */) === 0) {
1700
1469
  {
1701
1470
  // we haven't initialized this element yet
1702
- hostRef.$flags$ |= 32 /* HOST_FLAGS.hasInitializedComponent */;
1471
+ hostRef.$flags$ |= 32 /* hasInitializedComponent */;
1703
1472
  // lazy loaded components
1704
1473
  // request the component's implementation to be
1705
1474
  // wired up with the host element
@@ -1717,7 +1486,7 @@ const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId, Cstr) =>
1717
1486
  {
1718
1487
  cmpMeta.$watchers$ = Cstr.watchers;
1719
1488
  }
1720
- proxyComponent(Cstr, cmpMeta, 2 /* PROXY_FLAGS.proxyState */);
1489
+ proxyComponent(Cstr, cmpMeta, 2 /* proxyState */);
1721
1490
  Cstr.isProxied = true;
1722
1491
  }
1723
1492
  const endNewInstance = createTime('createInstance', cmpMeta.$tagName$);
@@ -1725,7 +1494,7 @@ const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId, Cstr) =>
1725
1494
  // but let's keep track of when we start and stop
1726
1495
  // so that the getters/setters don't incorrectly step on data
1727
1496
  {
1728
- hostRef.$flags$ |= 8 /* HOST_FLAGS.isConstructingInstance */;
1497
+ hostRef.$flags$ |= 8 /* isConstructingInstance */;
1729
1498
  }
1730
1499
  // construct the lazy-loaded component implementation
1731
1500
  // passing the hostRef is very important during
@@ -1738,10 +1507,10 @@ const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId, Cstr) =>
1738
1507
  consoleError(e);
1739
1508
  }
1740
1509
  {
1741
- hostRef.$flags$ &= ~8 /* HOST_FLAGS.isConstructingInstance */;
1510
+ hostRef.$flags$ &= ~8 /* isConstructingInstance */;
1742
1511
  }
1743
1512
  {
1744
- hostRef.$flags$ |= 128 /* HOST_FLAGS.isWatchReady */;
1513
+ hostRef.$flags$ |= 128 /* isWatchReady */;
1745
1514
  }
1746
1515
  endNewInstance();
1747
1516
  fireConnectedCallback(hostRef.$lazyInstance$);
@@ -1752,7 +1521,7 @@ const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId, Cstr) =>
1752
1521
  const scopeId = getScopeId(cmpMeta);
1753
1522
  if (!styles.has(scopeId)) {
1754
1523
  const endRegisterStyles = createTime('registerStyles', cmpMeta.$tagName$);
1755
- registerStyle(scopeId, style, !!(cmpMeta.$flags$ & 1 /* CMP_FLAGS.shadowDomEncapsulation */));
1524
+ registerStyle(scopeId, style, !!(cmpMeta.$flags$ & 1 /* shadowDomEncapsulation */));
1756
1525
  endRegisterStyles();
1757
1526
  }
1758
1527
  }
@@ -1779,20 +1548,19 @@ const fireConnectedCallback = (instance) => {
1779
1548
  }
1780
1549
  };
1781
1550
  const connectedCallback = (elm) => {
1782
- if ((plt.$flags$ & 1 /* PLATFORM_FLAGS.isTmpDisconnected */) === 0) {
1551
+ if ((plt.$flags$ & 1 /* isTmpDisconnected */) === 0) {
1783
1552
  const hostRef = getHostRef(elm);
1784
1553
  const cmpMeta = hostRef.$cmpMeta$;
1785
1554
  const endConnected = createTime('connectedCallback', cmpMeta.$tagName$);
1786
- if (!(hostRef.$flags$ & 1 /* HOST_FLAGS.hasConnected */)) {
1555
+ if (!(hostRef.$flags$ & 1 /* hasConnected */)) {
1787
1556
  // first time this component has connected
1788
- hostRef.$flags$ |= 1 /* HOST_FLAGS.hasConnected */;
1557
+ hostRef.$flags$ |= 1 /* hasConnected */;
1789
1558
  {
1790
1559
  // initUpdate
1791
1560
  // if the slot polyfill is required we'll need to put some nodes
1792
1561
  // in here to act as original content anchors as we move nodes around
1793
1562
  // host element has been connected to the DOM
1794
- if ((// TODO(STENCIL-662): Remove code related to deprecated shadowDomShim field
1795
- cmpMeta.$flags$ & (4 /* CMP_FLAGS.hasSlotRelocation */ | 8 /* CMP_FLAGS.needsShadowDomShim */))) {
1563
+ if ((cmpMeta.$flags$ & (4 /* hasSlotRelocation */ | 8 /* needsShadowDomShim */))) {
1796
1564
  setContentReference(elm);
1797
1565
  }
1798
1566
  }
@@ -1815,7 +1583,7 @@ const connectedCallback = (elm) => {
1815
1583
  // https://developers.google.com/web/fundamentals/web-components/best-practices#lazy-properties
1816
1584
  if (cmpMeta.$members$) {
1817
1585
  Object.entries(cmpMeta.$members$).map(([memberName, [memberFlags]]) => {
1818
- if (memberFlags & 31 /* MEMBER_FLAGS.Prop */ && elm.hasOwnProperty(memberName)) {
1586
+ if (memberFlags & 31 /* Prop */ && elm.hasOwnProperty(memberName)) {
1819
1587
  const value = elm[memberName];
1820
1588
  delete elm[memberName];
1821
1589
  elm[memberName] = value;
@@ -1853,7 +1621,7 @@ const setContentReference = (elm) => {
1853
1621
  elm.insertBefore(contentRefElm, elm.firstChild);
1854
1622
  };
1855
1623
  const disconnectedCallback = (elm) => {
1856
- if ((plt.$flags$ & 1 /* PLATFORM_FLAGS.isTmpDisconnected */) === 0) {
1624
+ if ((plt.$flags$ & 1 /* isTmpDisconnected */) === 0) {
1857
1625
  const hostRef = getHostRef(elm);
1858
1626
  const instance = hostRef.$lazyInstance$ ;
1859
1627
  {
@@ -1862,13 +1630,16 @@ const disconnectedCallback = (elm) => {
1862
1630
  hostRef.$rmListeners$ = undefined;
1863
1631
  }
1864
1632
  }
1633
+ // clear CSS var-shim tracking
1634
+ if (plt.$cssShim$) {
1635
+ plt.$cssShim$.removeHost(elm);
1636
+ }
1865
1637
  {
1866
1638
  safeCall(instance, 'disconnectedCallback');
1867
1639
  }
1868
1640
  }
1869
1641
  };
1870
1642
  const bootstrapLazy = (lazyBundles, options = {}) => {
1871
- var _a;
1872
1643
  const endBootstrap = createTime();
1873
1644
  const cmpTags = [];
1874
1645
  const exclude = options.exclude || [];
@@ -1933,18 +1704,13 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
1933
1704
  cmpMeta.$lazyBundleId$ = lazyBundle[0];
1934
1705
  if (!exclude.includes(tagName) && !customElements.get(tagName)) {
1935
1706
  cmpTags.push(tagName);
1936
- customElements.define(tagName, proxyComponent(HostElement, cmpMeta, 1 /* PROXY_FLAGS.isElementConstructor */));
1707
+ customElements.define(tagName, proxyComponent(HostElement, cmpMeta, 1 /* isElementConstructor */));
1937
1708
  }
1938
1709
  });
1939
1710
  });
1940
1711
  {
1941
1712
  visibilityStyle.innerHTML = cmpTags + HYDRATED_CSS;
1942
1713
  visibilityStyle.setAttribute('data-styles', '');
1943
- // Apply CSP nonce to the style tag if it exists
1944
- const nonce = (_a = plt.$nonce$) !== null && _a !== void 0 ? _a : queryNonceMetaTagContent(doc);
1945
- if (nonce != null) {
1946
- visibilityStyle.setAttribute('nonce', nonce);
1947
- }
1948
1714
  head.insertBefore(visibilityStyle, metaCharset ? metaCharset.nextSibling : head.firstChild);
1949
1715
  }
1950
1716
  // Process deferred connectedCallbacks now all components have been registered
@@ -1960,48 +1726,7 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
1960
1726
  // Fallback appLoad event
1961
1727
  endBootstrap();
1962
1728
  };
1963
- const addHostEventListeners = (elm, hostRef, listeners, attachParentListeners) => {
1964
- if (listeners) {
1965
- listeners.map(([flags, name, method]) => {
1966
- const target = getHostListenerTarget(elm, flags) ;
1967
- const handler = hostListenerProxy(hostRef, method);
1968
- const opts = hostListenerOpts(flags);
1969
- plt.ael(target, name, handler, opts);
1970
- (hostRef.$rmListeners$ = hostRef.$rmListeners$ || []).push(() => plt.rel(target, name, handler, opts));
1971
- });
1972
- }
1973
- };
1974
- const hostListenerProxy = (hostRef, methodName) => (ev) => {
1975
- try {
1976
- {
1977
- if (hostRef.$flags$ & 256 /* HOST_FLAGS.isListenReady */) {
1978
- // instance is ready, let's call it's member method for this event
1979
- hostRef.$lazyInstance$[methodName](ev);
1980
- }
1981
- else {
1982
- (hostRef.$queuedListeners$ = hostRef.$queuedListeners$ || []).push([methodName, ev]);
1983
- }
1984
- }
1985
- }
1986
- catch (e) {
1987
- consoleError(e);
1988
- }
1989
- };
1990
- const getHostListenerTarget = (elm, flags) => {
1991
- if (flags & 4 /* LISTENER_FLAGS.TargetDocument */)
1992
- return doc;
1993
- return elm;
1994
- };
1995
- // prettier-ignore
1996
- const hostListenerOpts = (flags) => (flags & 2 /* LISTENER_FLAGS.Capture */) !== 0;
1997
- /**
1998
- * Assigns the given value to the nonce property on the runtime platform object.
1999
- * During runtime, this value is used to set the nonce attribute on all dynamically created script and style tags.
2000
- * @param nonce The value to be assigned to the platform nonce property.
2001
- * @returns void
2002
- */
2003
- const setNonce = (nonce) => (plt.$nonce$ = nonce);
2004
- const hostRefs = /*@__PURE__*/ new WeakMap();
1729
+ const hostRefs = new WeakMap();
2005
1730
  const getHostRef = (ref) => hostRefs.get(ref);
2006
1731
  const registerInstance = (lazyInstance, hostRef) => hostRefs.set((hostRef.$lazyInstance$ = lazyInstance), hostRef);
2007
1732
  const registerHost = (elm, cmpMeta) => {
@@ -2067,35 +1792,14 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
2067
1792
  return importedModule[exportName];
2068
1793
  }, consoleError);
2069
1794
  };
2070
- const styles = /*@__PURE__*/ new Map();
2071
- const win = typeof window !== 'undefined' ? window : {};
2072
- const doc = win.document || { head: {} };
2073
- const plt = {
2074
- $flags$: 0,
2075
- $resourcesUrl$: '',
2076
- jmp: (h) => h(),
2077
- raf: (h) => requestAnimationFrame(h),
2078
- ael: (el, eventName, listener, opts) => el.addEventListener(eventName, listener, opts),
2079
- rel: (el, eventName, listener, opts) => el.removeEventListener(eventName, listener, opts),
2080
- ce: (eventName, opts) => new CustomEvent(eventName, opts),
2081
- };
2082
- const promiseResolve = (v) => Promise.resolve(v);
2083
- const supportsConstructableStylesheets = /*@__PURE__*/ (() => {
2084
- try {
2085
- new CSSStyleSheet();
2086
- return typeof new CSSStyleSheet().replaceSync === 'function';
2087
- }
2088
- catch (e) { }
2089
- return false;
2090
- })()
2091
- ;
1795
+ const styles = new Map();
2092
1796
  const queueDomReads = [];
2093
1797
  const queueDomWrites = [];
2094
1798
  const queueTask = (queue, write) => (cb) => {
2095
1799
  queue.push(cb);
2096
1800
  if (!queuePending) {
2097
1801
  queuePending = true;
2098
- if (write && plt.$flags$ & 4 /* PLATFORM_FLAGS.queueSync */) {
1802
+ if (write && plt.$flags$ & 4 /* queueSync */) {
2099
1803
  nextTick(flush);
2100
1804
  }
2101
1805
  else {
@@ -2132,15 +1836,17 @@ const flush = () => {
2132
1836
  const nextTick = /*@__PURE__*/ (cb) => promiseResolve().then(cb);
2133
1837
  const writeTask = /*@__PURE__*/ queueTask(queueDomWrites, true);
2134
1838
 
1839
+ exports.CSS = CSS;
2135
1840
  exports.Host = Host;
1841
+ exports.NAMESPACE = NAMESPACE;
2136
1842
  exports.bootstrapLazy = bootstrapLazy;
2137
1843
  exports.createEvent = createEvent;
1844
+ exports.doc = doc;
2138
1845
  exports.forceUpdate = forceUpdate;
2139
1846
  exports.getElement = getElement;
2140
1847
  exports.getRenderingRef = getRenderingRef;
2141
1848
  exports.h = h;
1849
+ exports.plt = plt;
2142
1850
  exports.promiseResolve = promiseResolve;
2143
1851
  exports.registerInstance = registerInstance;
2144
- exports.setNonce = setNonce;
2145
-
2146
- //# sourceMappingURL=index-5f3dfe40.js.map
1852
+ exports.win = win;