Skip to content

Commit 6eb812d

Browse files
author
Alex Terentiev
committed
SPFx 1.18.0 RC.0 API
1 parent 6772b24 commit 6eb812d

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 |

0 commit comments

Comments
 (0)