@atlaskit/linking-types
Advanced tools
Comparing version 8.1.0 to 8.2.0
# @atlaskit/linking-types | ||
## 8.2.0 | ||
### Minor Changes | ||
- [`3c0719a11f7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c0719a11f7) - added richtext type | ||
## 8.1.0 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "@atlaskit/linking-types", | ||
"version": "8.1.0", | ||
"version": "8.2.0", | ||
"sideEffects": false | ||
} |
{ | ||
"name": "@atlaskit/linking-types", | ||
"version": "8.1.0", | ||
"version": "8.2.0", | ||
"sideEffects": false | ||
} |
{ | ||
"name": "@atlaskit/linking-types", | ||
"version": "8.1.0", | ||
"version": "8.2.0", | ||
"sideEffects": false | ||
} |
@@ -74,3 +74,3 @@ export interface BooleanType { | ||
} | ||
export type DatasourceType = BooleanType | NumberType | StringType | IconType | StatusType | DateType | TimeType | DateTimeType | TagType | UserType | LinkType; | ||
export type DatasourceType = BooleanType | DateTimeType | DateType | IconType | LinkType | NumberType | RichTextType | StatusType | StringType | TagType | TimeType | UserType; | ||
export interface DatasourceResponseSchemaProperty { | ||
@@ -147,2 +147,10 @@ key: string; | ||
}; | ||
export interface RichText { | ||
type: 'adf'; | ||
text: string; | ||
} | ||
export interface RichTextType { | ||
type: 'richtext'; | ||
value: RichText; | ||
} | ||
export {}; |
@@ -1,3 +0,3 @@ | ||
export type { Access, AuthService, BooleanType, DatasourceData, DatasourceDataRequest, DatasourceDataResponse, DatasourceDataResponseItem, DatasourceDetails, DatasourceDetailsRequest, DatasourceDetailsResponse, DatasourceMeta, DatasourceParameters, DatasourceResponseParameter, DatasourceResponseSchemaProperty, DatasourceTableStatusType, DatasourceType, DateTimeType, DateType, Icon, IconType, Link, LinkType, NumberType, Status, StatusType, StringType, Tag, TagType, TimeType, User, UserType, Visibility, } from './datasource-types'; | ||
export type { Access, AuthService, BooleanType, DatasourceData, DatasourceDataRequest, DatasourceDataResponse, DatasourceDataResponseItem, DatasourceDetails, DatasourceDetailsRequest, DatasourceDetailsResponse, DatasourceMeta, DatasourceParameters, DatasourceResponseParameter, DatasourceResponseSchemaProperty, DatasourceTableStatusType, DatasourceType, DateTimeType, DateType, Icon, IconType, Link, LinkType, NumberType, RichText, RichTextType, Status, StatusType, StringType, Tag, TagType, TimeType, User, UserType, Visibility, } from './datasource-types'; | ||
export type { InvokeRequest, InvokeRequestAction, StatusUpdateActionPayload, InvokeResponse, InvokeErrorResponse, GetStatusTransitionsInvokeResponse, } from './smart-link-action-types'; | ||
export { SmartLinkActionType, InvokeError } from './smart-link-action-types'; |
@@ -74,3 +74,3 @@ export interface BooleanType { | ||
} | ||
export type DatasourceType = BooleanType | NumberType | StringType | IconType | StatusType | DateType | TimeType | DateTimeType | TagType | UserType | LinkType; | ||
export type DatasourceType = BooleanType | DateTimeType | DateType | IconType | LinkType | NumberType | RichTextType | StatusType | StringType | TagType | TimeType | UserType; | ||
export interface DatasourceResponseSchemaProperty { | ||
@@ -147,2 +147,10 @@ key: string; | ||
}; | ||
export interface RichText { | ||
type: 'adf'; | ||
text: string; | ||
} | ||
export interface RichTextType { | ||
type: 'richtext'; | ||
value: RichText; | ||
} | ||
export {}; |
@@ -1,3 +0,3 @@ | ||
export type { Access, AuthService, BooleanType, DatasourceData, DatasourceDataRequest, DatasourceDataResponse, DatasourceDataResponseItem, DatasourceDetails, DatasourceDetailsRequest, DatasourceDetailsResponse, DatasourceMeta, DatasourceParameters, DatasourceResponseParameter, DatasourceResponseSchemaProperty, DatasourceTableStatusType, DatasourceType, DateTimeType, DateType, Icon, IconType, Link, LinkType, NumberType, Status, StatusType, StringType, Tag, TagType, TimeType, User, UserType, Visibility, } from './datasource-types'; | ||
export type { Access, AuthService, BooleanType, DatasourceData, DatasourceDataRequest, DatasourceDataResponse, DatasourceDataResponseItem, DatasourceDetails, DatasourceDetailsRequest, DatasourceDetailsResponse, DatasourceMeta, DatasourceParameters, DatasourceResponseParameter, DatasourceResponseSchemaProperty, DatasourceTableStatusType, DatasourceType, DateTimeType, DateType, Icon, IconType, Link, LinkType, NumberType, RichText, RichTextType, Status, StatusType, StringType, Tag, TagType, TimeType, User, UserType, Visibility, } from './datasource-types'; | ||
export type { InvokeRequest, InvokeRequestAction, StatusUpdateActionPayload, InvokeResponse, InvokeErrorResponse, GetStatusTransitionsInvokeResponse, } from './smart-link-action-types'; | ||
export { SmartLinkActionType, InvokeError } from './smart-link-action-types'; |
{ | ||
"name": "@atlaskit/linking-types", | ||
"version": "8.1.0", | ||
"version": "8.2.0", | ||
"description": "Schema and Types for frontend and backend parts of linking platform", | ||
@@ -42,3 +42,2 @@ "author": "Atlassian Pty Ltd", | ||
"devDependencies": { | ||
"@atlaskit/docs": "*", | ||
"@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0", | ||
@@ -82,2 +81,2 @@ "react-dom": "^16.8.0", | ||
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.0" | ||
} | ||
} |
@@ -159,2 +159,3 @@ <!-- API Report Version: 2.3 --> | ||
| NumberType | ||
| RichTextType | ||
| StatusType | ||
@@ -264,2 +265,18 @@ | StringType | ||
// @public (undocumented) | ||
export interface RichText { | ||
// (undocumented) | ||
text: string; | ||
// (undocumented) | ||
type: 'adf'; | ||
} | ||
// @public (undocumented) | ||
export interface RichTextType { | ||
// (undocumented) | ||
type: 'richtext'; | ||
// (undocumented) | ||
value: RichText; | ||
} | ||
// @public | ||
@@ -266,0 +283,0 @@ export enum SmartLinkActionType { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4
36073
25
639