Add Table, List, Skeleton, Tooltip, Dropdown, NavigationShell
- Implement Table styles + browser helper + GnTable/GnTableRow/GnTableHeader
  with sortable/selectable variants.
- Implement List styles + browser helper + GnList/GnListItem.
- Implement Skeleton placeholders + browser helper + GnSkeleton.
- Implement Tooltip styles + browser helper + GnTooltip.
- Implement Dropdown menu styles + browser helper + GnDropdown/GnDropdownItem.
- Implement NavigationShell layout + browser helper + GnNavigationShell/GnNavigationItem.
- Wire all new components into kit.scss, Vue plugin, Vue entry, and browser bundle.
- Add demo partials for every new component.
- Update docs/component-coverage.md and PROJECT_NOTES.md.
- Builds and tests pass.
1 parent 14852cb commit 04cbe730f3e8677af24048185ae1ac700f29a29a
@Eugene Sukhodolskiy Eugene Sukhodolskiy authored 13 hours ago
Showing 36 changed files
View
PROJECT_NOTES.md
View
demo/index.html
View
demo/partials/dropdowns.html 0 → 100644
View
demo/partials/lists.html 0 → 100644
View
demo/partials/navigation-shell.html 0 → 100644
View
demo/partials/skeleton.html 0 → 100644
View
demo/partials/tables.html 0 → 100644
View
demo/partials/tooltips.html 0 → 100644
View
docs/component-coverage.md
View
src/js/components/dropdowns.js 0 → 100644
View
src/js/components/lists.js 0 → 100644
View
src/js/components/navigation-shell.js 0 → 100644
View
src/js/components/skeleton.js 0 → 100644
View
src/js/components/tables.js 0 → 100644
View
src/js/components/tooltips.js 0 → 100644
View
src/js/index.js
View
src/scss/components/_dropdown.scss 0 → 100644
View
src/scss/components/_lists.scss 0 → 100644
View
src/scss/components/_navigation-shell.scss 0 → 100644
View
src/scss/components/_skeleton.scss 0 → 100644
View
src/scss/components/_tables.scss 0 → 100644
View
src/scss/components/_tooltip.scss 0 → 100644
View
src/scss/kit.scss
View
src/vue/components/GnDropdown.js 0 → 100644
View
src/vue/components/GnDropdownItem.js 0 → 100644
View
src/vue/components/GnList.js 0 → 100644
View
src/vue/components/GnListItem.js 0 → 100644
View
src/vue/components/GnNavigationItem.js 0 → 100644
View
src/vue/components/GnNavigationShell.js 0 → 100644
View
src/vue/components/GnSkeleton.js 0 → 100644
View
src/vue/components/GnTable.js 0 → 100644
View
src/vue/components/GnTableHeader.js 0 → 100644
View
src/vue/components/GnTableRow.js 0 → 100644
View
src/vue/components/GnTooltip.js 0 → 100644
View
src/vue/index.js
View
src/vue/plugin.js