@brightspace-ui/core 3.160.0 → 3.160.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.160.0",
3
+ "version": "3.160.1",
4
4
  "description": "A collection of accessible, free, open-source web components for building Brightspace applications",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/BrightspaceUI/core.git",
@@ -1,7 +1,7 @@
1
1
  # Templates
2
2
  Page templates are used to provide generic ways to arrange content on a page
3
3
 
4
- ## Primary-Secondary [d2l-primary-secondary]
4
+ ## Primary-Secondary [d2l-template-primary-secondary]
5
5
  Two Panel (primary and secondary) page template with header and optional footer
6
6
 
7
7
  Use this template when:
@@ -47,7 +47,7 @@
47
47
  document
48
48
  .querySelector('d2l-button')
49
49
  .addEventListener('click', () => form.submitForm());
50
- form.addEventListener('d2l-form-submit', (e) => {
50
+ form.addEventListener('d2l-template-primary-secondary-form-submit', (e) => {
51
51
  console.log('Form submitted!', e.detail.formData);
52
52
  });
53
53
  </script>