@skyux/layout 6.0.0-beta.2 → 6.0.0-beta.3
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 +11 -11
- package/package.json +9 -9
package/documentation.json
CHANGED
|
@@ -8353,7 +8353,7 @@
|
|
|
8353
8353
|
{
|
|
8354
8354
|
"fileName": "action-button-demo.component.ts",
|
|
8355
8355
|
"filePath": "/projects/layout/documentation/code-examples/action-button/permalink/action-button-demo.component.ts",
|
|
8356
|
-
"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://
|
|
8356
|
+
"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"
|
|
8357
8357
|
},
|
|
8358
8358
|
{
|
|
8359
8359
|
"fileName": "action-button-demo.module.ts",
|
|
@@ -8423,12 +8423,12 @@
|
|
|
8423
8423
|
{
|
|
8424
8424
|
"fileName": "card-demo.component.html",
|
|
8425
8425
|
"filePath": "/projects/layout/documentation/code-examples/card/basic/card-demo.component.html",
|
|
8426
|
-
"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
|
|
8426
|
+
"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"
|
|
8427
8427
|
},
|
|
8428
8428
|
{
|
|
8429
8429
|
"fileName": "card-demo.component.ts",
|
|
8430
8430
|
"filePath": "/projects/layout/documentation/code-examples/card/basic/card-demo.component.ts",
|
|
8431
|
-
"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"
|
|
8431
|
+
"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"
|
|
8432
8432
|
},
|
|
8433
8433
|
{
|
|
8434
8434
|
"fileName": "card-demo.module.ts",
|
|
@@ -8498,7 +8498,7 @@
|
|
|
8498
8498
|
{
|
|
8499
8499
|
"fileName": "fluid-grid-demo.component.html",
|
|
8500
8500
|
"filePath": "/projects/layout/documentation/code-examples/fluid-grid/fluid-grid-demo.component.html",
|
|
8501
|
-
"rawContents": "<div class=\"highlight-columns\">\n <sky-fluid-grid>\n <sky-row>\n <sky-column screenSmall=\"1\">
|
|
8501
|
+
"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"
|
|
8502
8502
|
},
|
|
8503
8503
|
{
|
|
8504
8504
|
"fileName": "fluid-grid-demo.component.ts",
|
|
@@ -8538,7 +8538,7 @@
|
|
|
8538
8538
|
{
|
|
8539
8539
|
"fileName": "inline-delete-card-demo.component.ts",
|
|
8540
8540
|
"filePath": "/projects/layout/documentation/code-examples/inline-delete/card/inline-delete-card-demo.component.ts",
|
|
8541
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-inline-delete-card-demo',\n templateUrl: './inline-delete-card-demo.component.html',\n})\nexport class InlineDeleteCardDemoComponent {\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 }, 3000);\n\n this.pending = true;\n }\n}\n"
|
|
8541
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-inline-delete-card-demo',\n templateUrl: './inline-delete-card-demo.component.html',\n})\nexport class InlineDeleteCardDemoComponent {\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 alert(\n 'Card 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"
|
|
8542
8542
|
},
|
|
8543
8543
|
{
|
|
8544
8544
|
"fileName": "inline-delete-card-demo.module.ts",
|
|
@@ -8548,12 +8548,12 @@
|
|
|
8548
8548
|
{
|
|
8549
8549
|
"fileName": "inilne-delete-demo.component.ts",
|
|
8550
8550
|
"filePath": "/projects/layout/documentation/code-examples/inline-delete/custom/inilne-delete-demo.component.ts",
|
|
8551
|
-
"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 }, 3000);\n\n this.pending = true;\n
|
|
8551
|
+
"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"
|
|
8552
8552
|
},
|
|
8553
8553
|
{
|
|
8554
8554
|
"fileName": "inline-delete-demo.component.html",
|
|
8555
8555
|
"filePath": "/projects/layout/documentation/code-examples/inline-delete/custom/inline-delete-demo.component.html",
|
|
8556
|
-
"rawContents": "<div id=\"inline-delete-container\">\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"
|
|
8556
|
+
"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"
|
|
8557
8557
|
},
|
|
8558
8558
|
{
|
|
8559
8559
|
"fileName": "inline-delete-demo.component.scss",
|
|
@@ -8658,12 +8658,12 @@
|
|
|
8658
8658
|
{
|
|
8659
8659
|
"fileName": "toolbar-demo.component.html",
|
|
8660
8660
|
"filePath": "/projects/layout/documentation/code-examples/toolbar/basic/toolbar-demo.component.html",
|
|
8661
|
-
"rawContents": "<sky-toolbar>\n <sky-toolbar-item>\n <button
|
|
8661
|
+
"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"
|
|
8662
8662
|
},
|
|
8663
8663
|
{
|
|
8664
8664
|
"fileName": "toolbar-demo.component.ts",
|
|
8665
8665
|
"filePath": "/projects/layout/documentation/code-examples/toolbar/basic/toolbar-demo.component.ts",
|
|
8666
|
-
"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"
|
|
8666
|
+
"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"
|
|
8667
8667
|
},
|
|
8668
8668
|
{
|
|
8669
8669
|
"fileName": "toolbar-demo.module.ts",
|
|
@@ -8673,12 +8673,12 @@
|
|
|
8673
8673
|
{
|
|
8674
8674
|
"fileName": "toolbar-demo.component.html",
|
|
8675
8675
|
"filePath": "/projects/layout/documentation/code-examples/toolbar/sectioned/toolbar-demo.component.html",
|
|
8676
|
-
"rawContents": "<sky-toolbar>\n <sky-toolbar-section>\n <sky-toolbar-item>\n <button
|
|
8676
|
+
"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"
|
|
8677
8677
|
},
|
|
8678
8678
|
{
|
|
8679
8679
|
"fileName": "toolbar-demo.component.ts",
|
|
8680
8680
|
"filePath": "/projects/layout/documentation/code-examples/toolbar/sectioned/toolbar-demo.component.ts",
|
|
8681
|
-
"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"
|
|
8681
|
+
"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"
|
|
8682
8682
|
},
|
|
8683
8683
|
{
|
|
8684
8684
|
"fileName": "toolbar-demo.module.ts",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.3",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
"@angular/forms": "^13.2.7",
|
|
47
47
|
"@angular/platform-browser": "^13.2.7",
|
|
48
48
|
"@angular/router": "^13.2.7",
|
|
49
|
-
"@skyux-sdk/testing": "6.0.0-beta.
|
|
50
|
-
"@skyux/core": "6.0.0-beta.
|
|
51
|
-
"@skyux/forms": "6.0.0-beta.
|
|
52
|
-
"@skyux/i18n": "6.0.0-beta.
|
|
53
|
-
"@skyux/indicators": "6.0.0-beta.
|
|
54
|
-
"@skyux/modals": "6.0.0-beta.
|
|
55
|
-
"@skyux/router": "6.0.0-beta.
|
|
56
|
-
"@skyux/theme": "6.0.0-beta.
|
|
49
|
+
"@skyux-sdk/testing": "6.0.0-beta.3",
|
|
50
|
+
"@skyux/core": "6.0.0-beta.3",
|
|
51
|
+
"@skyux/forms": "6.0.0-beta.3",
|
|
52
|
+
"@skyux/i18n": "6.0.0-beta.3",
|
|
53
|
+
"@skyux/indicators": "6.0.0-beta.3",
|
|
54
|
+
"@skyux/modals": "6.0.0-beta.3",
|
|
55
|
+
"@skyux/router": "6.0.0-beta.3",
|
|
56
|
+
"@skyux/theme": "6.0.0-beta.3"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"tslib": "^2.3.1"
|