@skyux/navbar 9.1.1 → 9.3.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/documentation.json +9 -14
- package/package.json +1 -1
package/documentation.json
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"fileName": "projects/navbar/src/modules/navbar/navbar.module.ts",
|
|
32
32
|
"line": 12,
|
|
33
33
|
"character": 13,
|
|
34
|
-
"url": "https://github.com/blackbaud/skyux/blob/
|
|
34
|
+
"url": "https://github.com/blackbaud/skyux/blob/b2dcfaa/libs/components/navbar/src/lib/modules/navbar/navbar.module.ts#L12"
|
|
35
35
|
}
|
|
36
36
|
],
|
|
37
37
|
"decorators": [
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"fileName": "projects/navbar/src/modules/navbar/navbar.component.ts",
|
|
72
72
|
"line": 11,
|
|
73
73
|
"character": 13,
|
|
74
|
-
"url": "https://github.com/blackbaud/skyux/blob/
|
|
74
|
+
"url": "https://github.com/blackbaud/skyux/blob/b2dcfaa/libs/components/navbar/src/lib/modules/navbar/navbar.component.ts#L11"
|
|
75
75
|
}
|
|
76
76
|
],
|
|
77
77
|
"decorators": [
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"fileName": "projects/navbar/src/modules/navbar/navbar-item.component.ts",
|
|
131
131
|
"line": 18,
|
|
132
132
|
"character": 9,
|
|
133
|
-
"url": "https://github.com/blackbaud/skyux/blob/
|
|
133
|
+
"url": "https://github.com/blackbaud/skyux/blob/b2dcfaa/libs/components/navbar/src/lib/modules/navbar/navbar-item.component.ts#L18"
|
|
134
134
|
}
|
|
135
135
|
],
|
|
136
136
|
"type": {
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
"fileName": "projects/navbar/src/modules/navbar/navbar-item.component.ts",
|
|
164
164
|
"line": 12,
|
|
165
165
|
"character": 13,
|
|
166
|
-
"url": "https://github.com/blackbaud/skyux/blob/
|
|
166
|
+
"url": "https://github.com/blackbaud/skyux/blob/b2dcfaa/libs/components/navbar/src/lib/modules/navbar/navbar-item.component.ts#L12"
|
|
167
167
|
}
|
|
168
168
|
],
|
|
169
169
|
"decorators": [
|
|
@@ -226,18 +226,13 @@
|
|
|
226
226
|
},
|
|
227
227
|
"codeExamples": [
|
|
228
228
|
{
|
|
229
|
-
"fileName": "
|
|
230
|
-
"filePath": "/projects/navbar/documentation/code-examples/navbar/
|
|
231
|
-
"rawContents": "import {
|
|
229
|
+
"fileName": "demo.component.ts",
|
|
230
|
+
"filePath": "/projects/navbar/documentation/code-examples/navbar/demo.component.ts",
|
|
231
|
+
"rawContents": "import { Component } from '@angular/core';\nimport { RouterModule } from '@angular/router';\nimport { SkyNavbarModule } from '@skyux/navbar';\nimport { SkyDropdownModule } from '@skyux/popovers';\n\n@Component({\n standalone: true,\n selector: 'app-demo',\n templateUrl: './demo.component.html',\n imports: [RouterModule, SkyDropdownModule, SkyNavbarModule],\n})\nexport class DemoComponent {\n protected onDropdownItemClick(buttonText: string): void {\n alert(buttonText + ' button clicked!');\n }\n}\n"
|
|
232
232
|
},
|
|
233
233
|
{
|
|
234
|
-
"fileName": "
|
|
235
|
-
"filePath": "/projects/navbar/documentation/code-examples/navbar/
|
|
236
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-navbar-demo',\n templateUrl: './navbar-demo.component.html',\n})\nexport class NavbarDemoComponent {\n public onDropdownItemClick(buttonText: string): void {\n alert(buttonText + ' button clicked!');\n }\n}\n"
|
|
237
|
-
},
|
|
238
|
-
{
|
|
239
|
-
"fileName": "navbar-demo.component.html",
|
|
240
|
-
"filePath": "/projects/navbar/documentation/code-examples/navbar/navbar-demo.component.html",
|
|
234
|
+
"fileName": "demo.component.html",
|
|
235
|
+
"filePath": "/projects/navbar/documentation/code-examples/navbar/demo.component.html",
|
|
241
236
|
"rawContents": "<sky-navbar>\n <sky-navbar-item>\n <a routerLink=\"/\" routerLinkActive=\"sky-navbar-item-active\">\n Selected item\n </a>\n </sky-navbar-item>\n <sky-navbar-item>\n <sky-dropdown>\n <sky-dropdown-button> Show dropdown </sky-dropdown-button>\n <sky-dropdown-menu>\n <sky-dropdown-item>\n <a routerLink=\"/\" (click)=\"onDropdownItemClick('Item 1')\"> Item 1 </a>\n </sky-dropdown-item>\n <sky-dropdown-item>\n <a routerLink=\"/\" (click)=\"onDropdownItemClick('Item 2')\"> Item 2 </a>\n </sky-dropdown-item>\n <sky-dropdown-item>\n <a routerLink=\"/\" (click)=\"onDropdownItemClick('Item 3')\"> Item 3 </a>\n </sky-dropdown-item>\n </sky-dropdown-menu>\n </sky-dropdown>\n </sky-navbar-item>\n</sky-navbar>\n"
|
|
242
237
|
}
|
|
243
238
|
]
|