@skyux/popovers 7.0.0 → 7.1.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 +6 -1
- package/package.json +6 -6
package/documentation.json
CHANGED
|
@@ -3961,6 +3961,11 @@
|
|
|
3961
3961
|
]
|
|
3962
3962
|
},
|
|
3963
3963
|
"codeExamples": [
|
|
3964
|
+
{
|
|
3965
|
+
"fileName": "dropdown-demo-item.ts",
|
|
3966
|
+
"filePath": "/projects/popovers/documentation/code-examples/dropdown/basic/dropdown-demo-item.ts",
|
|
3967
|
+
"rawContents": "export interface DropdownDemoItem {\n name: string;\n disabled: boolean;\n}\n"
|
|
3968
|
+
},
|
|
3964
3969
|
{
|
|
3965
3970
|
"fileName": "dropdown-demo.component.html",
|
|
3966
3971
|
"filePath": "/projects/popovers/documentation/code-examples/dropdown/basic/dropdown-demo.component.html",
|
|
@@ -3969,7 +3974,7 @@
|
|
|
3969
3974
|
{
|
|
3970
3975
|
"fileName": "dropdown-demo.component.ts",
|
|
3971
3976
|
"filePath": "/projects/popovers/documentation/code-examples/dropdown/basic/dropdown-demo.component.ts",
|
|
3972
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-dropdown-demo',\n templateUrl: './dropdown-demo.component.html',\n})\nexport class DropdownDemoComponent {\n public items:
|
|
3977
|
+
"rawContents": "import { Component } from '@angular/core';\n\nimport { DropdownDemoItem } from './dropdown-demo-item';\n\n@Component({\n selector: 'app-dropdown-demo',\n templateUrl: './dropdown-demo.component.html',\n})\nexport class DropdownDemoComponent {\n public items: DropdownDemoItem[] = [\n { name: 'Option 1', disabled: false },\n { name: 'Disabled option', disabled: true },\n { name: 'Option 3', disabled: false },\n { name: 'Option 4', disabled: false },\n { name: 'Option 5', disabled: false },\n ];\n\n public actionClicked(action: string): void {\n alert(`You selected ${action}.`);\n }\n}\n"
|
|
3973
3978
|
},
|
|
3974
3979
|
{
|
|
3975
3980
|
"fileName": "dropdown-demo.module.ts",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/popovers",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.1.1",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"@angular/common": "^14.2.11",
|
|
45
45
|
"@angular/core": "^14.2.11",
|
|
46
46
|
"@angular/platform-browser": "^14.2.11",
|
|
47
|
-
"@skyux-sdk/testing": "7.
|
|
48
|
-
"@skyux/core": "7.
|
|
49
|
-
"@skyux/i18n": "7.
|
|
50
|
-
"@skyux/indicators": "7.
|
|
51
|
-
"@skyux/theme": "7.
|
|
47
|
+
"@skyux-sdk/testing": "7.1.1",
|
|
48
|
+
"@skyux/core": "7.1.1",
|
|
49
|
+
"@skyux/i18n": "7.1.1",
|
|
50
|
+
"@skyux/indicators": "7.1.1",
|
|
51
|
+
"@skyux/theme": "7.1.1"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1"
|