@skyux/action-bars 5.8.2 → 5.8.3

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.
@@ -1591,7 +1591,7 @@
1591
1591
  {
1592
1592
  "fileName": "summary-action-bar-demo.component.ts",
1593
1593
  "filePath": "/projects/action-bars/documentation/code-examples/summary-action-bar/basic/summary-action-bar-demo.component.ts",
1594
- "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-summary-action-bar-demo',\n templateUrl: './summary-action-bar-demo.component.html',\n styleUrls: ['./summary-action-bar-demo.component.scss'],\n})\nexport class SummaryActionBarDemoComponent {\n public onPrimaryActionClick(): void {\n console.log('Primary action button clicked.');\n }\n\n public onSecondaryActionClick(): void {\n console.log('Secondary action button clicked.');\n }\n\n public onSecondaryAction2Click(): void {\n console.log('Secondary action 2 button clicked.');\n }\n}\n"
1594
+ "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-summary-action-bar-demo',\n templateUrl: './summary-action-bar-demo.component.html',\n styleUrls: ['./summary-action-bar-demo.component.scss'],\n})\nexport class SummaryActionBarDemoComponent {\n public onPrimaryActionClick(): void {\n alert('Primary action button clicked.');\n }\n\n public onSecondaryActionClick(): void {\n alert('Secondary action button clicked.');\n }\n\n public onSecondaryAction2Click(): void {\n alert('Secondary action 2 button clicked.');\n }\n}\n"
1595
1595
  },
1596
1596
  {
1597
1597
  "fileName": "summary-action-bar-demo.module.ts",
@@ -1626,7 +1626,7 @@
1626
1626
  {
1627
1627
  "fileName": "summary-action-bar-modal-demo.component.ts",
1628
1628
  "filePath": "/projects/action-bars/documentation/code-examples/summary-action-bar/modal/summary-action-bar-modal-demo.component.ts",
1629
- "rawContents": "import { Component } from '@angular/core';\nimport { SkyModalInstance } from '@skyux/modals';\n\n@Component({\n selector: 'app-test-cmp-modal',\n templateUrl: './summary-action-bar-modal-demo.component.html',\n styleUrls: ['./summary-action-bar-modal-demo.component.scss'],\n})\nexport class SkySummaryActionBarModalDemoComponent {\n constructor(public instance: SkyModalInstance) {}\n\n public onSecondaryActionClick(): void {\n console.log('Secondary action button clicked.');\n }\n\n public onSecondaryAction2Click(): void {\n console.log('Secondary action 2 button clicked.');\n }\n}\n"
1629
+ "rawContents": "import { Component } from '@angular/core';\nimport { SkyModalInstance } from '@skyux/modals';\n\n@Component({\n selector: 'app-test-cmp-modal',\n templateUrl: './summary-action-bar-modal-demo.component.html',\n styleUrls: ['./summary-action-bar-modal-demo.component.scss'],\n})\nexport class SkySummaryActionBarModalDemoComponent {\n constructor(public instance: SkyModalInstance) {}\n\n public onSecondaryActionClick(): void {\n alert('Secondary action button clicked.');\n }\n\n public onSecondaryAction2Click(): void {\n alert('Secondary action 2 button clicked.');\n }\n}\n"
1630
1630
  },
1631
1631
  {
1632
1632
  "fileName": "summary-action-bar-demo.component.html",
@@ -1641,7 +1641,7 @@
1641
1641
  {
1642
1642
  "fileName": "summary-action-bar-demo.component.ts",
1643
1643
  "filePath": "/projects/action-bars/documentation/code-examples/summary-action-bar/tab/summary-action-bar-demo.component.ts",
1644
- "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-summary-action-bar-demo',\n templateUrl: './summary-action-bar-demo.component.html',\n styleUrls: ['./summary-action-bar-demo.component.scss'],\n})\nexport class SummaryActionBarDemoComponent {\n public onPrimaryActionClick(): void {\n console.log('Primary action button clicked.');\n }\n\n public onSecondaryActionClick(): void {\n console.log('Secondary action button clicked.');\n }\n\n public onSecondaryAction2Click(): void {\n console.log('Secondary action 2 button clicked.');\n }\n}\n"
1644
+ "rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-summary-action-bar-demo',\n templateUrl: './summary-action-bar-demo.component.html',\n styleUrls: ['./summary-action-bar-demo.component.scss'],\n})\nexport class SummaryActionBarDemoComponent {\n public onPrimaryActionClick(): void {\n alert('Primary action button clicked.');\n }\n\n public onSecondaryActionClick(): void {\n alert('Secondary action button clicked.');\n }\n\n public onSecondaryAction2Click(): void {\n alert('Secondary action 2 button clicked.');\n }\n}\n"
1645
1645
  },
1646
1646
  {
1647
1647
  "fileName": "summary-action-bar-demo.module.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/action-bars",
3
- "version": "5.8.2",
3
+ "version": "5.8.3",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -19,13 +19,13 @@
19
19
  "@angular/common": "^12.2.16",
20
20
  "@angular/core": "^12.2.16",
21
21
  "@angular/platform-browser": "^12.2.16",
22
- "@skyux-sdk/testing": "5.8.2",
23
- "@skyux/animations": "5.8.2",
24
- "@skyux/core": "5.8.2",
25
- "@skyux/i18n": "5.8.2",
26
- "@skyux/indicators": "5.8.2",
27
- "@skyux/popovers": "5.8.2",
28
- "@skyux/theme": "5.8.2"
22
+ "@skyux-sdk/testing": "5.8.3",
23
+ "@skyux/animations": "5.8.3",
24
+ "@skyux/core": "5.8.3",
25
+ "@skyux/i18n": "5.8.3",
26
+ "@skyux/indicators": "5.8.3",
27
+ "@skyux/popovers": "5.8.3",
28
+ "@skyux/theme": "5.8.3"
29
29
  },
30
30
  "dependencies": {
31
31
  "tslib": "^2.3.1"