@skyux/tiles 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 +35 -0
- package/package.json +6 -6
package/documentation.json
CHANGED
|
@@ -2779,6 +2779,41 @@
|
|
|
2779
2779
|
"fileName": "tiles-demo.module.ts",
|
|
2780
2780
|
"filePath": "/projects/tiles/documentation/code-examples/tiles/basic/tiles-demo.module.ts",
|
|
2781
2781
|
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyTilesModule } from '@skyux/tiles';\n\nimport { TileDemoTile1Component } from './tile-demo-tile1.component';\nimport { TileDemoTile2Component } from './tile-demo-tile2.component';\nimport { TilesDemoComponent } from './tiles-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyTilesModule],\n declarations: [\n TilesDemoComponent,\n TileDemoTile1Component,\n TileDemoTile2Component,\n ],\n exports: [TilesDemoComponent],\n})\nexport class TilesDemoModule {}\n"
|
|
2782
|
+
},
|
|
2783
|
+
{
|
|
2784
|
+
"fileName": "tile-demo-tile1.component.html",
|
|
2785
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tile-demo-tile1.component.html",
|
|
2786
|
+
"rawContents": "<sky-tile (settingsClick)=\"tileSettingsClick()\">\n <sky-tile-title>\n Tile 1\n <sky-help-inline\n class=\"sky-control-help\"\n (actionClick)=\"onActionClick()\"\n (click)=\"onHelpClick($event)\"\n ></sky-help-inline>\n </sky-tile-title>\n <sky-tile-summary> $123.4m </sky-tile-summary>\n <sky-tile-content>\n <sky-tile-content-section> Section 1 </sky-tile-content-section>\n <sky-tile-content-section> Section 2 </sky-tile-content-section>\n <sky-tile-content-section> Section 3 </sky-tile-content-section>\n </sky-tile-content>\n</sky-tile>\n"
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
"fileName": "tile-demo-tile1.component.ts",
|
|
2790
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tile-demo-tile1.component.ts",
|
|
2791
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n // eslint-disable-next-line @angular-eslint/component-selector\n selector: 'div.tile1',\n templateUrl: './tile-demo-tile1.component.html',\n})\nexport class TileDemoTile1Component {\n public tileSettingsClick(): void {\n alert('tile settings clicked');\n }\n\n public onActionClick(): void {\n alert('Help inline button clicked!');\n }\n\n public onHelpClick($event: MouseEvent): void {\n $event.stopPropagation();\n }\n}\n"
|
|
2792
|
+
},
|
|
2793
|
+
{
|
|
2794
|
+
"fileName": "tile-demo-tile2.component.html",
|
|
2795
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tile-demo-tile2.component.html",
|
|
2796
|
+
"rawContents": "<sky-tile>\n <sky-tile-title>\n Tile 2\n <sky-help-inline\n class=\"sky-control-help\"\n (actionClick)=\"onActionClick()\"\n (click)=\"onHelpClick($event)\"\n ></sky-help-inline>\n </sky-tile-title>\n <sky-tile-content>\n <sky-tile-content-section> Section 1 </sky-tile-content-section>\n <sky-tile-content-section> Section 2 </sky-tile-content-section>\n <sky-tile-content-section> Section 3 </sky-tile-content-section>\n </sky-tile-content>\n</sky-tile>\n"
|
|
2797
|
+
},
|
|
2798
|
+
{
|
|
2799
|
+
"fileName": "tile-demo-tile2.component.ts",
|
|
2800
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tile-demo-tile2.component.ts",
|
|
2801
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n // eslint-disable-next-line @angular-eslint/component-selector\n selector: 'div.tile2',\n templateUrl: './tile-demo-tile2.component.html',\n})\nexport class TileDemoTile2Component {\n public onActionClick(): void {\n alert('Help inline button clicked!');\n }\n\n onHelpClick($event: MouseEvent) {\n $event.stopPropagation();\n }\n}\n"
|
|
2802
|
+
},
|
|
2803
|
+
{
|
|
2804
|
+
"fileName": "tiles-demo.component.html",
|
|
2805
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tiles-demo.component.html",
|
|
2806
|
+
"rawContents": "<sky-tile-dashboard [(config)]=\"dashboardConfig\"></sky-tile-dashboard>\n"
|
|
2807
|
+
},
|
|
2808
|
+
{
|
|
2809
|
+
"fileName": "tiles-demo.component.ts",
|
|
2810
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tiles-demo.component.ts",
|
|
2811
|
+
"rawContents": "import { Component } from '@angular/core';\nimport { SkyTileDashboardConfig } from '@skyux/tiles';\n\nimport { TileDemoTile1Component } from './tile-demo-tile1.component';\nimport { TileDemoTile2Component } from './tile-demo-tile2.component';\n\n@Component({\n selector: 'app-tiles-demo',\n templateUrl: './tiles-demo.component.html',\n})\nexport class TilesDemoComponent {\n public dashboardConfig: SkyTileDashboardConfig = {\n tiles: [\n {\n id: 'tile1',\n componentType: TileDemoTile1Component,\n },\n {\n id: 'tile2',\n componentType: TileDemoTile2Component,\n },\n ],\n layout: {\n singleColumn: {\n tiles: [\n {\n id: 'tile2',\n isCollapsed: false,\n },\n {\n id: 'tile1',\n isCollapsed: true,\n },\n ],\n },\n multiColumn: [\n {\n tiles: [\n {\n id: 'tile1',\n isCollapsed: true,\n },\n ],\n },\n {\n tiles: [\n {\n id: 'tile2',\n isCollapsed: false,\n },\n ],\n },\n ],\n },\n };\n}\n"
|
|
2812
|
+
},
|
|
2813
|
+
{
|
|
2814
|
+
"fileName": "tiles-demo.module.ts",
|
|
2815
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tiles-demo.module.ts",
|
|
2816
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { SkyHelpInlineModule } from '@skyux/indicators';\nimport { SkyTilesModule } from '@skyux/tiles';\n\nimport { TileDemoTile1Component } from './tile-demo-tile1.component';\nimport { TileDemoTile2Component } from './tile-demo-tile2.component';\nimport { TilesDemoComponent } from './tiles-demo.component';\n\n@NgModule({\n imports: [CommonModule, SkyTilesModule, SkyHelpInlineModule],\n declarations: [\n TilesDemoComponent,\n TileDemoTile1Component,\n TileDemoTile2Component,\n ],\n exports: [TilesDemoComponent],\n})\nexport class TilesDemoModule {}\n"
|
|
2782
2817
|
}
|
|
2783
2818
|
]
|
|
2784
2819
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/tiles",
|
|
3
|
-
"version": "6.25.
|
|
3
|
+
"version": "6.25.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"@angular/common": "^13.3.2",
|
|
36
36
|
"@angular/core": "^13.3.2",
|
|
37
|
-
"@skyux/animations": "6.25.
|
|
38
|
-
"@skyux/core": "6.25.
|
|
39
|
-
"@skyux/i18n": "6.25.
|
|
40
|
-
"@skyux/indicators": "6.25.
|
|
41
|
-
"@skyux/theme": "6.25.
|
|
37
|
+
"@skyux/animations": "6.25.2",
|
|
38
|
+
"@skyux/core": "6.25.2",
|
|
39
|
+
"@skyux/i18n": "6.25.2",
|
|
40
|
+
"@skyux/indicators": "6.25.2",
|
|
41
|
+
"@skyux/theme": "6.25.2"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"dragula": "3.7.3",
|