@skyux/tiles 5.8.3 → 5.9.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 +2 -2
- package/package.json +6 -6
package/documentation.json
CHANGED
|
@@ -2730,7 +2730,7 @@
|
|
|
2730
2730
|
{
|
|
2731
2731
|
"fileName": "tile-demo-tile1.component.ts",
|
|
2732
2732
|
"filePath": "/projects/tiles/documentation/code-examples/tiles/basic/tile-demo-tile1.component.ts",
|
|
2733
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: '
|
|
2733
|
+
"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 tileHelpClick(): void {\n alert('tile help clicked');\n }\n\n public tileSettingsClick(): void {\n alert('tile settings clicked');\n }\n}\n"
|
|
2734
2734
|
},
|
|
2735
2735
|
{
|
|
2736
2736
|
"fileName": "tile-demo-tile2.component.html",
|
|
@@ -2740,7 +2740,7 @@
|
|
|
2740
2740
|
{
|
|
2741
2741
|
"fileName": "tile-demo-tile2.component.ts",
|
|
2742
2742
|
"filePath": "/projects/tiles/documentation/code-examples/tiles/basic/tile-demo-tile2.component.ts",
|
|
2743
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: '
|
|
2743
|
+
"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"
|
|
2744
2744
|
},
|
|
2745
2745
|
{
|
|
2746
2746
|
"fileName": "tiles-demo.component.html",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/tiles",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.9.1",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"@angular/animations": "^12.2.16",
|
|
20
20
|
"@angular/common": "^12.2.16",
|
|
21
21
|
"@angular/core": "^12.2.16",
|
|
22
|
-
"@skyux/animations": "5.
|
|
23
|
-
"@skyux/core": "5.
|
|
24
|
-
"@skyux/i18n": "5.
|
|
25
|
-
"@skyux/indicators": "5.
|
|
26
|
-
"@skyux/theme": "5.
|
|
22
|
+
"@skyux/animations": "5.9.1",
|
|
23
|
+
"@skyux/core": "5.9.1",
|
|
24
|
+
"@skyux/i18n": "5.9.1",
|
|
25
|
+
"@skyux/indicators": "5.9.1",
|
|
26
|
+
"@skyux/theme": "5.9.1"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"dragula": "3.7.3",
|