@kong-ui-public/app-layout 4.9.2 → 4.9.3-pr.2577.aa306160f.0
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/README.md +9 -2
- package/dist/app-layout.es.js +384 -360
- package/dist/app-layout.umd.js +3 -3
- package/dist/style.css +1 -1
- package/dist/types/components/gradientBadge/GradientBadge.vue.d.ts +34 -0
- package/dist/types/components/gradientBadge/GradientBadge.vue.d.ts.map +1 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,12 +36,16 @@ A set of Kong UI application layout components that provides a responsive navbar
|
|
|
36
36
|
|
|
37
37
|
## Included components
|
|
38
38
|
|
|
39
|
+
- `AccountDropdown.vue`
|
|
40
|
+
- `AppAboutSection.vue`
|
|
41
|
+
- `AppError.vue`
|
|
39
42
|
- `AppLayout.vue`
|
|
40
43
|
- `AppNavbar.vue`
|
|
41
|
-
- `
|
|
44
|
+
- `AppPageHeader.vue`
|
|
42
45
|
- `AppSidebar.vue`
|
|
43
46
|
- `SidebarToggle.vue`
|
|
44
|
-
- `
|
|
47
|
+
- `AppPageInfoSection.vue`
|
|
48
|
+
- `GradientBadge.vue`
|
|
45
49
|
|
|
46
50
|
Reference the [individual component docs](#individual-component-documentation) for more info.
|
|
47
51
|
|
|
@@ -122,3 +126,6 @@ TypeScript interfaces [are available here](https://github.com/Kong/public-ui-com
|
|
|
122
126
|
- [`<AppNavbar.vue />`](docs/navbar.md)
|
|
123
127
|
- [`<AppSidebar.vue />`](docs/sidebar.md)
|
|
124
128
|
- [`<AppError.vue />`](docs/error.md)
|
|
129
|
+
- [`<AppPageHeader />`](docs/page-header.md)
|
|
130
|
+
- [`<AppAboutSection />`](docs/about-section.md)
|
|
131
|
+
- [`<AppPageInfoSection`](docs/page-info-section.md)
|