Skip to content

Commit cbb5969

Browse files
authored
Merge pull request #62 from SharePoint/main
SPFx 1.18.0-rc.1 API
2 parents bdd40a1 + 8046001 commit cbb5969

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+204
-210
lines changed

SP-Framework/sp-adaptive-card-extension-base.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -56,20 +56,20 @@ interfaces:
5656
- '@microsoft/sp-adaptive-card-extension-base!ICardBarConfiguration:interface'
5757
- '@microsoft/sp-adaptive-card-extension-base!ICardBarParameters:interface'
5858
- '@microsoft/sp-adaptive-card-extension-base!ICardButton:interface'
59-
- '@microsoft/sp-adaptive-card-extension-base!ICardButtonBaseParameters:interface'
59+
- '@microsoft/sp-adaptive-card-extension-base!ICardButtonBase:interface'
6060
- '@microsoft/sp-adaptive-card-extension-base!ICardButtonConfiguration:interface'
6161
- '@microsoft/sp-adaptive-card-extension-base!ICardButtonParameters:interface'
6262
- '@microsoft/sp-adaptive-card-extension-base!ICardComponentParameters:interface'
63+
- '@microsoft/sp-adaptive-card-extension-base!ICardSearchBoxButton:interface'
6364
- '@microsoft/sp-adaptive-card-extension-base!ICardSearchBoxConfiguration:interface'
6465
- '@microsoft/sp-adaptive-card-extension-base!ICardSearchBoxParameters:interface'
65-
- '@microsoft/sp-adaptive-card-extension-base!ICardSearchBoxTitleButtonParameters:interface'
6666
- '@microsoft/sp-adaptive-card-extension-base!ICardSearchFooterConfiguration:interface'
6767
- '@microsoft/sp-adaptive-card-extension-base!ICardSearchFooterParameters:interface'
6868
- '@microsoft/sp-adaptive-card-extension-base!ICardTextConfiguration:interface'
6969
- '@microsoft/sp-adaptive-card-extension-base!ICardTextInputConfiguration:interface'
70-
- '@microsoft/sp-adaptive-card-extension-base!ICardTextInputIconButtonParameters:interface'
70+
- '@microsoft/sp-adaptive-card-extension-base!ICardTextInputIconButton:interface'
7171
- '@microsoft/sp-adaptive-card-extension-base!ICardTextInputParameters:interface'
72-
- '@microsoft/sp-adaptive-card-extension-base!ICardTextInputTitleButtonParameters:interface'
72+
- '@microsoft/sp-adaptive-card-extension-base!ICardTextInputTitleButton:interface'
7373
- '@microsoft/sp-adaptive-card-extension-base!ICardTextParameters:interface'
7474
- '@microsoft/sp-adaptive-card-extension-base!ICardViewConfiguration:interface'
7575
- '@microsoft/sp-adaptive-card-extension-base!ICardViewParameters:interface'
@@ -127,7 +127,7 @@ functions:
127127
package: '@microsoft/sp-adaptive-card-extension-base!'
128128
summary: Helper method to create a Basic Card View.
129129
remarks: ''
130-
isPreview: true
130+
isPreview: false
131131
isDeprecated: false
132132
syntax:
133133
content: 'export declare function BasicCardView(configuration: IBasicTextCardViewConfiguration): ITextCardViewParameters;'
@@ -143,7 +143,7 @@ functions:
143143
package: '@microsoft/sp-adaptive-card-extension-base!'
144144
summary: Helper method to create an Image Card View.
145145
remarks: ''
146-
isPreview: true
146+
isPreview: false
147147
isDeprecated: false
148148
syntax:
149149
content: 'export declare function ImageCardView(configuration: IImageCardViewConfiguration): ITextCardViewParameters;'
@@ -159,7 +159,7 @@ functions:
159159
package: '@microsoft/sp-adaptive-card-extension-base!'
160160
summary: Helper method to create a Primary Text Card View.
161161
remarks: ''
162-
isPreview: true
162+
isPreview: false
163163
isDeprecated: false
164164
syntax:
165165
content: >-
@@ -177,7 +177,7 @@ functions:
177177
package: '@microsoft/sp-adaptive-card-extension-base!'
178178
summary: Helper method to create a Search Card View.
179179
remarks: ''
180-
isPreview: true
180+
isPreview: false
181181
isDeprecated: false
182182
syntax:
183183
content: 'export declare function SearchCardView(configuration: ISearchCardViewConfiguration): ISearchCardViewParameters;'
@@ -193,7 +193,7 @@ functions:
193193
package: '@microsoft/sp-adaptive-card-extension-base!'
194194
summary: Helper method to create an Text Input Card View.
195195
remarks: ''
196-
isPreview: true
196+
isPreview: false
197197
isDeprecated: false
198198
syntax:
199199
content: >-
@@ -211,7 +211,7 @@ functions:
211211
package: '@microsoft/sp-adaptive-card-extension-base!'
212212
summary: Helper method to create an Text Input with Image Card View.
213213
remarks: ''
214-
isPreview: true
214+
isPreview: false
215215
isDeprecated: false
216216
syntax:
217217
content: >-

SP-Framework/sp-adaptive-card-extension-base/basecomponentscardview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: BaseComponentsCardView
66
summary: Base class for an component-based Card views.
77
remarks: ''
8-
isPreview: true
8+
isPreview: false
99
isDeprecated: false
1010
type: class
1111
properties:
@@ -15,7 +15,7 @@ properties:
1515
fullName: cardViewParameters
1616
summary: The Card view configuration.
1717
remarks: 'The property must return the full configuration of the card view, including title and actions.'
18-
isPreview: true
18+
isPreview: false
1919
isDeprecated: false
2020
syntax:
2121
content: 'abstract get cardViewParameters(): TParameters;'

SP-Framework/sp-adaptive-card-extension-base/cardcomponentconfiguration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: CardComponentConfiguration
66
summary: Base component configuration.
77
remarks: component configuration is the subset of component parameters that are available to a developer for customizations.
8-
isPreview: true
8+
isPreview: false
99
isDeprecated: false
1010
syntax: >-
1111
export declare type CardComponentConfiguration<T extends ICardComponentParameters = ICardComponentParameters, K

SP-Framework/sp-adaptive-card-extension-base/cardcomponenteventnames.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ summary: List of all events supported by components.
77
remarks: >-
88
For the events supported by a specific component, see type definition for that component. This type describes a union
99
of all events supported by all components.
10-
isPreview: true
10+
isPreview: false
1111
isDeprecated: false
1212
syntax: export declare type CardComponentEventNames = 'onChange';

SP-Framework/sp-adaptive-card-extension-base/cardcomponentname.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: CardComponentName
33
uid: '@microsoft/sp-adaptive-card-extension-base!CardComponentName:type'
44
package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: CardComponentName
6-
summary: Allowed component names
6+
summary: Names of the components allowed in a card view.
77
remarks: ''
8-
isPreview: true
8+
isPreview: false
99
isDeprecated: false
1010
syntax: >-
1111
export declare type CardComponentName = 'text' | 'cardButton' | 'cardBar' | 'textInput' | 'searchBox' |

SP-Framework/sp-adaptive-card-extension-base/cardsearchboxeventnames.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: CardSearchBoxEventNames
33
uid: '@microsoft/sp-adaptive-card-extension-base!CardSearchBoxEventNames:type'
44
package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: CardSearchBoxEventNames
6-
summary: Event names for the search box component.
6+
summary: Event names supported by the search box component.
77
remarks: ''
8-
isPreview: true
8+
isPreview: false
99
isDeprecated: false
1010
syntax: export declare type CardSearchBoxEventNames = 'onChange';

SP-Framework/sp-adaptive-card-extension-base/cardtextinputeventnames.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: CardTextInputEventNames
33
uid: '@microsoft/sp-adaptive-card-extension-base!CardTextInputEventNames:type'
44
package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: CardTextInputEventNames
6-
summary: Event names for the text input component.
6+
summary: Event names supported by the text input component.
77
remarks: ''
8-
isPreview: true
8+
isPreview: false
99
isDeprecated: false
1010
syntax: export declare type CardTextInputEventNames = 'onChange';

SP-Framework/sp-adaptive-card-extension-base/cardviewactionsfooterconfiguration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: CardViewActionsFooterConfiguration
66
summary: The actions-only footer configuration for the card view.
77
remarks: ''
8-
isPreview: true
8+
isPreview: false
99
isDeprecated: false
1010
syntax: >-
1111
export declare type CardViewActionsFooterConfiguration = ICardButtonConfiguration | [ICardButtonConfiguration,

SP-Framework/sp-adaptive-card-extension-base/cardviewactionsfooterparameters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: CardViewActionsFooterParameters
66
summary: The actions-only footer parameters for the card view.
77
remarks: ''
8-
isPreview: true
8+
isPreview: false
99
isDeprecated: false
1010
syntax: >-
1111
export declare type CardViewActionsFooterParameters = [ICardButtonParameters] | [ICardButtonParameters,

SP-Framework/sp-adaptive-card-extension-base/componentscardviewparameters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: ComponentsCardViewParameters
66
summary: Card view configuration type.
77
remarks: ''
8-
isPreview: true
8+
isPreview: false
99
isDeprecated: false
1010
syntax: >-
1111
export declare type ComponentsCardViewParameters = ITextCardViewParameters | ITextInputCardViewParameters |

SP-Framework/sp-adaptive-card-extension-base/genericcardviewfooterconfiguration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: GenericCardViewFooterConfiguration
66
summary: The footer configuration for the Generic card view templates.
77
remarks: 'The Generic card view templates are Basic Card View, Primary Text Card View, and Image Card View.'
8-
isPreview: true
8+
isPreview: false
99
isDeprecated: false
1010
syntax: >-
1111
export declare type GenericCardViewFooterConfiguration = CardViewActionsFooterConfiguration |

SP-Framework/sp-adaptive-card-extension-base/genericcardviewfooterparameters.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: GenericCardViewFooterParameters
33
uid: '@microsoft/sp-adaptive-card-extension-base!GenericCardViewFooterParameters:type'
44
package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: GenericCardViewFooterParameters
6-
summary: The footer parameters for the Generic card view templates.
6+
summary: The footer parameters for the Generic card view templates. Can contain either 0 to 2 buttons or a single text input.
77
remarks: 'The Generic card view templates are Basic Card View, Primary Text Card View, and Image Card View.'
8-
isPreview: true
8+
isPreview: false
99
isDeprecated: false
1010
syntax: 'export declare type GenericCardViewFooterParameters = CardViewActionsFooterParameters | [ICardTextInputParameters];'

SP-Framework/sp-adaptive-card-extension-base/iadaptivecardextensionicon.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: IAdaptiveCardExtensionIcon
33
uid: '@microsoft/sp-adaptive-card-extension-base!IAdaptiveCardExtensionIcon:type'
44
package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: IAdaptiveCardExtensionIcon
6-
summary: Card view icon parameters.
7-
remarks: ''
8-
isPreview: true
6+
summary: Card view icon.
7+
remarks: The icon can be displayed as part of the card bar as well as in buttons.
8+
isPreview: false
99
isDeprecated: false
1010
syntax: export declare type IAdaptiveCardExtensionIcon = IAdaptiveCardExtensionImage;

SP-Framework/sp-adaptive-card-extension-base/iadaptivecardextensionimage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: IAdaptiveCardExtensionImage
33
uid: '@microsoft/sp-adaptive-card-extension-base!IAdaptiveCardExtensionImage:interface'
44
package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: IAdaptiveCardExtensionImage
6-
summary: Card view image parameters.
7-
remarks: ''
8-
isPreview: true
6+
summary: Properties for the image rendered in a card view.
7+
remarks: The image can be displayed as part of the card view itself as well as in buttons.
8+
isPreview: false
99
isDeprecated: false
1010
type: interface
1111
properties:
@@ -15,7 +15,7 @@ properties:
1515
fullName: altText
1616
summary: The alt text.
1717
remarks: ''
18-
isPreview: true
18+
isPreview: false
1919
isDeprecated: false
2020
syntax:
2121
content: 'altText?: string;'
@@ -27,7 +27,7 @@ properties:
2727
fullName: url
2828
summary: The URL to display as image or icon.
2929
remarks: ''
30-
isPreview: true
30+
isPreview: false
3131
isDeprecated: false
3232
syntax:
3333
content: 'url: string;'

SP-Framework/sp-adaptive-card-extension-base/ibasictextcardviewconfiguration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ summary: Configuration for a Basic Card view.
77
remarks: >-
88
The basic Card view displays the following: - Card title - Card icon - One primary text field - One button in the
99
`Medium` Card size, two buttons in the `Large` Card size, or text input in the footer
10-
isPreview: true
10+
isPreview: false
1111
isDeprecated: false
1212
type: interface
1313
properties:
@@ -17,7 +17,7 @@ properties:
1717
fullName: footer
1818
summary: Footer area components.
1919
remarks: ''
20-
isPreview: true
20+
isPreview: false
2121
isDeprecated: false
2222
syntax:
2323
content: 'footer: GenericCardViewFooterConfiguration;'
@@ -29,7 +29,7 @@ properties:
2929
fullName: header
3030
summary: Header area components.
3131
remarks: ''
32-
isPreview: true
32+
isPreview: false
3333
isDeprecated: false
3434
syntax:
3535
content: 'header: ICardTextConfiguration;'

SP-Framework/sp-adaptive-card-extension-base/icardbarconfiguration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: ICardBarConfiguration
33
uid: '@microsoft/sp-adaptive-card-extension-base!ICardBarConfiguration:interface'
44
package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: ICardBarConfiguration
6-
summary: Secondary text component configuration.
7-
remarks: ''
8-
isPreview: true
6+
summary: Card view title area (card bar) component configuration.
7+
remarks: component configuration is the subset of component parameters that are available to a developer for customizations.
8+
isPreview: false
99
isDeprecated: false
1010
type: interface
1111
extends: >-

SP-Framework/sp-adaptive-card-extension-base/icardbarparameters.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: ICardBarParameters
33
uid: '@microsoft/sp-adaptive-card-extension-base!ICardBarParameters:interface'
44
package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: ICardBarParameters
6-
summary: Card view title area (card bar) parameters
6+
summary: Card view title area (card bar) component parameters
77
remarks: ''
8-
isPreview: true
8+
isPreview: false
99
isDeprecated: false
1010
type: interface
1111
properties:
@@ -15,7 +15,7 @@ properties:
1515
fullName: componentName
1616
summary: Unique component name.
1717
remarks: ''
18-
isPreview: true
18+
isPreview: false
1919
isDeprecated: false
2020
syntax:
2121
content: 'componentName: ''cardBar'';'
@@ -27,7 +27,7 @@ properties:
2727
fullName: icon
2828
summary: The icon to display.
2929
remarks: ''
30-
isPreview: true
30+
isPreview: false
3131
isDeprecated: false
3232
syntax:
3333
content: 'icon?: IAdaptiveCardExtensionIcon;'
@@ -39,7 +39,7 @@ properties:
3939
fullName: title
4040
summary: The title to display.
4141
remarks: ''
42-
isPreview: true
42+
isPreview: false
4343
isDeprecated: false
4444
syntax:
4545
content: 'title?: string;'

SP-Framework/sp-adaptive-card-extension-base/icardbuttonbaseparameters.yml renamed to SP-Framework/sp-adaptive-card-extension-base/icardbuttonbase.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,35 @@
11
### YamlMime:TSType
2-
name: ICardButtonBaseParameters
3-
uid: '@microsoft/sp-adaptive-card-extension-base!ICardButtonBaseParameters:interface'
2+
name: ICardButtonBase
3+
uid: '@microsoft/sp-adaptive-card-extension-base!ICardButtonBase:interface'
44
package: '@microsoft/sp-adaptive-card-extension-base!'
5-
fullName: ICardButtonBaseParameters
6-
summary: Base parameters for the buttons used in different ACE card view components.
5+
fullName: ICardButtonBase
6+
summary: >-
7+
Base properties for the buttons used in different ACE card view components, such as Text Input and Search Box and Card
8+
Button.
79
remarks: ''
8-
isPreview: true
10+
isPreview: false
911
isDeprecated: false
1012
type: interface
1113
properties:
1214
- name: action
13-
uid: '@microsoft/sp-adaptive-card-extension-base!ICardButtonBaseParameters#action:member'
15+
uid: '@microsoft/sp-adaptive-card-extension-base!ICardButtonBase#action:member'
1416
package: '@microsoft/sp-adaptive-card-extension-base!'
1517
fullName: action
1618
summary: The type of the button.
1719
remarks: ''
18-
isPreview: true
20+
isPreview: false
1921
isDeprecated: false
2022
syntax:
2123
content: 'action: ICardAction;'
2224
return:
2325
type: '<xref uid="@microsoft/sp-adaptive-card-extension-base!ICardAction:type" />'
2426
- name: id
25-
uid: '@microsoft/sp-adaptive-card-extension-base!ICardButtonBaseParameters#id:member'
27+
uid: '@microsoft/sp-adaptive-card-extension-base!ICardButtonBase#id:member'
2628
package: '@microsoft/sp-adaptive-card-extension-base!'
2729
fullName: id
2830
summary: Unique Id of the button.
2931
remarks: ''
30-
isPreview: true
32+
isPreview: false
3133
isDeprecated: false
3234
syntax:
3335
content: 'id?: string;'

SP-Framework/sp-adaptive-card-extension-base/icardbuttonconfiguration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ uid: '@microsoft/sp-adaptive-card-extension-base!ICardButtonConfiguration:interf
44
package: '@microsoft/sp-adaptive-card-extension-base!'
55
fullName: ICardButtonConfiguration
66
summary: Card button component configuration.
7-
remarks: ''
8-
isPreview: true
7+
remarks: component configuration is the subset of component parameters that are available to a developer for customizations.
8+
isPreview: false
99
isDeprecated: false
1010
type: interface
1111
extends: >-

0 commit comments

Comments
 (0)