@skyux/layout 6.25.1 → 6.25.2
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 +19 -4
- package/package.json +9 -9
package/documentation.json
CHANGED
|
@@ -8592,12 +8592,12 @@
|
|
|
8592
8592
|
{
|
|
8593
8593
|
"fileName": "box-demo.component.html",
|
|
8594
8594
|
"filePath": "/projects/layout/documentation/code-examples/box/inline-help/box-demo.component.html",
|
|
8595
|
-
"rawContents": "<sky-box>\n <sky-box-header>\n <h2 class=\"sky-font-heading-2\">Box header</h2>\n <sky-help-inline
|
|
8595
|
+
"rawContents": "<sky-box>\n <sky-box-header>\n <h2 class=\"sky-font-heading-2\">Box header</h2>\n <sky-help-inline\n class=\"sky-control-help\"\n (actionClick)=\"onActionClick()\"\n ></sky-help-inline>\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"
|
|
8596
8596
|
},
|
|
8597
8597
|
{
|
|
8598
8598
|
"fileName": "box-demo.component.ts",
|
|
8599
8599
|
"filePath": "/projects/layout/documentation/code-examples/box/inline-help/box-demo.component.ts",
|
|
8600
|
-
"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"
|
|
8600
|
+
"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 public onActionClick(): void {\n alert('Help inline button clicked!');\n }\n}\n"
|
|
8601
8601
|
},
|
|
8602
8602
|
{
|
|
8603
8603
|
"fileName": "box-demo.module.ts",
|
|
@@ -8637,18 +8637,33 @@
|
|
|
8637
8637
|
{
|
|
8638
8638
|
"fileName": "description-list-demo.component.html",
|
|
8639
8639
|
"filePath": "/projects/layout/documentation/code-examples/description-list/horizontal/description-list-demo.component.html",
|
|
8640
|
-
"rawContents": "<sky-description-list mode=\"horizontal\">\n <sky-description-list-content *ngFor=\"let item of items\">\n <sky-description-list-term>\n {{ item.term }}\n <sky-help-inline\n *ngIf=\"item.showHelp\"\n class=\"sky-control-help\"\n ></sky-help-inline>\n </sky-description-list-term>\n <sky-description-list-description>\n {{ item.description }}\n </sky-description-list-description>\n </sky-description-list-content>\n</sky-description-list>\n"
|
|
8640
|
+
"rawContents": "<sky-description-list mode=\"horizontal\">\n <sky-description-list-content *ngFor=\"let item of items\">\n <sky-description-list-term>\n {{ item.term }}\n <sky-help-inline\n *ngIf=\"item.showHelp\"\n class=\"sky-control-help\"\n (actionClick)=\"onActionClick()\"\n ></sky-help-inline>\n </sky-description-list-term>\n <sky-description-list-description>\n {{ item.description }}\n </sky-description-list-description>\n </sky-description-list-content>\n</sky-description-list>\n"
|
|
8641
8641
|
},
|
|
8642
8642
|
{
|
|
8643
8643
|
"fileName": "description-list-demo.component.ts",
|
|
8644
8644
|
"filePath": "/projects/layout/documentation/code-examples/description-list/horizontal/description-list-demo.component.ts",
|
|
8645
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-description-list-demo',\n templateUrl: './description-list-demo.component.html',\n})\nexport class DescriptionListDemoComponent {\n public items: { term: string; description: string; showHelp?: boolean }[] = [\n {\n term: 'College',\n description: 'Humanities and Social Sciences',\n },\n {\n term: 'Department',\n description: 'Anthropology',\n },\n {\n term: 'Advisor',\n description: 'Calandra Geer',\n showHelp: true,\n },\n {\n term: 'Class year',\n description: '2024',\n },\n ];\n}\n"
|
|
8645
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-description-list-demo',\n templateUrl: './description-list-demo.component.html',\n})\nexport class DescriptionListDemoComponent {\n public items: { term: string; description: string; showHelp?: boolean }[] = [\n {\n term: 'College',\n description: 'Humanities and Social Sciences',\n },\n {\n term: 'Department',\n description: 'Anthropology',\n },\n {\n term: 'Advisor',\n description: 'Calandra Geer',\n showHelp: true,\n },\n {\n term: 'Class year',\n description: '2024',\n },\n ];\n\n public onActionClick(): void {\n alert('Help inline button clicked!');\n }\n}\n"
|
|
8646
8646
|
},
|
|
8647
8647
|
{
|
|
8648
8648
|
"fileName": "description-list-demo.module.ts",
|
|
8649
8649
|
"filePath": "/projects/layout/documentation/code-examples/description-list/horizontal/description-list-demo.module.ts",
|
|
8650
8650
|
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyHelpInlineModule } from '@skyux/indicators';\nimport { SkyDescriptionListModule } from '@skyux/layout';\n\nimport { DescriptionListDemoComponent } from './description-list-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyDescriptionListModule, SkyHelpInlineModule],\n declarations: [DescriptionListDemoComponent],\n exports: [DescriptionListDemoComponent],\n})\nexport class DescriptionListDemoModule {}\n"
|
|
8651
8651
|
},
|
|
8652
|
+
{
|
|
8653
|
+
"fileName": "description-list-demo.component.html",
|
|
8654
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/inline-help/description-list-demo.component.html",
|
|
8655
|
+
"rawContents": "<sky-description-list mode=\"horizontal\">\n <sky-description-list-content *ngFor=\"let item of items\">\n <sky-description-list-term>\n {{ item.term }}\n <sky-help-inline\n class=\"sky-control-help\"\n (actionClick)=\"onActionClick()\"\n ></sky-help-inline>\n </sky-description-list-term>\n <sky-description-list-description>\n {{ item.description }}\n </sky-description-list-description>\n </sky-description-list-content>\n</sky-description-list>\n"
|
|
8656
|
+
},
|
|
8657
|
+
{
|
|
8658
|
+
"fileName": "description-list-demo.component.ts",
|
|
8659
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/inline-help/description-list-demo.component.ts",
|
|
8660
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-description-list-demo',\n templateUrl: './description-list-demo.component.html',\n})\nexport class DescriptionListDemoComponent {\n public items: { term: string; description: string }[] = [\n {\n term: 'College',\n description: 'Humanities and Social Sciences',\n },\n {\n term: 'Department',\n description: 'Anthropology',\n },\n {\n term: 'Advisor',\n description: 'Calandra Geer',\n },\n {\n term: 'Class year',\n description: '2024',\n },\n ];\n\n public onActionClick(): void {\n alert('Help inline button clicked!');\n }\n}\n"
|
|
8661
|
+
},
|
|
8662
|
+
{
|
|
8663
|
+
"fileName": "description-list-demo.module.ts",
|
|
8664
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/inline-help/description-list-demo.module.ts",
|
|
8665
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyHelpInlineModule } from '@skyux/indicators';\nimport { SkyDescriptionListModule } from '@skyux/layout';\n\nimport { DescriptionListDemoComponent } from './description-list-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyDescriptionListModule, SkyHelpInlineModule],\n declarations: [DescriptionListDemoComponent],\n exports: [DescriptionListDemoComponent],\n})\nexport class DescriptionListDemoModule {}\n"
|
|
8666
|
+
},
|
|
8652
8667
|
{
|
|
8653
8668
|
"fileName": "description-list-demo.component.html",
|
|
8654
8669
|
"filePath": "/projects/layout/documentation/code-examples/description-list/long-description/description-list-demo.component.html",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "6.25.
|
|
3
|
+
"version": "6.25.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"@angular/forms": "^13.3.2",
|
|
48
48
|
"@angular/platform-browser": "^13.3.2",
|
|
49
49
|
"@angular/router": "^13.3.2",
|
|
50
|
-
"@skyux-sdk/testing": "6.25.
|
|
51
|
-
"@skyux/core": "6.25.
|
|
52
|
-
"@skyux/forms": "6.25.
|
|
53
|
-
"@skyux/i18n": "6.25.
|
|
54
|
-
"@skyux/indicators": "6.25.
|
|
55
|
-
"@skyux/modals": "6.25.
|
|
56
|
-
"@skyux/router": "6.25.
|
|
57
|
-
"@skyux/theme": "6.25.
|
|
50
|
+
"@skyux-sdk/testing": "6.25.2",
|
|
51
|
+
"@skyux/core": "6.25.2",
|
|
52
|
+
"@skyux/forms": "6.25.2",
|
|
53
|
+
"@skyux/i18n": "6.25.2",
|
|
54
|
+
"@skyux/indicators": "6.25.2",
|
|
55
|
+
"@skyux/modals": "6.25.2",
|
|
56
|
+
"@skyux/router": "6.25.2",
|
|
57
|
+
"@skyux/theme": "6.25.2"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"tslib": "^2.3.1"
|