@skyux/tiles 7.6.1 → 7.6.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 +2 -2
- package/package.json +6 -6
package/documentation.json
CHANGED
|
@@ -2912,12 +2912,12 @@
|
|
|
2912
2912
|
{
|
|
2913
2913
|
"fileName": "tile-demo-tile1.component.html",
|
|
2914
2914
|
"filePath": "/projects/tiles/documentation/code-examples/tiles/basic/tile-demo-tile1.component.html",
|
|
2915
|
-
"rawContents": "<sky-tile (
|
|
2915
|
+
"rawContents": "<sky-tile (settingsClick)=\"tileSettingsClick()\">\n <sky-tile-title> Tile 1 </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"
|
|
2916
2916
|
},
|
|
2917
2917
|
{
|
|
2918
2918
|
"fileName": "tile-demo-tile1.component.ts",
|
|
2919
2919
|
"filePath": "/projects/tiles/documentation/code-examples/tiles/basic/tile-demo-tile1.component.ts",
|
|
2920
|
-
"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
|
|
2920
|
+
"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"
|
|
2921
2921
|
},
|
|
2922
2922
|
{
|
|
2923
2923
|
"fileName": "tile-demo-tile2.component.html",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/tiles",
|
|
3
|
-
"version": "7.6.
|
|
3
|
+
"version": "7.6.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"@angular/common": "^14.2.11",
|
|
36
36
|
"@angular/core": "^14.2.11",
|
|
37
|
-
"@skyux/animations": "7.6.
|
|
38
|
-
"@skyux/core": "7.6.
|
|
39
|
-
"@skyux/i18n": "7.6.
|
|
40
|
-
"@skyux/indicators": "7.6.
|
|
41
|
-
"@skyux/theme": "7.6.
|
|
37
|
+
"@skyux/animations": "7.6.2",
|
|
38
|
+
"@skyux/core": "7.6.2",
|
|
39
|
+
"@skyux/i18n": "7.6.2",
|
|
40
|
+
"@skyux/indicators": "7.6.2",
|
|
41
|
+
"@skyux/theme": "7.6.2"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"dragula": "3.7.3",
|