@vonage/vivid 3.0.0-next.7 → 3.0.0-test.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (390) hide show
  1. package/accordion/index.js +61 -0
  2. package/accordion-item/index.js +125 -0
  3. package/badge/index.js +64 -0
  4. package/banner/index.js +212 -0
  5. package/breadcrumb/index.js +100 -0
  6. package/breadcrumb-item/index.js +55 -0
  7. package/button/index.js +761 -0
  8. package/calendar/index.js +1521 -0
  9. package/elevation/index.js +31 -0
  10. package/focus/index.js +3 -0
  11. package/icon/index.js +34 -0
  12. package/{src/index.ts → index.d.ts} +2 -2
  13. package/index.js +32 -0
  14. package/layout/index.js +53 -0
  15. package/lib/accordion/accordion.d.ts +9 -0
  16. package/lib/accordion/accordion.template.d.ts +4 -0
  17. package/lib/accordion/index.d.ts +2 -0
  18. package/lib/accordion-item/accordion-item.d.ts +13 -0
  19. package/lib/accordion-item/accordion-item.template.d.ts +4 -0
  20. package/lib/accordion-item/index.d.ts +3 -0
  21. package/lib/badge/badge.d.ts +17 -0
  22. package/lib/badge/badge.template.d.ts +4 -0
  23. package/lib/badge/index.d.ts +3 -0
  24. package/lib/banner/banner.d.ts +20 -0
  25. package/lib/banner/banner.template.d.ts +6 -0
  26. package/lib/banner/index.d.ts +2 -0
  27. package/lib/breadcrumb/breadcrumb.d.ts +3 -0
  28. package/lib/breadcrumb/index.d.ts +2 -0
  29. package/lib/breadcrumb-item/breadcrumb-item.d.ts +5 -0
  30. package/lib/breadcrumb-item/breadcrumb-item.template.d.ts +4 -0
  31. package/lib/breadcrumb-item/index.d.ts +3 -0
  32. package/lib/button/button.d.ts +17 -0
  33. package/lib/button/button.template.d.ts +4 -0
  34. package/lib/button/index.d.ts +21 -0
  35. package/lib/calendar/calendar.d.ts +11 -0
  36. package/lib/calendar/calendar.template.d.ts +4 -0
  37. package/lib/calendar/helpers/calendar.date-functions.d.ts +2 -0
  38. package/lib/calendar/helpers/calendar.event-context.d.ts +6 -0
  39. package/lib/calendar/helpers/calendar.keyboard-interactions.d.ts +9 -0
  40. package/lib/calendar/index.d.ts +3 -0
  41. package/{src/lib/components.ts → lib/components.d.ts} +16 -16
  42. package/lib/elevation/elevation.d.ts +4 -0
  43. package/lib/elevation/elevation.template.d.ts +4 -0
  44. package/lib/elevation/index.d.ts +2 -0
  45. package/lib/enums.d.ts +45 -0
  46. package/lib/focus/focus.d.ts +3 -0
  47. package/lib/focus/focus.template.d.ts +4 -0
  48. package/lib/focus/index.d.ts +2 -0
  49. package/lib/icon/icon.d.ts +11 -0
  50. package/lib/icon/icon.placeholder.d.ts +1 -0
  51. package/lib/icon/icon.template.d.ts +4 -0
  52. package/lib/icon/index.d.ts +2 -0
  53. package/lib/layout/index.d.ts +2 -0
  54. package/lib/layout/layout.d.ts +16 -0
  55. package/lib/layout/layout.template.d.ts +4 -0
  56. package/lib/popup/index.d.ts +4 -0
  57. package/lib/popup/popup.d.ts +17 -0
  58. package/lib/popup/popup.template.d.ts +4 -0
  59. package/lib/progress/index.d.ts +2 -0
  60. package/lib/progress/progress.d.ts +9 -0
  61. package/lib/progress/progress.template.d.ts +5 -0
  62. package/lib/progress-ring/index.d.ts +2 -0
  63. package/lib/progress-ring/progress-ring.d.ts +6 -0
  64. package/lib/progress-ring/progress-ring.template.d.ts +4 -0
  65. package/lib/side-drawer/index.d.ts +2 -0
  66. package/lib/side-drawer/side-drawer.d.ts +8 -0
  67. package/lib/side-drawer/side-drawer.template.d.ts +4 -0
  68. package/lib/sidenav-item/index.d.ts +3 -0
  69. package/lib/sidenav-item/sidenav-item.d.ts +6 -0
  70. package/lib/sidenav-item/sidenav-item.template.d.ts +4 -0
  71. package/lib/text/index.d.ts +2 -0
  72. package/lib/text/text.d.ts +10 -0
  73. package/lib/text/text.template.d.ts +4 -0
  74. package/lib/text-anchor/index.d.ts +2 -0
  75. package/lib/text-anchor/text-anchor.d.ts +7 -0
  76. package/lib/text-anchor/text-anchor.template.d.ts +4 -0
  77. package/lib/tooltip/index.d.ts +3 -0
  78. package/lib/tooltip/tooltip.d.ts +8 -0
  79. package/lib/tooltip/tooltip.template.d.ts +4 -0
  80. package/package.json +13 -3
  81. package/popup/index.js +2065 -0
  82. package/progress/index.js +98 -0
  83. package/progress-ring/index.js +76 -0
  84. package/shared/_has.js +58 -0
  85. package/shared/affix.js +29 -0
  86. package/shared/anchor.js +78 -0
  87. package/shared/apply-mixins.js +22 -0
  88. package/shared/aria-global.js +156 -0
  89. package/shared/base-progress.js +65 -0
  90. package/shared/breadcrumb-item.js +25 -0
  91. package/shared/class-names.js +15 -0
  92. package/shared/design-system/index.d.ts +3 -0
  93. package/shared/es.object.assign.js +68 -0
  94. package/shared/icon.js +1393 -0
  95. package/shared/index.js +4998 -0
  96. package/shared/index2.js +21 -0
  97. package/shared/patterns/affix.d.ts +9 -0
  98. package/{src/shared/patterns/index.ts → shared/patterns/index.d.ts} +1 -1
  99. package/shared/slotted.js +119 -0
  100. package/shared/style-inject.es.js +28 -0
  101. package/shared/text-anchor.js +21 -0
  102. package/shared/text-anchor.template.js +54 -0
  103. package/shared/web.dom-collections.iterator.js +1479 -0
  104. package/shared/when.js +15 -0
  105. package/side-drawer/index.js +81 -0
  106. package/sidenav-item/index.js +38 -0
  107. package/styles/fonts/spezia.css +23 -0
  108. package/styles/themes/dark.css +205 -0
  109. package/styles/themes/light.css +205 -0
  110. package/text/index.js +45 -0
  111. package/text-anchor/index.js +19 -0
  112. package/tooltip/index.js +65 -0
  113. package/.babelrc +0 -3
  114. package/.eslintrc.json +0 -70
  115. package/.stylelintrc.json +0 -8
  116. package/CHANGELOG.json +0 -343
  117. package/CHANGELOG.md +0 -45
  118. package/jest.config.cjs +0 -20
  119. package/playwright.config.dev.ts +0 -21
  120. package/playwright.config.ts +0 -34
  121. package/project.json +0 -122
  122. package/rollup.config.prod.ts +0 -50
  123. package/setupJestTests.js +0 -17
  124. package/src/lib/accordion/README.md +0 -55
  125. package/src/lib/accordion/accordion.scss +0 -10
  126. package/src/lib/accordion/accordion.spec.ts +0 -91
  127. package/src/lib/accordion/accordion.template.ts +0 -23
  128. package/src/lib/accordion/accordion.ts +0 -49
  129. package/src/lib/accordion/index.ts +0 -14
  130. package/src/lib/accordion/ui.test.ts +0 -37
  131. package/src/lib/accordion/ui.test.ts-snapshots/snapshots-accordion-Chrome-Stable-darwin.png +0 -0
  132. package/src/lib/accordion/ui.test.ts-snapshots/snapshots-accordion-Chrome-Stable-linux.png +0 -0
  133. package/src/lib/accordion/ui.test.ts-snapshots/snapshots-accordion-Desktop-Firefox-darwin.png +0 -0
  134. package/src/lib/accordion/ui.test.ts-snapshots/snapshots-accordion-Desktop-Firefox-linux.png +0 -0
  135. package/src/lib/accordion/ui.test.ts-snapshots/snapshots-accordion-Desktop-Safari-darwin.png +0 -0
  136. package/src/lib/accordion/ui.test.ts-snapshots/snapshots-accordion-Desktop-Safari-linux.png +0 -0
  137. package/src/lib/accordion-item/README.md +0 -113
  138. package/src/lib/accordion-item/accordion-item.scss +0 -91
  139. package/src/lib/accordion-item/accordion-item.spec.ts +0 -103
  140. package/src/lib/accordion-item/accordion-item.template.ts +0 -62
  141. package/src/lib/accordion-item/accordion-item.ts +0 -67
  142. package/src/lib/accordion-item/index.ts +0 -14
  143. package/src/lib/accordion-item/partials/variables.scss +0 -1
  144. package/src/lib/accordion-item/ui.test.ts +0 -37
  145. package/src/lib/accordion-item/ui.test.ts-snapshots/snapshots-accordion-item-Chrome-Stable-darwin.png +0 -0
  146. package/src/lib/accordion-item/ui.test.ts-snapshots/snapshots-accordion-item-Chrome-Stable-linux.png +0 -0
  147. package/src/lib/accordion-item/ui.test.ts-snapshots/snapshots-accordion-item-Desktop-Firefox-darwin.png +0 -0
  148. package/src/lib/accordion-item/ui.test.ts-snapshots/snapshots-accordion-item-Desktop-Firefox-linux.png +0 -0
  149. package/src/lib/accordion-item/ui.test.ts-snapshots/snapshots-accordion-item-Desktop-Safari-darwin.png +0 -0
  150. package/src/lib/accordion-item/ui.test.ts-snapshots/snapshots-accordion-item-Desktop-Safari-linux.png +0 -0
  151. package/src/lib/badge/README.md +0 -112
  152. package/src/lib/badge/badge.scss +0 -64
  153. package/src/lib/badge/badge.spec.ts +0 -114
  154. package/src/lib/badge/badge.template.ts +0 -36
  155. package/src/lib/badge/badge.ts +0 -97
  156. package/src/lib/badge/index.ts +0 -23
  157. package/src/lib/badge/ui.test.ts +0 -28
  158. package/src/lib/badge/ui.test.ts-snapshots/snapshots-badge-Chrome-Stable-darwin.png +0 -0
  159. package/src/lib/badge/ui.test.ts-snapshots/snapshots-badge-Chrome-Stable-linux.png +0 -0
  160. package/src/lib/badge/ui.test.ts-snapshots/snapshots-badge-Desktop-Firefox-darwin.png +0 -0
  161. package/src/lib/badge/ui.test.ts-snapshots/snapshots-badge-Desktop-Firefox-linux.png +0 -0
  162. package/src/lib/badge/ui.test.ts-snapshots/snapshots-badge-Desktop-Safari-darwin.png +0 -0
  163. package/src/lib/badge/ui.test.ts-snapshots/snapshots-badge-Desktop-Safari-linux.png +0 -0
  164. package/src/lib/banner/README.md +0 -117
  165. package/src/lib/banner/banner.scss +0 -71
  166. package/src/lib/banner/banner.spec.ts +0 -355
  167. package/src/lib/banner/banner.template.ts +0 -61
  168. package/src/lib/banner/banner.ts +0 -77
  169. package/src/lib/banner/index.ts +0 -14
  170. package/src/lib/banner/ui.test.ts +0 -64
  171. package/src/lib/banner/ui.test.ts-snapshots/snapshots-banner-Chrome-Stable-darwin.png +0 -0
  172. package/src/lib/banner/ui.test.ts-snapshots/snapshots-banner-Chrome-Stable-linux.png +0 -0
  173. package/src/lib/banner/ui.test.ts-snapshots/snapshots-banner-Desktop-Firefox-darwin.png +0 -0
  174. package/src/lib/banner/ui.test.ts-snapshots/snapshots-banner-Desktop-Firefox-linux.png +0 -0
  175. package/src/lib/banner/ui.test.ts-snapshots/snapshots-banner-Desktop-Safari-darwin.png +0 -0
  176. package/src/lib/banner/ui.test.ts-snapshots/snapshots-banner-Desktop-Safari-linux.png +0 -0
  177. package/src/lib/breadcrumb/README.md +0 -25
  178. package/src/lib/breadcrumb/breadcrumb.scss +0 -3
  179. package/src/lib/breadcrumb/breadcrumb.spec.ts +0 -78
  180. package/src/lib/breadcrumb/breadcrumb.ts +0 -10
  181. package/src/lib/breadcrumb/index.ts +0 -13
  182. package/src/lib/breadcrumb/ui.test.ts +0 -36
  183. package/src/lib/breadcrumb/ui.test.ts-snapshots/snapshots-breadcrumb-Chrome-Stable-darwin.png +0 -0
  184. package/src/lib/breadcrumb/ui.test.ts-snapshots/snapshots-breadcrumb-Chrome-Stable-linux.png +0 -0
  185. package/src/lib/breadcrumb/ui.test.ts-snapshots/snapshots-breadcrumb-Desktop-Firefox-darwin.png +0 -0
  186. package/src/lib/breadcrumb/ui.test.ts-snapshots/snapshots-breadcrumb-Desktop-Firefox-linux.png +0 -0
  187. package/src/lib/breadcrumb/ui.test.ts-snapshots/snapshots-breadcrumb-Desktop-Safari-darwin.png +0 -0
  188. package/src/lib/breadcrumb/ui.test.ts-snapshots/snapshots-breadcrumb-Desktop-Safari-linux.png +0 -0
  189. package/src/lib/breadcrumb-item/README.md +0 -40
  190. package/src/lib/breadcrumb-item/breadcrumb-item.scss +0 -28
  191. package/src/lib/breadcrumb-item/breadcrumb-item.spec.ts +0 -192
  192. package/src/lib/breadcrumb-item/breadcrumb-item.template.ts +0 -37
  193. package/src/lib/breadcrumb-item/breadcrumb-item.ts +0 -15
  194. package/src/lib/breadcrumb-item/index.ts +0 -16
  195. package/src/lib/breadcrumb-item/ui.test.ts +0 -38
  196. package/src/lib/breadcrumb-item/ui.test.ts-snapshots/snapshots-breadcrumb-item-Chrome-Stable-darwin.png +0 -0
  197. package/src/lib/breadcrumb-item/ui.test.ts-snapshots/snapshots-breadcrumb-item-Chrome-Stable-linux.png +0 -0
  198. package/src/lib/breadcrumb-item/ui.test.ts-snapshots/snapshots-breadcrumb-item-Desktop-Firefox-darwin.png +0 -0
  199. package/src/lib/breadcrumb-item/ui.test.ts-snapshots/snapshots-breadcrumb-item-Desktop-Firefox-linux.png +0 -0
  200. package/src/lib/breadcrumb-item/ui.test.ts-snapshots/snapshots-breadcrumb-item-Desktop-Safari-darwin.png +0 -0
  201. package/src/lib/breadcrumb-item/ui.test.ts-snapshots/snapshots-breadcrumb-item-Desktop-Safari-linux.png +0 -0
  202. package/src/lib/button/README.md +0 -120
  203. package/src/lib/button/button.scss +0 -142
  204. package/src/lib/button/button.spec.ts +0 -131
  205. package/src/lib/button/button.template.ts +0 -89
  206. package/src/lib/button/button.ts +0 -95
  207. package/src/lib/button/index.ts +0 -25
  208. package/src/lib/button/partials/variables.scss +0 -2
  209. package/src/lib/button/ui.test.ts +0 -32
  210. package/src/lib/button/ui.test.ts-snapshots/snapshots-button-Chrome-Stable-darwin.png +0 -0
  211. package/src/lib/button/ui.test.ts-snapshots/snapshots-button-Chrome-Stable-linux.png +0 -0
  212. package/src/lib/button/ui.test.ts-snapshots/snapshots-button-Desktop-Firefox-darwin.png +0 -0
  213. package/src/lib/button/ui.test.ts-snapshots/snapshots-button-Desktop-Firefox-linux.png +0 -0
  214. package/src/lib/button/ui.test.ts-snapshots/snapshots-button-Desktop-Safari-darwin.png +0 -0
  215. package/src/lib/button/ui.test.ts-snapshots/snapshots-button-Desktop-Safari-linux.png +0 -0
  216. package/src/lib/calendar/README.md +0 -70
  217. package/src/lib/calendar/calendar.scss +0 -176
  218. package/src/lib/calendar/calendar.spec.ts +0 -341
  219. package/src/lib/calendar/calendar.template.ts +0 -93
  220. package/src/lib/calendar/calendar.ts +0 -139
  221. package/src/lib/calendar/helpers/calendar.date-functions.ts +0 -31
  222. package/src/lib/calendar/helpers/calendar.event-context.ts +0 -72
  223. package/src/lib/calendar/helpers/calendar.keyboard-interactions.ts +0 -65
  224. package/src/lib/calendar/index.ts +0 -16
  225. package/src/lib/calendar/partials/_variables.scss +0 -15
  226. package/src/lib/calendar/ui.test.ts +0 -32
  227. package/src/lib/calendar/ui.test.ts-snapshots/snapshots-calendar-Chrome-Stable-darwin.png +0 -0
  228. package/src/lib/calendar/ui.test.ts-snapshots/snapshots-calendar-Chrome-Stable-linux.png +0 -0
  229. package/src/lib/calendar/ui.test.ts-snapshots/snapshots-calendar-Desktop-Firefox-darwin.png +0 -0
  230. package/src/lib/calendar/ui.test.ts-snapshots/snapshots-calendar-Desktop-Firefox-linux.png +0 -0
  231. package/src/lib/calendar/ui.test.ts-snapshots/snapshots-calendar-Desktop-Safari-darwin.png +0 -0
  232. package/src/lib/calendar/ui.test.ts-snapshots/snapshots-calendar-Desktop-Safari-linux.png +0 -0
  233. package/src/lib/components.spec.ts +0 -7
  234. package/src/lib/elevation/README.md +0 -99
  235. package/src/lib/elevation/elevation.scss +0 -15
  236. package/src/lib/elevation/elevation.spec.ts +0 -55
  237. package/src/lib/elevation/elevation.template.ts +0 -26
  238. package/src/lib/elevation/elevation.ts +0 -17
  239. package/src/lib/elevation/index.ts +0 -17
  240. package/src/lib/elevation/partials/_elevation.mixin.scss +0 -4
  241. package/src/lib/elevation/ui.test.ts +0 -32
  242. package/src/lib/elevation/ui.test.ts-snapshots/snapshots-elevation-Chrome-Stable-darwin.png +0 -0
  243. package/src/lib/elevation/ui.test.ts-snapshots/snapshots-elevation-Chrome-Stable-linux.png +0 -0
  244. package/src/lib/elevation/ui.test.ts-snapshots/snapshots-elevation-Desktop-Firefox-darwin.png +0 -0
  245. package/src/lib/elevation/ui.test.ts-snapshots/snapshots-elevation-Desktop-Firefox-linux.png +0 -0
  246. package/src/lib/elevation/ui.test.ts-snapshots/snapshots-elevation-Desktop-Safari-darwin.png +0 -0
  247. package/src/lib/elevation/ui.test.ts-snapshots/snapshots-elevation-Desktop-Safari-linux.png +0 -0
  248. package/src/lib/enums.ts +0 -55
  249. package/src/lib/focus/README.md +0 -1
  250. package/src/lib/focus/focus.scss +0 -17
  251. package/src/lib/focus/focus.template.ts +0 -16
  252. package/src/lib/focus/focus.ts +0 -10
  253. package/src/lib/focus/index.ts +0 -21
  254. package/src/lib/focus/partials/variables.scss +0 -2
  255. package/src/lib/icon/README.md +0 -70
  256. package/src/lib/icon/__snapshots__/icon.spec.ts.snap +0 -16
  257. package/src/lib/icon/icon.placeholder.ts +0 -12
  258. package/src/lib/icon/icon.scss +0 -52
  259. package/src/lib/icon/icon.spec.ts +0 -106
  260. package/src/lib/icon/icon.template.ts +0 -23
  261. package/src/lib/icon/icon.ts +0 -93
  262. package/src/lib/icon/index.ts +0 -14
  263. package/src/lib/layout/README.md +0 -154
  264. package/src/lib/layout/index.ts +0 -18
  265. package/src/lib/layout/layout.scss +0 -40
  266. package/src/lib/layout/layout.spec.ts +0 -73
  267. package/src/lib/layout/layout.template.ts +0 -29
  268. package/src/lib/layout/layout.ts +0 -46
  269. package/src/lib/layout/partials/_functions.scss +0 -15
  270. package/src/lib/layout/partials/_mixins.scss +0 -5
  271. package/src/lib/layout/partials/_variables.scss +0 -23
  272. package/src/lib/layout/ui.test.ts +0 -32
  273. package/src/lib/layout/ui.test.ts-snapshots/snapshots-layout-Chrome-Stable-darwin.png +0 -0
  274. package/src/lib/layout/ui.test.ts-snapshots/snapshots-layout-Chrome-Stable-linux.png +0 -0
  275. package/src/lib/layout/ui.test.ts-snapshots/snapshots-layout-Desktop-Firefox-darwin.png +0 -0
  276. package/src/lib/layout/ui.test.ts-snapshots/snapshots-layout-Desktop-Firefox-linux.png +0 -0
  277. package/src/lib/layout/ui.test.ts-snapshots/snapshots-layout-Desktop-Safari-darwin.png +0 -0
  278. package/src/lib/layout/ui.test.ts-snapshots/snapshots-layout-Desktop-Safari-linux.png +0 -0
  279. package/src/lib/popup/README.md +0 -261
  280. package/src/lib/popup/index.ts +0 -21
  281. package/src/lib/popup/popup.scss +0 -43
  282. package/src/lib/popup/popup.spec.ts +0 -265
  283. package/src/lib/popup/popup.template.ts +0 -41
  284. package/src/lib/popup/popup.ts +0 -158
  285. package/src/lib/popup/ui.test.ts +0 -111
  286. package/src/lib/popup/ui.test.ts-snapshots/snapshots-popup-Chrome-Stable-darwin.png +0 -0
  287. package/src/lib/popup/ui.test.ts-snapshots/snapshots-popup-Chrome-Stable-linux.png +0 -0
  288. package/src/lib/popup/ui.test.ts-snapshots/snapshots-popup-Desktop-Firefox-darwin.png +0 -0
  289. package/src/lib/popup/ui.test.ts-snapshots/snapshots-popup-Desktop-Firefox-linux.png +0 -0
  290. package/src/lib/popup/ui.test.ts-snapshots/snapshots-popup-Desktop-Safari-darwin.png +0 -0
  291. package/src/lib/popup/ui.test.ts-snapshots/snapshots-popup-Desktop-Safari-linux.png +0 -0
  292. package/src/lib/progress/README.md +0 -107
  293. package/src/lib/progress/index.ts +0 -14
  294. package/src/lib/progress/progress.scss +0 -133
  295. package/src/lib/progress/progress.spec.ts +0 -173
  296. package/src/lib/progress/progress.template.ts +0 -62
  297. package/src/lib/progress/progress.ts +0 -25
  298. package/src/lib/progress/ui.test.ts +0 -70
  299. package/src/lib/progress/ui.test.ts-snapshots/snapshots-progress-Chrome-Stable-darwin.png +0 -0
  300. package/src/lib/progress/ui.test.ts-snapshots/snapshots-progress-Chrome-Stable-linux.png +0 -0
  301. package/src/lib/progress/ui.test.ts-snapshots/snapshots-progress-Desktop-Firefox-darwin.png +0 -0
  302. package/src/lib/progress/ui.test.ts-snapshots/snapshots-progress-Desktop-Firefox-linux.png +0 -0
  303. package/src/lib/progress/ui.test.ts-snapshots/snapshots-progress-Desktop-Safari-darwin.png +0 -0
  304. package/src/lib/progress/ui.test.ts-snapshots/snapshots-progress-Desktop-Safari-linux.png +0 -0
  305. package/src/lib/progress-ring/README.md +0 -90
  306. package/src/lib/progress-ring/index.ts +0 -15
  307. package/src/lib/progress-ring/progress-ring.scss +0 -75
  308. package/src/lib/progress-ring/progress-ring.spec.ts +0 -139
  309. package/src/lib/progress-ring/progress-ring.template.ts +0 -82
  310. package/src/lib/progress-ring/progress-ring.ts +0 -18
  311. package/src/lib/progress-ring/ui.test.ts +0 -35
  312. package/src/lib/progress-ring/ui.test.ts-snapshots/snapshots-progress-ring-Chrome-Stable-darwin.png +0 -0
  313. package/src/lib/progress-ring/ui.test.ts-snapshots/snapshots-progress-ring-Chrome-Stable-linux.png +0 -0
  314. package/src/lib/progress-ring/ui.test.ts-snapshots/snapshots-progress-ring-Desktop-Firefox-darwin.png +0 -0
  315. package/src/lib/progress-ring/ui.test.ts-snapshots/snapshots-progress-ring-Desktop-Firefox-linux.png +0 -0
  316. package/src/lib/progress-ring/ui.test.ts-snapshots/snapshots-progress-ring-Desktop-Safari-darwin.png +0 -0
  317. package/src/lib/progress-ring/ui.test.ts-snapshots/snapshots-progress-ring-Desktop-Safari-linux.png +0 -0
  318. package/src/lib/side-drawer/README.md +0 -304
  319. package/src/lib/side-drawer/index.ts +0 -16
  320. package/src/lib/side-drawer/partials/variables.scss +0 -6
  321. package/src/lib/side-drawer/side-drawer.scss +0 -109
  322. package/src/lib/side-drawer/side-drawer.spec.ts +0 -118
  323. package/src/lib/side-drawer/side-drawer.template.ts +0 -51
  324. package/src/lib/side-drawer/side-drawer.ts +0 -58
  325. package/src/lib/side-drawer/ui.test.ts +0 -102
  326. package/src/lib/side-drawer/ui.test.ts-snapshots/snapshots-side-drawer-Chrome-Stable-darwin.png +0 -0
  327. package/src/lib/side-drawer/ui.test.ts-snapshots/snapshots-side-drawer-Chrome-Stable-linux.png +0 -0
  328. package/src/lib/side-drawer/ui.test.ts-snapshots/snapshots-side-drawer-Desktop-Firefox-darwin.png +0 -0
  329. package/src/lib/side-drawer/ui.test.ts-snapshots/snapshots-side-drawer-Desktop-Firefox-linux.png +0 -0
  330. package/src/lib/side-drawer/ui.test.ts-snapshots/snapshots-side-drawer-Desktop-Safari-darwin.png +0 -0
  331. package/src/lib/side-drawer/ui.test.ts-snapshots/snapshots-side-drawer-Desktop-Safari-linux.png +0 -0
  332. package/src/lib/side-drawer/ui.test.ts-snapshots/snapshots-side-drawer-modal-Chrome-Stable-darwin.png +0 -0
  333. package/src/lib/side-drawer/ui.test.ts-snapshots/snapshots-side-drawer-modal-Chrome-Stable-linux.png +0 -0
  334. package/src/lib/side-drawer/ui.test.ts-snapshots/snapshots-side-drawer-modal-Desktop-Firefox-darwin.png +0 -0
  335. package/src/lib/side-drawer/ui.test.ts-snapshots/snapshots-side-drawer-modal-Desktop-Firefox-linux.png +0 -0
  336. package/src/lib/side-drawer/ui.test.ts-snapshots/snapshots-side-drawer-modal-Desktop-Safari-darwin.png +0 -0
  337. package/src/lib/side-drawer/ui.test.ts-snapshots/snapshots-side-drawer-modal-Desktop-Safari-linux.png +0 -0
  338. package/src/lib/sidenav-item/README.md +0 -41
  339. package/src/lib/sidenav-item/index.ts +0 -20
  340. package/src/lib/sidenav-item/sidenav-item.scss +0 -51
  341. package/src/lib/sidenav-item/sidenav-item.spec.ts +0 -64
  342. package/src/lib/sidenav-item/sidenav-item.template.ts +0 -25
  343. package/src/lib/sidenav-item/sidenav-item.ts +0 -15
  344. package/src/lib/sidenav-item/ui.test.ts +0 -32
  345. package/src/lib/sidenav-item/ui.test.ts-snapshots/snapshots-sidenav-item-Chrome-Stable-darwin.png +0 -0
  346. package/src/lib/sidenav-item/ui.test.ts-snapshots/snapshots-sidenav-item-Chrome-Stable-linux.png +0 -0
  347. package/src/lib/sidenav-item/ui.test.ts-snapshots/snapshots-sidenav-item-Desktop-Firefox-darwin.png +0 -0
  348. package/src/lib/sidenav-item/ui.test.ts-snapshots/snapshots-sidenav-item-Desktop-Firefox-linux.png +0 -0
  349. package/src/lib/sidenav-item/ui.test.ts-snapshots/snapshots-sidenav-item-Desktop-Safari-darwin.png +0 -0
  350. package/src/lib/sidenav-item/ui.test.ts-snapshots/snapshots-sidenav-item-Desktop-Safari-linux.png +0 -0
  351. package/src/lib/text/README.md +0 -119
  352. package/src/lib/text/index.ts +0 -14
  353. package/src/lib/text/text.scss +0 -92
  354. package/src/lib/text/text.spec.ts +0 -54
  355. package/src/lib/text/text.template.ts +0 -28
  356. package/src/lib/text/text.ts +0 -55
  357. package/src/lib/text/ui.test.ts +0 -39
  358. package/src/lib/text/ui.test.ts-snapshots/snapshots-text-Chrome-Stable-darwin.png +0 -0
  359. package/src/lib/text/ui.test.ts-snapshots/snapshots-text-Chrome-Stable-linux.png +0 -0
  360. package/src/lib/text/ui.test.ts-snapshots/snapshots-text-Desktop-Firefox-darwin.png +0 -0
  361. package/src/lib/text/ui.test.ts-snapshots/snapshots-text-Desktop-Firefox-linux.png +0 -0
  362. package/src/lib/text/ui.test.ts-snapshots/snapshots-text-Desktop-Safari-darwin.png +0 -0
  363. package/src/lib/text/ui.test.ts-snapshots/snapshots-text-Desktop-Safari-linux.png +0 -0
  364. package/src/lib/text-anchor/README.md +0 -5
  365. package/src/lib/text-anchor/index.ts +0 -12
  366. package/src/lib/text-anchor/text-anchor.spec.ts +0 -153
  367. package/src/lib/text-anchor/text-anchor.template.ts +0 -66
  368. package/src/lib/text-anchor/text-anchor.ts +0 -22
  369. package/src/lib/tooltip/README.md +0 -132
  370. package/src/lib/tooltip/index.ts +0 -16
  371. package/src/lib/tooltip/partials/variables.scss +0 -1
  372. package/src/lib/tooltip/tooltip.scss +0 -18
  373. package/src/lib/tooltip/tooltip.spec.ts +0 -70
  374. package/src/lib/tooltip/tooltip.template.ts +0 -30
  375. package/src/lib/tooltip/tooltip.ts +0 -44
  376. package/src/lib/tooltip/ui.test.ts +0 -53
  377. package/src/lib/tooltip/ui.test.ts-snapshots/snapshots-tooltip-Chrome-Stable-darwin.png +0 -0
  378. package/src/lib/tooltip/ui.test.ts-snapshots/snapshots-tooltip-Chrome-Stable-linux.png +0 -0
  379. package/src/lib/tooltip/ui.test.ts-snapshots/snapshots-tooltip-Desktop-Firefox-darwin.png +0 -0
  380. package/src/lib/tooltip/ui.test.ts-snapshots/snapshots-tooltip-Desktop-Firefox-linux.png +0 -0
  381. package/src/lib/tooltip/ui.test.ts-snapshots/snapshots-tooltip-Desktop-Safari-darwin.png +0 -0
  382. package/src/lib/tooltip/ui.test.ts-snapshots/snapshots-tooltip-Desktop-Safari-linux.png +0 -0
  383. package/src/shared/design-system/index.ts +0 -12
  384. package/src/shared/patterns/affix.ts +0 -56
  385. package/src/types/extract-gfm.d.ts +0 -5
  386. package/src/types/style.d.ts +0 -4
  387. package/src/visual-tests/visual-tests-utils.ts +0 -76
  388. package/tsconfig.json +0 -36
  389. package/tsconfig.lib.json +0 -11
  390. package/tsconfig.spec.json +0 -16
@@ -0,0 +1,1479 @@
1
+ var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
2
+
3
+ var check = function (it) {
4
+ return it && it.Math == Math && it;
5
+ };
6
+
7
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
8
+ var global$o =
9
+ // eslint-disable-next-line es/no-global-this -- safe
10
+ check(typeof globalThis == 'object' && globalThis) ||
11
+ check(typeof window == 'object' && window) ||
12
+ // eslint-disable-next-line no-restricted-globals -- safe
13
+ check(typeof self == 'object' && self) ||
14
+ check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
15
+ // eslint-disable-next-line no-new-func -- fallback
16
+ (function () { return this; })() || Function('return this')();
17
+
18
+ var fails$9 = function (exec) {
19
+ try {
20
+ return !!exec();
21
+ } catch (error) {
22
+ return true;
23
+ }
24
+ };
25
+
26
+ var fails$8 = fails$9;
27
+
28
+ var functionBindNative = !fails$8(function () {
29
+ var test = (function () { /* empty */ }).bind();
30
+ // eslint-disable-next-line no-prototype-builtins -- safe
31
+ return typeof test != 'function' || test.hasOwnProperty('prototype');
32
+ });
33
+
34
+ var NATIVE_BIND$1 = functionBindNative;
35
+
36
+ var FunctionPrototype$1 = Function.prototype;
37
+ var bind = FunctionPrototype$1.bind;
38
+ var call$5 = FunctionPrototype$1.call;
39
+ var uncurryThis$a = NATIVE_BIND$1 && bind.bind(call$5, call$5);
40
+
41
+ var functionUncurryThis = NATIVE_BIND$1 ? function (fn) {
42
+ return fn && uncurryThis$a(fn);
43
+ } : function (fn) {
44
+ return fn && function () {
45
+ return call$5.apply(fn, arguments);
46
+ };
47
+ };
48
+
49
+ var uncurryThis$9 = functionUncurryThis;
50
+
51
+ var toString$1 = uncurryThis$9({}.toString);
52
+ var stringSlice = uncurryThis$9(''.slice);
53
+
54
+ var classofRaw = function (it) {
55
+ return stringSlice(toString$1(it), 8, -1);
56
+ };
57
+
58
+ var global$n = global$o;
59
+ var uncurryThis$8 = functionUncurryThis;
60
+ var fails$7 = fails$9;
61
+ var classof = classofRaw;
62
+
63
+ var Object$4 = global$n.Object;
64
+ var split = uncurryThis$8(''.split);
65
+
66
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
67
+ var indexedObject = fails$7(function () {
68
+ // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
69
+ // eslint-disable-next-line no-prototype-builtins -- safe
70
+ return !Object$4('z').propertyIsEnumerable(0);
71
+ }) ? function (it) {
72
+ return classof(it) == 'String' ? split(it, '') : Object$4(it);
73
+ } : Object$4;
74
+
75
+ var global$m = global$o;
76
+
77
+ var TypeError$7 = global$m.TypeError;
78
+
79
+ // `RequireObjectCoercible` abstract operation
80
+ // https://tc39.es/ecma262/#sec-requireobjectcoercible
81
+ var requireObjectCoercible$2 = function (it) {
82
+ if (it == undefined) throw TypeError$7("Can't call method on " + it);
83
+ return it;
84
+ };
85
+
86
+ // toObject with fallback for non-array-like ES3 strings
87
+ var IndexedObject = indexedObject;
88
+ var requireObjectCoercible$1 = requireObjectCoercible$2;
89
+
90
+ var toIndexedObject$5 = function (it) {
91
+ return IndexedObject(requireObjectCoercible$1(it));
92
+ };
93
+
94
+ var shared$3 = {exports: {}};
95
+
96
+ var global$l = global$o;
97
+
98
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
99
+ var defineProperty$2 = Object.defineProperty;
100
+
101
+ var setGlobal$3 = function (key, value) {
102
+ try {
103
+ defineProperty$2(global$l, key, { value: value, configurable: true, writable: true });
104
+ } catch (error) {
105
+ global$l[key] = value;
106
+ } return value;
107
+ };
108
+
109
+ var global$k = global$o;
110
+ var setGlobal$2 = setGlobal$3;
111
+
112
+ var SHARED = '__core-js_shared__';
113
+ var store$3 = global$k[SHARED] || setGlobal$2(SHARED, {});
114
+
115
+ var sharedStore = store$3;
116
+
117
+ var store$2 = sharedStore;
118
+
119
+ (shared$3.exports = function (key, value) {
120
+ return store$2[key] || (store$2[key] = value !== undefined ? value : {});
121
+ })('versions', []).push({
122
+ version: '3.21.1',
123
+ mode: 'global',
124
+ copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
125
+ license: 'https://github.com/zloirock/core-js/blob/v3.21.1/LICENSE',
126
+ source: 'https://github.com/zloirock/core-js'
127
+ });
128
+
129
+ var global$j = global$o;
130
+ var requireObjectCoercible = requireObjectCoercible$2;
131
+
132
+ var Object$3 = global$j.Object;
133
+
134
+ // `ToObject` abstract operation
135
+ // https://tc39.es/ecma262/#sec-toobject
136
+ var toObject$2 = function (argument) {
137
+ return Object$3(requireObjectCoercible(argument));
138
+ };
139
+
140
+ var uncurryThis$7 = functionUncurryThis;
141
+ var toObject$1 = toObject$2;
142
+
143
+ var hasOwnProperty = uncurryThis$7({}.hasOwnProperty);
144
+
145
+ // `HasOwnProperty` abstract operation
146
+ // https://tc39.es/ecma262/#sec-hasownproperty
147
+ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
148
+ return hasOwnProperty(toObject$1(it), key);
149
+ };
150
+
151
+ var uncurryThis$6 = functionUncurryThis;
152
+
153
+ var id = 0;
154
+ var postfix = Math.random();
155
+ var toString = uncurryThis$6(1.0.toString);
156
+
157
+ var uid$2 = function (key) {
158
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
159
+ };
160
+
161
+ // `IsCallable` abstract operation
162
+ // https://tc39.es/ecma262/#sec-iscallable
163
+ var isCallable$d = function (argument) {
164
+ return typeof argument == 'function';
165
+ };
166
+
167
+ var global$i = global$o;
168
+ var isCallable$c = isCallable$d;
169
+
170
+ var aFunction = function (argument) {
171
+ return isCallable$c(argument) ? argument : undefined;
172
+ };
173
+
174
+ var getBuiltIn$4 = function (namespace, method) {
175
+ return arguments.length < 2 ? aFunction(global$i[namespace]) : global$i[namespace] && global$i[namespace][method];
176
+ };
177
+
178
+ var getBuiltIn$3 = getBuiltIn$4;
179
+
180
+ var engineUserAgent = getBuiltIn$3('navigator', 'userAgent') || '';
181
+
182
+ var global$h = global$o;
183
+ var userAgent = engineUserAgent;
184
+
185
+ var process = global$h.process;
186
+ var Deno = global$h.Deno;
187
+ var versions = process && process.versions || Deno && Deno.version;
188
+ var v8 = versions && versions.v8;
189
+ var match, version;
190
+
191
+ if (v8) {
192
+ match = v8.split('.');
193
+ // in old Chrome, versions of V8 isn't V8 = Chrome / 10
194
+ // but their correct versions are not interesting for us
195
+ version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
196
+ }
197
+
198
+ // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
199
+ // so check `userAgent` even if `.v8` exists, but 0
200
+ if (!version && userAgent) {
201
+ match = userAgent.match(/Edge\/(\d+)/);
202
+ if (!match || match[1] >= 74) {
203
+ match = userAgent.match(/Chrome\/(\d+)/);
204
+ if (match) version = +match[1];
205
+ }
206
+ }
207
+
208
+ var engineV8Version = version;
209
+
210
+ /* eslint-disable es/no-symbol -- required for testing */
211
+
212
+ var V8_VERSION = engineV8Version;
213
+ var fails$6 = fails$9;
214
+
215
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
216
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$6(function () {
217
+ var symbol = Symbol();
218
+ // Chrome 38 Symbol has incorrect toString conversion
219
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
220
+ return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
221
+ // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
222
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
223
+ });
224
+
225
+ /* eslint-disable es/no-symbol -- required for testing */
226
+
227
+ var NATIVE_SYMBOL$1 = nativeSymbol;
228
+
229
+ var useSymbolAsUid = NATIVE_SYMBOL$1
230
+ && !Symbol.sham
231
+ && typeof Symbol.iterator == 'symbol';
232
+
233
+ var global$g = global$o;
234
+ var shared$2 = shared$3.exports;
235
+ var hasOwn$8 = hasOwnProperty_1;
236
+ var uid$1 = uid$2;
237
+ var NATIVE_SYMBOL = nativeSymbol;
238
+ var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
239
+
240
+ var WellKnownSymbolsStore = shared$2('wks');
241
+ var Symbol$1 = global$g.Symbol;
242
+ var symbolFor = Symbol$1 && Symbol$1['for'];
243
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID$1 ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
244
+
245
+ var wellKnownSymbol$6 = function (name) {
246
+ if (!hasOwn$8(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
247
+ var description = 'Symbol.' + name;
248
+ if (NATIVE_SYMBOL && hasOwn$8(Symbol$1, name)) {
249
+ WellKnownSymbolsStore[name] = Symbol$1[name];
250
+ } else if (USE_SYMBOL_AS_UID$1 && symbolFor) {
251
+ WellKnownSymbolsStore[name] = symbolFor(description);
252
+ } else {
253
+ WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
254
+ }
255
+ } return WellKnownSymbolsStore[name];
256
+ };
257
+
258
+ var isCallable$b = isCallable$d;
259
+
260
+ var isObject$5 = function (it) {
261
+ return typeof it == 'object' ? it !== null : isCallable$b(it);
262
+ };
263
+
264
+ var global$f = global$o;
265
+ var isObject$4 = isObject$5;
266
+
267
+ var String$3 = global$f.String;
268
+ var TypeError$6 = global$f.TypeError;
269
+
270
+ // `Assert: Type(argument) is Object`
271
+ var anObject$5 = function (argument) {
272
+ if (isObject$4(argument)) return argument;
273
+ throw TypeError$6(String$3(argument) + ' is not an object');
274
+ };
275
+
276
+ var objectDefineProperties = {};
277
+
278
+ var fails$5 = fails$9;
279
+
280
+ // Detect IE8's incomplete defineProperty implementation
281
+ var descriptors = !fails$5(function () {
282
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
283
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
284
+ });
285
+
286
+ var DESCRIPTORS$7 = descriptors;
287
+ var fails$4 = fails$9;
288
+
289
+ // V8 ~ Chrome 36-
290
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
291
+ var v8PrototypeDefineBug = DESCRIPTORS$7 && fails$4(function () {
292
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
293
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
294
+ value: 42,
295
+ writable: false
296
+ }).prototype != 42;
297
+ });
298
+
299
+ var objectDefineProperty = {};
300
+
301
+ var global$e = global$o;
302
+ var isObject$3 = isObject$5;
303
+
304
+ var document$1 = global$e.document;
305
+ // typeof document.createElement is 'object' in old IE
306
+ var EXISTS$1 = isObject$3(document$1) && isObject$3(document$1.createElement);
307
+
308
+ var documentCreateElement$2 = function (it) {
309
+ return EXISTS$1 ? document$1.createElement(it) : {};
310
+ };
311
+
312
+ var DESCRIPTORS$6 = descriptors;
313
+ var fails$3 = fails$9;
314
+ var createElement = documentCreateElement$2;
315
+
316
+ // Thanks to IE8 for its funny defineProperty
317
+ var ie8DomDefine = !DESCRIPTORS$6 && !fails$3(function () {
318
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
319
+ return Object.defineProperty(createElement('div'), 'a', {
320
+ get: function () { return 7; }
321
+ }).a != 7;
322
+ });
323
+
324
+ var NATIVE_BIND = functionBindNative;
325
+
326
+ var call$4 = Function.prototype.call;
327
+
328
+ var functionCall = NATIVE_BIND ? call$4.bind(call$4) : function () {
329
+ return call$4.apply(call$4, arguments);
330
+ };
331
+
332
+ var uncurryThis$5 = functionUncurryThis;
333
+
334
+ var objectIsPrototypeOf = uncurryThis$5({}.isPrototypeOf);
335
+
336
+ var global$d = global$o;
337
+ var getBuiltIn$2 = getBuiltIn$4;
338
+ var isCallable$a = isCallable$d;
339
+ var isPrototypeOf = objectIsPrototypeOf;
340
+ var USE_SYMBOL_AS_UID = useSymbolAsUid;
341
+
342
+ var Object$2 = global$d.Object;
343
+
344
+ var isSymbol$2 = USE_SYMBOL_AS_UID ? function (it) {
345
+ return typeof it == 'symbol';
346
+ } : function (it) {
347
+ var $Symbol = getBuiltIn$2('Symbol');
348
+ return isCallable$a($Symbol) && isPrototypeOf($Symbol.prototype, Object$2(it));
349
+ };
350
+
351
+ var global$c = global$o;
352
+
353
+ var String$2 = global$c.String;
354
+
355
+ var tryToString$1 = function (argument) {
356
+ try {
357
+ return String$2(argument);
358
+ } catch (error) {
359
+ return 'Object';
360
+ }
361
+ };
362
+
363
+ var global$b = global$o;
364
+ var isCallable$9 = isCallable$d;
365
+ var tryToString = tryToString$1;
366
+
367
+ var TypeError$5 = global$b.TypeError;
368
+
369
+ // `Assert: IsCallable(argument) is true`
370
+ var aCallable$1 = function (argument) {
371
+ if (isCallable$9(argument)) return argument;
372
+ throw TypeError$5(tryToString(argument) + ' is not a function');
373
+ };
374
+
375
+ var aCallable = aCallable$1;
376
+
377
+ // `GetMethod` abstract operation
378
+ // https://tc39.es/ecma262/#sec-getmethod
379
+ var getMethod$1 = function (V, P) {
380
+ var func = V[P];
381
+ return func == null ? undefined : aCallable(func);
382
+ };
383
+
384
+ var global$a = global$o;
385
+ var call$3 = functionCall;
386
+ var isCallable$8 = isCallable$d;
387
+ var isObject$2 = isObject$5;
388
+
389
+ var TypeError$4 = global$a.TypeError;
390
+
391
+ // `OrdinaryToPrimitive` abstract operation
392
+ // https://tc39.es/ecma262/#sec-ordinarytoprimitive
393
+ var ordinaryToPrimitive$1 = function (input, pref) {
394
+ var fn, val;
395
+ if (pref === 'string' && isCallable$8(fn = input.toString) && !isObject$2(val = call$3(fn, input))) return val;
396
+ if (isCallable$8(fn = input.valueOf) && !isObject$2(val = call$3(fn, input))) return val;
397
+ if (pref !== 'string' && isCallable$8(fn = input.toString) && !isObject$2(val = call$3(fn, input))) return val;
398
+ throw TypeError$4("Can't convert object to primitive value");
399
+ };
400
+
401
+ var global$9 = global$o;
402
+ var call$2 = functionCall;
403
+ var isObject$1 = isObject$5;
404
+ var isSymbol$1 = isSymbol$2;
405
+ var getMethod = getMethod$1;
406
+ var ordinaryToPrimitive = ordinaryToPrimitive$1;
407
+ var wellKnownSymbol$5 = wellKnownSymbol$6;
408
+
409
+ var TypeError$3 = global$9.TypeError;
410
+ var TO_PRIMITIVE = wellKnownSymbol$5('toPrimitive');
411
+
412
+ // `ToPrimitive` abstract operation
413
+ // https://tc39.es/ecma262/#sec-toprimitive
414
+ var toPrimitive$1 = function (input, pref) {
415
+ if (!isObject$1(input) || isSymbol$1(input)) return input;
416
+ var exoticToPrim = getMethod(input, TO_PRIMITIVE);
417
+ var result;
418
+ if (exoticToPrim) {
419
+ if (pref === undefined) pref = 'default';
420
+ result = call$2(exoticToPrim, input, pref);
421
+ if (!isObject$1(result) || isSymbol$1(result)) return result;
422
+ throw TypeError$3("Can't convert object to primitive value");
423
+ }
424
+ if (pref === undefined) pref = 'number';
425
+ return ordinaryToPrimitive(input, pref);
426
+ };
427
+
428
+ var toPrimitive = toPrimitive$1;
429
+ var isSymbol = isSymbol$2;
430
+
431
+ // `ToPropertyKey` abstract operation
432
+ // https://tc39.es/ecma262/#sec-topropertykey
433
+ var toPropertyKey$2 = function (argument) {
434
+ var key = toPrimitive(argument, 'string');
435
+ return isSymbol(key) ? key : key + '';
436
+ };
437
+
438
+ var global$8 = global$o;
439
+ var DESCRIPTORS$5 = descriptors;
440
+ var IE8_DOM_DEFINE$1 = ie8DomDefine;
441
+ var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
442
+ var anObject$4 = anObject$5;
443
+ var toPropertyKey$1 = toPropertyKey$2;
444
+
445
+ var TypeError$2 = global$8.TypeError;
446
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
447
+ var $defineProperty = Object.defineProperty;
448
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
449
+ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
450
+ var ENUMERABLE = 'enumerable';
451
+ var CONFIGURABLE$1 = 'configurable';
452
+ var WRITABLE = 'writable';
453
+
454
+ // `Object.defineProperty` method
455
+ // https://tc39.es/ecma262/#sec-object.defineproperty
456
+ objectDefineProperty.f = DESCRIPTORS$5 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
457
+ anObject$4(O);
458
+ P = toPropertyKey$1(P);
459
+ anObject$4(Attributes);
460
+ if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
461
+ var current = $getOwnPropertyDescriptor$1(O, P);
462
+ if (current && current[WRITABLE]) {
463
+ O[P] = Attributes.value;
464
+ Attributes = {
465
+ configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
466
+ enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
467
+ writable: false
468
+ };
469
+ }
470
+ } return $defineProperty(O, P, Attributes);
471
+ } : $defineProperty : function defineProperty(O, P, Attributes) {
472
+ anObject$4(O);
473
+ P = toPropertyKey$1(P);
474
+ anObject$4(Attributes);
475
+ if (IE8_DOM_DEFINE$1) try {
476
+ return $defineProperty(O, P, Attributes);
477
+ } catch (error) { /* empty */ }
478
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError$2('Accessors not supported');
479
+ if ('value' in Attributes) O[P] = Attributes.value;
480
+ return O;
481
+ };
482
+
483
+ var ceil = Math.ceil;
484
+ var floor = Math.floor;
485
+
486
+ // `ToIntegerOrInfinity` abstract operation
487
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
488
+ var toIntegerOrInfinity$2 = function (argument) {
489
+ var number = +argument;
490
+ // eslint-disable-next-line no-self-compare -- safe
491
+ return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number);
492
+ };
493
+
494
+ var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
495
+
496
+ var max = Math.max;
497
+ var min$1 = Math.min;
498
+
499
+ // Helper for a popular repeating case of the spec:
500
+ // Let integer be ? ToInteger(index).
501
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
502
+ var toAbsoluteIndex$1 = function (index, length) {
503
+ var integer = toIntegerOrInfinity$1(index);
504
+ return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
505
+ };
506
+
507
+ var toIntegerOrInfinity = toIntegerOrInfinity$2;
508
+
509
+ var min = Math.min;
510
+
511
+ // `ToLength` abstract operation
512
+ // https://tc39.es/ecma262/#sec-tolength
513
+ var toLength$1 = function (argument) {
514
+ return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
515
+ };
516
+
517
+ var toLength = toLength$1;
518
+
519
+ // `LengthOfArrayLike` abstract operation
520
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
521
+ var lengthOfArrayLike$1 = function (obj) {
522
+ return toLength(obj.length);
523
+ };
524
+
525
+ var toIndexedObject$4 = toIndexedObject$5;
526
+ var toAbsoluteIndex = toAbsoluteIndex$1;
527
+ var lengthOfArrayLike = lengthOfArrayLike$1;
528
+
529
+ // `Array.prototype.{ indexOf, includes }` methods implementation
530
+ var createMethod = function (IS_INCLUDES) {
531
+ return function ($this, el, fromIndex) {
532
+ var O = toIndexedObject$4($this);
533
+ var length = lengthOfArrayLike(O);
534
+ var index = toAbsoluteIndex(fromIndex, length);
535
+ var value;
536
+ // Array#includes uses SameValueZero equality algorithm
537
+ // eslint-disable-next-line no-self-compare -- NaN check
538
+ if (IS_INCLUDES && el != el) while (length > index) {
539
+ value = O[index++];
540
+ // eslint-disable-next-line no-self-compare -- NaN check
541
+ if (value != value) return true;
542
+ // Array#indexOf ignores holes, Array#includes - not
543
+ } else for (;length > index; index++) {
544
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
545
+ } return !IS_INCLUDES && -1;
546
+ };
547
+ };
548
+
549
+ var arrayIncludes = {
550
+ // `Array.prototype.includes` method
551
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
552
+ includes: createMethod(true),
553
+ // `Array.prototype.indexOf` method
554
+ // https://tc39.es/ecma262/#sec-array.prototype.indexof
555
+ indexOf: createMethod(false)
556
+ };
557
+
558
+ var hiddenKeys$4 = {};
559
+
560
+ var uncurryThis$4 = functionUncurryThis;
561
+ var hasOwn$7 = hasOwnProperty_1;
562
+ var toIndexedObject$3 = toIndexedObject$5;
563
+ var indexOf = arrayIncludes.indexOf;
564
+ var hiddenKeys$3 = hiddenKeys$4;
565
+
566
+ var push = uncurryThis$4([].push);
567
+
568
+ var objectKeysInternal = function (object, names) {
569
+ var O = toIndexedObject$3(object);
570
+ var i = 0;
571
+ var result = [];
572
+ var key;
573
+ for (key in O) !hasOwn$7(hiddenKeys$3, key) && hasOwn$7(O, key) && push(result, key);
574
+ // Don't enum bug & hidden keys
575
+ while (names.length > i) if (hasOwn$7(O, key = names[i++])) {
576
+ ~indexOf(result, key) || push(result, key);
577
+ }
578
+ return result;
579
+ };
580
+
581
+ // IE8- don't enum bug keys
582
+ var enumBugKeys$3 = [
583
+ 'constructor',
584
+ 'hasOwnProperty',
585
+ 'isPrototypeOf',
586
+ 'propertyIsEnumerable',
587
+ 'toLocaleString',
588
+ 'toString',
589
+ 'valueOf'
590
+ ];
591
+
592
+ var internalObjectKeys$1 = objectKeysInternal;
593
+ var enumBugKeys$2 = enumBugKeys$3;
594
+
595
+ // `Object.keys` method
596
+ // https://tc39.es/ecma262/#sec-object.keys
597
+ // eslint-disable-next-line es/no-object-keys -- safe
598
+ var objectKeys$1 = Object.keys || function keys(O) {
599
+ return internalObjectKeys$1(O, enumBugKeys$2);
600
+ };
601
+
602
+ var DESCRIPTORS$4 = descriptors;
603
+ var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
604
+ var definePropertyModule$3 = objectDefineProperty;
605
+ var anObject$3 = anObject$5;
606
+ var toIndexedObject$2 = toIndexedObject$5;
607
+ var objectKeys = objectKeys$1;
608
+
609
+ // `Object.defineProperties` method
610
+ // https://tc39.es/ecma262/#sec-object.defineproperties
611
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
612
+ objectDefineProperties.f = DESCRIPTORS$4 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
613
+ anObject$3(O);
614
+ var props = toIndexedObject$2(Properties);
615
+ var keys = objectKeys(Properties);
616
+ var length = keys.length;
617
+ var index = 0;
618
+ var key;
619
+ while (length > index) definePropertyModule$3.f(O, key = keys[index++], props[key]);
620
+ return O;
621
+ };
622
+
623
+ var getBuiltIn$1 = getBuiltIn$4;
624
+
625
+ var html$1 = getBuiltIn$1('document', 'documentElement');
626
+
627
+ var shared$1 = shared$3.exports;
628
+ var uid = uid$2;
629
+
630
+ var keys = shared$1('keys');
631
+
632
+ var sharedKey$3 = function (key) {
633
+ return keys[key] || (keys[key] = uid(key));
634
+ };
635
+
636
+ /* global ActiveXObject -- old IE, WSH */
637
+
638
+ var anObject$2 = anObject$5;
639
+ var definePropertiesModule = objectDefineProperties;
640
+ var enumBugKeys$1 = enumBugKeys$3;
641
+ var hiddenKeys$2 = hiddenKeys$4;
642
+ var html = html$1;
643
+ var documentCreateElement$1 = documentCreateElement$2;
644
+ var sharedKey$2 = sharedKey$3;
645
+
646
+ var GT = '>';
647
+ var LT = '<';
648
+ var PROTOTYPE = 'prototype';
649
+ var SCRIPT = 'script';
650
+ var IE_PROTO$1 = sharedKey$2('IE_PROTO');
651
+
652
+ var EmptyConstructor = function () { /* empty */ };
653
+
654
+ var scriptTag = function (content) {
655
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
656
+ };
657
+
658
+ // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
659
+ var NullProtoObjectViaActiveX = function (activeXDocument) {
660
+ activeXDocument.write(scriptTag(''));
661
+ activeXDocument.close();
662
+ var temp = activeXDocument.parentWindow.Object;
663
+ activeXDocument = null; // avoid memory leak
664
+ return temp;
665
+ };
666
+
667
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
668
+ var NullProtoObjectViaIFrame = function () {
669
+ // Thrash, waste and sodomy: IE GC bug
670
+ var iframe = documentCreateElement$1('iframe');
671
+ var JS = 'java' + SCRIPT + ':';
672
+ var iframeDocument;
673
+ iframe.style.display = 'none';
674
+ html.appendChild(iframe);
675
+ // https://github.com/zloirock/core-js/issues/475
676
+ iframe.src = String(JS);
677
+ iframeDocument = iframe.contentWindow.document;
678
+ iframeDocument.open();
679
+ iframeDocument.write(scriptTag('document.F=Object'));
680
+ iframeDocument.close();
681
+ return iframeDocument.F;
682
+ };
683
+
684
+ // Check for document.domain and active x support
685
+ // No need to use active x approach when document.domain is not set
686
+ // see https://github.com/es-shims/es5-shim/issues/150
687
+ // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
688
+ // avoid IE GC bug
689
+ var activeXDocument;
690
+ var NullProtoObject = function () {
691
+ try {
692
+ activeXDocument = new ActiveXObject('htmlfile');
693
+ } catch (error) { /* ignore */ }
694
+ NullProtoObject = typeof document != 'undefined'
695
+ ? document.domain && activeXDocument
696
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
697
+ : NullProtoObjectViaIFrame()
698
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
699
+ var length = enumBugKeys$1.length;
700
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys$1[length]];
701
+ return NullProtoObject();
702
+ };
703
+
704
+ hiddenKeys$2[IE_PROTO$1] = true;
705
+
706
+ // `Object.create` method
707
+ // https://tc39.es/ecma262/#sec-object.create
708
+ var objectCreate = Object.create || function create(O, Properties) {
709
+ var result;
710
+ if (O !== null) {
711
+ EmptyConstructor[PROTOTYPE] = anObject$2(O);
712
+ result = new EmptyConstructor();
713
+ EmptyConstructor[PROTOTYPE] = null;
714
+ // add "__proto__" for Object.getPrototypeOf polyfill
715
+ result[IE_PROTO$1] = O;
716
+ } else result = NullProtoObject();
717
+ return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
718
+ };
719
+
720
+ var wellKnownSymbol$4 = wellKnownSymbol$6;
721
+ var create$1 = objectCreate;
722
+ var definePropertyModule$2 = objectDefineProperty;
723
+
724
+ var UNSCOPABLES = wellKnownSymbol$4('unscopables');
725
+ var ArrayPrototype = Array.prototype;
726
+
727
+ // Array.prototype[@@unscopables]
728
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
729
+ if (ArrayPrototype[UNSCOPABLES] == undefined) {
730
+ definePropertyModule$2.f(ArrayPrototype, UNSCOPABLES, {
731
+ configurable: true,
732
+ value: create$1(null)
733
+ });
734
+ }
735
+
736
+ // add a key to Array.prototype[@@unscopables]
737
+ var addToUnscopables$1 = function (key) {
738
+ ArrayPrototype[UNSCOPABLES][key] = true;
739
+ };
740
+
741
+ var iterators = {};
742
+
743
+ var uncurryThis$3 = functionUncurryThis;
744
+ var isCallable$7 = isCallable$d;
745
+ var store$1 = sharedStore;
746
+
747
+ var functionToString = uncurryThis$3(Function.toString);
748
+
749
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
750
+ if (!isCallable$7(store$1.inspectSource)) {
751
+ store$1.inspectSource = function (it) {
752
+ return functionToString(it);
753
+ };
754
+ }
755
+
756
+ var inspectSource$2 = store$1.inspectSource;
757
+
758
+ var global$7 = global$o;
759
+ var isCallable$6 = isCallable$d;
760
+ var inspectSource$1 = inspectSource$2;
761
+
762
+ var WeakMap$1 = global$7.WeakMap;
763
+
764
+ var nativeWeakMap = isCallable$6(WeakMap$1) && /native code/.test(inspectSource$1(WeakMap$1));
765
+
766
+ var createPropertyDescriptor$3 = function (bitmap, value) {
767
+ return {
768
+ enumerable: !(bitmap & 1),
769
+ configurable: !(bitmap & 2),
770
+ writable: !(bitmap & 4),
771
+ value: value
772
+ };
773
+ };
774
+
775
+ var DESCRIPTORS$3 = descriptors;
776
+ var definePropertyModule$1 = objectDefineProperty;
777
+ var createPropertyDescriptor$2 = createPropertyDescriptor$3;
778
+
779
+ var createNonEnumerableProperty$5 = DESCRIPTORS$3 ? function (object, key, value) {
780
+ return definePropertyModule$1.f(object, key, createPropertyDescriptor$2(1, value));
781
+ } : function (object, key, value) {
782
+ object[key] = value;
783
+ return object;
784
+ };
785
+
786
+ var NATIVE_WEAK_MAP = nativeWeakMap;
787
+ var global$6 = global$o;
788
+ var uncurryThis$2 = functionUncurryThis;
789
+ var isObject = isObject$5;
790
+ var createNonEnumerableProperty$4 = createNonEnumerableProperty$5;
791
+ var hasOwn$6 = hasOwnProperty_1;
792
+ var shared = sharedStore;
793
+ var sharedKey$1 = sharedKey$3;
794
+ var hiddenKeys$1 = hiddenKeys$4;
795
+
796
+ var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
797
+ var TypeError$1 = global$6.TypeError;
798
+ var WeakMap = global$6.WeakMap;
799
+ var set, get, has;
800
+
801
+ var enforce = function (it) {
802
+ return has(it) ? get(it) : set(it, {});
803
+ };
804
+
805
+ var getterFor = function (TYPE) {
806
+ return function (it) {
807
+ var state;
808
+ if (!isObject(it) || (state = get(it)).type !== TYPE) {
809
+ throw TypeError$1('Incompatible receiver, ' + TYPE + ' required');
810
+ } return state;
811
+ };
812
+ };
813
+
814
+ if (NATIVE_WEAK_MAP || shared.state) {
815
+ var store = shared.state || (shared.state = new WeakMap());
816
+ var wmget = uncurryThis$2(store.get);
817
+ var wmhas = uncurryThis$2(store.has);
818
+ var wmset = uncurryThis$2(store.set);
819
+ set = function (it, metadata) {
820
+ if (wmhas(store, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
821
+ metadata.facade = it;
822
+ wmset(store, it, metadata);
823
+ return metadata;
824
+ };
825
+ get = function (it) {
826
+ return wmget(store, it) || {};
827
+ };
828
+ has = function (it) {
829
+ return wmhas(store, it);
830
+ };
831
+ } else {
832
+ var STATE = sharedKey$1('state');
833
+ hiddenKeys$1[STATE] = true;
834
+ set = function (it, metadata) {
835
+ if (hasOwn$6(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
836
+ metadata.facade = it;
837
+ createNonEnumerableProperty$4(it, STATE, metadata);
838
+ return metadata;
839
+ };
840
+ get = function (it) {
841
+ return hasOwn$6(it, STATE) ? it[STATE] : {};
842
+ };
843
+ has = function (it) {
844
+ return hasOwn$6(it, STATE);
845
+ };
846
+ }
847
+
848
+ var internalState = {
849
+ set: set,
850
+ get: get,
851
+ has: has,
852
+ enforce: enforce,
853
+ getterFor: getterFor
854
+ };
855
+
856
+ var objectGetOwnPropertyDescriptor = {};
857
+
858
+ var objectPropertyIsEnumerable = {};
859
+
860
+ var $propertyIsEnumerable = {}.propertyIsEnumerable;
861
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
862
+ var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
863
+
864
+ // Nashorn ~ JDK8 bug
865
+ var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
866
+
867
+ // `Object.prototype.propertyIsEnumerable` method implementation
868
+ // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
869
+ objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
870
+ var descriptor = getOwnPropertyDescriptor$1(this, V);
871
+ return !!descriptor && descriptor.enumerable;
872
+ } : $propertyIsEnumerable;
873
+
874
+ var DESCRIPTORS$2 = descriptors;
875
+ var call$1 = functionCall;
876
+ var propertyIsEnumerableModule = objectPropertyIsEnumerable;
877
+ var createPropertyDescriptor$1 = createPropertyDescriptor$3;
878
+ var toIndexedObject$1 = toIndexedObject$5;
879
+ var toPropertyKey = toPropertyKey$2;
880
+ var hasOwn$5 = hasOwnProperty_1;
881
+ var IE8_DOM_DEFINE = ie8DomDefine;
882
+
883
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
884
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
885
+
886
+ // `Object.getOwnPropertyDescriptor` method
887
+ // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
888
+ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$2 ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
889
+ O = toIndexedObject$1(O);
890
+ P = toPropertyKey(P);
891
+ if (IE8_DOM_DEFINE) try {
892
+ return $getOwnPropertyDescriptor(O, P);
893
+ } catch (error) { /* empty */ }
894
+ if (hasOwn$5(O, P)) return createPropertyDescriptor$1(!call$1(propertyIsEnumerableModule.f, O, P), O[P]);
895
+ };
896
+
897
+ var redefine$3 = {exports: {}};
898
+
899
+ var DESCRIPTORS$1 = descriptors;
900
+ var hasOwn$4 = hasOwnProperty_1;
901
+
902
+ var FunctionPrototype = Function.prototype;
903
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
904
+ var getDescriptor = DESCRIPTORS$1 && Object.getOwnPropertyDescriptor;
905
+
906
+ var EXISTS = hasOwn$4(FunctionPrototype, 'name');
907
+ // additional protection from minified / mangled / dropped function names
908
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
909
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS$1 || (DESCRIPTORS$1 && getDescriptor(FunctionPrototype, 'name').configurable));
910
+
911
+ var functionName = {
912
+ EXISTS: EXISTS,
913
+ PROPER: PROPER,
914
+ CONFIGURABLE: CONFIGURABLE
915
+ };
916
+
917
+ var global$5 = global$o;
918
+ var isCallable$5 = isCallable$d;
919
+ var hasOwn$3 = hasOwnProperty_1;
920
+ var createNonEnumerableProperty$3 = createNonEnumerableProperty$5;
921
+ var setGlobal$1 = setGlobal$3;
922
+ var inspectSource = inspectSource$2;
923
+ var InternalStateModule$1 = internalState;
924
+ var CONFIGURABLE_FUNCTION_NAME$1 = functionName.CONFIGURABLE;
925
+
926
+ var getInternalState$1 = InternalStateModule$1.get;
927
+ var enforceInternalState = InternalStateModule$1.enforce;
928
+ var TEMPLATE = String(String).split('String');
929
+
930
+ (redefine$3.exports = function (O, key, value, options) {
931
+ var unsafe = options ? !!options.unsafe : false;
932
+ var simple = options ? !!options.enumerable : false;
933
+ var noTargetGet = options ? !!options.noTargetGet : false;
934
+ var name = options && options.name !== undefined ? options.name : key;
935
+ var state;
936
+ if (isCallable$5(value)) {
937
+ if (String(name).slice(0, 7) === 'Symbol(') {
938
+ name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
939
+ }
940
+ if (!hasOwn$3(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
941
+ createNonEnumerableProperty$3(value, 'name', name);
942
+ }
943
+ state = enforceInternalState(value);
944
+ if (!state.source) {
945
+ state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
946
+ }
947
+ }
948
+ if (O === global$5) {
949
+ if (simple) O[key] = value;
950
+ else setGlobal$1(key, value);
951
+ return;
952
+ } else if (!unsafe) {
953
+ delete O[key];
954
+ } else if (!noTargetGet && O[key]) {
955
+ simple = true;
956
+ }
957
+ if (simple) O[key] = value;
958
+ else createNonEnumerableProperty$3(O, key, value);
959
+ // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
960
+ })(Function.prototype, 'toString', function toString() {
961
+ return isCallable$5(this) && getInternalState$1(this).source || inspectSource(this);
962
+ });
963
+
964
+ var objectGetOwnPropertyNames = {};
965
+
966
+ var internalObjectKeys = objectKeysInternal;
967
+ var enumBugKeys = enumBugKeys$3;
968
+
969
+ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
970
+
971
+ // `Object.getOwnPropertyNames` method
972
+ // https://tc39.es/ecma262/#sec-object.getownpropertynames
973
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
974
+ objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
975
+ return internalObjectKeys(O, hiddenKeys);
976
+ };
977
+
978
+ var objectGetOwnPropertySymbols = {};
979
+
980
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
981
+ objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
982
+
983
+ var getBuiltIn = getBuiltIn$4;
984
+ var uncurryThis$1 = functionUncurryThis;
985
+ var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
986
+ var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
987
+ var anObject$1 = anObject$5;
988
+
989
+ var concat = uncurryThis$1([].concat);
990
+
991
+ // all object keys, includes non-enumerable and symbols
992
+ var ownKeys$1 = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
993
+ var keys = getOwnPropertyNamesModule.f(anObject$1(it));
994
+ var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
995
+ return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
996
+ };
997
+
998
+ var hasOwn$2 = hasOwnProperty_1;
999
+ var ownKeys = ownKeys$1;
1000
+ var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
1001
+ var definePropertyModule = objectDefineProperty;
1002
+
1003
+ var copyConstructorProperties$1 = function (target, source, exceptions) {
1004
+ var keys = ownKeys(source);
1005
+ var defineProperty = definePropertyModule.f;
1006
+ var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1007
+ for (var i = 0; i < keys.length; i++) {
1008
+ var key = keys[i];
1009
+ if (!hasOwn$2(target, key) && !(exceptions && hasOwn$2(exceptions, key))) {
1010
+ defineProperty(target, key, getOwnPropertyDescriptor(source, key));
1011
+ }
1012
+ }
1013
+ };
1014
+
1015
+ var fails$2 = fails$9;
1016
+ var isCallable$4 = isCallable$d;
1017
+
1018
+ var replacement = /#|\.prototype\./;
1019
+
1020
+ var isForced$1 = function (feature, detection) {
1021
+ var value = data[normalize(feature)];
1022
+ return value == POLYFILL ? true
1023
+ : value == NATIVE ? false
1024
+ : isCallable$4(detection) ? fails$2(detection)
1025
+ : !!detection;
1026
+ };
1027
+
1028
+ var normalize = isForced$1.normalize = function (string) {
1029
+ return String(string).replace(replacement, '.').toLowerCase();
1030
+ };
1031
+
1032
+ var data = isForced$1.data = {};
1033
+ var NATIVE = isForced$1.NATIVE = 'N';
1034
+ var POLYFILL = isForced$1.POLYFILL = 'P';
1035
+
1036
+ var isForced_1 = isForced$1;
1037
+
1038
+ var global$4 = global$o;
1039
+ var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
1040
+ var createNonEnumerableProperty$2 = createNonEnumerableProperty$5;
1041
+ var redefine$2 = redefine$3.exports;
1042
+ var setGlobal = setGlobal$3;
1043
+ var copyConstructorProperties = copyConstructorProperties$1;
1044
+ var isForced = isForced_1;
1045
+
1046
+ /*
1047
+ options.target - name of the target object
1048
+ options.global - target is the global object
1049
+ options.stat - export as static methods of target
1050
+ options.proto - export as prototype methods of target
1051
+ options.real - real prototype method for the `pure` version
1052
+ options.forced - export even if the native feature is available
1053
+ options.bind - bind methods to the target, required for the `pure` version
1054
+ options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
1055
+ options.unsafe - use the simple assignment of property instead of delete + defineProperty
1056
+ options.sham - add a flag to not completely full polyfills
1057
+ options.enumerable - export as enumerable property
1058
+ options.noTargetGet - prevent calling a getter on target
1059
+ options.name - the .name of the function if it does not match the key
1060
+ */
1061
+ var _export = function (options, source) {
1062
+ var TARGET = options.target;
1063
+ var GLOBAL = options.global;
1064
+ var STATIC = options.stat;
1065
+ var FORCED, target, key, targetProperty, sourceProperty, descriptor;
1066
+ if (GLOBAL) {
1067
+ target = global$4;
1068
+ } else if (STATIC) {
1069
+ target = global$4[TARGET] || setGlobal(TARGET, {});
1070
+ } else {
1071
+ target = (global$4[TARGET] || {}).prototype;
1072
+ }
1073
+ if (target) for (key in source) {
1074
+ sourceProperty = source[key];
1075
+ if (options.noTargetGet) {
1076
+ descriptor = getOwnPropertyDescriptor(target, key);
1077
+ targetProperty = descriptor && descriptor.value;
1078
+ } else targetProperty = target[key];
1079
+ FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
1080
+ // contained in target
1081
+ if (!FORCED && targetProperty !== undefined) {
1082
+ if (typeof sourceProperty == typeof targetProperty) continue;
1083
+ copyConstructorProperties(sourceProperty, targetProperty);
1084
+ }
1085
+ // add a flag to not completely full polyfills
1086
+ if (options.sham || (targetProperty && targetProperty.sham)) {
1087
+ createNonEnumerableProperty$2(sourceProperty, 'sham', true);
1088
+ }
1089
+ // extend global
1090
+ redefine$2(target, key, sourceProperty, options);
1091
+ }
1092
+ };
1093
+
1094
+ var fails$1 = fails$9;
1095
+
1096
+ var correctPrototypeGetter = !fails$1(function () {
1097
+ function F() { /* empty */ }
1098
+ F.prototype.constructor = null;
1099
+ // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
1100
+ return Object.getPrototypeOf(new F()) !== F.prototype;
1101
+ });
1102
+
1103
+ var global$3 = global$o;
1104
+ var hasOwn$1 = hasOwnProperty_1;
1105
+ var isCallable$3 = isCallable$d;
1106
+ var toObject = toObject$2;
1107
+ var sharedKey = sharedKey$3;
1108
+ var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
1109
+
1110
+ var IE_PROTO = sharedKey('IE_PROTO');
1111
+ var Object$1 = global$3.Object;
1112
+ var ObjectPrototype = Object$1.prototype;
1113
+
1114
+ // `Object.getPrototypeOf` method
1115
+ // https://tc39.es/ecma262/#sec-object.getprototypeof
1116
+ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? Object$1.getPrototypeOf : function (O) {
1117
+ var object = toObject(O);
1118
+ if (hasOwn$1(object, IE_PROTO)) return object[IE_PROTO];
1119
+ var constructor = object.constructor;
1120
+ if (isCallable$3(constructor) && object instanceof constructor) {
1121
+ return constructor.prototype;
1122
+ } return object instanceof Object$1 ? ObjectPrototype : null;
1123
+ };
1124
+
1125
+ var fails = fails$9;
1126
+ var isCallable$2 = isCallable$d;
1127
+ var getPrototypeOf$1 = objectGetPrototypeOf;
1128
+ var redefine$1 = redefine$3.exports;
1129
+ var wellKnownSymbol$3 = wellKnownSymbol$6;
1130
+
1131
+ var ITERATOR$2 = wellKnownSymbol$3('iterator');
1132
+ var BUGGY_SAFARI_ITERATORS$1 = false;
1133
+
1134
+ // `%IteratorPrototype%` object
1135
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
1136
+ var IteratorPrototype$2, PrototypeOfArrayIteratorPrototype, arrayIterator;
1137
+
1138
+ /* eslint-disable es/no-array-prototype-keys -- safe */
1139
+ if ([].keys) {
1140
+ arrayIterator = [].keys();
1141
+ // Safari 8 has buggy iterators w/o `next`
1142
+ if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS$1 = true;
1143
+ else {
1144
+ PrototypeOfArrayIteratorPrototype = getPrototypeOf$1(getPrototypeOf$1(arrayIterator));
1145
+ if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype$2 = PrototypeOfArrayIteratorPrototype;
1146
+ }
1147
+ }
1148
+
1149
+ var NEW_ITERATOR_PROTOTYPE = IteratorPrototype$2 == undefined || fails(function () {
1150
+ var test = {};
1151
+ // FF44- legacy iterators case
1152
+ return IteratorPrototype$2[ITERATOR$2].call(test) !== test;
1153
+ });
1154
+
1155
+ if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$2 = {};
1156
+
1157
+ // `%IteratorPrototype%[@@iterator]()` method
1158
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1159
+ if (!isCallable$2(IteratorPrototype$2[ITERATOR$2])) {
1160
+ redefine$1(IteratorPrototype$2, ITERATOR$2, function () {
1161
+ return this;
1162
+ });
1163
+ }
1164
+
1165
+ var iteratorsCore = {
1166
+ IteratorPrototype: IteratorPrototype$2,
1167
+ BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS$1
1168
+ };
1169
+
1170
+ var defineProperty$1 = objectDefineProperty.f;
1171
+ var hasOwn = hasOwnProperty_1;
1172
+ var wellKnownSymbol$2 = wellKnownSymbol$6;
1173
+
1174
+ var TO_STRING_TAG$1 = wellKnownSymbol$2('toStringTag');
1175
+
1176
+ var setToStringTag$2 = function (target, TAG, STATIC) {
1177
+ if (target && !STATIC) target = target.prototype;
1178
+ if (target && !hasOwn(target, TO_STRING_TAG$1)) {
1179
+ defineProperty$1(target, TO_STRING_TAG$1, { configurable: true, value: TAG });
1180
+ }
1181
+ };
1182
+
1183
+ var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
1184
+ var create = objectCreate;
1185
+ var createPropertyDescriptor = createPropertyDescriptor$3;
1186
+ var setToStringTag$1 = setToStringTag$2;
1187
+ var Iterators$2 = iterators;
1188
+
1189
+ var returnThis$1 = function () { return this; };
1190
+
1191
+ var createIteratorConstructor$1 = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
1192
+ var TO_STRING_TAG = NAME + ' Iterator';
1193
+ IteratorConstructor.prototype = create(IteratorPrototype$1, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
1194
+ setToStringTag$1(IteratorConstructor, TO_STRING_TAG, false);
1195
+ Iterators$2[TO_STRING_TAG] = returnThis$1;
1196
+ return IteratorConstructor;
1197
+ };
1198
+
1199
+ var global$2 = global$o;
1200
+ var isCallable$1 = isCallable$d;
1201
+
1202
+ var String$1 = global$2.String;
1203
+ var TypeError = global$2.TypeError;
1204
+
1205
+ var aPossiblePrototype$1 = function (argument) {
1206
+ if (typeof argument == 'object' || isCallable$1(argument)) return argument;
1207
+ throw TypeError("Can't set " + String$1(argument) + ' as a prototype');
1208
+ };
1209
+
1210
+ /* eslint-disable no-proto -- safe */
1211
+
1212
+ var uncurryThis = functionUncurryThis;
1213
+ var anObject = anObject$5;
1214
+ var aPossiblePrototype = aPossiblePrototype$1;
1215
+
1216
+ // `Object.setPrototypeOf` method
1217
+ // https://tc39.es/ecma262/#sec-object.setprototypeof
1218
+ // Works with __proto__ only. Old v8 can't work with null proto objects.
1219
+ // eslint-disable-next-line es/no-object-setprototypeof -- safe
1220
+ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
1221
+ var CORRECT_SETTER = false;
1222
+ var test = {};
1223
+ var setter;
1224
+ try {
1225
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1226
+ setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
1227
+ setter(test, []);
1228
+ CORRECT_SETTER = test instanceof Array;
1229
+ } catch (error) { /* empty */ }
1230
+ return function setPrototypeOf(O, proto) {
1231
+ anObject(O);
1232
+ aPossiblePrototype(proto);
1233
+ if (CORRECT_SETTER) setter(O, proto);
1234
+ else O.__proto__ = proto;
1235
+ return O;
1236
+ };
1237
+ }() : undefined);
1238
+
1239
+ var $ = _export;
1240
+ var call = functionCall;
1241
+ var FunctionName = functionName;
1242
+ var isCallable = isCallable$d;
1243
+ var createIteratorConstructor = createIteratorConstructor$1;
1244
+ var getPrototypeOf = objectGetPrototypeOf;
1245
+ var setPrototypeOf = objectSetPrototypeOf;
1246
+ var setToStringTag = setToStringTag$2;
1247
+ var createNonEnumerableProperty$1 = createNonEnumerableProperty$5;
1248
+ var redefine = redefine$3.exports;
1249
+ var wellKnownSymbol$1 = wellKnownSymbol$6;
1250
+ var Iterators$1 = iterators;
1251
+ var IteratorsCore = iteratorsCore;
1252
+
1253
+ var PROPER_FUNCTION_NAME = FunctionName.PROPER;
1254
+ var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
1255
+ var IteratorPrototype = IteratorsCore.IteratorPrototype;
1256
+ var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
1257
+ var ITERATOR$1 = wellKnownSymbol$1('iterator');
1258
+ var KEYS = 'keys';
1259
+ var VALUES = 'values';
1260
+ var ENTRIES = 'entries';
1261
+
1262
+ var returnThis = function () { return this; };
1263
+
1264
+ var defineIterator$1 = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
1265
+ createIteratorConstructor(IteratorConstructor, NAME, next);
1266
+
1267
+ var getIterationMethod = function (KIND) {
1268
+ if (KIND === DEFAULT && defaultIterator) return defaultIterator;
1269
+ if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];
1270
+ switch (KIND) {
1271
+ case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
1272
+ case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
1273
+ case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
1274
+ } return function () { return new IteratorConstructor(this); };
1275
+ };
1276
+
1277
+ var TO_STRING_TAG = NAME + ' Iterator';
1278
+ var INCORRECT_VALUES_NAME = false;
1279
+ var IterablePrototype = Iterable.prototype;
1280
+ var nativeIterator = IterablePrototype[ITERATOR$1]
1281
+ || IterablePrototype['@@iterator']
1282
+ || DEFAULT && IterablePrototype[DEFAULT];
1283
+ var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
1284
+ var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
1285
+ var CurrentIteratorPrototype, methods, KEY;
1286
+
1287
+ // fix native
1288
+ if (anyNativeIterator) {
1289
+ CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
1290
+ if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
1291
+ if (getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
1292
+ if (setPrototypeOf) {
1293
+ setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
1294
+ } else if (!isCallable(CurrentIteratorPrototype[ITERATOR$1])) {
1295
+ redefine(CurrentIteratorPrototype, ITERATOR$1, returnThis);
1296
+ }
1297
+ }
1298
+ // Set @@toStringTag to native iterators
1299
+ setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true);
1300
+ }
1301
+ }
1302
+
1303
+ // fix Array.prototype.{ values, @@iterator }.name in V8 / FF
1304
+ if (PROPER_FUNCTION_NAME && DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
1305
+ if (CONFIGURABLE_FUNCTION_NAME) {
1306
+ createNonEnumerableProperty$1(IterablePrototype, 'name', VALUES);
1307
+ } else {
1308
+ INCORRECT_VALUES_NAME = true;
1309
+ defaultIterator = function values() { return call(nativeIterator, this); };
1310
+ }
1311
+ }
1312
+
1313
+ // export additional methods
1314
+ if (DEFAULT) {
1315
+ methods = {
1316
+ values: getIterationMethod(VALUES),
1317
+ keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
1318
+ entries: getIterationMethod(ENTRIES)
1319
+ };
1320
+ if (FORCED) for (KEY in methods) {
1321
+ if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
1322
+ redefine(IterablePrototype, KEY, methods[KEY]);
1323
+ }
1324
+ } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1325
+ }
1326
+
1327
+ // define iterator
1328
+ if (IterablePrototype[ITERATOR$1] !== defaultIterator) {
1329
+ redefine(IterablePrototype, ITERATOR$1, defaultIterator, { name: DEFAULT });
1330
+ }
1331
+ Iterators$1[NAME] = defaultIterator;
1332
+
1333
+ return methods;
1334
+ };
1335
+
1336
+ var toIndexedObject = toIndexedObject$5;
1337
+ var addToUnscopables = addToUnscopables$1;
1338
+ var Iterators = iterators;
1339
+ var InternalStateModule = internalState;
1340
+ var defineProperty = objectDefineProperty.f;
1341
+ var defineIterator = defineIterator$1;
1342
+ var DESCRIPTORS = descriptors;
1343
+
1344
+ var ARRAY_ITERATOR = 'Array Iterator';
1345
+ var setInternalState = InternalStateModule.set;
1346
+ var getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);
1347
+
1348
+ // `Array.prototype.entries` method
1349
+ // https://tc39.es/ecma262/#sec-array.prototype.entries
1350
+ // `Array.prototype.keys` method
1351
+ // https://tc39.es/ecma262/#sec-array.prototype.keys
1352
+ // `Array.prototype.values` method
1353
+ // https://tc39.es/ecma262/#sec-array.prototype.values
1354
+ // `Array.prototype[@@iterator]` method
1355
+ // https://tc39.es/ecma262/#sec-array.prototype-@@iterator
1356
+ // `CreateArrayIterator` internal method
1357
+ // https://tc39.es/ecma262/#sec-createarrayiterator
1358
+ var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind) {
1359
+ setInternalState(this, {
1360
+ type: ARRAY_ITERATOR,
1361
+ target: toIndexedObject(iterated), // target
1362
+ index: 0, // next index
1363
+ kind: kind // kind
1364
+ });
1365
+ // `%ArrayIteratorPrototype%.next` method
1366
+ // https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next
1367
+ }, function () {
1368
+ var state = getInternalState(this);
1369
+ var target = state.target;
1370
+ var kind = state.kind;
1371
+ var index = state.index++;
1372
+ if (!target || index >= target.length) {
1373
+ state.target = undefined;
1374
+ return { value: undefined, done: true };
1375
+ }
1376
+ if (kind == 'keys') return { value: index, done: false };
1377
+ if (kind == 'values') return { value: target[index], done: false };
1378
+ return { value: [index, target[index]], done: false };
1379
+ }, 'values');
1380
+
1381
+ // argumentsList[@@iterator] is %ArrayProto_values%
1382
+ // https://tc39.es/ecma262/#sec-createunmappedargumentsobject
1383
+ // https://tc39.es/ecma262/#sec-createmappedargumentsobject
1384
+ var values = Iterators.Arguments = Iterators.Array;
1385
+
1386
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
1387
+ addToUnscopables('keys');
1388
+ addToUnscopables('values');
1389
+ addToUnscopables('entries');
1390
+
1391
+ // V8 ~ Chrome 45- bug
1392
+ if (DESCRIPTORS && values.name !== 'values') try {
1393
+ defineProperty(values, 'name', { value: 'values' });
1394
+ } catch (error) { /* empty */ }
1395
+
1396
+ // iterable DOM collections
1397
+ // flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
1398
+ var domIterables = {
1399
+ CSSRuleList: 0,
1400
+ CSSStyleDeclaration: 0,
1401
+ CSSValueList: 0,
1402
+ ClientRectList: 0,
1403
+ DOMRectList: 0,
1404
+ DOMStringList: 0,
1405
+ DOMTokenList: 1,
1406
+ DataTransferItemList: 0,
1407
+ FileList: 0,
1408
+ HTMLAllCollection: 0,
1409
+ HTMLCollection: 0,
1410
+ HTMLFormElement: 0,
1411
+ HTMLSelectElement: 0,
1412
+ MediaList: 0,
1413
+ MimeTypeArray: 0,
1414
+ NamedNodeMap: 0,
1415
+ NodeList: 1,
1416
+ PaintRequestList: 0,
1417
+ Plugin: 0,
1418
+ PluginArray: 0,
1419
+ SVGLengthList: 0,
1420
+ SVGNumberList: 0,
1421
+ SVGPathSegList: 0,
1422
+ SVGPointList: 0,
1423
+ SVGStringList: 0,
1424
+ SVGTransformList: 0,
1425
+ SourceBufferList: 0,
1426
+ StyleSheetList: 0,
1427
+ TextTrackCueList: 0,
1428
+ TextTrackList: 0,
1429
+ TouchList: 0
1430
+ };
1431
+
1432
+ // in old WebKit versions, `element.classList` is not an instance of global `DOMTokenList`
1433
+ var documentCreateElement = documentCreateElement$2;
1434
+
1435
+ var classList = documentCreateElement('span').classList;
1436
+ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.constructor.prototype;
1437
+
1438
+ var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
1439
+
1440
+ var global$1 = global$o;
1441
+ var DOMIterables = domIterables;
1442
+ var DOMTokenListPrototype = domTokenListPrototype;
1443
+ var ArrayIteratorMethods = es_array_iterator;
1444
+ var createNonEnumerableProperty = createNonEnumerableProperty$5;
1445
+ var wellKnownSymbol = wellKnownSymbol$6;
1446
+
1447
+ var ITERATOR = wellKnownSymbol('iterator');
1448
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1449
+ var ArrayValues = ArrayIteratorMethods.values;
1450
+
1451
+ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
1452
+ if (CollectionPrototype) {
1453
+ // some Chrome versions have non-configurable methods on DOMTokenList
1454
+ if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
1455
+ createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);
1456
+ } catch (error) {
1457
+ CollectionPrototype[ITERATOR] = ArrayValues;
1458
+ }
1459
+ if (!CollectionPrototype[TO_STRING_TAG]) {
1460
+ createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);
1461
+ }
1462
+ if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
1463
+ // some Chrome versions have non-configurable methods on DOMTokenList
1464
+ if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
1465
+ createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);
1466
+ } catch (error) {
1467
+ CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];
1468
+ }
1469
+ }
1470
+ }
1471
+ };
1472
+
1473
+ for (var COLLECTION_NAME in DOMIterables) {
1474
+ handlePrototype(global$1[COLLECTION_NAME] && global$1[COLLECTION_NAME].prototype, COLLECTION_NAME);
1475
+ }
1476
+
1477
+ handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
1478
+
1479
+ export { objectSetPrototypeOf as A, setToStringTag$2 as B, isForced_1 as C, engineV8Version as D, internalState as E, requireObjectCoercible$2 as F, functionName as G, objectKeys$1 as H, toObject$2 as I, indexedObject as J, objectGetOwnPropertySymbols as K, objectPropertyIsEnumerable as L, shared$3 as M, objectCreate as N, createNonEnumerableProperty$5 as O, toIntegerOrInfinity$2 as P, toPropertyKey$2 as Q, createPropertyDescriptor$3 as R, toAbsoluteIndex$1 as S, toLength$1 as T, _export as _, getBuiltIn$4 as a, objectIsPrototypeOf as b, functionBindNative as c, descriptors as d, aCallable$1 as e, functionUncurryThis as f, global$o as g, classofRaw as h, iterators as i, isCallable$d as j, getMethod$1 as k, functionCall as l, anObject$5 as m, lengthOfArrayLike$1 as n, objectDefineProperty as o, fails$9 as p, inspectSource$2 as q, redefine$3 as r, engineUserAgent as s, tryToString$1 as t, html$1 as u, documentCreateElement$2 as v, wellKnownSymbol$6 as w, hasOwnProperty_1 as x, objectGetOwnPropertyDescriptor as y, isObject$5 as z };