@skyux/layout 5.6.0 → 5.6.1

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.
Files changed (2) hide show
  1. package/documentation.json +15 -0
  2. package/package.json +20 -17
@@ -9412,6 +9412,21 @@
9412
9412
  "filePath": "/projects/layout/documentation/code-examples/back-to-top/repeater/back-to-top-demo.module.ts",
9413
9413
  "rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyBackToTopModule } from '@skyux/layout';\nimport { SkyRepeaterModule } from '@skyux/lists';\nimport { SkyTabsModule } from '@skyux/tabs';\n\nimport { BackToTopDemoComponent } from './back-to-top-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyBackToTopModule, SkyRepeaterModule, SkyTabsModule],\n declarations: [BackToTopDemoComponent],\n exports: [BackToTopDemoComponent],\n})\nexport class BackToTopDemoModule {}\n"
9414
9414
  },
9415
+ {
9416
+ "fileName": "box-demo.component.html",
9417
+ "filePath": "/projects/layout/documentation/code-examples/box/basic/box-demo.component.html",
9418
+ "rawContents": "<sky-box>\n <sky-box-header>\n <h2 class=\"sky-font-heading-2\">Box header</h2>\n </sky-box-header>\n <sky-box-controls>\n <sky-dropdown buttonType=\"context-menu\" label=\"Box demo context menu\">\n <sky-dropdown-menu>\n <sky-dropdown-item>\n <button type=\"button\">Action 1</button>\n </sky-dropdown-item>\n <sky-dropdown-item>\n <button type=\"button\">Action 2</button>\n </sky-dropdown-item>\n </sky-dropdown-menu>\n </sky-dropdown>\n </sky-box-controls>\n <sky-box-content>\n <p>Box content</p>\n </sky-box-content>\n</sky-box>\n"
9419
+ },
9420
+ {
9421
+ "fileName": "box-demo.component.ts",
9422
+ "filePath": "/projects/layout/documentation/code-examples/box/basic/box-demo.component.ts",
9423
+ "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-box-demo',\n templateUrl: './box-demo.component.html',\n})\nexport class BoxDemoComponent {}\n"
9424
+ },
9425
+ {
9426
+ "fileName": "box-demo.module.ts",
9427
+ "filePath": "/projects/layout/documentation/code-examples/box/basic/box-demo.module.ts",
9428
+ "rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyBoxModule } from '@skyux/layout';\nimport { SkyDropdownModule } from '@skyux/popovers';\n\nimport { BoxDemoComponent } from './box-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyBoxModule, SkyDropdownModule],\n declarations: [BoxDemoComponent],\n exports: [BoxDemoComponent],\n})\nexport class BoxDemoModule {}\n"
9429
+ },
9415
9430
  {
9416
9431
  "fileName": "card-demo.component.html",
9417
9432
  "filePath": "/projects/layout/documentation/code-examples/card/basic/card-demo.component.html",
package/package.json CHANGED
@@ -1,22 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/layout",
3
- "version": "5.6.0",
4
- "peerDependencies": {
5
- "@angular/common": "^12.2.16",
6
- "@angular/core": "^12.2.16",
7
- "@angular/forms": "^12.2.16",
8
- "@angular/router": "^12.2.16",
9
- "@skyux/core": "5.6.0",
10
- "@skyux/i18n": "5.6.0",
11
- "@skyux/forms": "5.6.0",
12
- "@skyux/indicators": "5.6.0",
13
- "@skyux/modals": "5.6.0",
14
- "@skyux/router": "5.6.0",
15
- "@skyux/theme": "5.6.0"
16
- },
17
- "dependencies": {
18
- "tslib": "^2.3.1"
19
- },
3
+ "version": "5.6.1",
20
4
  "author": "Blackbaud, Inc.",
21
5
  "keywords": [
22
6
  "blackbaud",
@@ -31,6 +15,25 @@
31
15
  "url": "https://github.com/blackbaud/skyux/issues"
32
16
  },
33
17
  "homepage": "https://github.com/blackbaud/skyux#readme",
18
+ "peerDependencies": {
19
+ "@angular/animations": "^12.2.16",
20
+ "@angular/common": "^12.2.16",
21
+ "@angular/core": "^12.2.16",
22
+ "@angular/forms": "^12.2.16",
23
+ "@angular/platform-browser": "^12.2.16",
24
+ "@angular/router": "^12.2.16",
25
+ "@skyux-sdk/testing": "5.6.1",
26
+ "@skyux/core": "5.6.1",
27
+ "@skyux/forms": "5.6.1",
28
+ "@skyux/i18n": "5.6.1",
29
+ "@skyux/indicators": "5.6.1",
30
+ "@skyux/modals": "5.6.1",
31
+ "@skyux/router": "5.6.1",
32
+ "@skyux/theme": "5.6.1"
33
+ },
34
+ "dependencies": {
35
+ "tslib": "^2.3.1"
36
+ },
34
37
  "main": "bundles/skyux-layout.umd.js",
35
38
  "module": "fesm2015/skyux-layout.js",
36
39
  "es2015": "fesm2015/skyux-layout.js",