From 99730a05234ef7e15f9b60b4ae3ceec64eb61f5a Mon Sep 17 00:00:00 2001 From: David Hill Date: Thu, 10 Apr 2025 07:28:59 -0400 Subject: [PATCH] Adding a new Accordion controller/component --- index.html | 60 +++++- package-lock.json | 222 ++++++++++++---------- package.json | 2 +- src/accordion.js | 86 +++++++++ src/index.js | 1 + test/accordion_test.js | 81 ++++++++ test/fixtures/accordion.html | 31 +++ test/fixtures/accordion_nonexclusive.html | 32 ++++ test/modal_test.js | 2 - 9 files changed, 411 insertions(+), 106 deletions(-) create mode 100644 src/accordion.js create mode 100644 test/accordion_test.js create mode 100644 test/fixtures/accordion.html create mode 100644 test/fixtures/accordion_nonexclusive.html diff --git a/index.html b/index.html index 8b9b9a9..78f3a73 100644 --- a/index.html +++ b/index.html @@ -17,10 +17,11 @@