@skyux/layout 9.0.0-alpha.0 → 9.0.0-alpha.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.
- package/documentation.json +228 -228
- package/package.json +9 -9
package/documentation.json
CHANGED
|
@@ -9737,194 +9737,194 @@
|
|
|
9737
9737
|
},
|
|
9738
9738
|
"codeExamples": [
|
|
9739
9739
|
{
|
|
9740
|
-
"fileName": "
|
|
9741
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9742
|
-
"rawContents": "
|
|
9740
|
+
"fileName": "toolbar-demo.module.ts",
|
|
9741
|
+
"filePath": "/projects/layout/documentation/code-examples/toolbar/sectioned/toolbar-demo.module.ts",
|
|
9742
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyIconModule } from '@skyux/indicators';\nimport { SkyToolbarModule } from '@skyux/layout';\n\nimport { ToolbarDemoComponent } from './toolbar-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyIconModule, SkyToolbarModule],\n exports: [ToolbarDemoComponent],\n declarations: [ToolbarDemoComponent],\n})\nexport class ToolbarDemoModule {}\n"
|
|
9743
9743
|
},
|
|
9744
9744
|
{
|
|
9745
|
-
"fileName": "
|
|
9746
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9747
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-
|
|
9745
|
+
"fileName": "toolbar-demo.component.ts",
|
|
9746
|
+
"filePath": "/projects/layout/documentation/code-examples/toolbar/sectioned/toolbar-demo.component.ts",
|
|
9747
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-toolbar-demo',\n templateUrl: './toolbar-demo.component.html',\n})\nexport class ToolbarDemoComponent {\n public onButtonClicked(buttonText: string): void {\n alert(buttonText + ' clicked!');\n }\n}\n"
|
|
9748
9748
|
},
|
|
9749
9749
|
{
|
|
9750
|
-
"fileName": "
|
|
9751
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9752
|
-
"rawContents": "
|
|
9750
|
+
"fileName": "toolbar-demo.component.html",
|
|
9751
|
+
"filePath": "/projects/layout/documentation/code-examples/toolbar/sectioned/toolbar-demo.component.html",
|
|
9752
|
+
"rawContents": "<sky-toolbar>\n <sky-toolbar-section>\n <sky-toolbar-item>\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"onButtonClicked('Button 1')\"\n >\n Button 1\n </button>\n </sky-toolbar-item>\n <sky-toolbar-item>\n <button\n class=\"sky-btn sky-btn-default\"\n type=\"button\"\n (click)=\"onButtonClicked('Button 2')\"\n >\n Button 2\n </button>\n </sky-toolbar-item>\n <sky-toolbar-view-actions>\n <button\n class=\"sky-btn sky-btn-default sky-btn-icon\"\n title=\"Sort descending\"\n type=\"button\"\n (click)=\"onButtonClicked('Expand')\"\n >\n <sky-icon icon=\"angle-double-down\"></sky-icon>\n </button>\n <button\n class=\"sky-btn sky-btn-default sky-btn-icon\"\n title=\"Sort ascending\"\n type=\"button\"\n (click)=\"onButtonClicked('Collapse')\"\n >\n <sky-icon icon=\"angle-double-up\"></sky-icon>\n </button>\n </sky-toolbar-view-actions>\n </sky-toolbar-section>\n <sky-toolbar-section>\n <sky-toolbar-item>\n <button\n class=\"sky-btn sky-btn-default\"\n type=\"button\"\n (click)=\"onButtonClicked('Sort')\"\n >\n <sky-icon icon=\"sort\"></sky-icon>\n </button>\n </sky-toolbar-item>\n <sky-toolbar-item>\n <button\n class=\"sky-btn sky-btn-default\"\n type=\"button\"\n (click)=\"onButtonClicked('Filter')\"\n >\n <sky-icon icon=\"filter\"></sky-icon>\n </button>\n </sky-toolbar-item>\n </sky-toolbar-section>\n</sky-toolbar>\n"
|
|
9753
9753
|
},
|
|
9754
9754
|
{
|
|
9755
|
-
"fileName": "
|
|
9756
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9757
|
-
"rawContents": "
|
|
9755
|
+
"fileName": "toolbar-demo.module.ts",
|
|
9756
|
+
"filePath": "/projects/layout/documentation/code-examples/toolbar/basic/toolbar-demo.module.ts",
|
|
9757
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyIconModule } from '@skyux/indicators';\nimport { SkyToolbarModule } from '@skyux/layout';\n\nimport { ToolbarDemoComponent } from './toolbar-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyIconModule, SkyToolbarModule],\n exports: [ToolbarDemoComponent],\n declarations: [ToolbarDemoComponent],\n})\nexport class ToolbarDemoModule {}\n"
|
|
9758
9758
|
},
|
|
9759
9759
|
{
|
|
9760
|
-
"fileName": "
|
|
9761
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9762
|
-
"rawContents": "import { Component } from '@angular/core';\
|
|
9760
|
+
"fileName": "toolbar-demo.component.ts",
|
|
9761
|
+
"filePath": "/projects/layout/documentation/code-examples/toolbar/basic/toolbar-demo.component.ts",
|
|
9762
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-toolbar-demo',\n templateUrl: './toolbar-demo.component.html',\n})\nexport class ToolbarDemoComponent {\n public onButtonClicked(buttonText: string): void {\n alert(buttonText + ' clicked!');\n }\n}\n"
|
|
9763
9763
|
},
|
|
9764
9764
|
{
|
|
9765
|
-
"fileName": "
|
|
9766
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9767
|
-
"rawContents": "
|
|
9765
|
+
"fileName": "toolbar-demo.component.html",
|
|
9766
|
+
"filePath": "/projects/layout/documentation/code-examples/toolbar/basic/toolbar-demo.component.html",
|
|
9767
|
+
"rawContents": "<sky-toolbar>\n <sky-toolbar-item>\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"onButtonClicked('Button 1')\"\n >\n Button 1\n </button>\n </sky-toolbar-item>\n <sky-toolbar-item>\n <button\n class=\"sky-btn sky-btn-default\"\n type=\"button\"\n (click)=\"onButtonClicked('Button 2')\"\n >\n Button 2\n </button>\n </sky-toolbar-item>\n <sky-toolbar-view-actions>\n <button\n class=\"sky-btn sky-btn-default sky-btn-icon\"\n title=\"Sort descending\"\n type=\"button\"\n (click)=\"onButtonClicked('Expand')\"\n >\n <sky-icon icon=\"angle-double-down\"></sky-icon>\n </button>\n <button\n class=\"sky-btn sky-btn-default sky-btn-icon\"\n title=\"Sort ascending\"\n type=\"button\"\n (click)=\"onButtonClicked('Collapse')\"\n >\n <sky-icon icon=\"angle-double-up\"></sky-icon>\n </button>\n </sky-toolbar-view-actions>\n</sky-toolbar>\n"
|
|
9768
9768
|
},
|
|
9769
9769
|
{
|
|
9770
|
-
"fileName": "
|
|
9771
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9772
|
-
"rawContents": "
|
|
9770
|
+
"fileName": "text-expand-repeater-demo.module.ts",
|
|
9771
|
+
"filePath": "/projects/layout/documentation/code-examples/text-expand-repeater/text-expand-repeater-demo.module.ts",
|
|
9772
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyTextExpandRepeaterModule } from '@skyux/layout';\n\nimport { TextExpandRepeaterDemoComponent } from './text-expand-repeater-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyTextExpandRepeaterModule],\n declarations: [TextExpandRepeaterDemoComponent],\n exports: [TextExpandRepeaterDemoComponent],\n})\nexport class TextExpandRepeaterDemoModule {}\n"
|
|
9773
9773
|
},
|
|
9774
9774
|
{
|
|
9775
|
-
"fileName": "
|
|
9776
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9777
|
-
"rawContents": "import { Component
|
|
9775
|
+
"fileName": "text-expand-repeater-demo.component.ts",
|
|
9776
|
+
"filePath": "/projects/layout/documentation/code-examples/text-expand-repeater/text-expand-repeater-demo.component.ts",
|
|
9777
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-text-expand-repeater-demo',\n templateUrl: './text-expand-repeater-demo.component.html',\n})\nexport class TextExpandRepeaterDemoComponent {\n public repeaterData: string[] = [\n 'Repeater item 1',\n 'Repeater item 2',\n 'Repeater item 3',\n 'Repeater item 4',\n 'Repeater item 5',\n ];\n}\n"
|
|
9778
9778
|
},
|
|
9779
9779
|
{
|
|
9780
|
-
"fileName": "
|
|
9781
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9782
|
-
"rawContents": "
|
|
9780
|
+
"fileName": "text-expand-repeater-demo.component.html",
|
|
9781
|
+
"filePath": "/projects/layout/documentation/code-examples/text-expand-repeater/text-expand-repeater-demo.component.html",
|
|
9782
|
+
"rawContents": "<sky-text-expand-repeater [data]=\"repeaterData\" [maxItems]=\"2\">\n</sky-text-expand-repeater>\n"
|
|
9783
9783
|
},
|
|
9784
9784
|
{
|
|
9785
|
-
"fileName": "
|
|
9786
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9787
|
-
"rawContents": "
|
|
9785
|
+
"fileName": "text-expand-demo.module.ts",
|
|
9786
|
+
"filePath": "/projects/layout/documentation/code-examples/text-expand/newline/text-expand-demo.module.ts",
|
|
9787
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyTextExpandModule } from '@skyux/layout';\n\nimport { TextExpandDemoComponent } from './text-expand-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyTextExpandModule],\n declarations: [TextExpandDemoComponent],\n exports: [TextExpandDemoComponent],\n})\nexport class TextExpandDemoModule {}\n"
|
|
9788
9788
|
},
|
|
9789
9789
|
{
|
|
9790
|
-
"fileName": "
|
|
9791
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9792
|
-
"rawContents": "
|
|
9790
|
+
"fileName": "text-expand-demo.component.ts",
|
|
9791
|
+
"filePath": "/projects/layout/documentation/code-examples/text-expand/newline/text-expand-demo.component.ts",
|
|
9792
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-text-expand-demo',\n templateUrl: './text-expand-demo.component.html',\n})\nexport class TextExpandDemoComponent {\n public newlinesText =\n 'The text expand component truncates long blocks of text with an ellipsis and a link to expand the text.\\nUsers select the link to expand the full text inline unless it exceeds limits on text characters or newline characters.\\nIf the text exceeds those limits, then it expands in a modal view instead.\\nThe component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.';\n}\n"
|
|
9793
9793
|
},
|
|
9794
9794
|
{
|
|
9795
|
-
"fileName": "
|
|
9796
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9797
|
-
"rawContents": "
|
|
9795
|
+
"fileName": "text-expand-demo.component.html",
|
|
9796
|
+
"filePath": "/projects/layout/documentation/code-examples/text-expand/newline/text-expand-demo.component.html",
|
|
9797
|
+
"rawContents": "<sky-text-expand [text]=\"newlinesText\" [truncateNewlines]=\"false\">\n</sky-text-expand>\n"
|
|
9798
9798
|
},
|
|
9799
9799
|
{
|
|
9800
|
-
"fileName": "
|
|
9801
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9802
|
-
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport {
|
|
9800
|
+
"fileName": "text-expand-demo.module.ts",
|
|
9801
|
+
"filePath": "/projects/layout/documentation/code-examples/text-expand/modal/text-expand-demo.module.ts",
|
|
9802
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyTextExpandModule } from '@skyux/layout';\n\nimport { TextExpandDemoComponent } from './text-expand-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyTextExpandModule],\n declarations: [TextExpandDemoComponent],\n exports: [TextExpandDemoComponent],\n})\nexport class TextExpandDemoModule {}\n"
|
|
9803
9803
|
},
|
|
9804
9804
|
{
|
|
9805
|
-
"fileName": "
|
|
9806
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9807
|
-
"rawContents": "
|
|
9805
|
+
"fileName": "text-expand-demo.component.ts",
|
|
9806
|
+
"filePath": "/projects/layout/documentation/code-examples/text-expand/modal/text-expand-demo.component.ts",
|
|
9807
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-text-expand-demo',\n templateUrl: './text-expand-demo.component.html',\n})\nexport class TextExpandDemoComponent {\n public longText =\n 'The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.';\n}\n"
|
|
9808
9808
|
},
|
|
9809
9809
|
{
|
|
9810
|
-
"fileName": "
|
|
9811
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9812
|
-
"rawContents": "
|
|
9810
|
+
"fileName": "text-expand-demo.component.html",
|
|
9811
|
+
"filePath": "/projects/layout/documentation/code-examples/text-expand/modal/text-expand-demo.component.html",
|
|
9812
|
+
"rawContents": "<sky-text-expand [text]=\"longText\" [maxExpandedLength]=\"100\"> </sky-text-expand>\n"
|
|
9813
9813
|
},
|
|
9814
9814
|
{
|
|
9815
|
-
"fileName": "
|
|
9816
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9817
|
-
"rawContents": "import {
|
|
9815
|
+
"fileName": "text-expand-demo.module.ts",
|
|
9816
|
+
"filePath": "/projects/layout/documentation/code-examples/text-expand/inline/text-expand-demo.module.ts",
|
|
9817
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyTextExpandModule } from '@skyux/layout';\n\nimport { TextExpandDemoComponent } from './text-expand-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyTextExpandModule],\n declarations: [TextExpandDemoComponent],\n exports: [TextExpandDemoComponent],\n})\nexport class TextExpandDemoModule {}\n"
|
|
9818
9818
|
},
|
|
9819
9819
|
{
|
|
9820
|
-
"fileName": "
|
|
9821
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9822
|
-
"rawContents": "import {
|
|
9820
|
+
"fileName": "text-expand-demo.component.ts",
|
|
9821
|
+
"filePath": "/projects/layout/documentation/code-examples/text-expand/inline/text-expand-demo.component.ts",
|
|
9822
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-text-expand-demo',\n templateUrl: './text-expand-demo.component.html',\n})\nexport class TextExpandDemoComponent {\n public longText =\n 'The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.';\n}\n"
|
|
9823
9823
|
},
|
|
9824
9824
|
{
|
|
9825
|
-
"fileName": "
|
|
9826
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9827
|
-
"rawContents": "<sky-
|
|
9825
|
+
"fileName": "text-expand-demo.component.html",
|
|
9826
|
+
"filePath": "/projects/layout/documentation/code-examples/text-expand/inline/text-expand-demo.component.html",
|
|
9827
|
+
"rawContents": "<sky-text-expand [text]=\"longText\"> </sky-text-expand>\n"
|
|
9828
9828
|
},
|
|
9829
9829
|
{
|
|
9830
|
-
"fileName": "
|
|
9831
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9832
|
-
"rawContents": "import {
|
|
9830
|
+
"fileName": "page-summary-demo.module.ts",
|
|
9831
|
+
"filePath": "/projects/layout/documentation/code-examples/page-summary/basic/page-summary-demo.module.ts",
|
|
9832
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { SkyAvatarModule } from '@skyux/avatar';\nimport { SkyCheckboxModule } from '@skyux/forms';\nimport {\n SkyAlertModule,\n SkyKeyInfoModule,\n SkyLabelModule,\n} from '@skyux/indicators';\nimport { SkyPageSummaryModule } from '@skyux/layout';\n\nimport { PageSummaryDemoComponent } from './page-summary-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n FormsModule,\n SkyPageSummaryModule,\n SkyAlertModule,\n SkyAvatarModule,\n SkyCheckboxModule,\n SkyLabelModule,\n SkyKeyInfoModule,\n ],\n declarations: [PageSummaryDemoComponent],\n exports: [PageSummaryDemoComponent],\n})\nexport class PageSummaryDemoModule {}\n"
|
|
9833
9833
|
},
|
|
9834
9834
|
{
|
|
9835
|
-
"fileName": "
|
|
9836
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9837
|
-
"rawContents": "import {
|
|
9835
|
+
"fileName": "page-summary-demo.component.ts",
|
|
9836
|
+
"filePath": "/projects/layout/documentation/code-examples/page-summary/basic/page-summary-demo.component.ts",
|
|
9837
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-page-summary-demo',\n templateUrl: './page-summary-demo.component.html',\n})\nexport class PageSummaryDemoComponent {\n public name = 'Robert C. Hernandez';\n\n public showAlert = true;\n\n public showContent = true;\n\n public showImage = true;\n\n public showKeyInfo = true;\n\n public showStatus = true;\n\n public showSubtitle = true;\n\n public showTitle = true;\n}\n"
|
|
9838
9838
|
},
|
|
9839
9839
|
{
|
|
9840
|
-
"fileName": "
|
|
9841
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9842
|
-
"rawContents": "<sky-
|
|
9840
|
+
"fileName": "page-summary-demo.component.html",
|
|
9841
|
+
"filePath": "/projects/layout/documentation/code-examples/page-summary/basic/page-summary-demo.component.html",
|
|
9842
|
+
"rawContents": "<sky-page-summary>\n <sky-page-summary-alert *ngIf=\"showAlert\">\n <sky-alert alertType=\"info\"> This is an alert. </sky-alert>\n </sky-page-summary-alert>\n <sky-page-summary-image *ngIf=\"showImage\">\n <sky-avatar [name]=\"name\" [canChange]=\"true\"></sky-avatar>\n </sky-page-summary-image>\n <sky-page-summary-title *ngIf=\"showTitle\">\n {{ name }}\n </sky-page-summary-title>\n <sky-page-summary-subtitle *ngIf=\"showSubtitle\">\n Board member\n </sky-page-summary-subtitle>\n <sky-page-summary-status *ngIf=\"showStatus\">\n <sky-label labelType=\"success\"> Fundraiser </sky-label>\n <sky-label> Inactive </sky-label>\n </sky-page-summary-status>\n <sky-page-summary-content *ngIf=\"showContent\">\n This is the arbitrary content section. You can display any kind of content\n to complement the content on a page. We recommend that you display content\n to support the key tasks of users of users who visit the page. We also\n recommend that you keep in mind the context of how users will use the\n content and limit the amount of content to avoid overloading the summary.\n </sky-page-summary-content>\n <sky-page-summary-key-info *ngIf=\"showKeyInfo\">\n <sky-key-info>\n <sky-key-info-value> $1,500 </sky-key-info-value>\n <sky-key-info-label> Largest gift </sky-key-info-label>\n </sky-key-info>\n <sky-key-info>\n <sky-key-info-value> 37 </sky-key-info-value>\n <sky-key-info-label> Total gifts </sky-key-info-label>\n </sky-key-info>\n </sky-page-summary-key-info>\n</sky-page-summary>\n\n<ul class=\"sky-list-unstyled\">\n <li>\n <sky-checkbox [(ngModel)]=\"showTitle\">\n <sky-checkbox-label>Show title</sky-checkbox-label>\n </sky-checkbox>\n </li>\n <li>\n <sky-checkbox [(ngModel)]=\"showSubtitle\">\n <sky-checkbox-label> Show subtitle </sky-checkbox-label>\n </sky-checkbox>\n </li>\n <li>\n <sky-checkbox [(ngModel)]=\"showImage\">\n <sky-checkbox-label> Show image </sky-checkbox-label>\n </sky-checkbox>\n </li>\n <li>\n <sky-checkbox [(ngModel)]=\"showStatus\">\n <sky-checkbox-label> Show record status </sky-checkbox-label>\n </sky-checkbox>\n </li>\n <li>\n <sky-checkbox [(ngModel)]=\"showKeyInfo\">\n <sky-checkbox-label> Show key information </sky-checkbox-label>\n </sky-checkbox>\n </li>\n <li>\n <sky-checkbox [(ngModel)]=\"showContent\">\n <sky-checkbox-label> Show arbitrary content </sky-checkbox-label>\n </sky-checkbox>\n </li>\n <li>\n <sky-checkbox [(ngModel)]=\"showAlert\">\n <sky-checkbox-label> Show alert </sky-checkbox-label>\n </sky-checkbox>\n </li>\n</ul>\n"
|
|
9843
9843
|
},
|
|
9844
9844
|
{
|
|
9845
|
-
"fileName": "
|
|
9846
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9847
|
-
"rawContents": "import {
|
|
9845
|
+
"fileName": "page-demo.module.ts",
|
|
9846
|
+
"filePath": "/projects/layout/documentation/code-examples/page/layout-fit/page-demo.module.ts",
|
|
9847
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyFluidGridModule, SkyPageModule } from '@skyux/layout';\n\nimport { PageDemoComponent } from './page-demo.component';\n\n@NgModule({\n declarations: [PageDemoComponent],\n imports: [CommonModule, SkyFluidGridModule, SkyPageModule],\n exports: [PageDemoComponent],\n})\nexport class PageDemoModule {}\n"
|
|
9848
9848
|
},
|
|
9849
9849
|
{
|
|
9850
|
-
"fileName": "
|
|
9851
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9852
|
-
"rawContents": "import {
|
|
9850
|
+
"fileName": "page-demo.component.ts",
|
|
9851
|
+
"filePath": "/projects/layout/documentation/code-examples/page/layout-fit/page-demo.component.ts",
|
|
9852
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-page-demo',\n templateUrl: './page-demo.component.html',\n styleUrls: ['./page-demo.component.scss'],\n})\nexport class PageDemoComponent {}\n"
|
|
9853
9853
|
},
|
|
9854
9854
|
{
|
|
9855
|
-
"fileName": "
|
|
9856
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9857
|
-
"rawContents": "
|
|
9855
|
+
"fileName": "page-demo.component.scss",
|
|
9856
|
+
"filePath": "/projects/layout/documentation/code-examples/page/layout-fit/page-demo.component.scss",
|
|
9857
|
+
"rawContents": ".layout-fit-demo {\n display: flex;\n flex-direction: column;\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n\n &-header {\n flex-grow: 0;\n }\n\n &-content {\n background-color: var(--sky-background-color-info-light);\n flex-grow: 1;\n position: relative;\n }\n}\n\n.anchored-item {\n position: absolute;\n padding: var(--sky-padding-even-md);\n\n &-left {\n left: 0;\n top: 50%;\n }\n\n &-top {\n top: 0;\n left: 50%;\n }\n\n &-right {\n top: 50%;\n right: 0;\n }\n\n &-bottom {\n bottom: 0;\n left: 50%;\n }\n\n &-center {\n top: 50%;\n left: 50%;\n }\n}\n"
|
|
9858
9858
|
},
|
|
9859
9859
|
{
|
|
9860
|
-
"fileName": "
|
|
9861
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9862
|
-
"rawContents": "
|
|
9860
|
+
"fileName": "page-demo.component.html",
|
|
9861
|
+
"filePath": "/projects/layout/documentation/code-examples/page/layout-fit/page-demo.component.html",
|
|
9862
|
+
"rawContents": "<sky-page layout=\"fit\">\n <div class=\"layout-fit-demo\">\n <div class=\"layout-fit-demo-header\">\n <sky-fluid-grid>\n <sky-row>\n <sky-column>\n <h1>Fit layout demo</h1>\n </sky-column>\n </sky-row>\n <sky-row>\n <sky-column>\n <p class=\"sky-margin-stacked-xl\">\n Elements in a page with a layout of \"fit\" can be absolutely\n positioned inside it. This is especially powerful when combined\n with content that uses\n <a href=\"https://css-tricks.com/snippets/css/a-guide-to-flexbox\"\n >CSS flexbox</a\n >. This example uses flexbox to display a header with a variable\n height and content that fills the rest of the available viewport.\n </p>\n </sky-column>\n </sky-row>\n </sky-fluid-grid>\n </div>\n <div class=\"layout-fit-demo-content\">\n <div class=\"anchored-item anchored-item-left\">Left</div>\n <div class=\"anchored-item anchored-item-top\">Top</div>\n <div class=\"anchored-item anchored-item-right\">Right</div>\n <div class=\"anchored-item anchored-item-bottom\">Bottom</div>\n <div class=\"anchored-item anchored-item-center\">Center</div>\n </div>\n </div>\n</sky-page>\n"
|
|
9863
9863
|
},
|
|
9864
9864
|
{
|
|
9865
|
-
"fileName": "
|
|
9866
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9867
|
-
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport {
|
|
9865
|
+
"fileName": "inline-delete-repeater-demo.module.ts",
|
|
9866
|
+
"filePath": "/projects/layout/documentation/code-examples/inline-delete/repeater/inline-delete-repeater-demo.module.ts",
|
|
9867
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyInlineDeleteModule } from '@skyux/layout';\nimport { SkyRepeaterModule } from '@skyux/lists';\nimport { SkyDropdownModule } from '@skyux/popovers';\n\nimport { InlineDeleteRepeaterDemoComponent } from './inline-delete-repeater-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n SkyDropdownModule,\n SkyInlineDeleteModule,\n SkyRepeaterModule,\n ],\n declarations: [InlineDeleteRepeaterDemoComponent],\n exports: [InlineDeleteRepeaterDemoComponent],\n})\nexport class InlineDeleteRepeaterDemoModule {}\n"
|
|
9868
9868
|
},
|
|
9869
9869
|
{
|
|
9870
|
-
"fileName": "
|
|
9871
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9872
|
-
"rawContents": "
|
|
9870
|
+
"fileName": "inline-delete-repeater-demo.component.ts",
|
|
9871
|
+
"filePath": "/projects/layout/documentation/code-examples/inline-delete/repeater/inline-delete-repeater-demo.component.ts",
|
|
9872
|
+
"rawContents": "import { Component } from '@angular/core';\n\ninterface InlineRepeaterDemoItem {\n title: string;\n cost: string;\n description: string;\n}\n\n@Component({\n selector: 'app-inline-delete-repeater-demo',\n templateUrl: './inline-delete-repeater-demo.component.html',\n})\nexport class InlineDeleteRepeaterDemoComponent {\n public originalRepeaterDemoItems: InlineRepeaterDemoItem[] = [\n {\n title: 'Individual',\n cost: '$75.00',\n description: '1 ticket',\n },\n {\n title: 'Foursome',\n cost: '$250.00',\n description: '4 tickets',\n },\n {\n title: 'Hole sponsor',\n cost: '$1,000.00',\n description: '8 tickets',\n },\n ];\n\n public repeaterDemoItems: InlineRepeaterDemoItem[] =\n this.originalRepeaterDemoItems;\n\n public repeaterDemoShownInlineDeletes: string[] = [];\n\n public showInlineDelete(title: string): void {\n this.repeaterDemoShownInlineDeletes.push(title);\n }\n\n public deleteItem(title: string): void {\n this.repeaterDemoItems = this.repeaterDemoItems.filter(\n (demoItem: InlineRepeaterDemoItem) => demoItem.title !== title\n );\n this.repeaterDemoShownInlineDeletes =\n this.repeaterDemoShownInlineDeletes.filter(\n (demoItem: string) => demoItem !== title\n );\n }\n\n public cancelDeletion(title: string): void {\n this.repeaterDemoShownInlineDeletes =\n this.repeaterDemoShownInlineDeletes.filter(\n (demoItem: string) => demoItem !== title\n );\n }\n\n public onResetClick(): void {\n this.repeaterDemoItems = this.originalRepeaterDemoItems;\n this.repeaterDemoShownInlineDeletes = [];\n }\n}\n"
|
|
9873
9873
|
},
|
|
9874
9874
|
{
|
|
9875
|
-
"fileName": "
|
|
9876
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9877
|
-
"rawContents": "
|
|
9875
|
+
"fileName": "inline-delete-repeater-demo.component.html",
|
|
9876
|
+
"filePath": "/projects/layout/documentation/code-examples/inline-delete/repeater/inline-delete-repeater-demo.component.html",
|
|
9877
|
+
"rawContents": "<sky-repeater style=\"width: 100%\">\n <sky-repeater-item *ngFor=\"let item of repeaterDemoItems\">\n <sky-repeater-item-context-menu>\n <sky-dropdown buttonType=\"context-menu\">\n <sky-dropdown-menu>\n <sky-dropdown-item>\n <button type=\"button\" (click)=\"showInlineDelete(item.title)\">\n Delete\n </button>\n </sky-dropdown-item>\n </sky-dropdown-menu>\n </sky-dropdown>\n </sky-repeater-item-context-menu>\n <sky-repeater-item-title class=\"sky-demo-inline-delete-flex\">\n <div>\n {{ item.title }}\n </div>\n <div>\n {{ item.cost }}\n </div>\n </sky-repeater-item-title>\n <sky-repeater-item-content>\n {{ item.description }}\n </sky-repeater-item-content>\n <sky-inline-delete\n *ngIf=\"repeaterDemoShownInlineDeletes.indexOf(item.title) >= 0\"\n (cancelTriggered)=\"cancelDeletion(item.title)\"\n (deleteTriggered)=\"deleteItem(item.title)\"\n ></sky-inline-delete>\n </sky-repeater-item>\n</sky-repeater>\n\n<button class=\"sky-btn sky-btn-primary\" type=\"button\" (click)=\"onResetClick()\">\n Reset Repeater\n</button>\n"
|
|
9878
9878
|
},
|
|
9879
9879
|
{
|
|
9880
|
-
"fileName": "
|
|
9881
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9882
|
-
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport {
|
|
9880
|
+
"fileName": "inline-delete-demo.module.ts",
|
|
9881
|
+
"filePath": "/projects/layout/documentation/code-examples/inline-delete/custom/inline-delete-demo.module.ts",
|
|
9882
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyIconModule } from '@skyux/indicators';\nimport { SkyInlineDeleteModule } from '@skyux/layout';\n\nimport { InlineDeleteDemoComponent } from './inline-delete-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyIconModule, SkyInlineDeleteModule],\n declarations: [InlineDeleteDemoComponent],\n exports: [InlineDeleteDemoComponent],\n})\nexport class InlineDeleteDemoModule {}\n"
|
|
9883
9883
|
},
|
|
9884
9884
|
{
|
|
9885
|
-
"fileName": "
|
|
9886
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9887
|
-
"rawContents": "
|
|
9885
|
+
"fileName": "inline-delete-demo.component.ts",
|
|
9886
|
+
"filePath": "/projects/layout/documentation/code-examples/inline-delete/custom/inline-delete-demo.component.ts",
|
|
9887
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-inline-delete-demo',\n templateUrl: './inline-delete-demo.component.html',\n styleUrls: ['./inline-delete-demo.component.scss'],\n})\nexport class InlineDeleteDemoComponent {\n public deleting = false;\n\n public pending = false;\n\n public deleteItem(): void {\n this.deleting = true;\n }\n\n public onCancelTriggered(): void {\n this.deleting = false;\n }\n\n public onDeleteTriggered(): void {\n setTimeout(() => {\n this.pending = false;\n this.deleting = false;\n\n alert(\n 'Custom element deletion was triggered. In a real scenario the item would be removed. Item was not removed just for demo purposes.'\n );\n }, 3000);\n\n this.pending = true;\n }\n}\n"
|
|
9888
9888
|
},
|
|
9889
9889
|
{
|
|
9890
|
-
"fileName": "
|
|
9891
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9892
|
-
"rawContents": "
|
|
9890
|
+
"fileName": "inline-delete-demo.component.scss",
|
|
9891
|
+
"filePath": "/projects/layout/documentation/code-examples/inline-delete/custom/inline-delete-demo.component.scss",
|
|
9892
|
+
"rawContents": "#inline-delete-container {\n padding: 15px;\n background-color: white;\n border: black solid 1px;\n height: 400px;\n width: 400px;\n position: relative;\n}\n\n#inline-delete-trigger {\n position: absolute;\n bottom: 10px;\n left: 0;\n width: 100%;\n}\n"
|
|
9893
9893
|
},
|
|
9894
9894
|
{
|
|
9895
|
-
"fileName": "
|
|
9896
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9897
|
-
"rawContents": "
|
|
9895
|
+
"fileName": "inline-delete-demo.component.html",
|
|
9896
|
+
"filePath": "/projects/layout/documentation/code-examples/inline-delete/custom/inline-delete-demo.component.html",
|
|
9897
|
+
"rawContents": "<div id=\"inline-delete-container\">\n <strong>Custom content</strong>\n <div>\n <button\n class=\"sky-btn sky-btn-danger\"\n id=\"inline-delete-trigger\"\n type=\"button\"\n (click)=\"deleteItem()\"\n >\n <sky-icon icon=\"trash\"></sky-icon>\n </button>\n </div>\n <sky-inline-delete\n *ngIf=\"deleting\"\n [pending]=\"pending\"\n (cancelTriggered)=\"onCancelTriggered()\"\n (deleteTriggered)=\"onDeleteTriggered()\"\n ></sky-inline-delete>\n</div>\n"
|
|
9898
9898
|
},
|
|
9899
9899
|
{
|
|
9900
|
-
"fileName": "
|
|
9901
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9902
|
-
"rawContents": "
|
|
9900
|
+
"fileName": "format-demo.module.ts",
|
|
9901
|
+
"filePath": "/projects/layout/documentation/code-examples/format/format-demo.module.ts",
|
|
9902
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyFormatModule } from '@skyux/layout';\n\nimport { FormatDemoComponent } from './format-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyFormatModule],\n declarations: [FormatDemoComponent],\n exports: [FormatDemoComponent],\n})\nexport class FormatDemoModule {}\n"
|
|
9903
9903
|
},
|
|
9904
9904
|
{
|
|
9905
|
-
"fileName": "
|
|
9906
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9907
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-
|
|
9905
|
+
"fileName": "format-demo.component.ts",
|
|
9906
|
+
"filePath": "/projects/layout/documentation/code-examples/format/format-demo.component.ts",
|
|
9907
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-format-demo',\n templateUrl: './format-demo.component.html',\n styleUrls: ['./format-demo.component.scss'],\n})\nexport class FormatDemoComponent {}\n"
|
|
9908
9908
|
},
|
|
9909
9909
|
{
|
|
9910
|
-
"fileName": "
|
|
9911
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9912
|
-
"rawContents": "
|
|
9910
|
+
"fileName": "format-demo.component.scss",
|
|
9911
|
+
"filePath": "/projects/layout/documentation/code-examples/format/format-demo.component.scss",
|
|
9912
|
+
"rawContents": ".number-large {\n font-size: 18px;\n}\n\n.number-medium {\n font-size: 16px;\n}\n"
|
|
9913
9913
|
},
|
|
9914
9914
|
{
|
|
9915
|
-
"fileName": "
|
|
9916
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9917
|
-
"rawContents": "<sky-
|
|
9915
|
+
"fileName": "format-demo.component.html",
|
|
9916
|
+
"filePath": "/projects/layout/documentation/code-examples/format/format-demo.component.html",
|
|
9917
|
+
"rawContents": "<sky-format\n text=\"{0} is an important number. {1} is important, too, but not as important as {0}.\"\n [args]=\"[value1, value2]\"\n></sky-format>\n\n<ng-template #value1>\n <strong class=\"number-large\">39,210</strong>\n</ng-template>\n\n<ng-template #value2>\n <strong class=\"number-medium\">78</strong>\n</ng-template>\n"
|
|
9918
9918
|
},
|
|
9919
9919
|
{
|
|
9920
|
-
"fileName": "
|
|
9921
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9922
|
-
"rawContents": "import {
|
|
9920
|
+
"fileName": "fluid-grid-demo.module.ts",
|
|
9921
|
+
"filePath": "/projects/layout/documentation/code-examples/fluid-grid/fluid-grid-demo.module.ts",
|
|
9922
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyFluidGridModule } from '@skyux/layout';\n\nimport { FluidGridDemoComponent } from './fluid-grid-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyFluidGridModule],\n declarations: [FluidGridDemoComponent],\n exports: [FluidGridDemoComponent],\n})\nexport class FluidGridDemoModule {}\n"
|
|
9923
9923
|
},
|
|
9924
9924
|
{
|
|
9925
|
-
"fileName": "
|
|
9926
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9927
|
-
"rawContents": "import {
|
|
9925
|
+
"fileName": "fluid-grid-demo.component.ts",
|
|
9926
|
+
"filePath": "/projects/layout/documentation/code-examples/fluid-grid/fluid-grid-demo.component.ts",
|
|
9927
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-fluid-grid-demo',\n templateUrl: './fluid-grid-demo.component.html',\n styles: [\n `\n .highlight-columns .sky-column {\n background-color: #97eced;\n border: 1px solid #56e0e1;\n overflow-wrap: break-word;\n }\n `,\n ],\n})\nexport class FluidGridDemoComponent {}\n"
|
|
9928
9928
|
},
|
|
9929
9929
|
{
|
|
9930
9930
|
"fileName": "fluid-grid-demo.component.html",
|
|
@@ -9932,194 +9932,194 @@
|
|
|
9932
9932
|
"rawContents": "<div class=\"highlight-columns\">\n <sky-fluid-grid>\n <sky-row>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n </sky-row>\n\n <sky-row>\n <sky-column [screenSmall]=\"2\"> [screenSmall]=\"2\" </sky-column>\n <sky-column [screenSmall]=\"2\"> [screenSmall]=\"2\" </sky-column>\n <sky-column [screenSmall]=\"2\"> [screenSmall]=\"2\" </sky-column>\n <sky-column [screenSmall]=\"2\"> [screenSmall]=\"2\" </sky-column>\n <sky-column [screenSmall]=\"2\"> [screenSmall]=\"2\" </sky-column>\n <sky-column [screenSmall]=\"2\"> [screenSmall]=\"2\" </sky-column>\n </sky-row>\n\n <sky-row>\n <sky-column [screenSmall]=\"3\"> [screenSmall]=\"3\" </sky-column>\n <sky-column [screenSmall]=\"3\"> [screenSmall]=\"3\" </sky-column>\n <sky-column [screenSmall]=\"3\"> [screenSmall]=\"3\" </sky-column>\n <sky-column [screenSmall]=\"3\"> [screenSmall]=\"3\" </sky-column>\n </sky-row>\n\n <sky-row>\n <sky-column [screenSmall]=\"4\"> [screenSmall]=\"4\" </sky-column>\n <sky-column [screenSmall]=\"4\"> [screenSmall]=\"4\" </sky-column>\n <sky-column [screenSmall]=\"4\"> [screenSmall]=\"4\" </sky-column>\n </sky-row>\n\n <sky-row>\n <sky-column [screenSmall]=\"5\"> [screenSmall]=\"5\" </sky-column>\n <sky-column [screenSmall]=\"7\"> [screenSmall]=\"7\" </sky-column>\n </sky-row>\n\n <sky-row>\n <sky-column [screenSmall]=\"6\"> [screenSmall]=\"6\" </sky-column>\n <sky-column [screenSmall]=\"6\"> [screenSmall]=\"6\" </sky-column>\n </sky-row>\n\n <sky-row>\n <sky-column [screenSmall]=\"8\"> [screenSmall]=\"8\" </sky-column>\n <sky-column [screenSmall]=\"4\"> [screenSmall]=\"4\" </sky-column>\n </sky-row>\n\n <sky-row>\n <sky-column [screenSmall]=\"9\"> [screenSmall]=\"9\" </sky-column>\n <sky-column [screenSmall]=\"3\"> [screenSmall]=\"3\" </sky-column>\n </sky-row>\n\n <sky-row>\n <sky-column [screenSmall]=\"10\"> [screenSmall]=\"10\" </sky-column>\n <sky-column [screenSmall]=\"2\"> [screenSmall]=\"2\" </sky-column>\n </sky-row>\n\n <sky-row>\n <sky-column [screenSmall]=\"11\"> [screenSmall]=\"11\" </sky-column>\n <sky-column [screenSmall]=\"1\"> [screenSmall]=\"1\" </sky-column>\n </sky-row>\n\n <sky-row>\n <sky-column\n [screenXSmall]=\"6\"\n [screenSmall]=\"8\"\n [screenMedium]=\"9\"\n [screenLarge]=\"10\"\n >\n [screenXSmall]=\"6\" [screenSmall]=\"8\" [screenMedium]=\"9\"\n [screenLarge]=\"10\"\n </sky-column>\n <sky-column\n [screenXSmall]=\"6\"\n [screenSmall]=\"4\"\n [screenMedium]=\"3\"\n [screenLarge]=\"2\"\n >\n [screenXSmall]=\"6\" [screenSmall]=\"4\" [screenMedium]=\"3\"\n [screenLarge]=\"2\"\n </sky-column>\n </sky-row>\n\n <sky-row [reverseColumnOrder]=\"true\">\n <sky-column [screenSmall]=\"4\"> First column </sky-column>\n <sky-column [screenSmall]=\"4\"> Second column </sky-column>\n <sky-column [screenSmall]=\"4\"> Third column </sky-column>\n </sky-row>\n </sky-fluid-grid>\n</div>\n"
|
|
9933
9933
|
},
|
|
9934
9934
|
{
|
|
9935
|
-
"fileName": "
|
|
9936
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9937
|
-
"rawContents": "import {
|
|
9935
|
+
"fileName": "description-list-demo.module.ts",
|
|
9936
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/vertical/description-list-demo.module.ts",
|
|
9937
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyDescriptionListModule } from '@skyux/layout';\n\nimport { DescriptionListDemoComponent } from './description-list-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyDescriptionListModule],\n declarations: [DescriptionListDemoComponent],\n exports: [DescriptionListDemoComponent],\n})\nexport class DescriptionListDemoModule {}\n"
|
|
9938
9938
|
},
|
|
9939
9939
|
{
|
|
9940
|
-
"fileName": "
|
|
9941
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9942
|
-
"rawContents": "import {
|
|
9940
|
+
"fileName": "description-list-demo.component.ts",
|
|
9941
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/vertical/description-list-demo.component.ts",
|
|
9942
|
+
"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: 'Cathy Green',\n },\n {\n term: 'Class year',\n description: '2024',\n },\n ];\n}\n"
|
|
9943
9943
|
},
|
|
9944
9944
|
{
|
|
9945
|
-
"fileName": "
|
|
9946
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9947
|
-
"rawContents": "<sky-
|
|
9945
|
+
"fileName": "description-list-demo.component.html",
|
|
9946
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/vertical/description-list-demo.component.html",
|
|
9947
|
+
"rawContents": "<sky-description-list mode=\"vertical\">\n <sky-description-list-content *ngFor=\"let item of items\">\n <sky-description-list-term>\n {{ item.term }}\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"
|
|
9948
9948
|
},
|
|
9949
9949
|
{
|
|
9950
|
-
"fileName": "
|
|
9951
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9952
|
-
"rawContents": "
|
|
9950
|
+
"fileName": "description-list-demo.module.ts",
|
|
9951
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/long-description/description-list-demo.module.ts",
|
|
9952
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyDescriptionListModule } from '@skyux/layout';\n\nimport { DescriptionListDemoComponent } from './description-list-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyDescriptionListModule],\n declarations: [DescriptionListDemoComponent],\n exports: [DescriptionListDemoComponent],\n})\nexport class DescriptionListDemoModule {}\n"
|
|
9953
9953
|
},
|
|
9954
9954
|
{
|
|
9955
|
-
"fileName": "
|
|
9956
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9957
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-
|
|
9955
|
+
"fileName": "description-list-demo.component.ts",
|
|
9956
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/long-description/description-list-demo.component.ts",
|
|
9957
|
+
"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: 'Good Health and Well-being',\n description:\n 'Ensure healthy lives and promote well-being for all at all ages.',\n },\n {\n term: 'Quality Education',\n description:\n 'Ensure inclusive and equitable quality education and promote lifelong learning opportunities for all.',\n },\n {\n term: 'Gender Equity',\n description: 'Achieve gender equality and empower all women and girls.',\n },\n ];\n}\n"
|
|
9958
9958
|
},
|
|
9959
9959
|
{
|
|
9960
|
-
"fileName": "
|
|
9961
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9962
|
-
"rawContents": "
|
|
9960
|
+
"fileName": "description-list-demo.component.html",
|
|
9961
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/long-description/description-list-demo.component.html",
|
|
9962
|
+
"rawContents": "<sky-description-list mode=\"longDescription\">\n <sky-description-list-content *ngFor=\"let item of items\">\n <sky-description-list-term>\n {{ item.term }}\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"
|
|
9963
9963
|
},
|
|
9964
9964
|
{
|
|
9965
|
-
"fileName": "
|
|
9966
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9967
|
-
"rawContents": "
|
|
9965
|
+
"fileName": "description-list-demo.module.ts",
|
|
9966
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/inline-help/description-list-demo.module.ts",
|
|
9967
|
+
"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"
|
|
9968
9968
|
},
|
|
9969
9969
|
{
|
|
9970
|
-
"fileName": "
|
|
9971
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9972
|
-
"rawContents": "
|
|
9970
|
+
"fileName": "description-list-demo.component.ts",
|
|
9971
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/inline-help/description-list-demo.component.ts",
|
|
9972
|
+
"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: 'Cathy Green',\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"
|
|
9973
9973
|
},
|
|
9974
9974
|
{
|
|
9975
|
-
"fileName": "
|
|
9976
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9977
|
-
"rawContents": "
|
|
9975
|
+
"fileName": "description-list-demo.component.html",
|
|
9976
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/inline-help/description-list-demo.component.html",
|
|
9977
|
+
"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"
|
|
9978
9978
|
},
|
|
9979
9979
|
{
|
|
9980
|
-
"fileName": "
|
|
9981
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9982
|
-
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport {
|
|
9980
|
+
"fileName": "description-list-demo.module.ts",
|
|
9981
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/horizontal/description-list-demo.module.ts",
|
|
9982
|
+
"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"
|
|
9983
9983
|
},
|
|
9984
9984
|
{
|
|
9985
|
-
"fileName": "
|
|
9986
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9987
|
-
"rawContents": "
|
|
9985
|
+
"fileName": "description-list-demo.component.ts",
|
|
9986
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/horizontal/description-list-demo.component.ts",
|
|
9987
|
+
"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: 'Cathy Green',\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"
|
|
9988
9988
|
},
|
|
9989
9989
|
{
|
|
9990
|
-
"fileName": "
|
|
9991
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9992
|
-
"rawContents": "
|
|
9990
|
+
"fileName": "description-list-demo.component.html",
|
|
9991
|
+
"filePath": "/projects/layout/documentation/code-examples/description-list/horizontal/description-list-demo.component.html",
|
|
9992
|
+
"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"
|
|
9993
9993
|
},
|
|
9994
9994
|
{
|
|
9995
|
-
"fileName": "
|
|
9996
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
9997
|
-
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport {
|
|
9995
|
+
"fileName": "definition-list-demo.module.ts",
|
|
9996
|
+
"filePath": "/projects/layout/documentation/code-examples/definition-list/basic/definition-list-demo.module.ts",
|
|
9997
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyDefinitionListModule } from '@skyux/layout';\n\nimport { DefinitionListDemoComponent } from './definition-list-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyDefinitionListModule],\n declarations: [DefinitionListDemoComponent],\n exports: [DefinitionListDemoComponent],\n})\nexport class DefinitionListDemoModule {}\n"
|
|
9998
9998
|
},
|
|
9999
9999
|
{
|
|
10000
|
-
"fileName": "
|
|
10001
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10002
|
-
"rawContents": "
|
|
10000
|
+
"fileName": "definition-list-demo.component.ts",
|
|
10001
|
+
"filePath": "/projects/layout/documentation/code-examples/definition-list/basic/definition-list-demo.component.ts",
|
|
10002
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-definition-list-demo',\n templateUrl: './definition-list-demo.component.html',\n})\nexport class DefinitionListDemoComponent {\n public items: { label: string; value?: string }[] = [\n {\n label: 'Field 1',\n value: 'Field 1 value',\n },\n {\n label: 'Field 2',\n value: 'Field 2 value',\n },\n {\n label: 'Field 3',\n value: undefined,\n },\n {\n label: 'Field 4',\n value: 'Field 4 value',\n },\n ];\n}\n"
|
|
10003
10003
|
},
|
|
10004
10004
|
{
|
|
10005
|
-
"fileName": "
|
|
10006
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10007
|
-
"rawContents": "
|
|
10005
|
+
"fileName": "definition-list-demo.component.html",
|
|
10006
|
+
"filePath": "/projects/layout/documentation/code-examples/definition-list/basic/definition-list-demo.component.html",
|
|
10007
|
+
"rawContents": "<sky-definition-list>\n <sky-definition-list-heading>\n Definition list heading\n </sky-definition-list-heading>\n <sky-definition-list-content *ngFor=\"let item of items\">\n <sky-definition-list-label>\n {{ item.label }}\n </sky-definition-list-label>\n <sky-definition-list-value>\n {{ item.value }}\n </sky-definition-list-value>\n </sky-definition-list-content>\n</sky-definition-list>\n"
|
|
10008
10008
|
},
|
|
10009
10009
|
{
|
|
10010
|
-
"fileName": "
|
|
10011
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10012
|
-
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport {
|
|
10010
|
+
"fileName": "card-demo.module.ts",
|
|
10011
|
+
"filePath": "/projects/layout/documentation/code-examples/card/basic/card-demo.module.ts",
|
|
10012
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { SkyCheckboxModule } from '@skyux/forms';\nimport { SkyCardModule } from '@skyux/layout';\nimport { SkyDropdownModule } from '@skyux/popovers';\n\nimport { CardDemoComponent } from './card-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n FormsModule,\n SkyCardModule,\n SkyCheckboxModule,\n SkyDropdownModule,\n ],\n declarations: [CardDemoComponent],\n exports: [CardDemoComponent],\n})\nexport class CardDemoModule {}\n"
|
|
10013
10013
|
},
|
|
10014
10014
|
{
|
|
10015
|
-
"fileName": "
|
|
10016
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10017
|
-
"rawContents": "
|
|
10015
|
+
"fileName": "card-demo.component.ts",
|
|
10016
|
+
"filePath": "/projects/layout/documentation/code-examples/card/basic/card-demo.component.ts",
|
|
10017
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-card-demo',\n templateUrl: './card-demo.component.html',\n})\nexport class CardDemoComponent {\n public showAction = true;\n\n public showCheckbox = true;\n\n public showContent = true;\n\n public showTitle = true;\n\n public triggerAlert(): void {\n alert('Action clicked!');\n }\n}\n"
|
|
10018
10018
|
},
|
|
10019
10019
|
{
|
|
10020
|
-
"fileName": "
|
|
10021
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10022
|
-
"rawContents": "
|
|
10020
|
+
"fileName": "card-demo.component.html",
|
|
10021
|
+
"filePath": "/projects/layout/documentation/code-examples/card/basic/card-demo.component.html",
|
|
10022
|
+
"rawContents": "<sky-card [selectable]=\"showCheckbox\">\n <sky-card-title *ngIf=\"showTitle\"> Large card </sky-card-title>\n <sky-card-content *ngIf=\"showContent\">\n This card demonstrates the amount of space that is available for a card that\n uses the default large size. If the content does not require this much\n space, you can set the card size to small. The type of content to display in\n the body of a card varies based on what the card represents and whether it\n prompts users to action.\n </sky-card-content>\n <sky-card-actions *ngIf=\"showAction\">\n <button\n class=\"sky-btn sky-btn-default\"\n type=\"button\"\n (click)=\"triggerAlert()\"\n >\n Action\n </button>\n </sky-card-actions>\n</sky-card>\n<sky-card size=\"small\" [selectable]=\"showCheckbox\">\n <sky-card-title *ngIf=\"showTitle\"> Small card </sky-card-title>\n <sky-card-content *ngIf=\"showContent\">\n This card demonstrates the reduced amount of space that is available when\n you set the card size to small.\n </sky-card-content>\n <sky-card-actions *ngIf=\"showAction\">\n <sky-dropdown buttonType=\"context-menu\">\n <sky-dropdown-menu>\n <sky-dropdown-item>\n <button type=\"button\" (click)=\"triggerAlert()\">Action</button>\n </sky-dropdown-item>\n </sky-dropdown-menu>\n </sky-dropdown>\n </sky-card-actions>\n</sky-card>\n\n<ul class=\"sky-list-unstyled\">\n <li>\n <sky-checkbox [(ngModel)]=\"showTitle\">\n <sky-checkbox-label>Show title</sky-checkbox-label>\n </sky-checkbox>\n </li>\n <li>\n <sky-checkbox [(ngModel)]=\"showContent\">\n <sky-checkbox-label>Show content</sky-checkbox-label>\n </sky-checkbox>\n </li>\n <li>\n <sky-checkbox [(ngModel)]=\"showAction\">\n <sky-checkbox-label>Show action</sky-checkbox-label>\n </sky-checkbox>\n </li>\n <li>\n <sky-checkbox [(ngModel)]=\"showCheckbox\">\n <sky-checkbox-label>Show checkbox</sky-checkbox-label>\n </sky-checkbox>\n </li>\n</ul>\n"
|
|
10023
10023
|
},
|
|
10024
10024
|
{
|
|
10025
|
-
"fileName": "
|
|
10026
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10027
|
-
"rawContents": "import {
|
|
10025
|
+
"fileName": "box-demo.module.ts",
|
|
10026
|
+
"filePath": "/projects/layout/documentation/code-examples/box/inline-help/box-demo.module.ts",
|
|
10027
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyHelpInlineModule } from '@skyux/indicators';\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, SkyHelpInlineModule],\n declarations: [BoxDemoComponent],\n exports: [BoxDemoComponent],\n})\nexport class BoxDemoModule {}\n"
|
|
10028
10028
|
},
|
|
10029
10029
|
{
|
|
10030
|
-
"fileName": "
|
|
10031
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10032
|
-
"rawContents": "import {
|
|
10030
|
+
"fileName": "box-demo.component.ts",
|
|
10031
|
+
"filePath": "/projects/layout/documentation/code-examples/box/inline-help/box-demo.component.ts",
|
|
10032
|
+
"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"
|
|
10033
10033
|
},
|
|
10034
10034
|
{
|
|
10035
|
-
"fileName": "
|
|
10036
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10037
|
-
"rawContents": "<sky-
|
|
10035
|
+
"fileName": "box-demo.component.html",
|
|
10036
|
+
"filePath": "/projects/layout/documentation/code-examples/box/inline-help/box-demo.component.html",
|
|
10037
|
+
"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"
|
|
10038
10038
|
},
|
|
10039
10039
|
{
|
|
10040
|
-
"fileName": "
|
|
10041
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10042
|
-
"rawContents": "import {
|
|
10040
|
+
"fileName": "box-demo.module.ts",
|
|
10041
|
+
"filePath": "/projects/layout/documentation/code-examples/box/basic/box-demo.module.ts",
|
|
10042
|
+
"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"
|
|
10043
10043
|
},
|
|
10044
10044
|
{
|
|
10045
|
-
"fileName": "
|
|
10046
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10047
|
-
"rawContents": "import {
|
|
10045
|
+
"fileName": "box-demo.component.ts",
|
|
10046
|
+
"filePath": "/projects/layout/documentation/code-examples/box/basic/box-demo.component.ts",
|
|
10047
|
+
"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"
|
|
10048
10048
|
},
|
|
10049
10049
|
{
|
|
10050
|
-
"fileName": "
|
|
10051
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10052
|
-
"rawContents": "
|
|
10050
|
+
"fileName": "box-demo.component.spec.ts",
|
|
10051
|
+
"filePath": "/projects/layout/documentation/code-examples/box/basic/box-demo.component.spec.ts",
|
|
10052
|
+
"rawContents": "import { TestbedHarnessEnvironment } from '@angular/cdk/testing/testbed';\nimport { ComponentFixture, TestBed } from '@angular/core/testing';\nimport { SkyBoxHarness } from '@skyux/layout/testing';\n\nimport { BoxDemoComponent } from './box-demo.component';\nimport { BoxDemoModule } from './box-demo.module';\n\ndescribe('Basic box', async () => {\n async function setupTest(): Promise<{\n boxHarness: SkyBoxHarness;\n fixture: ComponentFixture<BoxDemoComponent>;\n }> {\n const fixture = TestBed.createComponent(BoxDemoComponent);\n const loader = TestbedHarnessEnvironment.loader(fixture);\n const boxHarness = await loader.getHarness(\n SkyBoxHarness.with({\n dataSkyId: 'box-demo',\n })\n );\n\n return { boxHarness, fixture };\n }\n\n beforeEach(() => {\n TestBed.configureTestingModule({\n imports: [BoxDemoModule],\n });\n });\n\n it('should display the correct box', async () => {\n const { boxHarness, fixture } = await setupTest();\n\n fixture.detectChanges();\n\n await expectAsync(boxHarness.getAriaLabel()).toBeResolvedTo('boxDemo');\n });\n});\n"
|
|
10053
10053
|
},
|
|
10054
10054
|
{
|
|
10055
|
-
"fileName": "
|
|
10056
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10057
|
-
"rawContents": "
|
|
10055
|
+
"fileName": "box-demo.component.html",
|
|
10056
|
+
"filePath": "/projects/layout/documentation/code-examples/box/basic/box-demo.component.html",
|
|
10057
|
+
"rawContents": "<sky-box data-sky-id=\"box-demo\" [ariaLabel]=\"'boxDemo'\">\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"
|
|
10058
10058
|
},
|
|
10059
10059
|
{
|
|
10060
|
-
"fileName": "
|
|
10061
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10062
|
-
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport {
|
|
10060
|
+
"fileName": "back-to-top-demo.module.ts",
|
|
10061
|
+
"filePath": "/projects/layout/documentation/code-examples/back-to-top/repeater/back-to-top-demo.module.ts",
|
|
10062
|
+
"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"
|
|
10063
10063
|
},
|
|
10064
10064
|
{
|
|
10065
|
-
"fileName": "
|
|
10066
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10067
|
-
"rawContents": "
|
|
10065
|
+
"fileName": "back-to-top-demo.component.ts",
|
|
10066
|
+
"filePath": "/projects/layout/documentation/code-examples/back-to-top/repeater/back-to-top-demo.component.ts",
|
|
10067
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-back-to-top-demo',\n templateUrl: './back-to-top-demo.component.html',\n})\nexport class BackToTopDemoComponent {\n public personList = [\n {\n name: 'Barbara Durr',\n address: '7436 Fieldstone Court',\n },\n {\n name: 'Colton Chamberlain',\n address: '342 Foster Court',\n },\n {\n name: 'Alva Clifford',\n address: '657 West Rockville Street',\n },\n {\n name: 'Tonja Sanderson',\n address: '7004 Third Street',\n },\n {\n name: 'Paulene Baum',\n address: '9309 Mammoth Street',\n },\n {\n name: 'Jessy Witherspoon',\n address: '43 Canal Street',\n },\n {\n name: 'Solomon Hurley',\n address: '667 Wakehurst Circle',\n },\n {\n name: 'Calandra Geer',\n address: '164 Applegate Drive',\n },\n {\n name: 'Latrice Ashmore',\n address: '7965 Lake Road',\n },\n {\n name: 'Rod Tomlinson',\n address: '9664 Newport Drive',\n },\n {\n name: 'Cristen Sizemore',\n address: '17 Edgefield Street',\n },\n {\n name: 'Kristeen Lunsford',\n address: '245 Green Lake Street',\n },\n {\n name: 'Jack Lovett',\n address: '73 Academy Street',\n },\n {\n name: 'Elwood Farris',\n address: '90 Smoky Hollow Court',\n },\n {\n name: 'Ilene Woo',\n address: '71 Pumpkin Hill Street',\n },\n {\n name: 'Kanesha Hutto',\n address: '107 East Cooper Street',\n },\n {\n name: 'Nick Bourne',\n address: '62 Evergreen Street',\n },\n {\n name: 'Ed Sipes',\n address: '8824 Hill Street',\n },\n {\n name: 'Wonda Lumpkin',\n address: '134 North Warren Street',\n },\n {\n name: 'Cheyenne Lightfoot',\n address: '184 Pierce Avenue',\n },\n {\n name: 'Darcel Lenz',\n address: '9408 Beechwood Street',\n },\n {\n name: 'Martine Rocha',\n address: '871 Shadow Brook Street',\n },\n {\n name: 'Cherelle Connell',\n address: '649 Glenwood Street',\n },\n {\n name: 'Molly Seymour',\n address: '386 E. George Street',\n },\n {\n name: 'Clarice Overton',\n address: '16 Manchester Street',\n },\n {\n name: 'Eliza Vanhorn',\n address: '8232 S. Augusta Street',\n },\n ];\n}\n"
|
|
10068
10068
|
},
|
|
10069
10069
|
{
|
|
10070
|
-
"fileName": "
|
|
10071
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10072
|
-
"rawContents": "
|
|
10070
|
+
"fileName": "back-to-top-demo.component.html",
|
|
10071
|
+
"filePath": "/projects/layout/documentation/code-examples/back-to-top/repeater/back-to-top-demo.component.html",
|
|
10072
|
+
"rawContents": "<sky-repeater skyBackToTop>\n <sky-repeater-item *ngFor=\"let person of personList\">\n <sky-repeater-item-title>\n {{ person.name }}\n </sky-repeater-item-title>\n <sky-repeater-item-content>\n {{ person.address }}\n </sky-repeater-item-content>\n </sky-repeater-item>\n</sky-repeater>\n"
|
|
10073
10073
|
},
|
|
10074
10074
|
{
|
|
10075
|
-
"fileName": "
|
|
10076
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10077
|
-
"rawContents": "
|
|
10075
|
+
"fileName": "person.ts",
|
|
10076
|
+
"filePath": "/projects/layout/documentation/code-examples/back-to-top/infinite-scroll/person.ts",
|
|
10077
|
+
"rawContents": "export interface Person {\n name: string;\n address: string;\n}\n"
|
|
10078
10078
|
},
|
|
10079
10079
|
{
|
|
10080
|
-
"fileName": "
|
|
10081
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10082
|
-
"rawContents": "
|
|
10080
|
+
"fileName": "back-to-top-demo.module.ts",
|
|
10081
|
+
"filePath": "/projects/layout/documentation/code-examples/back-to-top/infinite-scroll/back-to-top-demo.module.ts",
|
|
10082
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyBackToTopModule } from '@skyux/layout';\nimport { SkyInfiniteScrollModule, SkyRepeaterModule } from '@skyux/lists';\nimport { SkyTabsModule } from '@skyux/tabs';\n\nimport { BackToTopDemoComponent } from './back-to-top-demo.component';\n\n@NgModule({\n imports: [\n CommonModule,\n SkyBackToTopModule,\n SkyInfiniteScrollModule,\n SkyRepeaterModule,\n SkyTabsModule,\n ],\n declarations: [BackToTopDemoComponent],\n exports: [BackToTopDemoComponent],\n})\nexport class BackToTopDemoModule {}\n"
|
|
10083
10083
|
},
|
|
10084
10084
|
{
|
|
10085
|
-
"fileName": "
|
|
10086
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10087
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-
|
|
10085
|
+
"fileName": "back-to-top-demo.component.ts",
|
|
10086
|
+
"filePath": "/projects/layout/documentation/code-examples/back-to-top/infinite-scroll/back-to-top-demo.component.ts",
|
|
10087
|
+
"rawContents": "import { Component, OnInit } from '@angular/core';\n\nimport { Person } from './person';\n\n@Component({\n selector: 'app-back-to-top-demo',\n templateUrl: './back-to-top-demo.component.html',\n})\nexport class BackToTopDemoComponent implements OnInit {\n public hasMore = true;\n\n public personList: Person[] = [];\n\n public personDataSet = [\n {\n name: 'Barbara Durr',\n address: '7436 Fieldstone Court',\n },\n {\n name: 'Colton Chamberlain',\n address: '342 Foster Court',\n },\n {\n name: 'Alva Clifford',\n address: '657 West Rockville Street',\n },\n {\n name: 'Tonja Sanderson',\n address: '7004 Third Street',\n },\n {\n name: 'Paulene Baum',\n address: '9309 Mammoth Street',\n },\n {\n name: 'Jessy Witherspoon',\n address: '43 Canal Street',\n },\n {\n name: 'Solomon Hurley',\n address: '667 Wakehurst Circle',\n },\n {\n name: 'Calandra Geer',\n address: '164 Applegate Drive',\n },\n {\n name: 'Latrice Ashmore',\n address: '7965 Lake Road',\n },\n {\n name: 'Rod Tomlinson',\n address: '9664 Newport Drive',\n },\n {\n name: 'Cristen Sizemore',\n address: '17 Edgefield Street',\n },\n {\n name: 'Kristeen Lunsford',\n address: '245 Green Lake Street',\n },\n {\n name: 'Jack Lovett',\n address: '73 Academy Street',\n },\n {\n name: 'Elwood Farris',\n address: '90 Smoky Hollow Court',\n },\n {\n name: 'Ilene Woo',\n address: '71 Pumpkin Hill Street',\n },\n {\n name: 'Kanesha Hutto',\n address: '107 East Cooper Street',\n },\n {\n name: 'Nick Bourne',\n address: '62 Evergreen Street',\n },\n {\n name: 'Ed Sipes',\n address: '8824 Hill Street',\n },\n {\n name: 'Wonda Lumpkin',\n address: '134 North Warren Street',\n },\n {\n name: 'Cheyenne Lightfoot',\n address: '184 Pierce Avenue',\n },\n {\n name: 'Darcel Lenz',\n address: '9408 Beechwood Street',\n },\n {\n name: 'Martine Rocha',\n address: '871 Shadow Brook Street',\n },\n {\n name: 'Cherelle Connell',\n address: '649 Glenwood Street',\n },\n {\n name: 'Molly Seymour',\n address: '386 E. George Street',\n },\n {\n name: 'Clarice Overton',\n address: '16 Manchester Street',\n },\n {\n name: 'Eliza Vanhorn',\n address: '8232 S. Augusta Street',\n },\n ];\n\n public ngOnInit(): void {\n this.addData(0, 5);\n }\n\n public onScrollEnd(): void {\n this.addData(this.personList.length, 5);\n }\n\n private addData(start: number, rowSize: number): void {\n if (this.hasMore) {\n this.mockRemote(start, rowSize).then(\n (result: { data: Person[]; hasMore: boolean }) => {\n this.personList = this.personList.concat(result.data);\n this.hasMore = result.hasMore;\n }\n );\n }\n }\n\n /**\n * Simulate a remote request.\n */\n private mockRemote(\n start: number,\n rowSize: number\n ): Promise<{ data: Person[]; hasMore: boolean }> {\n const data: Person[] = [];\n\n for (let i = 0; i < rowSize; i++) {\n if (this.personDataSet[start + i]) {\n data.push(this.personDataSet[start + i]);\n }\n }\n\n return new Promise((resolve) => {\n setTimeout(() => {\n resolve({\n data,\n hasMore: this.personList.length < this.personDataSet.length,\n });\n }, 1000);\n });\n }\n}\n"
|
|
10088
10088
|
},
|
|
10089
10089
|
{
|
|
10090
|
-
"fileName": "
|
|
10091
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10092
|
-
"rawContents": "
|
|
10090
|
+
"fileName": "back-to-top-demo.component.html",
|
|
10091
|
+
"filePath": "/projects/layout/documentation/code-examples/back-to-top/infinite-scroll/back-to-top-demo.component.html",
|
|
10092
|
+
"rawContents": "<sky-repeater skyBackToTop>\n <sky-repeater-item *ngFor=\"let person of personList\">\n <sky-repeater-item-title>\n {{ person.name }}\n </sky-repeater-item-title>\n <sky-repeater-item-content>\n {{ person.address }}\n </sky-repeater-item-content>\n </sky-repeater-item>\n</sky-repeater>\n<sky-infinite-scroll [enabled]=\"hasMore\" (scrollEnd)=\"onScrollEnd()\">\n</sky-infinite-scroll>\n"
|
|
10093
10093
|
},
|
|
10094
10094
|
{
|
|
10095
|
-
"fileName": "
|
|
10096
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10097
|
-
"rawContents": "
|
|
10095
|
+
"fileName": "action-button-demo.module.ts",
|
|
10096
|
+
"filePath": "/projects/layout/documentation/code-examples/action-button/permalink/action-button-demo.module.ts",
|
|
10097
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyActionButtonModule } from '@skyux/layout';\n\nimport { ActionButtonDemoComponent } from './action-button-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyActionButtonModule],\n declarations: [ActionButtonDemoComponent],\n exports: [ActionButtonDemoComponent],\n})\nexport class ActionButtonDemoModule {}\n"
|
|
10098
10098
|
},
|
|
10099
10099
|
{
|
|
10100
|
-
"fileName": "
|
|
10101
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10102
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-
|
|
10100
|
+
"fileName": "action-button-demo.component.ts",
|
|
10101
|
+
"filePath": "/projects/layout/documentation/code-examples/action-button/permalink/action-button-demo.component.ts",
|
|
10102
|
+
"rawContents": "import { Component } from '@angular/core';\nimport { SkyActionButtonPermalink } from '@skyux/layout';\n\n@Component({\n selector: 'app-action-button-demo',\n templateUrl: './action-button-demo.component.html',\n})\nexport class ActionButtonDemoComponent {\n public routerlink: SkyActionButtonPermalink = {\n route: {\n commands: [],\n extras: {\n queryParams: {\n component: 'MyComponent',\n },\n },\n },\n };\n\n public url: SkyActionButtonPermalink = {\n url: 'https://www.stackblitz.com',\n };\n}\n"
|
|
10103
10103
|
},
|
|
10104
10104
|
{
|
|
10105
|
-
"fileName": "
|
|
10106
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10107
|
-
"rawContents": "
|
|
10105
|
+
"fileName": "action-button-demo.component.html",
|
|
10106
|
+
"filePath": "/projects/layout/documentation/code-examples/action-button/permalink/action-button-demo.component.html",
|
|
10107
|
+
"rawContents": "<sky-action-button-container>\n <sky-action-button [permalink]=\"url\">\n <sky-action-button-icon iconType=\"link\"> </sky-action-button-icon>\n <sky-action-button-header> Open a link </sky-action-button-header>\n <sky-action-button-details> Open a link. </sky-action-button-details>\n </sky-action-button>\n\n <sky-action-button [permalink]=\"routerlink\">\n <sky-action-button-icon iconType=\"link\"> </sky-action-button-icon>\n <sky-action-button-header> Open a router link </sky-action-button-header>\n <sky-action-button-details> Open a router link. </sky-action-button-details>\n </sky-action-button>\n</sky-action-button-container>\n"
|
|
10108
10108
|
},
|
|
10109
10109
|
{
|
|
10110
|
-
"fileName": "
|
|
10111
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10112
|
-
"rawContents": "
|
|
10110
|
+
"fileName": "action-button-demo.module.ts",
|
|
10111
|
+
"filePath": "/projects/layout/documentation/code-examples/action-button/basic/action-button-demo.module.ts",
|
|
10112
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyActionButtonModule } from '@skyux/layout';\n\nimport { ActionButtonDemoComponent } from './action-button-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyActionButtonModule],\n declarations: [ActionButtonDemoComponent],\n exports: [ActionButtonDemoComponent],\n})\nexport class ActionButtonDemoModule {}\n"
|
|
10113
10113
|
},
|
|
10114
10114
|
{
|
|
10115
|
-
"fileName": "
|
|
10116
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10117
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-
|
|
10115
|
+
"fileName": "action-button-demo.component.ts",
|
|
10116
|
+
"filePath": "/projects/layout/documentation/code-examples/action-button/basic/action-button-demo.component.ts",
|
|
10117
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-action-button-demo',\n templateUrl: './action-button-demo.component.html',\n})\nexport class ActionButtonDemoComponent {\n public filterActionClick(): void {\n alert('Filter action clicked');\n }\n\n public openActionClick(): void {\n alert('Open action clicked');\n }\n}\n"
|
|
10118
10118
|
},
|
|
10119
10119
|
{
|
|
10120
|
-
"fileName": "
|
|
10121
|
-
"filePath": "/projects/layout/documentation/code-examples/
|
|
10122
|
-
"rawContents": "
|
|
10120
|
+
"fileName": "action-button-demo.component.html",
|
|
10121
|
+
"filePath": "/projects/layout/documentation/code-examples/action-button/basic/action-button-demo.component.html",
|
|
10122
|
+
"rawContents": "<sky-action-button-container>\n <sky-action-button (actionClick)=\"filterActionClick()\">\n <sky-action-button-icon iconType=\"filter\"> </sky-action-button-icon>\n <sky-action-button-header> Build a new list </sky-action-button-header>\n <sky-action-button-details>\n Start from scratch and fine-tune with filters.\n </sky-action-button-details>\n </sky-action-button>\n\n <sky-action-button (actionClick)=\"openActionClick()\">\n <sky-action-button-icon iconType=\"folder-open-o\"> </sky-action-button-icon>\n <sky-action-button-header> Open a saved list </sky-action-button-header>\n <sky-action-button-details>\n Open a list with filters saved in the web view.\n </sky-action-button-details>\n </sky-action-button>\n</sky-action-button-container>\n"
|
|
10123
10123
|
}
|
|
10124
10124
|
]
|
|
10125
10125
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "9.0.0-alpha.
|
|
3
|
+
"version": "9.0.0-alpha.1",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"@angular/forms": "^16.1.7",
|
|
44
44
|
"@angular/platform-browser": "^16.1.7",
|
|
45
45
|
"@angular/router": "^16.1.7",
|
|
46
|
-
"@skyux-sdk/testing": "9.0.0-alpha.
|
|
47
|
-
"@skyux/core": "9.0.0-alpha.
|
|
48
|
-
"@skyux/forms": "9.0.0-alpha.
|
|
49
|
-
"@skyux/i18n": "9.0.0-alpha.
|
|
50
|
-
"@skyux/indicators": "9.0.0-alpha.
|
|
51
|
-
"@skyux/modals": "9.0.0-alpha.
|
|
52
|
-
"@skyux/router": "9.0.0-alpha.
|
|
53
|
-
"@skyux/theme": "9.0.0-alpha.
|
|
46
|
+
"@skyux-sdk/testing": "9.0.0-alpha.1",
|
|
47
|
+
"@skyux/core": "9.0.0-alpha.1",
|
|
48
|
+
"@skyux/forms": "9.0.0-alpha.1",
|
|
49
|
+
"@skyux/i18n": "9.0.0-alpha.1",
|
|
50
|
+
"@skyux/indicators": "9.0.0-alpha.1",
|
|
51
|
+
"@skyux/modals": "9.0.0-alpha.1",
|
|
52
|
+
"@skyux/router": "9.0.0-alpha.1",
|
|
53
|
+
"@skyux/theme": "9.0.0-alpha.1"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"tslib": "^2.5.0"
|