@skyux/tiles 7.0.0-beta.1 → 7.0.0-beta.11
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 +46 -3
- package/package.json +6 -6
package/documentation.json
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"id": 107,
|
|
44
44
|
"name": "CollapseAll",
|
|
45
45
|
"kind": 16,
|
|
46
|
-
"kindString": "Enumeration
|
|
46
|
+
"kindString": "Enumeration Member",
|
|
47
47
|
"flags": {},
|
|
48
48
|
"comment": {
|
|
49
49
|
"shortText": "Collapses all tiles within the tile dashboard."
|
|
@@ -55,13 +55,17 @@
|
|
|
55
55
|
"character": 2
|
|
56
56
|
}
|
|
57
57
|
],
|
|
58
|
+
"type": {
|
|
59
|
+
"type": "literal",
|
|
60
|
+
"value": 1
|
|
61
|
+
},
|
|
58
62
|
"defaultValue": "1"
|
|
59
63
|
},
|
|
60
64
|
{
|
|
61
65
|
"id": 106,
|
|
62
66
|
"name": "ExpandAll",
|
|
63
67
|
"kind": 16,
|
|
64
|
-
"kindString": "Enumeration
|
|
68
|
+
"kindString": "Enumeration Member",
|
|
65
69
|
"flags": {},
|
|
66
70
|
"comment": {
|
|
67
71
|
"shortText": "Expands all tiles within the tile dashboard."
|
|
@@ -73,12 +77,16 @@
|
|
|
73
77
|
"character": 2
|
|
74
78
|
}
|
|
75
79
|
],
|
|
80
|
+
"type": {
|
|
81
|
+
"type": "literal",
|
|
82
|
+
"value": 0
|
|
83
|
+
},
|
|
76
84
|
"defaultValue": "0"
|
|
77
85
|
}
|
|
78
86
|
],
|
|
79
87
|
"groups": [
|
|
80
88
|
{
|
|
81
|
-
"title": "Enumeration
|
|
89
|
+
"title": "Enumeration Members",
|
|
82
90
|
"kind": 16,
|
|
83
91
|
"children": [
|
|
84
92
|
107,
|
|
@@ -2779,6 +2787,41 @@
|
|
|
2779
2787
|
"fileName": "tiles-demo.module.ts",
|
|
2780
2788
|
"filePath": "/projects/tiles/documentation/code-examples/tiles/basic/tiles-demo.module.ts",
|
|
2781
2789
|
"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"
|
|
2790
|
+
},
|
|
2791
|
+
{
|
|
2792
|
+
"fileName": "tile-demo-tile1.component.html",
|
|
2793
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tile-demo-tile1.component.html",
|
|
2794
|
+
"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"
|
|
2795
|
+
},
|
|
2796
|
+
{
|
|
2797
|
+
"fileName": "tile-demo-tile1.component.ts",
|
|
2798
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tile-demo-tile1.component.ts",
|
|
2799
|
+
"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"
|
|
2800
|
+
},
|
|
2801
|
+
{
|
|
2802
|
+
"fileName": "tile-demo-tile2.component.html",
|
|
2803
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tile-demo-tile2.component.html",
|
|
2804
|
+
"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"
|
|
2805
|
+
},
|
|
2806
|
+
{
|
|
2807
|
+
"fileName": "tile-demo-tile2.component.ts",
|
|
2808
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tile-demo-tile2.component.ts",
|
|
2809
|
+
"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"
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
"fileName": "tiles-demo.component.html",
|
|
2813
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tiles-demo.component.html",
|
|
2814
|
+
"rawContents": "<sky-tile-dashboard [(config)]=\"dashboardConfig\"></sky-tile-dashboard>\n"
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
"fileName": "tiles-demo.component.ts",
|
|
2818
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tiles-demo.component.ts",
|
|
2819
|
+
"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"
|
|
2820
|
+
},
|
|
2821
|
+
{
|
|
2822
|
+
"fileName": "tiles-demo.module.ts",
|
|
2823
|
+
"filePath": "/projects/tiles/documentation/code-examples/tiles/inline-help/tiles-demo.module.ts",
|
|
2824
|
+
"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
2825
|
}
|
|
2783
2826
|
]
|
|
2784
2827
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/tiles",
|
|
3
|
-
"version": "7.0.0-beta.
|
|
3
|
+
"version": "7.0.0-beta.11",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"@angular/common": "^14.2.0",
|
|
36
36
|
"@angular/core": "^14.2.0",
|
|
37
|
-
"@skyux/animations": "7.0.0-beta.
|
|
38
|
-
"@skyux/core": "7.0.0-beta.
|
|
39
|
-
"@skyux/i18n": "7.0.0-beta.
|
|
40
|
-
"@skyux/indicators": "7.0.0-beta.
|
|
41
|
-
"@skyux/theme": "7.0.0-beta.
|
|
37
|
+
"@skyux/animations": "7.0.0-beta.11",
|
|
38
|
+
"@skyux/core": "7.0.0-beta.11",
|
|
39
|
+
"@skyux/i18n": "7.0.0-beta.11",
|
|
40
|
+
"@skyux/indicators": "7.0.0-beta.11",
|
|
41
|
+
"@skyux/theme": "7.0.0-beta.11"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"dragula": "3.7.3",
|