attribute.mjs 817 B

123456789101112131415161718192021222324
  1. /**
  2. * @license Angular v20.1.0
  3. * (c) 2010-2025 Google LLC. https://angular.io/
  4. * License: MIT
  5. */
  6. const Attribute = {
  7. /**
  8. * The jsaction attribute defines a mapping of a DOM event to a
  9. * generic event (aka jsaction), to which the actual event handlers
  10. * that implement the behavior of the application are bound. The
  11. * value is a semicolon separated list of colon separated pairs of
  12. * an optional DOM event name and a jsaction name. If the optional
  13. * DOM event name is omitted, 'click' is assumed. The jsaction names
  14. * are dot separated pairs of a namespace and a simple jsaction
  15. * name.
  16. *
  17. * See grammar in README.md for expected syntax in the attribute value.
  18. */
  19. JSACTION: 'jsaction',
  20. };
  21. export { Attribute };
  22. //# sourceMappingURL=attribute.mjs.map