├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── TEST-README.md ├── demo ├── screenshot-accordion.webp ├── screenshot-tabset.webp └── standard-usage.html ├── package.json ├── src └── SpicySections.js └── test ├── general-h.tests.js ├── general.tests.js ├── programmatic.tests.js └── utils └── helpers.js /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/README.md -------------------------------------------------------------------------------- /TEST-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/TEST-README.md -------------------------------------------------------------------------------- /demo/screenshot-accordion.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/demo/screenshot-accordion.webp -------------------------------------------------------------------------------- /demo/screenshot-tabset.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/demo/screenshot-tabset.webp -------------------------------------------------------------------------------- /demo/standard-usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/demo/standard-usage.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/package.json -------------------------------------------------------------------------------- /src/SpicySections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/src/SpicySections.js -------------------------------------------------------------------------------- /test/general-h.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/test/general-h.tests.js -------------------------------------------------------------------------------- /test/general.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/test/general.tests.js -------------------------------------------------------------------------------- /test/programmatic.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/test/programmatic.tests.js -------------------------------------------------------------------------------- /test/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabvengers/spicy-sections/HEAD/test/utils/helpers.js --------------------------------------------------------------------------------