@emailmaker/emailmaker 1.0.107-dev.3 → 1.0.107-dev.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 (325) hide show
  1. package/README.md +1 -1
  2. package/cli/dist/lib/cli/project.js +2 -16
  3. package/cli/dist/lib/config.js +20 -29
  4. package/cli/dist/lib/local-test.js +3 -19
  5. package/cli/dist/lib/paths.js +11 -0
  6. package/cli/dist/lib/resolveNpmSpawn.d.ts +20 -0
  7. package/cli/dist/lib/resolveNpmSpawn.js +71 -0
  8. package/cli/dist/lib/template-engine/context/pluginPackageJsonData.js +21 -19
  9. package/cli/dist/lib/template-engine/context/standVitePackageJsonData.js +7 -8
  10. package/cli/dist/lib/template-engine/resolveVariantDir.d.ts +5 -1
  11. package/cli/dist/lib/template-engine/resolveVariantDir.js +22 -0
  12. package/cli/dist/lib/templates/shared/i18n.js +2 -2
  13. package/cli/dist/lib/templates/shared/paths.js +3 -4
  14. package/cli/dist/lib/types/package-config.d.ts +1 -0
  15. package/cli/lib/cli/project.ts +2 -18
  16. package/cli/lib/config.ts +19 -30
  17. package/cli/lib/local-test.ts +3 -22
  18. package/cli/lib/paths.ts +15 -0
  19. package/cli/lib/resolveNpmSpawn.ts +72 -0
  20. package/cli/lib/template-engine/buildStandIndexHtml.test.ts +1 -0
  21. package/cli/lib/template-engine/context/pluginPackageJsonData.ts +23 -23
  22. package/cli/lib/template-engine/context/standVitePackageJsonData.ts +7 -12
  23. package/cli/lib/template-engine/pluginEtaParity.test.ts +1 -0
  24. package/cli/lib/template-engine/resolveVariantDir.ts +22 -0
  25. package/cli/lib/template-engine/standAdvancedViteDevHostEta.test.ts +4 -3
  26. package/cli/lib/template-engine/standWebpackDevHostEta.test.ts +7 -6
  27. package/cli/lib/templates/shared/i18n.ts +2 -2
  28. package/cli/lib/templates/shared/paths.ts +3 -4
  29. package/cli/lib/types/package-config.ts +1 -0
  30. package/cli/package.json +1 -1
  31. package/cli/project-templates/plugin/assets/vite/{plugin-build.config.mjs → plugin-build.config.ts} +7 -5
  32. package/cli/project-templates/plugin/assets/vite/{sandbox-build.config.mjs → sandbox-build.config.ts} +7 -5
  33. package/cli/project-templates/plugin/assets/webpack/{plugin-build.legacy.module.cjs → plugin-build.legacy.module.ts} +20 -7
  34. package/cli/project-templates/plugin/assets/webpack/{plugin-build.legacy.umd.cjs → plugin-build.legacy.umd.ts} +20 -7
  35. package/cli/project-templates/plugin/assets/webpack/{plugin-build.modern.module.cjs → plugin-build.modern.module.ts} +9 -4
  36. package/cli/project-templates/plugin/assets/webpack/{plugin-build.modern.umd.cjs → plugin-build.modern.umd.ts} +9 -4
  37. package/cli/project-templates/plugin/assets/webpack/{sandbox-build.config.cjs → sandbox-build.config.ts} +13 -3
  38. package/cli/project-templates/plugin/bundler-vite/release.html.eta +1 -0
  39. package/cli/project-templates/plugin/bundler-webpack/public/release.html.eta +1 -0
  40. package/cli/project-templates/plugin/shared-base/public/demo/product-1.svg +10 -0
  41. package/cli/project-templates/plugin/shared-base/public/demo/product-2.svg +10 -0
  42. package/cli/project-templates/plugin/shared-base/scripts/build-runner.ts +22 -0
  43. package/cli/project-templates/plugin/shared-base/scripts/build-types.ts +17 -0
  44. package/cli/project-templates/plugin/shared-base/scripts/clean.ts +16 -0
  45. package/cli/project-templates/plugin/shared-base/scripts/dev-runner.ts +52 -0
  46. package/cli/project-templates/plugin/shared-base/scripts/npmRun.ts +61 -0
  47. package/cli/project-templates/plugin/shared-base/scripts/release-runner.ts +18 -0
  48. package/cli/project-templates/plugin/shared-base/scripts/scriptRuntime.ts +10 -0
  49. package/cli/project-templates/plugin/shared-base/src/dev/hostApp.tsx.eta +1 -0
  50. package/cli/project-templates/plugin/shared-base/src/dev-release.tsx.eta +1 -0
  51. package/cli/project-templates/plugin/shared-base/src/dev.tsx.eta +1 -1
  52. package/cli/project-templates/shared/partials/plugin-dev-host-app-advanced.eta +93 -0
  53. package/cli/project-templates/shared/partials/plugin-dev-host-app-minimal.eta +54 -0
  54. package/cli/project-templates/shared/partials/plugin-dev-tsx-advanced.eta +3 -2
  55. package/cli/project-templates/shared/partials/plugin-dev-tsx-debug.eta +18 -0
  56. package/cli/project-templates/shared/partials/plugin-dev-tsx-release.eta +33 -0
  57. package/cli/project-templates/shared/partials/plugin-dev-tsx-runtime-helpers.eta +8 -8
  58. package/cli/project-templates/shared/partials/plugin-index-ts.eta +0 -1
  59. package/cli/project-templates/shared/partials/plugin-vite-dev-host.eta +9 -5
  60. package/cli/project-templates/shared/partials/plugin-vite-plugin-build.eta +7 -5
  61. package/cli/project-templates/shared/partials/plugin-vite-release-html.eta +12 -0
  62. package/cli/project-templates/shared/partials/plugin-vite-sandbox-build.eta +7 -5
  63. package/cli/project-templates/shared/partials/plugin-webpack-dev-host-legacy.eta +12 -5
  64. package/cli/project-templates/shared/partials/plugin-webpack-dev-host-modern.eta +13 -6
  65. package/cli/project-templates/shared/partials/plugin-webpack-release-html.eta +12 -0
  66. package/cli/project-templates/shared/partials/plugin-webpack-sandbox-build.eta +13 -3
  67. package/cli/project-templates/shared/partials/plugin-wp-legacy-module.eta +28 -10
  68. package/cli/project-templates/shared/partials/plugin-wp-legacy-umd.eta +28 -10
  69. package/cli/project-templates/shared/partials/plugin-wp-modern-module.eta +9 -4
  70. package/cli/project-templates/shared/partials/plugin-wp-modern-umd.eta +9 -4
  71. package/cli/project-templates/shared/partials/stand-dev-host-vite-memory.eta +3 -3
  72. package/cli/project-templates/shared/partials/stand-dev-host-vite-subpath.eta +8 -4
  73. package/cli/project-templates/shared/partials/stand-dev-host-vite-umd.eta +5 -5
  74. package/cli/project-templates/shared/partials/stand-dev-host-vite.eta +3 -3
  75. package/cli/project-templates/shared/partials/stand-dev-host-webpack-subpath.eta +8 -4
  76. package/cli/project-templates/shared/partials/stand-dev-host-webpack-umd.eta +9 -3
  77. package/cli/project-templates/shared/partials/stand-dev-host-webpack.eta +8 -4
  78. package/cli/project-templates/shared/partials/stand-dev-storage-middleware.eta +370 -0
  79. package/cli/project-templates/shared/stand-vite-base/config/lib/createViteStandConfig.ts +80 -0
  80. package/cli/project-templates/shared/stand-vite-base/scripts/devStorageMiddleware.ts.eta +1 -0
  81. package/cli/project-templates/shared/stand-webpack-base/config/lib/{createWebpackStandConfig.cjs → createWebpackStandConfig.ts} +31 -19
  82. package/cli/project-templates/{stand/advanced/umd/vite/config/lib/umdServeMiddleware.mjs → shared/stand-webpack-base/config/lib/umdServeMiddleware.ts} +19 -11
  83. package/cli/project-templates/shared/stand-webpack-base/scripts/devStorageMiddleware.ts.eta +1 -0
  84. package/cli/project-templates/stand/advanced/memory-usage/vite/config/lib/{createMemoryUsageStandConfig.mjs → createMemoryUsageStandConfig.ts} +25 -20
  85. package/cli/project-templates/stand/advanced/umd/vite/config/lib/umdServeMiddleware.ts +68 -0
  86. package/cli/project-templates/stand/react-adapter/webpack/README.md.eta +1 -0
  87. package/cli/project-templates/stand/react-adapter/webpack/config/dev-host.ts.eta +1 -0
  88. package/cli/project-templates/stand/react-adapter/webpack/package.json.eta +1 -0
  89. package/cli/project-templates/stand/react-adapter/webpack/public/index.html.eta +1 -0
  90. package/cli/project-templates/stand/react-adapter/webpack/src/dev/editorConfig.ts.eta +1 -0
  91. package/cli/project-templates/stand/react-adapter/webpack/src/dev/email.html.eta +1 -0
  92. package/cli/project-templates/stand/react-adapter/webpack/src/dev/getAuthToken.ts.eta +1 -0
  93. package/cli/project-templates/stand/react-adapter/webpack/src/dev/oauthCredentials.ts +9 -0
  94. package/cli/project-templates/stand/react-adapter/webpack/src/dev/storageProvider.ts.eta +1 -0
  95. package/cli/project-templates/stand/react-adapter/webpack/src/index.tsx.eta +1 -0
  96. package/cli/scripts/cli-matrix-smoke.ts +19 -10
  97. package/cli/scripts/verify-global-cli.ts +1 -1
  98. package/cli/scripts/vite-plugin-version-matrix.ts +299 -0
  99. package/cli/tsconfig.json +2 -2
  100. package/emailmaker-core.ed344c04.js +1 -0
  101. package/emailmaker-esm.js +788 -153
  102. package/emailmaker.d.ts +32 -0
  103. package/emailmaker.js +4 -4
  104. package/iframe/js/amp.BGJMqoms.js +1 -1
  105. package/iframe/js/chunk.oX6nCJbK.js +1 -1
  106. package/iframe/js/iframe-eblock.js +1 -1
  107. package/iframe/js/iframe.js +1 -1
  108. package/iframe/js/rules.BSaCN7eK.js +1 -1
  109. package/iframe/js/sanitize-html.Dy7Uwo8P.js +1 -1
  110. package/images/integrations/activecampaign.svg +4 -0
  111. package/images/integrations/bento.svg +9 -0
  112. package/images/integrations/brevo.svg +7 -0
  113. package/images/integrations/campaign_monitor.svg +10 -0
  114. package/images/integrations/constant_contact.svg +24 -0
  115. package/images/integrations/dotdigital.svg +144 -0
  116. package/images/integrations/getresponse.svg +23 -0
  117. package/images/integrations/hubspot.svg +3 -0
  118. package/images/integrations/klaviyo.svg +10 -0
  119. package/images/integrations/mailchimp.svg +9 -0
  120. package/images/integrations/salesforce.svg +20 -0
  121. package/js/browser-image-compression.js +9 -0
  122. package/package.json +2 -5
  123. package/runtime/@ant-design/cssinjs/index.js +1 -1
  124. package/runtime/@ant-design/icons/index.js +1 -1
  125. package/runtime/@ant-design/pro-layout/index.js +1 -1
  126. package/runtime/README.md +13 -13
  127. package/runtime/antd/index.js +1 -1
  128. package/runtime/app-core/index.js +1 -2
  129. package/runtime/classnames/index.js +1 -1
  130. package/runtime/core/index.js +6 -6
  131. package/runtime/dayjs/index.js +1 -1
  132. package/runtime/di/index.js +1 -2
  133. package/runtime/disposable/index.js +1 -2
  134. package/runtime/errors-runtime/index.js +1 -2
  135. package/runtime/guid/index.js +1 -2
  136. package/runtime/index.js +2 -4
  137. package/runtime/package.json +2 -3
  138. package/runtime/prop-types/index.js +1 -1
  139. package/runtime/react/index.js +1 -1
  140. package/runtime/react/jsx-dev-runtime/index.js +1 -1
  141. package/runtime/react/jsx-runtime/index.js +1 -1
  142. package/runtime/react-dom/client/index.js +1 -1
  143. package/runtime/react-dom/index.js +1 -1
  144. package/runtime/react-router-dom/index.js +1 -1
  145. package/runtime/uuid/index.js +1 -1
  146. package/static/amd/{8fc2a596.js → 19aeb269.js} +88 -88
  147. package/static/core/192ec827.js +1 -0
  148. package/static/core/22c1de2e2.js +1 -0
  149. package/static/core/24faedf0.js +1 -0
  150. package/static/core/29231645.js +1 -0
  151. package/static/core/2a3177fc2.js +1 -0
  152. package/static/core/346aabd2.js +3 -0
  153. package/static/core/3b800ed6.js +1 -0
  154. package/static/core/3e840e90.js +1 -0
  155. package/static/core/40cc9fd7.js +1 -0
  156. package/static/core/421bdec22.js +1 -0
  157. package/static/core/50ff48bc.js +4 -0
  158. package/static/core/5282795d2.js +6 -0
  159. package/static/core/555e2e2f2.js +903 -0
  160. package/static/core/563a283d.js +1 -0
  161. package/static/core/5d47e095.js +47 -0
  162. package/static/core/5f574386.js +1 -0
  163. package/static/core/67a41193.js +1 -0
  164. package/static/core/698dace4.js +7 -0
  165. package/static/core/6b648e2d.js +1 -0
  166. package/static/core/7629adfd.js +1 -0
  167. package/static/core/7717f2932.js +3 -0
  168. package/static/core/776cb34a.js +1 -0
  169. package/static/core/78a1e31e.js +1 -0
  170. package/static/core/7d56d643.js +1 -0
  171. package/static/core/841752212.js +40 -0
  172. package/static/core/8477e97e.js +1 -0
  173. package/static/core/8756d562.js +1 -0
  174. package/static/core/91d328d8.js +1 -0
  175. package/static/core/9270dbb6.js +6 -0
  176. package/static/core/96371334.js +566 -0
  177. package/static/core/9b9ddaef2.js +168 -0
  178. package/static/core/af1da4b4.js +1 -0
  179. package/static/core/b5096b152.js +471 -0
  180. package/static/core/bde6775a.js +1 -0
  181. package/static/core/bf1b888c.js +4 -0
  182. package/static/core/c3747df72.js +598 -0
  183. package/static/core/cec8d739.js +11 -0
  184. package/static/core/cfac3d32.js +1 -0
  185. package/static/core/d21c95cf2.js +1 -0
  186. package/static/core/dbd9ca52.js +1 -0
  187. package/static/core/dc590181.js +1 -0
  188. package/static/core/e0039d55.js +1 -0
  189. package/static/core/e4071c1a.js +4 -0
  190. package/static/core/ef87b75c.js +41 -0
  191. package/static/core/f47701f32.js +20 -0
  192. package/static/core/f83d7ac42.js +3 -0
  193. package/static/core/fcc67e6b.js +1 -0
  194. package/static/core/fd40d85c.js +1 -0
  195. package/static/core/fe638847.js +1 -0
  196. package/static/esm/{e8401d17.js → 203c9644.js} +3 -3
  197. package/static/esm/4b679053.js +27 -0
  198. package/static/esm/{b273a6c2.js → f31a26c6.js} +1 -1
  199. package/static/runtime/disposable-CD74igiJ.js +1 -0
  200. package/static/runtime/guid-C0wuVR8v.js +1 -0
  201. package/vite/index.d.ts +17 -6
  202. package/vite/index.js +315 -270
  203. package/vite/pluginDev/index.d.ts +10 -19
  204. package/vite/pluginDev/index.js +251 -204
  205. package/webpack/index.d.ts +24 -5
  206. package/webpack/index.js +168 -144
  207. package/webpack/pluginDev/index.d.ts +21 -22
  208. package/webpack/pluginDev/index.js +242 -177
  209. package/cli/dist/lib/template-engine/buildStandIndexHtml.test.d.ts +0 -2
  210. package/cli/dist/lib/template-engine/buildStandIndexHtml.test.js +0 -89
  211. package/cli/dist/lib/template-engine/emitEtaTree.test.d.ts +0 -2
  212. package/cli/dist/lib/template-engine/emitEtaTree.test.js +0 -34
  213. package/cli/dist/lib/template-engine/pluginEtaParity.test.d.ts +0 -2
  214. package/cli/dist/lib/template-engine/pluginEtaParity.test.js +0 -105
  215. package/cli/dist/lib/template-engine/resolveVariantDir.test.d.ts +0 -2
  216. package/cli/dist/lib/template-engine/resolveVariantDir.test.js +0 -52
  217. package/cli/dist/lib/template-engine/standAdvancedViteDevHostEta.test.d.ts +0 -2
  218. package/cli/dist/lib/template-engine/standAdvancedViteDevHostEta.test.js +0 -67
  219. package/cli/dist/lib/template-engine/standWebpackDevHostEta.test.d.ts +0 -2
  220. package/cli/dist/lib/template-engine/standWebpackDevHostEta.test.js +0 -83
  221. package/cli/dist/lib/template-engine/storageProviderEta.test.d.ts +0 -2
  222. package/cli/dist/lib/template-engine/storageProviderEta.test.js +0 -26
  223. package/cli/project-templates/plugin/shared-base/scripts/build-types.cjs +0 -8
  224. package/cli/project-templates/plugin/shared-base/scripts/clean.cjs +0 -6
  225. package/cli/project-templates/plugin/shared-base/scripts/dev-runner.cjs +0 -48
  226. package/cli/project-templates/plugin/shared-base/scripts/release-runner.cjs +0 -63
  227. package/cli/project-templates/shared/stand-vite-base/config/lib/createViteStandConfig.mjs +0 -80
  228. package/cli/project-templates/shared/stand-vite-base/scripts/devStorageMiddleware.cjs +0 -235
  229. package/cli/project-templates/shared/stand-webpack-base/config/lib/umdServeMiddleware.cjs +0 -38
  230. package/cli/project-templates/shared/stand-webpack-base/scripts/devStorageMiddleware.cjs +0 -235
  231. package/emailmaker-core.80d62b88.js +0 -569
  232. package/runtime/_core/app-core/index.js +0 -1
  233. package/runtime/_core/chunks/app-core-DphKKh8f.js +0 -1
  234. package/runtime/_core/chunks/chunk-oqAt0Dze.js +0 -1
  235. package/runtime/_core/chunks/di-BHUzE57z.js +0 -1
  236. package/runtime/_core/chunks/disposable-PhM3rJkj.js +0 -1
  237. package/runtime/_core/chunks/errors-runtime-VjCOXaQX.js +0 -1
  238. package/runtime/_core/chunks/guid-D2-FTZQG.js +0 -1
  239. package/runtime/_core/di/index.js +0 -1
  240. package/runtime/_core/disposable/index.js +0 -1
  241. package/runtime/_core/errors-runtime/index.js +0 -1
  242. package/runtime/_core/guid/index.js +0 -1
  243. package/runtime/_core/index.js +0 -1
  244. package/shared/hostBootstrap.js +0 -47
  245. package/shared/pluginDevOptions.js +0 -31
  246. package/shared/runtimeManifest.js +0 -72
  247. package/shared/stringCase.js +0 -16
  248. package/static/core/2360f32a.js +0 -3
  249. package/static/core/2687db56.js +0 -3
  250. package/static/core/2b250af6.js +0 -1261
  251. package/static/core/3469930c.js +0 -302
  252. package/static/core/34ce9042.js +0 -201
  253. package/static/core/4091ba5b.js +0 -25
  254. package/static/core/41ce3a6a.js +0 -173
  255. package/static/core/4ac4908c.js +0 -2213
  256. package/static/core/519096c1.js +0 -2597
  257. package/static/core/5fa1772b.js +0 -116550
  258. package/static/core/61312909.js +0 -3
  259. package/static/core/62a98c07.js +0 -75301
  260. package/static/core/6309c0f2.js +0 -3
  261. package/static/core/68d9f440.js +0 -3
  262. package/static/core/73b645ab.js +0 -2
  263. package/static/core/81019351.js +0 -280
  264. package/static/core/835b37ef.js +0 -591
  265. package/static/core/91242fb3.js +0 -3
  266. package/static/core/972b15b0.js +0 -92399
  267. package/static/core/974ef468.js +0 -493
  268. package/static/core/a17614422.js +0 -38078
  269. package/static/core/a2fa7b5b.js +0 -4232
  270. package/static/core/a513adfd.js +0 -89857
  271. package/static/core/a7c73a9b.js +0 -3813
  272. package/static/core/b64c7c90.js +0 -228
  273. package/static/core/cdc9ba92.js +0 -4711
  274. package/static/core/d1db685d.js +0 -2193
  275. package/static/core/d661febc.js +0 -3
  276. package/static/core/d6d2d2d0.js +0 -23
  277. package/static/core/df1a1225.js +0 -607
  278. package/static/core/e5bff179.js +0 -1302
  279. package/static/core/e5d602f5.js +0 -2
  280. package/static/core/eb029366.js +0 -1532
  281. package/static/core/f46c035a.js +0 -2
  282. package/static/core/f8b9d89a.js +0 -461
  283. package/static/core/fd897ad7.js +0 -3
  284. package/static/core/fdd890c7.js +0 -6168
  285. package/static/esm/29eb18ff.js +0 -164
  286. package/vite/mime-types.js +0 -179
  287. package/vite/utils.js +0 -44
  288. /package/cli/project-templates/plugin/bundler-vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  289. /package/cli/project-templates/plugin/bundler-vite/config/{plugin-build.mjs.eta → plugin-build.ts.eta} +0 -0
  290. /package/cli/project-templates/plugin/bundler-vite/config/{sandbox-build.mjs.eta → sandbox-build.ts.eta} +0 -0
  291. /package/cli/project-templates/plugin/bundler-webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  292. /package/cli/project-templates/plugin/bundler-webpack/config/{plugin-build.cjs.eta → plugin-build.ts.eta} +0 -0
  293. /package/cli/project-templates/plugin/bundler-webpack/config/{sandbox-build.cjs.eta → sandbox-build.ts.eta} +0 -0
  294. /package/cli/project-templates/stand/advanced/memory-usage/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  295. /package/cli/project-templates/stand/advanced/shadow-dom/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  296. /package/cli/project-templates/stand/advanced/shadow-dom/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  297. /package/cli/project-templates/stand/advanced/subpath/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  298. /package/cli/project-templates/stand/advanced/subpath/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  299. /package/cli/project-templates/stand/advanced/umd/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  300. /package/cli/project-templates/stand/advanced/umd/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  301. /package/cli/project-templates/stand/closed-loop/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  302. /package/cli/project-templates/stand/closed-loop/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  303. /package/cli/project-templates/stand/oauth/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  304. /package/cli/project-templates/stand/oauth/webpack/config/{dev-host.cjs.eta → dev-host.ts.eta} +0 -0
  305. /package/cli/project-templates/stand/react-adapter/vite/config/{dev-host.mjs.eta → dev-host.ts.eta} +0 -0
  306. /package/iframe/{iframe-eblock.80d62b88.html → iframe-eblock.ed344c04.html} +0 -0
  307. /package/iframe/{iframe.80d62b88.html → iframe.ed344c04.html} +0 -0
  308. /package/{runtime/chunks → static/runtime}/DownloadOutlined-a2ZUz7zB.js +0 -0
  309. /package/{runtime/chunks → static/runtime}/chunk-D-iEO58U.js +0 -0
  310. /package/{runtime/chunks → static/runtime}/classnames-DBEldvch.js +0 -0
  311. /package/{runtime/chunks → static/runtime}/client-5XqXGmAI.js +0 -0
  312. /package/{runtime/chunks → static/runtime}/dayjs.min-CO3mzOeV.js +0 -0
  313. /package/{runtime/_core/chunks/defineProperty-BGJFuFMq.js → static/runtime/defineProperty-CGNmw-jw.js} +0 -0
  314. /package/{runtime/chunks → static/runtime}/dist-Cns8cA2n.js +0 -0
  315. /package/{runtime/chunks → static/runtime}/dist-Ct0xRt3Y.js +0 -0
  316. /package/{runtime/chunks → static/runtime}/es-0FFT3fCz.js +0 -0
  317. /package/{runtime/chunks → static/runtime}/es-BwJ3eGbx.js +0 -0
  318. /package/{runtime/chunks → static/runtime}/es-D8EsVtRL.js +0 -0
  319. /package/{runtime/chunks → static/runtime}/es-Da4O25Kw.js +0 -0
  320. /package/{runtime/chunks → static/runtime}/jsx-dev-runtime-V4_MuHNS.js +0 -0
  321. /package/{runtime/chunks → static/runtime}/jsx-runtime-DBeCoE0b.js +0 -0
  322. /package/{runtime/chunks → static/runtime}/objectWithoutProperties-Bk0EDksJ.js +0 -0
  323. /package/{runtime/chunks → static/runtime}/prop-types-DxD5wgQ0.js +0 -0
  324. /package/{runtime/chunks → static/runtime}/react-TEeeBWTl.js +0 -0
  325. /package/{runtime/chunks → static/runtime}/react-dom-BKKa1g6U.js +0 -0
@@ -1,2193 +0,0 @@
1
- var e = {
2
- tags: [
3
- {
4
- name: "META",
5
- selector: "head > meta[charset]",
6
- required: !0,
7
- requiredParent: "HEAD",
8
- attrs: [{
9
- name: "charset",
10
- value: ["utf-8"],
11
- required: !0
12
- }],
13
- unique: !0
14
- },
15
- {
16
- name: "SCRIPT",
17
- selector: "head > script[src]",
18
- required: !0,
19
- requiredParent: "HEAD",
20
- attrs: [{
21
- name: "src",
22
- value: ["https://cdn.ampproject.org/v0.js"],
23
- required: !0
24
- }],
25
- attrLists: ["nonce-attr", "amphtml-engine-attrs"],
26
- unique: !0
27
- },
28
- {
29
- name: "STYLE",
30
- selector: "head > style[amp-custom-length-check]",
31
- requiredParent: "HEAD",
32
- attrs: [{
33
- name: "amp-custom-length-check",
34
- value: [""],
35
- required: !0
36
- }, {
37
- name: "type",
38
- value: ["text/css"]
39
- }],
40
- attrLists: ["nonce-attr"],
41
- unique: !0
42
- },
43
- {
44
- name: "STYLE",
45
- selector: "head > style[amp-custom]",
46
- requiredParent: "HEAD",
47
- attrs: [{
48
- name: "amp-custom",
49
- value: [""],
50
- required: !0
51
- }, {
52
- name: "type",
53
- value: ["text/css"]
54
- }],
55
- unique: !0
56
- },
57
- {
58
- name: "STYLE",
59
- selector: "head > style[amp-custom]",
60
- requiredParent: "HEAD",
61
- attrs: [{
62
- name: "amp-custom",
63
- value: [""],
64
- required: !0
65
- }, {
66
- name: "type",
67
- value: ["text/css"]
68
- }],
69
- unique: !0
70
- },
71
- {
72
- name: "STYLE",
73
- selector: "head > style[amp4email-boilerplate]",
74
- requiredParent: "HEAD",
75
- attrs: [{
76
- name: "amp4email-boilerplate",
77
- value: [""],
78
- required: !0
79
- }],
80
- unique: !0
81
- },
82
- {
83
- name: "SCRIPT",
84
- selector: "amp-state > script[type]",
85
- requiresExtension: ["amp-bind"],
86
- requiredParent: "AMP-STATE",
87
- attrs: [{
88
- name: "type",
89
- value: ["application/json"],
90
- required: !0
91
- }],
92
- attrLists: ["nonce-attr"]
93
- },
94
- {
95
- name: "HEAD",
96
- selector: "html > head",
97
- required: !0,
98
- requiredParent: "HTML",
99
- attrs: [],
100
- unique: !0
101
- },
102
- {
103
- name: "BODY",
104
- selector: "html > body",
105
- required: !0,
106
- requiredParent: "HTML",
107
- attrs: [],
108
- unique: !0
109
- },
110
- {
111
- name: "SECTION",
112
- selector: "amp-accordion > section",
113
- requiredParent: "AMP-ACCORDION",
114
- attrs: [{
115
- name: "expanded",
116
- value: [""]
117
- }, { name: "[data-expand]" }]
118
- },
119
- {
120
- name: "DIV",
121
- selector: "div[submit-success][template]",
122
- attrs: [
123
- { name: "align" },
124
- {
125
- name: "submit-success",
126
- required: !0
127
- },
128
- {
129
- name: "template",
130
- required: !0
131
- }
132
- ]
133
- },
134
- {
135
- name: "DIV",
136
- selector: "div[submit-error][template]",
137
- attrs: [
138
- { name: "align" },
139
- {
140
- name: "submit-error",
141
- required: !0
142
- },
143
- {
144
- name: "template",
145
- required: !0
146
- }
147
- ]
148
- },
149
- {
150
- name: "SCRIPT",
151
- selector: "script[type][template]",
152
- requiresExtension: ["amp-mustache"],
153
- attrs: [
154
- {
155
- name: "id",
156
- disallowedValueRegex: "(^|\\s)(__amp_\\S*|__count__|__defineGetter__|__defineSetter__|__lookupGetter__|__lookupSetter__|__noSuchMethod__|__parent__|__proto__|__AMP_\\S*|\\$p|\\$proxy|acceptCharset|addEventListener|appendChild|assignedSlot|attachShadow|AMP|baseURI|checkValidity|childElementCount|childNodes|classList|className|clientHeight|clientLeft|clientTop|clientWidth|compareDocumentPosition|computedName|computedRole|contentEditable|createShadowRoot|enqueAction|firstChild|firstElementChild|getAnimations|getAttribute|getAttributeNS|getAttributeNode|getAttributeNodeNS|getBoundingClientRect|getClientRects|getDestinationInsertionPoints|getElementsByClassName|getElementsByTagName|getElementsByTagNameNS|getRootNode|hasAttribute|hasAttributeNS|hasAttributes|hasChildNodes|hasPointerCapture|i-amphtml-\\S*|innerHTML|innerText|inputMode|insertAdjacentElement|insertAdjacentHTML|insertAdjacentText|isContentEditable|isDefaultNamespace|isEqualNode|isSameNode|lastChild|lastElementChild|lookupNamespaceURI|namespaceURI|nextElementSibling|nextSibling|nodeName|nodeType|nodeValue|offsetHeight|offsetLeft|offsetParent|offsetTop|offsetWidth|outerHTML|outerText|ownerDocument|parentElement|parentNode|previousElementSibling|previousSibling|querySelector|querySelectorAll|releasePointerCapture|removeAttribute|removeAttributeNS|removeAttributeNode|removeChild|removeEventListener|replaceChild|reportValidity|requestPointerLock|scrollHeight|scrollIntoView|scrollIntoViewIfNeeded|scrollLeft|scrollWidth|setAttribute|setAttributeNS|setAttributeNode|setAttributeNodeNS|setPointerCapture|shadowRoot|styleMap|tabIndex|tagName|textContent|toString|valueOf|(webkit|ms|moz|o)dropzone|(webkit|moz|ms|o)MatchesSelector|(webkit|moz|ms|o)RequestFullScreen|(webkit|moz|ms|o)RequestFullscreen)(\\s|$)"
157
- },
158
- {
159
- name: "type",
160
- value: ["text/plain"],
161
- required: !0
162
- },
163
- {
164
- name: "template",
165
- value: ["amp-mustache"],
166
- required: !0
167
- }
168
- ],
169
- attrLists: ["nonce-attr"]
170
- },
171
- {
172
- name: "FORM",
173
- selector: "form[action-xhr]",
174
- requiresExtension: ["amp-form"],
175
- attrs: [
176
- { name: "accept" },
177
- { name: "accept-charset" },
178
- {
179
- name: "action-xhr",
180
- valueUrl: {
181
- protocol: ["https"],
182
- allowRelative: !1
183
- },
184
- required: !0,
185
- disallowedValueRegex: "__amp_source_origin|{{|}}"
186
- },
187
- { name: "autocomplete" },
188
- {
189
- name: "custom-validation-reporting",
190
- value: [
191
- "as-you-go",
192
- "interact-and-submit",
193
- "show-all-on-submit",
194
- "show-first-on-submit"
195
- ]
196
- },
197
- { name: "enctype" },
198
- {
199
- name: "method",
200
- value: ["post"],
201
- required: !0
202
- },
203
- { name: "novalidate" },
204
- { name: "xssi-prefix" }
205
- ]
206
- },
207
- {
208
- name: "DIV",
209
- selector: "div[submitting]",
210
- attrs: [{ name: "align" }, {
211
- name: "submitting",
212
- required: !0
213
- }]
214
- },
215
- {
216
- name: "DIV",
217
- selector: "div[submit-success]",
218
- attrs: [{ name: "align" }, {
219
- name: "submit-success",
220
- required: !0
221
- }]
222
- },
223
- {
224
- name: "DIV",
225
- selector: "div[submit-error]",
226
- attrs: [{ name: "align" }, {
227
- name: "submit-error",
228
- required: !0
229
- }]
230
- },
231
- {
232
- name: "SCRIPT",
233
- selector: "script[type]",
234
- attrs: [{
235
- name: "type",
236
- value: ["application/ld+json"],
237
- required: !0
238
- }],
239
- attrLists: ["nonce-attr"]
240
- },
241
- {
242
- name: "DIV",
243
- selector: "div[fetch-error]",
244
- attrs: [{ name: "align" }, {
245
- name: "fetch-error",
246
- required: !0
247
- }]
248
- },
249
- {
250
- name: "NAV",
251
- selector: "nav[toolbar]",
252
- requiredParent: "AMP-SIDEBAR",
253
- attrs: [{
254
- name: "toolbar",
255
- required: !0
256
- }, {
257
- name: "toolbar-target",
258
- required: !0
259
- }]
260
- },
261
- {
262
- name: "HTML",
263
- selector: "html",
264
- required: !0,
265
- requiredParent: "$ROOT",
266
- attrs: [{
267
- name: "⚡4email",
268
- value: [""],
269
- required: !0
270
- }, {
271
- name: "data-css-strict",
272
- value: [""],
273
- required: !0
274
- }],
275
- unique: !0
276
- },
277
- {
278
- name: "TITLE",
279
- selector: "title",
280
- deprecation: "Title tags in email have no meaning. This tag may become invalid in the future.",
281
- attrs: [{ name: "[text]" }]
282
- },
283
- {
284
- name: "META",
285
- selector: "meta",
286
- attrs: [
287
- { name: "content" },
288
- { name: "itemprop" },
289
- {
290
- name: "name",
291
- disallowedValueRegex: "(^|\\s)(amp-.*|amp4ads-.*|apple-itunes-app|content-disposition|revisit-after|viewport)(\\s|$)"
292
- },
293
- { name: "media" },
294
- { name: "property" },
295
- { name: "scheme" }
296
- ]
297
- },
298
- {
299
- name: "ARTICLE",
300
- selector: "article",
301
- attrs: []
302
- },
303
- {
304
- name: "SECTION",
305
- selector: "section",
306
- attrs: []
307
- },
308
- {
309
- name: "NAV",
310
- selector: "nav",
311
- attrs: []
312
- },
313
- {
314
- name: "ASIDE",
315
- selector: "aside",
316
- attrs: []
317
- },
318
- {
319
- name: "H1",
320
- selector: "h1",
321
- attrs: [{ name: "align" }]
322
- },
323
- {
324
- name: "H2",
325
- selector: "h2",
326
- attrs: [{ name: "align" }]
327
- },
328
- {
329
- name: "H3",
330
- selector: "h3",
331
- attrs: [{ name: "align" }]
332
- },
333
- {
334
- name: "H4",
335
- selector: "h4",
336
- attrs: [{ name: "align" }]
337
- },
338
- {
339
- name: "H5",
340
- selector: "h5",
341
- attrs: [{ name: "align" }]
342
- },
343
- {
344
- name: "H6",
345
- selector: "h6",
346
- attrs: [{ name: "align" }]
347
- },
348
- {
349
- name: "HEADER",
350
- selector: "header",
351
- attrs: []
352
- },
353
- {
354
- name: "FOOTER",
355
- selector: "footer",
356
- attrs: []
357
- },
358
- {
359
- name: "ADDRESS",
360
- selector: "address",
361
- attrs: []
362
- },
363
- {
364
- name: "P",
365
- selector: "p",
366
- attrs: [{ name: "align" }]
367
- },
368
- {
369
- name: "HR",
370
- selector: "hr",
371
- attrs: []
372
- },
373
- {
374
- name: "PRE",
375
- selector: "pre",
376
- attrs: []
377
- },
378
- {
379
- name: "BLOCKQUOTE",
380
- selector: "blockquote",
381
- attrs: [{ name: "align" }],
382
- attrLists: ["cite-attr"]
383
- },
384
- {
385
- name: "OL",
386
- selector: "ol",
387
- attrs: [
388
- {
389
- name: "reversed",
390
- value: [""]
391
- },
392
- {
393
- name: "start",
394
- valueRegex: "[0-9]*"
395
- },
396
- {
397
- name: "type",
398
- valueRegex: "[1AaIi]"
399
- }
400
- ]
401
- },
402
- {
403
- name: "UL",
404
- selector: "ul",
405
- attrs: []
406
- },
407
- {
408
- name: "LI",
409
- selector: "li",
410
- attrs: [{
411
- name: "value",
412
- valueRegex: "[0-9]*"
413
- }]
414
- },
415
- {
416
- name: "DL",
417
- selector: "dl",
418
- attrs: []
419
- },
420
- {
421
- name: "DT",
422
- selector: "dt",
423
- attrs: []
424
- },
425
- {
426
- name: "DD",
427
- selector: "dd",
428
- attrs: []
429
- },
430
- {
431
- name: "FIGURE",
432
- selector: "figure",
433
- attrs: []
434
- },
435
- {
436
- name: "FIGCAPTION",
437
- selector: "figcaption",
438
- attrs: []
439
- },
440
- {
441
- name: "DIV",
442
- selector: "div",
443
- attrs: [{ name: "align" }]
444
- },
445
- {
446
- name: "MAIN",
447
- selector: "main",
448
- attrs: []
449
- },
450
- {
451
- name: "A",
452
- selector: "a",
453
- attrs: [
454
- { name: "border" },
455
- {
456
- name: "href",
457
- valueUrl: {
458
- protocol: [
459
- "http",
460
- "https",
461
- "mailto",
462
- "tel"
463
- ],
464
- allowRelative: !1
465
- },
466
- disallowedValueRegex: "__amp_source_origin|(.|\\s){{|}}(.|\\s)|^{{.*[^}][^}]$|^[^{][^{].*}}$|^}}|{{$|{{#|{{/|{{\\^"
467
- },
468
- { name: "hreflang" },
469
- { name: "media" },
470
- { name: "role" },
471
- { name: "tabindex" },
472
- {
473
- name: "target",
474
- value: ["_blank"]
475
- },
476
- {
477
- name: "type",
478
- value: ["text/html"]
479
- }
480
- ]
481
- },
482
- {
483
- name: "EM",
484
- selector: "em",
485
- attrs: []
486
- },
487
- {
488
- name: "STRONG",
489
- selector: "strong",
490
- attrs: []
491
- },
492
- {
493
- name: "SMALL",
494
- selector: "small",
495
- attrs: []
496
- },
497
- {
498
- name: "S",
499
- selector: "s",
500
- attrs: []
501
- },
502
- {
503
- name: "CITE",
504
- selector: "cite",
505
- attrs: []
506
- },
507
- {
508
- name: "Q",
509
- selector: "q",
510
- attrs: [],
511
- attrLists: ["cite-attr"]
512
- },
513
- {
514
- name: "DFN",
515
- selector: "dfn",
516
- attrs: []
517
- },
518
- {
519
- name: "ABBR",
520
- selector: "abbr",
521
- attrs: []
522
- },
523
- {
524
- name: "DATA",
525
- selector: "data",
526
- attrs: []
527
- },
528
- {
529
- name: "TIME",
530
- selector: "time",
531
- attrs: [{ name: "datetime" }, {
532
- name: "pubdate",
533
- value: [""]
534
- }]
535
- },
536
- {
537
- name: "CODE",
538
- selector: "code",
539
- attrs: []
540
- },
541
- {
542
- name: "VAR",
543
- selector: "var",
544
- attrs: []
545
- },
546
- {
547
- name: "SAMP",
548
- selector: "samp",
549
- attrs: []
550
- },
551
- {
552
- name: "KBD",
553
- selector: "kbd",
554
- attrs: []
555
- },
556
- {
557
- name: "SUB",
558
- selector: "sub",
559
- attrs: []
560
- },
561
- {
562
- name: "SUP",
563
- selector: "sup",
564
- attrs: []
565
- },
566
- {
567
- name: "I",
568
- selector: "i",
569
- attrs: []
570
- },
571
- {
572
- name: "B",
573
- selector: "b",
574
- attrs: []
575
- },
576
- {
577
- name: "U",
578
- selector: "u",
579
- attrs: []
580
- },
581
- {
582
- name: "MARK",
583
- selector: "mark",
584
- attrs: []
585
- },
586
- {
587
- name: "RUBY",
588
- selector: "ruby",
589
- attrs: []
590
- },
591
- {
592
- name: "RB",
593
- selector: "rb",
594
- attrs: []
595
- },
596
- {
597
- name: "RT",
598
- selector: "rt",
599
- attrs: []
600
- },
601
- {
602
- name: "RP",
603
- selector: "rp",
604
- attrs: []
605
- },
606
- {
607
- name: "BDO",
608
- selector: "bdo",
609
- attrs: [{ name: "dir" }]
610
- },
611
- {
612
- name: "SPAN",
613
- selector: "span",
614
- attrs: []
615
- },
616
- {
617
- name: "BR",
618
- selector: "br",
619
- attrs: []
620
- },
621
- {
622
- name: "WBR",
623
- selector: "wbr",
624
- attrs: []
625
- },
626
- {
627
- name: "INS",
628
- selector: "ins",
629
- attrs: [{ name: "datetime" }],
630
- attrLists: ["cite-attr"]
631
- },
632
- {
633
- name: "DEL",
634
- selector: "del",
635
- attrs: [{ name: "datetime" }],
636
- attrLists: ["cite-attr"]
637
- },
638
- {
639
- name: "TABLE",
640
- selector: "table",
641
- attrs: [
642
- { name: "align" },
643
- { name: "bgcolor" },
644
- {
645
- name: "border",
646
- value: ["0", "1"]
647
- },
648
- { name: "cellpadding" },
649
- { name: "cellspacing" },
650
- { name: "width" }
651
- ]
652
- },
653
- {
654
- name: "CAPTION",
655
- selector: "caption",
656
- attrs: []
657
- },
658
- {
659
- name: "COLGROUP",
660
- selector: "colgroup",
661
- attrs: [{ name: "span" }]
662
- },
663
- {
664
- name: "COL",
665
- selector: "col",
666
- attrs: [{ name: "span" }]
667
- },
668
- {
669
- name: "TBODY",
670
- selector: "tbody",
671
- attrs: []
672
- },
673
- {
674
- name: "THEAD",
675
- selector: "thead",
676
- attrs: []
677
- },
678
- {
679
- name: "TFOOT",
680
- selector: "tfoot",
681
- attrs: []
682
- },
683
- {
684
- name: "TR",
685
- selector: "tr",
686
- attrs: [
687
- { name: "align" },
688
- { name: "bgcolor" },
689
- { name: "height" },
690
- { name: "valign" }
691
- ]
692
- },
693
- {
694
- name: "TD",
695
- selector: "td",
696
- attrs: [
697
- { name: "align" },
698
- { name: "bgcolor" },
699
- { name: "colspan" },
700
- { name: "headers" },
701
- { name: "height" },
702
- { name: "rowspan" },
703
- { name: "valign" },
704
- { name: "width" }
705
- ]
706
- },
707
- {
708
- name: "TH",
709
- selector: "th",
710
- attrs: [
711
- { name: "abbr" },
712
- { name: "align" },
713
- { name: "bgcolor" },
714
- { name: "colspan" },
715
- { name: "headers" },
716
- { name: "height" },
717
- { name: "rowspan" },
718
- { name: "scope" },
719
- { name: "valign" },
720
- { name: "width" }
721
- ]
722
- },
723
- {
724
- name: "FORM",
725
- selector: "form",
726
- requiresExtension: ["amp-form"],
727
- attrs: [
728
- { name: "accept" },
729
- { name: "accept-charset" },
730
- {
731
- name: "action-xhr",
732
- valueUrl: {
733
- protocol: ["https"],
734
- allowRelative: !1
735
- },
736
- disallowedValueRegex: "__amp_source_origin|{{|}}"
737
- },
738
- { name: "autocomplete" },
739
- {
740
- name: "custom-validation-reporting",
741
- value: [
742
- "as-you-go",
743
- "interact-and-submit",
744
- "show-all-on-submit",
745
- "show-first-on-submit"
746
- ]
747
- },
748
- { name: "enctype" },
749
- {
750
- name: "method",
751
- value: ["get"]
752
- },
753
- { name: "novalidate" },
754
- { name: "xssi-prefix" }
755
- ]
756
- },
757
- {
758
- name: "LABEL",
759
- selector: "label",
760
- attrs: [{ name: "for" }]
761
- },
762
- {
763
- name: "INPUT",
764
- selector: "input",
765
- attrs: [{
766
- name: "type",
767
- disallowedValueRegex: "(^|\\s)(file|image|password|)(\\s|$)"
768
- }],
769
- attrLists: ["input-common-attr", "name-attr"]
770
- },
771
- {
772
- name: "BUTTON",
773
- selector: "button",
774
- attrs: [
775
- {
776
- name: "disabled",
777
- value: [""]
778
- },
779
- { name: "role" },
780
- { name: "tabindex" },
781
- { name: "type" },
782
- { name: "value" },
783
- { name: "[disabled]" },
784
- { name: "[value]" }
785
- ],
786
- attrLists: ["name-attr"]
787
- },
788
- {
789
- name: "SELECT",
790
- selector: "select",
791
- attrs: [
792
- { name: "disabled" },
793
- { name: "multiple" },
794
- { name: "required" },
795
- { name: "size" },
796
- { name: "[disabled]" },
797
- { name: "[multiple]" },
798
- { name: "[required]" },
799
- { name: "[size]" }
800
- ],
801
- attrLists: ["name-attr"]
802
- },
803
- {
804
- name: "DATALIST",
805
- selector: "datalist",
806
- attrs: []
807
- },
808
- {
809
- name: "OPTGROUP",
810
- selector: "optgroup",
811
- requiredParent: "SELECT",
812
- attrs: [
813
- { name: "disabled" },
814
- { name: "label" },
815
- { name: "[disabled]" },
816
- { name: "[label]" }
817
- ]
818
- },
819
- {
820
- name: "OPTION",
821
- selector: "option",
822
- attrs: [
823
- { name: "disabled" },
824
- { name: "label" },
825
- { name: "selected" },
826
- { name: "value" },
827
- { name: "[disabled]" },
828
- { name: "[label]" },
829
- { name: "[selected]" },
830
- { name: "[value]" }
831
- ]
832
- },
833
- {
834
- name: "TEXTAREA",
835
- selector: "textarea",
836
- attrs: [
837
- { name: "autocomplete" },
838
- { name: "autoexpand" },
839
- { name: "cols" },
840
- { name: "disabled" },
841
- { name: "maxlength" },
842
- { name: "minlength" },
843
- { name: "pattern" },
844
- { name: "placeholder" },
845
- { name: "readonly" },
846
- { name: "required" },
847
- { name: "rows" },
848
- { name: "spellcheck" },
849
- { name: "wrap" },
850
- { name: "[autocomplete]" },
851
- { name: "[cols]" },
852
- { name: "[defaulttext]" },
853
- { name: "[disabled]" },
854
- { name: "[maxlength]" },
855
- { name: "[minlength]" },
856
- { name: "[pattern]" },
857
- { name: "[placeholder]" },
858
- { name: "[readonly]" },
859
- { name: "[required]" },
860
- { name: "[rows]" },
861
- { name: "[spellcheck]" },
862
- { name: "[wrap]" }
863
- ],
864
- attrLists: ["name-attr"]
865
- },
866
- {
867
- name: "OUTPUT",
868
- selector: "output",
869
- attrs: [{ name: "for" }, { name: "form" }],
870
- attrLists: ["name-attr"]
871
- },
872
- {
873
- name: "PROGRESS",
874
- selector: "progress",
875
- attrs: [{ name: "max" }, { name: "value" }]
876
- },
877
- {
878
- name: "METER",
879
- selector: "meter",
880
- attrs: [
881
- { name: "high" },
882
- { name: "low" },
883
- { name: "max" },
884
- { name: "min" },
885
- { name: "optimum" },
886
- { name: "value" }
887
- ]
888
- },
889
- {
890
- name: "FIELDSET",
891
- selector: "fieldset",
892
- attrs: [{ name: "disabled" }, { name: "[disabled]" }],
893
- attrLists: ["name-attr"]
894
- },
895
- {
896
- name: "LEGEND",
897
- selector: "legend",
898
- attrs: []
899
- },
900
- {
901
- name: "DETAILS",
902
- selector: "details",
903
- attrs: [{
904
- name: "open",
905
- value: [""]
906
- }, { name: "[open]" }]
907
- },
908
- {
909
- name: "SUMMARY",
910
- selector: "summary",
911
- requiredParent: "DETAILS",
912
- attrs: []
913
- },
914
- {
915
- name: "AMP-IMG",
916
- selector: "amp-img",
917
- attrs: [
918
- { name: "alt" },
919
- { name: "attribution" },
920
- { name: "placeholder" },
921
- { name: "[alt]" },
922
- { name: "[attribution]" },
923
- {
924
- name: "layout",
925
- value: [
926
- "responsive",
927
- "fill",
928
- "fixed",
929
- "fixed_height",
930
- "flex_item",
931
- "intrinsic",
932
- "nodisplay"
933
- ],
934
- required: !0
935
- }
936
- ],
937
- attrLists: [
938
- "extended-amp-global",
939
- "mandatory-src-amp4email",
940
- "$AMP_LAYOUT_ATTRS"
941
- ]
942
- },
943
- {
944
- name: "AMP-LAYOUT",
945
- selector: "amp-layout",
946
- attrs: [{
947
- name: "layout",
948
- value: [
949
- "responsive",
950
- "fill",
951
- "fixed",
952
- "fixed_height",
953
- "flex_item",
954
- "intrinsic",
955
- "nodisplay",
956
- "container"
957
- ],
958
- required: !0
959
- }],
960
- attrLists: ["extended-amp-global", "$AMP_LAYOUT_ATTRS"]
961
- },
962
- {
963
- name: "SCRIPT",
964
- selector: "script[custom-element='amp-accordion']",
965
- attrs: [{
966
- name: "custom-element",
967
- value: ["amp-accordion"],
968
- required: !0
969
- }, {
970
- name: "src",
971
- value: ["https://cdn.ampproject.org/v0/amp-accordion-0.1.js"],
972
- required: !0
973
- }],
974
- attrLists: ["common-extension-attrs"]
975
- },
976
- {
977
- name: "AMP-ACCORDION",
978
- selector: "amp-accordion",
979
- requiresExtension: ["amp-accordion"],
980
- attrs: [
981
- {
982
- name: "animate",
983
- value: [""]
984
- },
985
- {
986
- name: "expand-single-section",
987
- value: [""]
988
- },
989
- {
990
- name: "layout",
991
- value: ["container"],
992
- required: !0
993
- }
994
- ],
995
- attrLists: ["extended-amp-global", "$AMP_LAYOUT_ATTRS"]
996
- },
997
- {
998
- name: "SCRIPT",
999
- selector: "script[custom-element='amp-anim']",
1000
- attrs: [{
1001
- name: "custom-element",
1002
- value: ["amp-anim"],
1003
- required: !0
1004
- }, {
1005
- name: "src",
1006
- value: ["https://cdn.ampproject.org/v0/amp-anim-0.1.js"],
1007
- required: !0
1008
- }],
1009
- attrLists: ["common-extension-attrs"]
1010
- },
1011
- {
1012
- name: "AMP-ANIM",
1013
- selector: "amp-anim",
1014
- requiresExtension: ["amp-anim"],
1015
- attrs: [
1016
- { name: "alt" },
1017
- { name: "attribution" },
1018
- {
1019
- name: "layout",
1020
- value: [
1021
- "responsive",
1022
- "fill",
1023
- "fixed",
1024
- "fixed_height",
1025
- "flex_item",
1026
- "nodisplay"
1027
- ],
1028
- required: !0
1029
- }
1030
- ],
1031
- attrLists: [
1032
- "extended-amp-global",
1033
- "mandatory-src-amp4email",
1034
- "$AMP_LAYOUT_ATTRS"
1035
- ]
1036
- },
1037
- {
1038
- name: "SCRIPT",
1039
- selector: "script[custom-element='amp-autocomplete']",
1040
- attrs: [{
1041
- name: "custom-element",
1042
- value: ["amp-autocomplete"],
1043
- required: !0
1044
- }, {
1045
- name: "src",
1046
- value: ["https://cdn.ampproject.org/v0/amp-autocomplete-0.1.js"],
1047
- required: !0
1048
- }],
1049
- attrLists: ["common-extension-attrs"]
1050
- },
1051
- {
1052
- name: "AMP-AUTOCOMPLETE",
1053
- selector: "amp-autocomplete",
1054
- requiresExtension: ["amp-autocomplete"],
1055
- attrs: [
1056
- { name: "highlight-user-entry" },
1057
- { name: "inline" },
1058
- { name: "items" },
1059
- { name: "max-items" },
1060
- { name: "min-characters" },
1061
- { name: "prefetch" },
1062
- { name: "query" },
1063
- { name: "submit-on-enter" },
1064
- { name: "suggest-first" },
1065
- {
1066
- name: "src",
1067
- valueUrl: {
1068
- protocol: ["https"],
1069
- allowRelative: !1
1070
- },
1071
- required: !0,
1072
- disallowedValueRegex: "__amp_source_origin|{{|}}"
1073
- },
1074
- { name: "template" },
1075
- {
1076
- name: "layout",
1077
- value: ["container"],
1078
- required: !0
1079
- }
1080
- ],
1081
- attrLists: ["extended-amp-global", "$AMP_LAYOUT_ATTRS"]
1082
- },
1083
- {
1084
- name: "SCRIPT",
1085
- selector: "script[custom-element='amp-bind']",
1086
- attrs: [{
1087
- name: "custom-element",
1088
- value: ["amp-bind"],
1089
- required: !0
1090
- }, {
1091
- name: "src",
1092
- value: ["https://cdn.ampproject.org/v0/amp-bind-0.1.js"],
1093
- required: !0
1094
- }],
1095
- attrLists: ["common-extension-attrs"]
1096
- },
1097
- {
1098
- name: "AMP-STATE",
1099
- selector: "amp-state",
1100
- requiresExtension: ["amp-bind"],
1101
- attrs: [],
1102
- attrLists: ["mandatory-id-attr"]
1103
- },
1104
- {
1105
- name: "AMP-BIND-MACRO",
1106
- selector: "amp-bind-macro",
1107
- requiresExtension: ["amp-bind"],
1108
- attrs: [{ name: "arguments" }, {
1109
- name: "expression",
1110
- required: !0
1111
- }],
1112
- attrLists: ["mandatory-id-attr"]
1113
- },
1114
- {
1115
- name: "SCRIPT",
1116
- selector: "script[custom-element='amp-carousel']",
1117
- attrs: [{
1118
- name: "custom-element",
1119
- value: ["amp-carousel"],
1120
- required: !0
1121
- }, {
1122
- name: "src",
1123
- value: ["https://cdn.ampproject.org/v0/amp-carousel-0.1.js"],
1124
- required: !0
1125
- }],
1126
- attrLists: ["common-extension-attrs"]
1127
- },
1128
- {
1129
- name: "AMP-CAROUSEL",
1130
- selector: "amp-carousel",
1131
- requiresExtension: ["amp-carousel"],
1132
- attrs: [{
1133
- name: "layout",
1134
- value: [
1135
- "responsive",
1136
- "fill",
1137
- "fixed",
1138
- "fixed_height",
1139
- "flex_item",
1140
- "intrinsic",
1141
- "nodisplay"
1142
- ],
1143
- required: !0
1144
- }],
1145
- attrLists: [
1146
- "amp-carousel-common",
1147
- "extended-amp-global",
1148
- "$AMP_LAYOUT_ATTRS"
1149
- ]
1150
- },
1151
- {
1152
- name: "SCRIPT",
1153
- selector: "script[custom-element='amp-fit-text']",
1154
- attrs: [{
1155
- name: "custom-element",
1156
- value: ["amp-fit-text"],
1157
- required: !0
1158
- }, {
1159
- name: "src",
1160
- value: ["https://cdn.ampproject.org/v0/amp-fit-text-0.1.js"],
1161
- required: !0
1162
- }],
1163
- attrLists: ["common-extension-attrs"]
1164
- },
1165
- {
1166
- name: "AMP-FIT-TEXT",
1167
- selector: "amp-fit-text",
1168
- requiresExtension: ["amp-fit-text"],
1169
- attrs: [
1170
- { name: "max-font-size" },
1171
- { name: "min-font-size" },
1172
- {
1173
- name: "layout",
1174
- value: [
1175
- "responsive",
1176
- "fill",
1177
- "fixed",
1178
- "fixed_height",
1179
- "flex_item",
1180
- "intrinsic",
1181
- "nodisplay"
1182
- ],
1183
- required: !0
1184
- }
1185
- ],
1186
- attrLists: ["extended-amp-global", "$AMP_LAYOUT_ATTRS"]
1187
- },
1188
- {
1189
- name: "SCRIPT",
1190
- selector: "script[custom-element='amp-form']",
1191
- attrs: [{
1192
- name: "custom-element",
1193
- value: ["amp-form"],
1194
- required: !0
1195
- }, {
1196
- name: "src",
1197
- value: ["https://cdn.ampproject.org/v0/amp-form-0.1.js"],
1198
- required: !0
1199
- }],
1200
- attrLists: ["common-extension-attrs"]
1201
- },
1202
- {
1203
- name: "SCRIPT",
1204
- selector: "script[custom-element='amp-image-lightbox']",
1205
- deprecation: "amp-image-lightbox cannot be properly positioned in emails and will soon be invalid in AMP4EMAIL.",
1206
- attrs: [{
1207
- name: "custom-element",
1208
- value: ["amp-image-lightbox"],
1209
- required: !0
1210
- }, {
1211
- name: "src",
1212
- value: ["https://cdn.ampproject.org/v0/amp-image-lightbox-0.1.js", "https://cdn.ampproject.org/v0/amp-image-lightbox-latest.js"],
1213
- required: !0
1214
- }],
1215
- attrLists: ["common-extension-attrs"]
1216
- },
1217
- {
1218
- name: "AMP-IMAGE-LIGHTBOX",
1219
- selector: "amp-image-lightbox",
1220
- requiresExtension: ["amp-image-lightbox"],
1221
- attrs: [{ name: "controls" }, {
1222
- name: "layout",
1223
- value: ["nodisplay"],
1224
- required: !0
1225
- }],
1226
- attrLists: ["extended-amp-global", "$AMP_LAYOUT_ATTRS"]
1227
- },
1228
- {
1229
- name: "SCRIPT",
1230
- selector: "script[custom-element='amp-lightbox']",
1231
- deprecation: "amp-lightbox cannot be properly positioned in emails and will soon be invalid in AMP4EMAIL.",
1232
- attrs: [{
1233
- name: "custom-element",
1234
- value: ["amp-lightbox"],
1235
- required: !0
1236
- }, {
1237
- name: "src",
1238
- value: ["https://cdn.ampproject.org/v0/amp-lightbox-0.1.js", "https://cdn.ampproject.org/v0/amp-lightbox-latest.js"],
1239
- required: !0
1240
- }],
1241
- attrLists: ["common-extension-attrs"]
1242
- },
1243
- {
1244
- name: "AMP-LIGHTBOX",
1245
- selector: "amp-lightbox",
1246
- requiresExtension: ["amp-lightbox"],
1247
- attrs: [
1248
- {
1249
- name: "animate-in",
1250
- value: [
1251
- "fade-in",
1252
- "fly-in-bottom",
1253
- "fly-in-top"
1254
- ]
1255
- },
1256
- { name: "controls" },
1257
- { name: "from" },
1258
- { name: "[open]" },
1259
- {
1260
- name: "layout",
1261
- value: ["nodisplay"],
1262
- required: !0
1263
- }
1264
- ],
1265
- attrLists: ["extended-amp-global", "$AMP_LAYOUT_ATTRS"]
1266
- },
1267
- {
1268
- name: "SCRIPT",
1269
- selector: "script[custom-element='amp-list']",
1270
- attrs: [{
1271
- name: "custom-element",
1272
- value: ["amp-list"],
1273
- required: !0
1274
- }, {
1275
- name: "src",
1276
- value: ["https://cdn.ampproject.org/v0/amp-list-0.1.js"],
1277
- required: !0
1278
- }],
1279
- attrLists: ["common-extension-attrs"]
1280
- },
1281
- {
1282
- name: "AMP-LIST",
1283
- selector: "amp-list",
1284
- requiresExtension: ["amp-list"],
1285
- attrs: [
1286
- {
1287
- name: "binding",
1288
- value: [
1289
- "always",
1290
- "no",
1291
- "refresh",
1292
- "refresh-evaluate"
1293
- ]
1294
- },
1295
- {
1296
- name: "diffable",
1297
- value: [""]
1298
- },
1299
- { name: "items" },
1300
- { name: "max-items" },
1301
- { name: "single-item" },
1302
- {
1303
- name: "src",
1304
- valueUrl: {
1305
- protocol: ["https"],
1306
- allowRelative: !1
1307
- },
1308
- required: !0,
1309
- disallowedValueRegex: "__amp_source_origin|{{|}}"
1310
- },
1311
- { name: "template" },
1312
- { name: "xssi-prefix" },
1313
- { name: "[is-layout-container]" },
1314
- {
1315
- name: "layout",
1316
- value: [
1317
- "responsive",
1318
- "container",
1319
- "fill",
1320
- "fixed",
1321
- "fixed_height",
1322
- "flex_item",
1323
- "nodisplay"
1324
- ],
1325
- required: !0
1326
- }
1327
- ],
1328
- attrLists: ["extended-amp-global", "$AMP_LAYOUT_ATTRS"]
1329
- },
1330
- {
1331
- name: "SCRIPT",
1332
- selector: "script[custom-template='amp-mustache']",
1333
- attrs: [{
1334
- name: "custom-template",
1335
- value: ["amp-mustache"],
1336
- required: !0
1337
- }, {
1338
- name: "src",
1339
- value: ["https://cdn.ampproject.org/v0/amp-mustache-0.1.js", "https://cdn.ampproject.org/v0/amp-mustache-0.2.js"],
1340
- required: !0
1341
- }],
1342
- attrLists: ["common-extension-attrs"]
1343
- },
1344
- {
1345
- name: "TEMPLATE",
1346
- selector: "template",
1347
- requiresExtension: ["amp-mustache"],
1348
- attrs: [{
1349
- name: "id",
1350
- disallowedValueRegex: "(^|\\s)(__amp_\\S*|__count__|__defineGetter__|__defineSetter__|__lookupGetter__|__lookupSetter__|__noSuchMethod__|__parent__|__proto__|__AMP_\\S*|\\$p|\\$proxy|acceptCharset|addEventListener|appendChild|assignedSlot|attachShadow|AMP|baseURI|checkValidity|childElementCount|childNodes|classList|className|clientHeight|clientLeft|clientTop|clientWidth|compareDocumentPosition|computedName|computedRole|contentEditable|createShadowRoot|enqueAction|firstChild|firstElementChild|getAnimations|getAttribute|getAttributeNS|getAttributeNode|getAttributeNodeNS|getBoundingClientRect|getClientRects|getDestinationInsertionPoints|getElementsByClassName|getElementsByTagName|getElementsByTagNameNS|getRootNode|hasAttribute|hasAttributeNS|hasAttributes|hasChildNodes|hasPointerCapture|i-amphtml-\\S*|innerHTML|innerText|inputMode|insertAdjacentElement|insertAdjacentHTML|insertAdjacentText|isContentEditable|isDefaultNamespace|isEqualNode|isSameNode|lastChild|lastElementChild|lookupNamespaceURI|namespaceURI|nextElementSibling|nextSibling|nodeName|nodeType|nodeValue|offsetHeight|offsetLeft|offsetParent|offsetTop|offsetWidth|outerHTML|outerText|ownerDocument|parentElement|parentNode|previousElementSibling|previousSibling|querySelector|querySelectorAll|releasePointerCapture|removeAttribute|removeAttributeNS|removeAttributeNode|removeChild|removeEventListener|replaceChild|reportValidity|requestPointerLock|scrollHeight|scrollIntoView|scrollIntoViewIfNeeded|scrollLeft|scrollWidth|setAttribute|setAttributeNS|setAttributeNode|setAttributeNodeNS|setPointerCapture|shadowRoot|styleMap|tabIndex|tagName|textContent|toString|valueOf|(webkit|ms|moz|o)dropzone|(webkit|moz|ms|o)MatchesSelector|(webkit|moz|ms|o)RequestFullScreen|(webkit|moz|ms|o)RequestFullscreen)(\\s|$)"
1351
- }, {
1352
- name: "type",
1353
- value: ["amp-mustache"],
1354
- required: !0
1355
- }]
1356
- },
1357
- {
1358
- name: "SCRIPT",
1359
- selector: "script[custom-element='amp-selector']",
1360
- attrs: [{
1361
- name: "custom-element",
1362
- value: ["amp-selector"],
1363
- required: !0
1364
- }, {
1365
- name: "src",
1366
- value: ["https://cdn.ampproject.org/v0/amp-selector-0.1.js"],
1367
- required: !0
1368
- }],
1369
- attrLists: ["common-extension-attrs"]
1370
- },
1371
- {
1372
- name: "AMP-SELECTOR",
1373
- selector: "amp-selector",
1374
- requiresExtension: ["amp-selector"],
1375
- attrs: [
1376
- {
1377
- name: "disabled",
1378
- value: [""]
1379
- },
1380
- { name: "form" },
1381
- {
1382
- name: "keyboard-select-mode",
1383
- value: [
1384
- "focus",
1385
- "none",
1386
- "select"
1387
- ]
1388
- },
1389
- {
1390
- name: "multiple",
1391
- value: [""]
1392
- },
1393
- { name: "[disabled]" },
1394
- { name: "[selected]" },
1395
- {
1396
- name: "layout",
1397
- value: [
1398
- "responsive",
1399
- "fill",
1400
- "fixed",
1401
- "fixed_height",
1402
- "nodisplay",
1403
- "container"
1404
- ],
1405
- required: !0
1406
- }
1407
- ],
1408
- attrLists: [
1409
- "extended-amp-global",
1410
- "name-attr",
1411
- "$AMP_LAYOUT_ATTRS"
1412
- ]
1413
- },
1414
- {
1415
- name: "$REFERENCE_POINT",
1416
- selector: "amp-selector option",
1417
- attrs: [
1418
- {
1419
- name: "disabled",
1420
- value: [""]
1421
- },
1422
- {
1423
- name: "option",
1424
- required: !0
1425
- },
1426
- {
1427
- name: "selected",
1428
- value: [""]
1429
- }
1430
- ]
1431
- },
1432
- {
1433
- name: "$REFERENCE_POINT",
1434
- selector: "amp-selector child",
1435
- attrs: []
1436
- },
1437
- {
1438
- name: "SCRIPT",
1439
- selector: "script[custom-element='amp-sidebar']",
1440
- attrs: [{
1441
- name: "custom-element",
1442
- value: ["amp-sidebar"],
1443
- required: !0
1444
- }, {
1445
- name: "src",
1446
- value: ["https://cdn.ampproject.org/v0/amp-sidebar-0.1.js"],
1447
- required: !0
1448
- }],
1449
- attrLists: ["common-extension-attrs"]
1450
- },
1451
- {
1452
- name: "AMP-SIDEBAR",
1453
- selector: "amp-sidebar",
1454
- requiresExtension: ["amp-sidebar"],
1455
- attrs: [{
1456
- name: "side",
1457
- value: ["left", "right"]
1458
- }, {
1459
- name: "layout",
1460
- value: ["nodisplay"],
1461
- required: !0
1462
- }],
1463
- attrLists: ["extended-amp-global", "$AMP_LAYOUT_ATTRS"]
1464
- },
1465
- {
1466
- name: "SCRIPT",
1467
- selector: "script[custom-element='amp-timeago']",
1468
- attrs: [{
1469
- name: "custom-element",
1470
- value: ["amp-timeago"],
1471
- required: !0
1472
- }, {
1473
- name: "src",
1474
- value: ["https://cdn.ampproject.org/v0/amp-timeago-0.1.js"],
1475
- required: !0
1476
- }],
1477
- attrLists: ["common-extension-attrs"]
1478
- },
1479
- {
1480
- name: "AMP-TIMEAGO",
1481
- selector: "amp-timeago",
1482
- requiresExtension: ["amp-timeago"],
1483
- attrs: [
1484
- {
1485
- name: "cutoff",
1486
- valueRegex: "\\d+"
1487
- },
1488
- {
1489
- name: "datetime",
1490
- valueRegex: "\\d{4}-[01]\\d-[0-3]\\dT[0-2]\\d:[0-5]\\d(:[0-5]\\d(\\.\\d+)?)?(Z|[+-][0-1][0-9]:[0-5][0-9])",
1491
- required: !0
1492
- },
1493
- { name: "locale" },
1494
- { name: "[datetime]" },
1495
- { name: "[title]" },
1496
- {
1497
- name: "layout",
1498
- value: [
1499
- "responsive",
1500
- "fixed",
1501
- "fixed_height"
1502
- ],
1503
- required: !0
1504
- }
1505
- ],
1506
- attrLists: ["extended-amp-global", "$AMP_LAYOUT_ATTRS"]
1507
- }
1508
- ],
1509
- attrLists: [
1510
- {
1511
- name: "cite-attr",
1512
- attrs: [{
1513
- name: "cite",
1514
- valueUrl: {
1515
- protocol: ["http", "https"],
1516
- allowEmpty: !0
1517
- },
1518
- disallowedValueRegex: "__amp_source_origin"
1519
- }]
1520
- },
1521
- {
1522
- name: "input-common-attr",
1523
- attrs: [
1524
- { name: "accept" },
1525
- { name: "accesskey" },
1526
- { name: "autocomplete" },
1527
- { name: "checked" },
1528
- { name: "disabled" },
1529
- { name: "height" },
1530
- { name: "max" },
1531
- { name: "maxlength" },
1532
- { name: "min" },
1533
- { name: "minlength" },
1534
- { name: "multiple" },
1535
- { name: "pattern" },
1536
- { name: "placeholder" },
1537
- { name: "readonly" },
1538
- { name: "required" },
1539
- { name: "size" },
1540
- { name: "spellcheck" },
1541
- { name: "step" },
1542
- { name: "tabindex" },
1543
- { name: "value" },
1544
- { name: "width" },
1545
- { name: "[autocomplete]" },
1546
- { name: "[checked]" },
1547
- { name: "[disabled]" },
1548
- { name: "[height]" },
1549
- { name: "[max]" },
1550
- { name: "[maxlength]" },
1551
- { name: "[min]" },
1552
- { name: "[minlength]" },
1553
- { name: "[multiple]" },
1554
- { name: "[pattern]" },
1555
- { name: "[placeholder]" },
1556
- { name: "[readonly]" },
1557
- { name: "[required]" },
1558
- { name: "[size]" },
1559
- { name: "[spellcheck]" },
1560
- { name: "[step]" },
1561
- { name: "[value]" },
1562
- { name: "[width]" }
1563
- ]
1564
- },
1565
- {
1566
- name: "amphtml-engine-attrs",
1567
- attrs: [
1568
- {
1569
- name: "async",
1570
- value: [""],
1571
- required: !0
1572
- },
1573
- {
1574
- name: "crossorigin",
1575
- value: ["anonymous"]
1576
- },
1577
- {
1578
- name: "type",
1579
- value: ["text/javascript"]
1580
- }
1581
- ]
1582
- },
1583
- {
1584
- name: "mandatory-src-amp4email",
1585
- attrs: [{
1586
- name: "src",
1587
- valueUrl: {
1588
- protocol: ["https"],
1589
- allowRelative: !1
1590
- },
1591
- required: !0,
1592
- disallowedValueRegex: "__amp_source_origin|(.|\\s){{|}}(.|\\s)|^{{.*[^}][^}]$|^[^{][^{].*}}$|^}}|{{$|{{#|{{/|{{\\^"
1593
- }]
1594
- },
1595
- {
1596
- name: "extended-amp-global",
1597
- attrs: [
1598
- {
1599
- name: "i-amphtml-layout",
1600
- value: [
1601
- "container",
1602
- "fill",
1603
- "fixed",
1604
- "fixed-height",
1605
- "flex-item",
1606
- "fluid",
1607
- "intrinsic",
1608
- "nodisplay",
1609
- "responsive"
1610
- ]
1611
- },
1612
- { name: "media" },
1613
- {
1614
- name: "noloading",
1615
- value: [""]
1616
- }
1617
- ]
1618
- },
1619
- {
1620
- name: "$AMP_LAYOUT_ATTRS",
1621
- attrs: [
1622
- { name: "disable-inline-width" },
1623
- { name: "height" },
1624
- { name: "heights" },
1625
- { name: "layout" },
1626
- { name: "sizes" },
1627
- { name: "width" },
1628
- { name: "[height]" },
1629
- { name: "[width]" }
1630
- ]
1631
- },
1632
- {
1633
- name: "nonce-attr",
1634
- attrs: []
1635
- },
1636
- {
1637
- name: "common-extension-attrs",
1638
- attrs: [
1639
- {
1640
- name: "async",
1641
- value: [""],
1642
- required: !0
1643
- },
1644
- {
1645
- name: "crossorigin",
1646
- value: ["anonymous"]
1647
- },
1648
- {
1649
- name: "type",
1650
- value: ["text/javascript"]
1651
- }
1652
- ]
1653
- },
1654
- {
1655
- name: "mandatory-id-attr",
1656
- attrs: [{
1657
- name: "id",
1658
- required: !0,
1659
- disallowedValueRegex: "(^|\\s)(__amp_\\S*|__count__|__defineGetter__|__defineSetter__|__lookupGetter__|__lookupSetter__|__noSuchMethod__|__parent__|__proto__|__AMP_\\S*|\\$p|\\$proxy|acceptCharset|addEventListener|appendChild|assignedSlot|attachShadow|AMP|baseURI|checkValidity|childElementCount|childNodes|classList|className|clientHeight|clientLeft|clientTop|clientWidth|compareDocumentPosition|computedName|computedRole|contentEditable|createShadowRoot|enqueAction|firstChild|firstElementChild|getAnimations|getAttribute|getAttributeNS|getAttributeNode|getAttributeNodeNS|getBoundingClientRect|getClientRects|getDestinationInsertionPoints|getElementsByClassName|getElementsByTagName|getElementsByTagNameNS|getRootNode|hasAttribute|hasAttributeNS|hasAttributes|hasChildNodes|hasPointerCapture|i-amphtml-\\S*|innerHTML|innerText|inputMode|insertAdjacentElement|insertAdjacentHTML|insertAdjacentText|isContentEditable|isDefaultNamespace|isEqualNode|isSameNode|lastChild|lastElementChild|lookupNamespaceURI|namespaceURI|nextElementSibling|nextSibling|nodeName|nodeType|nodeValue|offsetHeight|offsetLeft|offsetParent|offsetTop|offsetWidth|outerHTML|outerText|ownerDocument|parentElement|parentNode|previousElementSibling|previousSibling|querySelector|querySelectorAll|releasePointerCapture|removeAttribute|removeAttributeNS|removeAttributeNode|removeChild|removeEventListener|replaceChild|reportValidity|requestPointerLock|scrollHeight|scrollIntoView|scrollIntoViewIfNeeded|scrollLeft|scrollWidth|setAttribute|setAttributeNS|setAttributeNode|setAttributeNodeNS|setPointerCapture|shadowRoot|styleMap|tabIndex|tagName|textContent|toString|valueOf|(webkit|ms|moz|o)dropzone|(webkit|moz|ms|o)MatchesSelector|(webkit|moz|ms|o)RequestFullScreen|(webkit|moz|ms|o)RequestFullscreen)(\\s|$)"
1660
- }]
1661
- },
1662
- {
1663
- name: "name-attr",
1664
- attrs: [{
1665
- name: "name",
1666
- disallowedValueRegex: "(^|\\s)(__amp_\\S*|__count__|__defineGetter__|__defineSetter__|__lookupGetter__|__lookupSetter__|__noSuchMethod__|__parent__|__proto__|__AMP_\\S*|\\$p|\\$proxy|acceptCharset|addEventListener|appendChild|assignedSlot|attachShadow|baseURI|checkValidity|childElementCount|childNodes|classList|className|clientHeight|clientLeft|clientTop|clientWidth|compareDocumentPosition|computedName|computedRole|contentEditable|createShadowRoot|enqueAction|firstChild|firstElementChild|getAnimations|getAttribute|getAttributeNS|getAttributeNode|getAttributeNodeNS|getBoundingClientRect|getClientRects|getDestinationInsertionPoints|getElementsByClassName|getElementsByTagName|getElementsByTagNameNS|getRootNode|hasAttribute|hasAttributeNS|hasAttributes|hasChildNodes|hasPointerCapture|innerHTML|innerText|inputMode|insertAdjacentElement|insertAdjacentHTML|insertAdjacentText|isContentEditable|isDefaultNamespace|isEqualNode|isSameNode|lastChild|lastElementChild|lookupNamespaceURI|namespaceURI|nextElementSibling|nextSibling|nodeName|nodeType|nodeValue|offsetHeight|offsetLeft|offsetParent|offsetTop|offsetWidth|outerHTML|outerText|ownerDocument|parentElement|parentNode|previousElementSibling|previousSibling|querySelector|querySelectorAll|releasePointerCapture|removeAttribute|removeAttributeNS|removeAttributeNode|removeChild|removeEventListener|replaceChild|reportValidity|requestPointerLock|scrollHeight|scrollIntoView|scrollIntoViewIfNeeded|scrollLeft|scrollWidth|setAttribute|setAttributeNS|setAttributeNode|setAttributeNodeNS|setPointerCapture|shadowRoot|styleMap|tabIndex|tagName|textContent|toString|valueOf|(webkit|ms|moz|o)dropzone|(webkit|moz|ms|o)MatchesSelector|(webkit|moz|ms|o)RequestFullScreen|(webkit|moz|ms|o)RequestFullscreen)(\\s|$)"
1667
- }]
1668
- },
1669
- {
1670
- name: "$GLOBAL_ATTRS",
1671
- attrs: [
1672
- { name: "itemid" },
1673
- { name: "itemprop" },
1674
- { name: "itemref" },
1675
- { name: "itemscope" },
1676
- { name: "itemtype" },
1677
- { name: "about" },
1678
- { name: "content" },
1679
- { name: "datatype" },
1680
- { name: "inlist" },
1681
- { name: "prefix" },
1682
- { name: "property" },
1683
- {
1684
- name: "rel",
1685
- disallowedValueRegex: "(^|\\s)(canonical|components|dns-prefetch|import|manifest|preconnect|preload|prerender|serviceworker|stylesheet|subresource)(\\s|$)"
1686
- },
1687
- { name: "resource" },
1688
- { name: "rev" },
1689
- { name: "style" },
1690
- { name: "typeof" },
1691
- { name: "vocab" },
1692
- { name: "accesskey" },
1693
- { name: "class" },
1694
- { name: "dir" },
1695
- { name: "draggable" },
1696
- {
1697
- name: "hidden",
1698
- value: [""]
1699
- },
1700
- {
1701
- name: "id",
1702
- disallowedValueRegex: "(^|\\s)(__amp_\\S*|__count__|__defineGetter__|__defineSetter__|__lookupGetter__|__lookupSetter__|__noSuchMethod__|__parent__|__proto__|__AMP_\\S*|\\$p|\\$proxy|acceptCharset|addEventListener|appendChild|assignedSlot|attachShadow|AMP|baseURI|checkValidity|childElementCount|childNodes|classList|className|clientHeight|clientLeft|clientTop|clientWidth|compareDocumentPosition|computedName|computedRole|contentEditable|createShadowRoot|enqueAction|firstChild|firstElementChild|getAnimations|getAttribute|getAttributeNS|getAttributeNode|getAttributeNodeNS|getBoundingClientRect|getClientRects|getDestinationInsertionPoints|getElementsByClassName|getElementsByTagName|getElementsByTagNameNS|getRootNode|hasAttribute|hasAttributeNS|hasAttributes|hasChildNodes|hasPointerCapture|i-amphtml-\\S*|innerHTML|innerText|inputMode|insertAdjacentElement|insertAdjacentHTML|insertAdjacentText|isContentEditable|isDefaultNamespace|isEqualNode|isSameNode|lastChild|lastElementChild|lookupNamespaceURI|namespaceURI|nextElementSibling|nextSibling|nodeName|nodeType|nodeValue|offsetHeight|offsetLeft|offsetParent|offsetTop|offsetWidth|outerHTML|outerText|ownerDocument|parentElement|parentNode|previousElementSibling|previousSibling|querySelector|querySelectorAll|releasePointerCapture|removeAttribute|removeAttributeNS|removeAttributeNode|removeChild|removeEventListener|replaceChild|reportValidity|requestPointerLock|scrollHeight|scrollIntoView|scrollIntoViewIfNeeded|scrollLeft|scrollWidth|setAttribute|setAttributeNS|setAttributeNode|setAttributeNodeNS|setPointerCapture|shadowRoot|styleMap|tabIndex|tagName|textContent|toString|valueOf|(webkit|ms|moz|o)dropzone|(webkit|moz|ms|o)MatchesSelector|(webkit|moz|ms|o)RequestFullScreen|(webkit|moz|ms|o)RequestFullscreen)(\\s|$)"
1703
- },
1704
- { name: "lang" },
1705
- { name: "slot" },
1706
- { name: "tabindex" },
1707
- { name: "title" },
1708
- { name: "translate" },
1709
- { name: "aria-activedescendant" },
1710
- { name: "aria-atomic" },
1711
- { name: "aria-autocomplete" },
1712
- { name: "aria-busy" },
1713
- { name: "aria-checked" },
1714
- { name: "aria-controls" },
1715
- { name: "aria-current" },
1716
- { name: "aria-describedby" },
1717
- { name: "aria-disabled" },
1718
- { name: "aria-dropeffect" },
1719
- { name: "aria-expanded" },
1720
- { name: "aria-flowto" },
1721
- { name: "aria-grabbed" },
1722
- { name: "aria-haspopup" },
1723
- { name: "aria-hidden" },
1724
- { name: "aria-invalid" },
1725
- { name: "aria-label" },
1726
- { name: "aria-labelledby" },
1727
- { name: "aria-level" },
1728
- { name: "aria-live" },
1729
- { name: "aria-modal" },
1730
- { name: "aria-multiline" },
1731
- { name: "aria-multiselectable" },
1732
- { name: "aria-orientation" },
1733
- { name: "aria-owns" },
1734
- { name: "aria-posinset" },
1735
- { name: "aria-pressed" },
1736
- { name: "aria-readonly" },
1737
- { name: "aria-relevant" },
1738
- { name: "aria-required" },
1739
- { name: "aria-selected" },
1740
- { name: "aria-setsize" },
1741
- { name: "aria-sort" },
1742
- { name: "aria-valuemax" },
1743
- { name: "aria-valuemin" },
1744
- { name: "aria-valuenow" },
1745
- { name: "aria-valuetext" },
1746
- { name: "on" },
1747
- { name: "role" },
1748
- {
1749
- name: "placeholder",
1750
- value: [""]
1751
- },
1752
- {
1753
- name: "fallback",
1754
- value: [""]
1755
- },
1756
- { name: "overflow" },
1757
- { name: "amp-access" },
1758
- { name: "amp-access-behavior" },
1759
- { name: "amp-access-hide" },
1760
- { name: "amp-access-id" },
1761
- { name: "amp-access-loader" },
1762
- { name: "amp-access-loading" },
1763
- { name: "amp-access-off" },
1764
- { name: "amp-access-on" },
1765
- { name: "amp-access-show" },
1766
- { name: "amp-access-style" },
1767
- { name: "amp-access-template" },
1768
- { name: "i-amp-access-id" },
1769
- { name: "validation-for" },
1770
- {
1771
- name: "visible-when-invalid",
1772
- value: [
1773
- "badInput",
1774
- "customError",
1775
- "patternMismatch",
1776
- "rangeOverflow",
1777
- "rangeUnderflow",
1778
- "stepMismatch",
1779
- "tooLong",
1780
- "tooShort",
1781
- "typeMismatch",
1782
- "valueMissing"
1783
- ]
1784
- },
1785
- {
1786
- name: "amp-fx",
1787
- valueRegex: "(fade-in|fade-in-scroll|float-in-bottom|float-in-top|fly-in-bottom|fly-in-left|fly-in-right|fly-in-top|parallax)(\\s|fade-in|fade-in-scroll|float-in-bottom|float-in-top|fly-in-bottom|fly-in-left|fly-in-right|fly-in-top|parallax)*"
1788
- },
1789
- { name: "subscriptions-action" },
1790
- {
1791
- name: "subscriptions-actions",
1792
- value: [""]
1793
- },
1794
- { name: "subscriptions-decorate" },
1795
- {
1796
- name: "subscriptions-dialog",
1797
- value: [""]
1798
- },
1799
- { name: "subscriptions-display" },
1800
- { name: "subscriptions-lang" },
1801
- {
1802
- name: "subscriptions-section",
1803
- value: [
1804
- "actions",
1805
- "content",
1806
- "content-not-granted",
1807
- "loading"
1808
- ]
1809
- },
1810
- { name: "subscriptions-service" },
1811
- { name: "subscriptions-google-rtc" },
1812
- { name: "next-page-hide" },
1813
- { name: "next-page-replace" },
1814
- { name: "[aria-activedescendant]" },
1815
- { name: "[aria-atomic]" },
1816
- { name: "[aria-autocomplete]" },
1817
- { name: "[aria-busy]" },
1818
- { name: "[aria-checked]" },
1819
- { name: "[aria-controls]" },
1820
- { name: "[aria-describedby]" },
1821
- { name: "[aria-disabled]" },
1822
- { name: "[aria-dropeffect]" },
1823
- { name: "[aria-expanded]" },
1824
- { name: "[aria-flowto]" },
1825
- { name: "[aria-grabbed]" },
1826
- { name: "[aria-haspopup]" },
1827
- { name: "[aria-hidden]" },
1828
- { name: "[aria-invalid]" },
1829
- { name: "[aria-label]" },
1830
- { name: "[aria-labelledby]" },
1831
- { name: "[aria-level]" },
1832
- { name: "[aria-live]" },
1833
- { name: "[aria-multiline]" },
1834
- { name: "[aria-multiselectable]" },
1835
- { name: "[aria-orientation]" },
1836
- { name: "[aria-owns]" },
1837
- { name: "[aria-posinset]" },
1838
- { name: "[aria-pressed]" },
1839
- { name: "[aria-readonly]" },
1840
- { name: "[aria-relevant]" },
1841
- { name: "[aria-required]" },
1842
- { name: "[aria-selected]" },
1843
- { name: "[aria-setsize]" },
1844
- { name: "[aria-sort]" },
1845
- { name: "[aria-valuemax]" },
1846
- { name: "[aria-valuemin]" },
1847
- { name: "[aria-valuenow]" },
1848
- { name: "[aria-valuetext]" },
1849
- { name: "[class]" },
1850
- { name: "[hidden]" },
1851
- { name: "[text]" },
1852
- {
1853
- name: "i-amphtml-binding",
1854
- value: [""]
1855
- },
1856
- { name: "autoscroll" }
1857
- ]
1858
- },
1859
- {
1860
- name: "amp-carousel-common",
1861
- attrs: [
1862
- {
1863
- name: "autoplay",
1864
- valueRegex: "(|[0-9]+)"
1865
- },
1866
- { name: "controls" },
1867
- {
1868
- name: "delay",
1869
- valueRegex: "[0-9]+"
1870
- },
1871
- {
1872
- name: "loop",
1873
- value: [""]
1874
- },
1875
- {
1876
- name: "slide",
1877
- valueRegex: "[0-9]+"
1878
- },
1879
- {
1880
- name: "type",
1881
- value: ["carousel", "slides"]
1882
- },
1883
- { name: "[slide]" }
1884
- ]
1885
- }
1886
- ],
1887
- extensions: [
1888
- {
1889
- name: "amp-accordion",
1890
- versions: ["0.1"]
1891
- },
1892
- {
1893
- name: "amp-anim",
1894
- versions: ["0.1"]
1895
- },
1896
- {
1897
- name: "amp-autocomplete",
1898
- versions: ["0.1"]
1899
- },
1900
- {
1901
- name: "amp-bind",
1902
- versions: ["0.1"]
1903
- },
1904
- {
1905
- name: "amp-carousel",
1906
- versions: ["0.1"]
1907
- },
1908
- {
1909
- name: "amp-fit-text",
1910
- versions: ["0.1"]
1911
- },
1912
- {
1913
- name: "amp-form",
1914
- versions: ["0.1"]
1915
- },
1916
- {
1917
- name: "amp-image-lightbox",
1918
- versions: ["0.1", "latest"]
1919
- },
1920
- {
1921
- name: "amp-lightbox",
1922
- versions: ["0.1", "latest"]
1923
- },
1924
- {
1925
- name: "amp-list",
1926
- versions: ["0.1"]
1927
- },
1928
- {
1929
- name: "amp-mustache",
1930
- versions: ["0.1", "0.2"]
1931
- },
1932
- {
1933
- name: "amp-selector",
1934
- versions: ["0.1"]
1935
- },
1936
- {
1937
- name: "amp-sidebar",
1938
- versions: ["0.1"]
1939
- },
1940
- {
1941
- name: "amp-timeago",
1942
- versions: ["0.1"]
1943
- }
1944
- ],
1945
- declarations: [
1946
- { name: "-moz-appearance" },
1947
- { name: "-webkit-appearance" },
1948
- { name: "-webkit-tap-highlight-color" },
1949
- { name: "align-content" },
1950
- { name: "align-items" },
1951
- { name: "align-self" },
1952
- { name: "appearance" },
1953
- { name: "aspect-ratio" },
1954
- { name: "azimuth" },
1955
- { name: "background" },
1956
- { name: "background-attachment" },
1957
- { name: "background-blend-mode" },
1958
- { name: "background-clip" },
1959
- { name: "background-color" },
1960
- { name: "background-image" },
1961
- { name: "background-origin" },
1962
- { name: "background-position" },
1963
- { name: "background-repeat" },
1964
- { name: "background-size" },
1965
- { name: "border" },
1966
- { name: "border-bottom" },
1967
- { name: "border-bottom-color" },
1968
- { name: "border-bottom-left-radius" },
1969
- { name: "border-bottom-right-radius" },
1970
- { name: "border-bottom-style" },
1971
- { name: "border-bottom-width" },
1972
- { name: "border-collapse" },
1973
- { name: "border-color" },
1974
- { name: "border-left" },
1975
- { name: "border-left-color" },
1976
- { name: "border-left-style" },
1977
- { name: "border-left-width" },
1978
- { name: "border-radius" },
1979
- { name: "border-right" },
1980
- { name: "border-right-color" },
1981
- { name: "border-right-style" },
1982
- { name: "border-right-width" },
1983
- { name: "border-spacing" },
1984
- { name: "border-style" },
1985
- { name: "border-top" },
1986
- { name: "border-top-color" },
1987
- { name: "border-top-left-radius" },
1988
- { name: "border-top-right-radius" },
1989
- { name: "border-top-style" },
1990
- { name: "border-top-width" },
1991
- { name: "border-width" },
1992
- { name: "bottom" },
1993
- { name: "box-shadow" },
1994
- { name: "box-sizing" },
1995
- { name: "break-after" },
1996
- { name: "break-before" },
1997
- { name: "break-inside" },
1998
- { name: "caption-side" },
1999
- { name: "caret-color" },
2000
- { name: "clear" },
2001
- { name: "color" },
2002
- { name: "color-adjust" },
2003
- { name: "column-count" },
2004
- { name: "column-fill" },
2005
- { name: "column-gap" },
2006
- { name: "column-rule" },
2007
- { name: "column-rule-color" },
2008
- { name: "column-rule-style" },
2009
- { name: "column-rule-width" },
2010
- { name: "column-span" },
2011
- { name: "column-width" },
2012
- { name: "columns" },
2013
- { name: "counter-increment" },
2014
- { name: "counter-reset" },
2015
- {
2016
- name: "cursor",
2017
- value: ["initial", "pointer"]
2018
- },
2019
- { name: "direction" },
2020
- { name: "display" },
2021
- { name: "elevation" },
2022
- { name: "empty-cells" },
2023
- {
2024
- name: "filter",
2025
- valueRegex: "^ *((blur|brightness|contrast|drop-shadow|grayscale|hue-rotate|invert|opacity|saturate|sepia)\\(([^() ]*|(rgb|rgba|hsl|hsla)\\([^()]*\\))( +([^() ]*|(rgb|rgba|hsl|hsla)\\([^()]*\\)))*\\) *)*$"
2026
- },
2027
- { name: "flex" },
2028
- { name: "flex-basis" },
2029
- { name: "flex-direction" },
2030
- { name: "flex-flow" },
2031
- { name: "flex-grow" },
2032
- { name: "flex-shrink" },
2033
- { name: "flex-wrap" },
2034
- { name: "float" },
2035
- { name: "font" },
2036
- { name: "font-family" },
2037
- { name: "font-feature-settings" },
2038
- { name: "font-kerning" },
2039
- { name: "font-size" },
2040
- { name: "font-size-adjust" },
2041
- { name: "font-stretch" },
2042
- { name: "font-style" },
2043
- { name: "font-synthesis" },
2044
- { name: "font-variant" },
2045
- { name: "font-variant-alternates" },
2046
- { name: "font-variant-caps" },
2047
- { name: "font-variant-east-asian" },
2048
- { name: "font-variant-ligatures" },
2049
- { name: "font-variant-numeric" },
2050
- { name: "font-variation-settings" },
2051
- { name: "font-weight" },
2052
- { name: "gap" },
2053
- { name: "grid" },
2054
- { name: "grid-area" },
2055
- { name: "grid-auto-columns" },
2056
- { name: "grid-auto-flow" },
2057
- { name: "grid-auto-rows" },
2058
- { name: "grid-column" },
2059
- { name: "grid-column-end" },
2060
- { name: "grid-column-start" },
2061
- { name: "grid-row" },
2062
- { name: "grid-row-end" },
2063
- { name: "grid-row-start" },
2064
- { name: "grid-template" },
2065
- { name: "grid-template-areas" },
2066
- { name: "grid-template-columns" },
2067
- { name: "grid-template-rows" },
2068
- { name: "height" },
2069
- { name: "hyphens" },
2070
- { name: "image-orientation" },
2071
- { name: "image-resolution" },
2072
- { name: "inline-size" },
2073
- { name: "isolation" },
2074
- { name: "justify-content" },
2075
- { name: "justify-items" },
2076
- { name: "justify-self" },
2077
- { name: "left" },
2078
- { name: "letter-spacing" },
2079
- { name: "line-break" },
2080
- { name: "line-height" },
2081
- { name: "list-style" },
2082
- { name: "list-style-position" },
2083
- { name: "list-style-type" },
2084
- { name: "margin" },
2085
- { name: "margin-bottom" },
2086
- { name: "margin-left" },
2087
- { name: "margin-right" },
2088
- { name: "margin-top" },
2089
- { name: "max-height" },
2090
- { name: "max-width" },
2091
- { name: "min-height" },
2092
- { name: "min-width" },
2093
- { name: "mix-blend-mode" },
2094
- { name: "object-fit" },
2095
- { name: "object-position" },
2096
- { name: "offset-distance" },
2097
- { name: "opacity" },
2098
- { name: "order" },
2099
- { name: "outline" },
2100
- { name: "outline-color" },
2101
- { name: "outline-offset" },
2102
- { name: "outline-style" },
2103
- { name: "outline-width" },
2104
- { name: "overflow" },
2105
- { name: "overflow-wrap" },
2106
- { name: "overflow-x" },
2107
- { name: "overflow-y" },
2108
- { name: "padding" },
2109
- { name: "padding-bottom" },
2110
- { name: "padding-left" },
2111
- { name: "padding-right" },
2112
- { name: "padding-top" },
2113
- { name: "pause" },
2114
- { name: "pause-after" },
2115
- { name: "pause-before" },
2116
- { name: "perspective" },
2117
- { name: "perspective-origin" },
2118
- { name: "pitch" },
2119
- { name: "pitch-range" },
2120
- { name: "place-items" },
2121
- { name: "position" },
2122
- { name: "quotes" },
2123
- { name: "resize" },
2124
- { name: "richness" },
2125
- { name: "right" },
2126
- { name: "row-gap" },
2127
- { name: "speak" },
2128
- { name: "speak-header" },
2129
- { name: "speak-numeral" },
2130
- { name: "speak-punctuation" },
2131
- { name: "speech-rate" },
2132
- { name: "stress" },
2133
- { name: "table-layout" },
2134
- { name: "text-align" },
2135
- { name: "text-align-last" },
2136
- { name: "text-combine-upright" },
2137
- { name: "text-decoration" },
2138
- { name: "text-decoration-color" },
2139
- { name: "text-decoration-line" },
2140
- { name: "text-decoration-skip" },
2141
- { name: "text-decoration-style" },
2142
- { name: "text-emphasis" },
2143
- { name: "text-emphasis-color" },
2144
- { name: "text-emphasis-position" },
2145
- { name: "text-emphasis-style" },
2146
- { name: "text-indent" },
2147
- { name: "text-justify" },
2148
- { name: "text-orientation" },
2149
- { name: "text-overflow" },
2150
- { name: "text-shadow" },
2151
- { name: "text-transform" },
2152
- { name: "text-underline-position" },
2153
- { name: "top" },
2154
- { name: "transform" },
2155
- { name: "transform-box" },
2156
- { name: "transform-origin" },
2157
- { name: "transform-style" },
2158
- {
2159
- name: "transition",
2160
- valueRegex: "^ *((initial|unset)|(((none|offset-distance|opacity|transform|visibility)( *(|-|\\+)([0-9]+|[0-9]*\\.[0-9]+)(e(|-|\\+)?[0-9]+)?(s|ms)( *(linear|(ease|ease-in|ease-out|ease-in-out|cubic-bezier\\( *(|-|\\+)([0-9]+|[0-9]*\\.[0-9]+)(e(|-|\\+)?[0-9]+)?(, *(|-|\\+)([0-9]+|[0-9]*\\.[0-9]+)(e(|-|\\+)?[0-9]+)?){3} *\\))|(step-start|step-end|steps\\( *(|-|\\+)[0-9]+(, *(jump-start|jump-end|jump-none|jump-both|start|end))? *\\)))( *(|-|\\+)([0-9]+|[0-9]*\\.[0-9]+)(e(|-|\\+)?[0-9]+)?(s|ms))?)?)?)(, *((none|offset-distance|opacity|transform|visibility)( *(|-|\\+)([0-9]+|[0-9]*\\.[0-9]+)(e(|-|\\+)?[0-9]+)?(s|ms)( *(linear|(ease|ease-in|ease-out|ease-in-out|cubic-bezier\\( *(|-|\\+)([0-9]+|[0-9]*\\.[0-9]+)(e(|-|\\+)?[0-9]+)?(, *(|-|\\+)([0-9]+|[0-9]*\\.[0-9]+)(e(|-|\\+)?[0-9]+)?){3} *\\))|(step-start|step-end|steps\\( *(|-|\\+)[0-9]+(, *(jump-start|jump-end|jump-none|jump-both|start|end))? *\\)))( *(|-|\\+)([0-9]+|[0-9]*\\.[0-9]+)(e(|-|\\+)?[0-9]+)?(s|ms))?)?)?))*)) *$"
2161
- },
2162
- { name: "transition-delay" },
2163
- { name: "transition-duration" },
2164
- {
2165
- name: "transition-property",
2166
- valueRegex: "^ *(initial|unset|(none|offset-distance|opacity|transform|visibility)(, *(none|offset-distance|opacity|transform|visibility))*) *$"
2167
- },
2168
- { name: "transition-timing-function" },
2169
- { name: "unicode-bidi" },
2170
- { name: "vertical-align" },
2171
- {
2172
- name: "visibility",
2173
- value: [
2174
- "hidden",
2175
- "initial",
2176
- "visible"
2177
- ]
2178
- },
2179
- { name: "voice-family" },
2180
- { name: "white-space" },
2181
- { name: "width" },
2182
- { name: "word-break" },
2183
- { name: "word-spacing" },
2184
- { name: "word-wrap" },
2185
- { name: "writing-mode" },
2186
- {
2187
- name: "z-index",
2188
- valueRegex: "([-+]?0)|([-+]?100)|([-+]?[1-9][0-9]?)"
2189
- }
2190
- ]
2191
- };
2192
- //#endregion
2193
- export { e as default };