49.0.0
Major Changes
-
#117363
10a0f7f6c2027
-
This package's peerDependencies
have been adjusted for react
and/or react-dom
to reflect the
status of only supporting React 18 going forward. No explicit breaking change to React support has
been made in this release, but this is to signify going forward, breaking changes for React 16 or
React 17 may come via non-major semver releases.
Please refer this community post for more details:
https://community.developer.atlassian.com/t/rfc-78-dropping-support-for-react-16-and-rendering-in-a-react-18-concurrent-root-in-jira-and-confluence/87026
Patch Changes
48.3.0
Minor Changes
Patch Changes
48.2.0
Minor Changes
Patch Changes
48.1.7
Patch Changes
- #104917
5cc364b95e5fa
-
changed deduplicatedFilmStrip to add list of identifiers to useFileHashes to align with new api
- Updated dependencies
48.1.5
Patch Changes
- #103673
29bd90ea68b50
-
Now importing useFileHashes
instead of implementing it internally
- Updated dependencies
48.1.0
Minor Changes
- #170821
52532d238c0b6
-
Enabled the deduplication of files in media-filmstrip by passing includeHashForDuplicateFiles flag
to /items
- #170821
5b183e77826a3
-
Added isLazy flag to disable lazy loading (helps in easier testing)
Patch Changes
47.5.0
Minor Changes
6099ac032dd30
-
Added viewerOptions to override file preview renderer in media components
Patch Changes
47.4.2
Patch Changes
- #152851
caba4b5434f99
-
Injects a custom interaction name to CardLoading component. This will individualise the experience
in Performance Portal
- Updated dependencies
47.4.0
Minor Changes
- #144914
83a3c9c9facb8
-
[ux] Adjusted scroll behaviour to address edge case when container is narrower than a single child
47.3.0
Minor Changes
Patch Changes
47.2.0
Minor Changes
-
#127511
db30e29344013
-
Widening range of react
and react-dom
peer dependencies from ^16.8.0 || ^17.0.0 || ~18.2.0
to the wider range of ``^16.8.0 || ^17.0.0 || ^18.0.0` (where applicable).
This change has been done to enable usage of react@18.3
as well as to have a consistent peer
dependency range for react
and react-dom
for /platform
packages.
Patch Changes
47.1.0
Minor Changes
Patch Changes
47.0.21
Patch Changes
- #83297
6b1707c169e0
-
The internal composition of this component has changed. There is no expected change in behaviour.
47.0.7
Patch Changes
- #33728
48e4a655534
- Internal
change to enforce token usage for spacing properties. There is no expected visual or behaviour
change.
47.0.3
Patch Changes
- #33793
9d00501a414
- Ensure
legacy types are published for TS 4.5-4.8
- Updated dependencies
47.0.0
Minor Changes
Patch Changes
46.1.0
Minor Changes
-
#26712
72c84ab0ef0
- [ux]
Instrumented @atlaskit/media-filmstrip
with the new theming package, @atlaskit/tokens
.
New tokens will be visible only in applications configured to use the new Tokens API (currently in
alpha). These changes are intended to be interoperable with the legacy theme implementation.
Legacy dark mode users should expect no visual or breaking changes.
Patch Changes
45.0.0
Major Changes
- #22642
740b02e577f
- Migrated
from styled-components library to @emotion/react in @atlaskit/media-filmstrip
Patch Changes
43.0.0
Minor Changes
-
#19618
118f3af101f
- Media
Client APIs has been updated to use MediaSubscribable which provides subscription functionality
(similar to RxJs observables). It exposes subscribe method that is called with MediaObserver as an
argument and returns MediaSubscription. MediaSubscription exposes unsubscribe method.
getFileState: The returned type of this function has changed from RxJs ReplaySubject to
MediaSubscribable.
import { MediaClient, MediaObserver, MediaSubscribable, MediaSubscription } from '@atlaskit/media-client';
const mediaClient = new MediaClient({ authProvider });
const fileStateSubscribable: MediaSubscribable<FileState> = mediaClient.file.getFileState(id);
const mediaObserver: MediaObserver<FileState> = {
next: (fileState) => {
nextCallback(fileState)
},
error: (error) => {
errorCallback(error)
},
};
const subscription: MediaSubscription = fileStateSubscribable.subscribe(mediaObserver);
subscription.unsubscribe();
upload: The returned type of this function has changed from RxJs ReplaySubject to
MediaSubscribable.
import { MediaClient, MediaObserver, MediaSubscribable, MediaSubscription } from '@atlaskit/media-client';
const mediaClient = new MediaClient({ authProvider });
const uploadFileSubscribable: MediaSubscribable<FileState> = mediaClient.file.upload(uploadableFile);
const mediaObserver: MediaObserver<FileState> = {
next: (fileState) => {
nextCallback(fileState)
},
error: (error) => {
errorCallback(error)
},
};
const subscription: MediaSubscription = uploadFileSubscribable.subscribe(mediaObserver);
subscription.unsubscribe();
getItems: The returned type of this function has changed from RxJs ReplaySubject to
MediaSubscribable.
import { MediaClient, MediaObserver, MediaSubscribable, MediaSubscription } from '@atlaskit/media-client';
const mediaClient = new MediaClient({ authProvider });
const collectionItemsSubscribable: MediaSubscribable<MediaCollectionItem[]> = mediaClient.collection.getItems(collectionName);
const mediaObserver: MediaObserver<MediaCollectionItem[]> = {
next: (items) => {
nextCallback(items)
},
error: (error) => {
errorCallback(error)
},
};
const subscription: MediaSubscription = collectionItemsSubscribable.subscribe(mediaObserver);
subscription.unsubscribe();
Patch Changes
42.2.0
Minor Changes
- #16752
19d72473dfb
- [ux] Add
touch events to support swipe gestures on film stip for mobile users
Patch Changes
42.1.0
Minor Changes
- #13864
511f07f7f7b
- allow
enabling download for media card via enableDownloadButton feature prop
ab905c0e924
- [ux]
EDM-1641: add floating toolbar to media card and view switcher for inline view
Patch Changes
41.0.1
Patch Changes
- #5857
d3265f19be
- Transpile
packages using babel rather than tsc
- Updated dependencies
40.0.2
Patch Changes
- #5497
5f58283e1f
- Export
types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript
versions here: https://atlaskit.atlassian.com/get-started Also add typescript
to
devDependencies
to denote version that the package was built with.
- Updated dependencies
40.0.0
Minor Changes
Patch Changes
39.1.2
Patch Changes
-
#3885
6c525a8229
- Upgraded
to TypeScript 3.9.6 and tslib to 2.0.0
Since tslib is a dependency for all our packages we recommend that products also follow this tslib
upgrade to prevent duplicates of tslib being bundled.
39.1.0
Minor Changes
- #3823
6faafb144c
- Introduce
MediaFeatureFlags. Refactor components to use.
Patch Changes
fa6fb5dfbb
- Removing
unused code to be published
- Updated dependencies
39.0.0
Major Changes
- #3335
87f4720f27
- Officially
dropping IE11 support, from this version onwards there are no warranties of the package working in
IE11. For more information see:
https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
Patch Changes
38.0.3
Patch Changes
- #2443
51aa5587ef
- bump
media-client: Remove stack traces from media analytic events
38.0.0
Patch Changes
- Updated dependencies
eb962d2c36:
- Updated dependencies
9d2da865dd:
- Updated dependencies
dae900bf82:
- Updated dependencies
70b68943d1:
- Updated dependencies
9a93eff8e6:
- Updated dependencies
d49ebd7c7a:
- Updated dependencies
6dcad31e41:
- Updated dependencies
8c9e4f1ec6:
- Updated dependencies
3cbc8a49a2:
- @atlaskit/media-client@6.0.0
- @atlaskit/media-card@67.1.1
- @atlaskit/build-utils@2.6.4
- @atlaskit/media-test-helpers@27.1.0
- @atlaskit/media-core@31.1.0
- @atlaskit/docs@8.5.0
37.1.2
Patch Changes
-
[patch]d7ed7b1513:
Remove export * from media components- Updated dependencies
b408e050ab:
-
Updated dependencies
66dcced7a0:
-
Updated dependencies
fd5292fd5a:
-
Updated dependencies
196500df34:
-
Updated dependencies
be57ca3829:
-
Updated dependencies
d7ed7b1513:
-
Updated dependencies
41a2496393:
-
Updated dependencies
39ee28797d:
-
Updated dependencies
fd5292fd5a:
-
Updated dependencies
bbf5eb8824:
-
Updated dependencies
eea5e9bd8c:
-
Updated dependencies
695e1c1c31:
-
Updated dependencies
6b06a7baa9:
-
Updated dependencies
fd5292fd5a:
-
Updated dependencies
8b34c7371d:
- @atlaskit/media-client@5.0.2
- @atlaskit/docs@8.4.0
- @atlaskit/icon@20.1.0
- @atlaskit/media-test-helpers@27.0.0
- @atlaskit/media-card@67.1.0
- @atlaskit/field-radio-group@7.0.2
- @atlaskit/field-range@8.0.2
- @atlaskit/media-core@31.0.5
- @atlaskit/button@13.3.9
- @atlaskit/checkbox@10.1.10
37.1.0
Minor Changes
Patch Changes
- Updated dependencies
fe4eaf06fc:
- Updated dependencies
c0102a3ea2:
- @atlaskit/media-test-helpers@26.1.0
- @atlaskit/field-radio-group@7.0.0
- @atlaskit/field-range@8.0.0
- @atlaskit/icon@20.0.0
- @atlaskit/media-card@67.0.2
- @atlaskit/docs@8.3.1
- @atlaskit/button@13.3.6
- @atlaskit/checkbox@10.1.6
37.0.1
Patch Changes
- Updated dependencies
5504a7da8c:
- Updated dependencies
966622bd45:
- Updated dependencies
d2b8166208:
- Updated dependencies
6ee177aeb4:
- @atlaskit/media-card@67.0.1
- @atlaskit/media-test-helpers@26.0.0
- @atlaskit/docs@8.3.0
- @atlaskit/media-client@5.0.0
- @atlaskit/media-core@31.0.3
37.0.0
Major Changes
-
[major]03c917044e:
Remove onChangeSelected
and onLoadingChange
from media-card
and media-filmstrip
as they
are unused. The behavior is now achieved with mediaClient.file.getFileState
:
import {getMediaClient} from '@atlaskit/media-client'
const mediaClient = getMediaClient({
mediaClientConfig: {
authProvider: () => Promise.resolve()
}
})
mediaClient.file.getFileState('file-id', {
next(state) {
console.log(state)
}
})
Patch Changes
- Updated dependencies
28f8f0e089:
- Updated dependencies
82747f2922:
- Updated dependencies
486a5aec29:
- Updated dependencies
03c917044e:
- Updated dependencies
d3f4c97f6a:
- Updated dependencies
4a223473c5:
- Updated dependencies
6a8bc6f866:
- @atlaskit/icon@19.1.0
- @atlaskit/theme@9.5.0
- @atlaskit/media-card@67.0.0
- @atlaskit/button@13.3.5
- @atlaskit/checkbox@10.1.5
- @atlaskit/media-client@4.2.2
- @atlaskit/media-core@31.0.2
- @atlaskit/media-test-helpers@25.2.6
36.0.0
- Updated dependencies
24b8ea2667:
- @atlaskit/media-client@4.0.0
- @atlaskit/media-test-helpers@25.2.2
- @atlaskit/media-card@66.0.1
- @atlaskit/media-core@31.0.0
Breaking change
remove deprecated "context" property from media components in favor of "mediaClientConfig"
This affects all public media UI components:
- Card
- Filmstrip
- SmartMediaEditor
- MediaImage
- Dropzone
- Clipboard
- Browser
- MediaPicker
- MediaViewer
Before:
import {ContextFactory} from '@atlaskit/media-core';
import {Card} from '@atlaskit/media-card'
import {SmartMediaEditor} from '@atlaskit/media-editor'
import {Filmstrip} from '@atlaskit/media-filmstrip'
import {MediaImage} from '@atlaskit/media-image'
import {MediaViewer} from '@atlaskit/media-viewer'
import {Dropzone, Clipboard, Browser, MediaPicker} from '@atlaskit/media-picker';
const context = ContextFactory.creat({
authProvider: () => Promise.resolve({})
})
const mediaPicker = MediaPicker(context);
<Card context={context}>
<SmartMediaEditor context={context}>
<Filmstrip context={context}>
<MediaImage context={context}>
<Dropzone context={context}>
<Clipboard context={context}>
<Browser context={context}>
<MediaViewer context={context}>
Now:
import {MediaClientConfig} from '@atlaskit/media-core';
import {Card} from '@atlaskit/media-card'
import {SmartMediaEditor} from '@atlaskit/media-editor'
import {Filmstrip} from '@atlaskit/media-filmstrip'
import {MediaImage} from '@atlaskit/media-image'
import {MediaViewer} from '@atlaskit/media-viewer'
import {Dropzone, Clipboard, Browser, MediaPicker} from '@atlaskit/media-picker';
const mediaClientConfig: MediaClientConfig = { authProvider: () => Promise.resolve({}) }
const mediaPicker = MediaPicker(mediaClientConfig);
<Card mediaClientConfig={mediaClientConfig}>
<SmartMediaEditor mediaClientConfig={mediaClientConfig}>
<Filmstrip mediaClientConfig={mediaClientConfig}>
<MediaImage mediaClientConfig={mediaClientConfig}>
<Dropzone mediaClientConfig={mediaClientConfig}>
<Clipboard mediaClientConfig={mediaClientConfig}>
<Browser mediaClientConfig={mediaClientConfig}>
<MediaViewer mediaClientConfig={mediaClientConfig}>
```
FABDODGEM-13 Editor Damask Release - Internal post
BREAKING CHANGES
- Media: Removed deprecated "context" property from media components in favor of
"mediaClientConfig". This affects all public media UI components.
- https://product-fabric.atlassian.net/browse/MS-2038
- Tasks & Decisions: Removed containerAri for task-decisions components.
- https://product-fabric.atlassian.net/browse/ED-7631
- Renderer: Adapts to task-decision changes.
- Editor Mobile Bridge: Adapts to task-decision changes.
- Util Data Test: Adapts to task-decision changes.
Affected Editor Components:
tables, media, mobile, emoji, tasks & decisions, analytics
Editor
- Support nested actions in stage-0 schema; Change DOM representation of actions
- https://product-fabric.atlassian.net/browse/ED-7674
- Updated i18n translations
- https://product-fabric.atlassian.net/browse/ED-7750
- Improved analytics & crash reporting (via a new error boundary)
- https://product-fabric.atlassian.net/browse/ED-7766
- https://product-fabric.atlassian.net/browse/ED-7806
- Improvements to heading anchor links.
- https://product-fabric.atlassian.net/browse/ED-7849
- https://product-fabric.atlassian.net/browse/ED-7860
- Copy/Paste improvements
- https://product-fabric.atlassian.net/browse/ED-7840
- https://product-fabric.atlassian.net/browse/ED-7849
- Fixes for the selection state of Smart links.
- https://product-fabric.atlassian.net/browse/ED-7602?src=confmacro
- Improvements for table resizing & column creation.
- https://product-fabric.atlassian.net/browse/ED-7698
- https://product-fabric.atlassian.net/browse/ED-7319
- https://product-fabric.atlassian.net/browse/ED-7799
Mobile
- GASv3 Analytics Events are now relayed from the web to the native context, ready for dispatching.
- https://product-fabric.atlassian.net/browse/FM-2502
- Hybrid Renderer Recycler view now handles invalid ADF nodes gracefully.
- https://product-fabric.atlassian.net/browse/FM-2370
Media
- Improved analytics
- https://product-fabric.atlassian.net/browse/MS-2036
- https://product-fabric.atlassian.net/browse/MS-2145
- https://product-fabric.atlassian.net/browse/MS-2416
- https://product-fabric.atlassian.net/browse/MS-2487
- Added shouldOpenMediaViewer property to renderer
- https://product-fabric.atlassian.net/browse/MS-2393
- Implemented analytics for file copy
- https://product-fabric.atlassian.net/browse/MS-2036
- New
media-viewed
event dispatched when media is interacted with via the media card or viewer.
- https://product-fabric.atlassian.net/browse/MS-2284
- Support for
alt
text attribute on media image elements.
- https://product-fabric.atlassian.net/browse/ED-7776
i18n-tools
Bumped dependencies.
- Updated dependencies
e7b5c917de:
- @atlaskit/media-card@66.0.0
- @atlaskit/media-core@30.0.17
- @atlaskit/media-test-helpers@25.2.0
- @atlaskit/media-client@3.0.0
34.3.10
Patch Changes
Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
34.3.9
Patch Changes
Updated version of analytics-next to fix potential incompatibilities with TS 3.6
34.3.8
- Updated dependencies
97bab7fd28:
- @atlaskit/button@13.3.1
- @atlaskit/media-card@65.2.1
- @atlaskit/checkbox@10.0.0
- @atlaskit/docs@8.1.7
34.3.7
Patch Changes
Update all the theme imports in media to use multi entry points
34.3.6
- Updated dependencies
af72468517:
- @atlaskit/media-client@2.1.2
- @atlaskit/media-core@30.0.14
- @atlaskit/media-test-helpers@25.1.1
- @atlaskit/media-card@65.0.0
34.3.5
Patch Changes
Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving non-relative
imports as relative imports
34.3.4
Patch Changes
Upgraded Typescript to 3.3.x
34.3.3
- Updated dependencies
3624730f44:
- @atlaskit/media-client@2.0.2
- @atlaskit/media-core@30.0.11
- @atlaskit/media-test-helpers@25.0.2
- @atlaskit/media-card@64.0.0
34.3.2
- Updated dependencies
69586b5353:
- @atlaskit/media-card@63.3.11
- @atlaskit/media-client@2.0.1
- @atlaskit/media-core@30.0.10
- @atlaskit/media-test-helpers@25.0.0
34.3.1
- Updated dependencies
ee804f3eeb:
- @atlaskit/media-card@63.3.9
- @atlaskit/media-core@30.0.9
- @atlaskit/media-test-helpers@24.3.5
- @atlaskit/media-client@2.0.0
34.3.0
Minor Changes
Allows consumer to enable Media Viewer on Cards
Use boolean prop shouldOpenMediaViewer
to activate Media Viewer in media cards contained
Example:
<Filmstrip
shouldOpenMediaViewer={openMediaViewer}
mediaClientConfig={mediaClient.config}
items={items}
/>
34.2.5
Patch Changes
bugfix, fixes missing version.json file
34.2.4
Patch Changes
In this PR, we are:
- Re-introducing dist build folders
- Adding back cjs
- Replacing es5 by cjs and es2015 by esm
- Creating folders at the root for entry-points
- Removing the generation of the entry-points at the root Please see this
ticket or this
page
for further details
34.2.3
- Updated dependencies
87a2638655:
- @atlaskit/button@13.0.10
- @atlaskit/media-card@63.3.2
- @atlaskit/checkbox@9.0.0
34.2.2
- Updated dependencies
06326ef3f7:
- @atlaskit/docs@8.1.3
- @atlaskit/button@13.0.9
- @atlaskit/checkbox@8.0.5
- @atlaskit/field-radio-group@6.0.4
- @atlaskit/media-card@63.3.1
- @atlaskit/media-test-helpers@24.1.2
- @atlaskit/icon@19.0.0
34.2.1
- Updated dependencies
cfc3c8adb3:
- @atlaskit/docs@8.1.2
- @atlaskit/button@13.0.8
- @atlaskit/checkbox@8.0.2
- @atlaskit/field-radio-group@6.0.2
- @atlaskit/media-card@63.1.5
- @atlaskit/media-test-helpers@24.0.3
- @atlaskit/field-range@7.0.4
- @atlaskit/icon@18.0.0
34.1.4
- Updated dependencies
70862830d6:
- @atlaskit/button@13.0.6
- @atlaskit/media-card@63.1.2
- @atlaskit/checkbox@8.0.0
- @atlaskit/icon@17.2.0
- @atlaskit/theme@9.1.0
34.1.2
- Updated dependencies
9ecfef12ac:
- @atlaskit/media-card@63.1.0
- @atlaskit/media-core@30.0.3
- @atlaskit/media-test-helpers@24.0.0
34.1.1
- Updated dependencies
ed3f034232:
- @atlaskit/media-card@63.0.2
- @atlaskit/media-core@30.0.1
- @atlaskit/media-test-helpers@23.0.0
34.0.0
-
[major]7c17b35107:
-
Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use this
package, please ensure you use at least this version of react and react-dom.
-
Updated dependencies
7c17b35107:
-
@atlaskit/media-card@63.0.0
-
@atlaskit/docs@8.0.0
-
@atlaskit/button@13.0.0
-
@atlaskit/checkbox@7.0.0
-
@atlaskit/field-radio-group@6.0.0
-
@atlaskit/field-range@7.0.0
-
@atlaskit/icon@17.0.0
-
@atlaskit/theme@9.0.0
-
@atlaskit/media-core@30.0.0
-
@atlaskit/media-test-helpers@22.0.0
33.0.0
- Updated dependencies
a1192ef860:
- @atlaskit/media-card@62.0.0
- @atlaskit/media-test-helpers@21.4.0
- @atlaskit/media-core@29.3.0
32.0.0
- Updated dependencies
e7292ab444:
- @atlaskit/media-card@61.0.0
- @atlaskit/media-test-helpers@21.3.0
- @atlaskit/media-core@29.2.0
31.0.4
- Updated dependencies
9c0b4744be:
- @atlaskit/docs@7.0.3
- @atlaskit/button@12.0.3
- @atlaskit/checkbox@6.0.4
- @atlaskit/field-radio-group@5.0.3
- @atlaskit/field-range@6.0.4
- @atlaskit/icon@16.0.9
- @atlaskit/media-card@60.0.3
- @atlaskit/theme@8.1.7
31.0.3
- Updated dependencies
1e826b2966:
- @atlaskit/docs@7.0.2
- @atlaskit/checkbox@6.0.3
- @atlaskit/field-radio-group@5.0.2
- @atlaskit/icon@16.0.8
- @atlaskit/theme@8.1.6
- @atlaskit/media-card@60.0.1
- @atlaskit/media-core@29.1.4
- @atlaskit/field-range@6.0.3
- @atlaskit/button@12.0.0
31.0.2
If you’ve been using CardView for loading:
<CardView status="loading" mediaItemType="file" dimensions={cardDimensions} />
Now you can use new component:
<CardLoading dimensions={cardDimensions} />
If you were using CardView to show an error
<CardView status="error" mediaItemType={type} dimensions={cardDimensions} />
Now you can use new component:
<CardError dimensions={cardDimensions} />
In case you were using CardView to show image with known external URI:
<CardView status="complete" dataURI={dataURI} metadata={metadata} />
You will have to find a way to switch to using Card component using ExternalImageIdentifier
interface:
<Card identifier={identifier} context={context} />
31.0.1
-
[patch]d13fad66df:
- Enable esModuleInterop for typescript, this allows correct use of default exports
31.0.0
- Updated dependencies
c2c36de22b:
- @atlaskit/media-card@59.0.0
- @atlaskit/media-test-helpers@21.1.0
- @atlaskit/media-core@29.1.0
30.0.2
- Updated dependencies
9c316bd8aa:
- @atlaskit/media-core@29.0.2
- @atlaskit/media-test-helpers@21.0.3
- @atlaskit/media-card@58.0.0
30.0.1
-
[patch]1bcaa1b991:
- Add npmignore for index.ts to prevent some jest tests from resolving that instead of index.js
29.0.0
- Updated dependencies
7ab3e93996:
- @atlaskit/media-card@56.0.0
- @atlaskit/media-test-helpers@20.1.8
- @atlaskit/media-core@28.0.0
28.0.1
- Updated dependencies
76299208e6:
- @atlaskit/button@10.1.3
- @atlaskit/icon@16.0.4
- @atlaskit/media-card@55.0.2
- @atlaskit/media-core@27.2.3
- @atlaskit/media-test-helpers@20.1.7
- @atlaskit/docs@7.0.0
- @atlaskit/checkbox@6.0.0
- @atlaskit/field-radio-group@5.0.0
- @atlaskit/field-range@6.0.0
- @atlaskit/theme@8.0.0
28.0.0
- Updated dependencies
4aee5f3cec:
- @atlaskit/media-card@55.0.0
- @atlaskit/media-test-helpers@20.1.6
- @atlaskit/media-core@27.2.0
27.1.0
-
[minor]f1b46bcb42:
- ED-6259 Enable stricter types for media packages
26.1.2
- Updated dependencies
46dfcfbeca:
- @atlaskit/media-core@27.0.2
- @atlaskit/media-test-helpers@20.1.4
- @atlaskit/media-card@53.0.0
26.1.1
-
[patch]ef469cbb0b:
- MS-357 replaced @atlaskit/util-shared-styles from media components by @atlaskit/theme
26.1.0
-
[minor]406cbf0a4e:
- ED-6092: allow passing undefined context to media filmstrip
26.0.0
- Updated dependencies
69c8d0c19c:
- @atlaskit/media-card@52.0.0
- @atlaskit/media-test-helpers@20.1.0
- @atlaskit/media-core@27.0.0
25.0.2
- Updated dependencies
07a187bb30:
- @atlaskit/media-card@51.0.2
- @atlaskit/media-core@26.2.1
- @atlaskit/media-test-helpers@20.0.0
25.0.1
- Updated dependencies
d7ef59d432:
- @atlaskit/docs@6.0.1
- @atlaskit/button@10.1.2
- @atlaskit/checkbox@5.0.11
- @atlaskit/field-radio-group@4.0.15
- @atlaskit/media-card@51.0.1
- @atlaskit/media-test-helpers@19.1.1
- @atlaskit/field-range@5.0.14
- @atlaskit/icon@16.0.0
25.0.0
- Updated dependencies
85d5d168fd:
- @atlaskit/media-card@51.0.0
- @atlaskit/media-test-helpers@19.1.0
- @atlaskit/media-core@26.2.0
24.0.0
- Updated dependencies dadef80:
- Updated dependencies 3ad16f3:
- @atlaskit/media-card@50.0.0
- @atlaskit/media-test-helpers@19.0.0
- @atlaskit/media-core@26.1.0
23.0.0
- Updated dependencies cbb8cb5:
- @atlaskit/media-card@49.0.0
- @atlaskit/media-test-helpers@18.9.1
- @atlaskit/media-core@26.0.0
22.0.0
- Updated dependencies 72d37fb:
- @atlaskit/media-card@48.0.0
- @atlaskit/media-core@25.0.0
- @atlaskit/media-test-helpers@18.9.0
21.0.2
- Updated dependencies 135ed00:
- @atlaskit/media-core@24.7.2
- @atlaskit/media-test-helpers@18.7.2
- @atlaskit/media-card@47.0.0
21.0.1
-
[patch]ca16fa9:
- Add SSR support to media components
21.0.0
- Updated dependencies b3738ea:
- @atlaskit/media-card@46.0.0
- @atlaskit/media-test-helpers@18.7.0
- @atlaskit/media-core@24.7.0
20.0.0
- Updated dependencies 80f765b:
- @atlaskit/media-card@45.0.0
- @atlaskit/media-test-helpers@18.6.2
- @atlaskit/media-core@24.6.0
19.0.3
- Updated dependencies 58b84fa:
- @atlaskit/button@10.1.1
- @atlaskit/checkbox@5.0.9
- @atlaskit/field-radio-group@4.0.14
- @atlaskit/field-range@5.0.12
- @atlaskit/icon@15.0.2
- @atlaskit/media-card@44.1.3
- @atlaskit/media-core@24.5.2
- @atlaskit/docs@6.0.0
19.0.2
- Updated dependencies ab9b69c:
- @atlaskit/docs@5.2.2
- @atlaskit/button@10.0.1
- @atlaskit/checkbox@5.0.7
- @atlaskit/field-radio-group@4.0.12
- @atlaskit/media-card@44.0.2
- @atlaskit/media-test-helpers@18.3.1
- @atlaskit/icon@15.0.0
19.0.1
- Updated dependencies 6998f11:
- @atlaskit/docs@5.2.1
- @atlaskit/checkbox@5.0.6
- @atlaskit/field-radio-group@4.0.11
- @atlaskit/icon@14.6.1
- @atlaskit/media-card@44.0.1
- @atlaskit/media-core@24.5.1
- @atlaskit/field-range@5.0.9
- @atlaskit/button@10.0.0
19.0.0
- Updated dependencies 7e8b4b9:
- @atlaskit/media-card@44.0.0
- @atlaskit/media-test-helpers@18.3.0
- @atlaskit/media-core@24.5.0
18.0.0
- Updated dependencies 2c21466:
- @atlaskit/media-card@43.0.0
- @atlaskit/media-test-helpers@18.2.12
- @atlaskit/media-core@24.4.0
17.0.2
- Updated dependencies 04c7192:
- @atlaskit/media-core@24.3.1
- @atlaskit/media-test-helpers@18.2.11
- @atlaskit/media-card@42.0.0
17.0.1
- [patch] Cleanup media + editor integration 🔥
2f9d14d
17.0.0
- [patch] Split Media + Editor cleanup part 1
b1ce691
- [major] Updated dependencies
b1ce691
- @atlaskit/media-card@41.0.0
- @atlaskit/media-core@24.3.0
- @atlaskit/media-test-helpers@18.2.8
16.0.1
- [patch] Updated dependencies
6e510d8
- @atlaskit/media-core@24.2.2
- @atlaskit/media-test-helpers@18.2.7
- @atlaskit/media-card@40.0.0
16.0.0
- [major] Updated dependencies
2afa60d
- @atlaskit/media-card@39.0.0
- @atlaskit/media-test-helpers@18.2.5
- @atlaskit/media-core@24.2.0
15.0.0
- [patch] Deprecate context.uploadFile & context.getFile. Instead context.file.upload &
context.file.getFileState should be used; media-store's uploadFile function now takes MediaStore
as a second argument, not MediaApiConfig
8b2c4d3
- [patch] Deprecate context.uploadFile & context.getFile. Instead context.file.upload &
context.file.getFileState should be used; media-store's uploadFile function now takes MediaStore
as a second argument, not MediaApiConfig
3302d51
- [major] Updated dependencies
8b2c4d3
- [major] Updated dependencies
3302d51
- @atlaskit/media-card@38.0.0
- @atlaskit/media-core@24.1.0
- @atlaskit/media-test-helpers@18.2.3
14.0.3
- [patch] Updated dependencies
65c6514
- @atlaskit/docs@5.0.8
- @atlaskit/button@9.0.13
- @atlaskit/checkbox@5.0.2
- @atlaskit/field-radio-group@4.0.8
- @atlaskit/media-card@37.0.1
- @atlaskit/media-test-helpers@18.2.1
- @atlaskit/icon@14.0.0
14.0.2
- [patch] Updated dependencies
dae7792
- @atlaskit/media-core@24.0.2
- @atlaskit/media-card@37.0.0
- @atlaskit/media-test-helpers@18.2.0
14.0.1
- [patch] Support external image identifiers in media-card
82c8bb9
14.0.0
- [major] Updated dependencies
927ae63
- @atlaskit/media-card@36.0.0
- @atlaskit/media-core@24.0.0
- @atlaskit/media-test-helpers@18.0.0
13.0.2
- [patch] Updated dependencies
1be4bb8
- @atlaskit/media-core@23.2.1
- @atlaskit/media-card@35.0.0
13.0.1
- [patch] Updated dependencies
80e1925
- @atlaskit/button@9.0.9
- @atlaskit/checkbox@5.0.0
13.0.0
- [major] Updated dependencies
6e1d642
- @atlaskit/media-card@34.0.0
- @atlaskit/media-core@23.2.0
- @atlaskit/media-test-helpers@17.1.0
12.0.1
- [patch] Update TS to 3.0 f68d367
- [none] Updated dependencies
f68d367
- @atlaskit/media-test-helpers@17.0.2
- @atlaskit/media-core@23.1.1
- @atlaskit/media-card@33.0.2
12.0.0
- [minor] Expose upfrontId in MediaPicker
7545979
- [major] Updated dependencies
7545979
- @atlaskit/media-card@33.0.0
- @atlaskit/media-core@23.1.0
11.0.2
- [patch] Updated dependencies
911a570
- @atlaskit/media-test-helpers@17.0.0
- @atlaskit/media-core@23.0.2
- @atlaskit/media-card@32.0.6
11.0.1
- [patch] Updated dependencies
b12f7e6
- @atlaskit/media-card@32.0.5
11.0.0
- [major] Updated dependencies
d02746f
- @atlaskit/media-test-helpers@16.0.0
- @atlaskit/media-core@23.0.0
- @atlaskit/media-card@32.0.0
10.2.2
- [patch] Updated dependencies
59ccb09
- @atlaskit/media-card@31.3.0
10.2.1
- [patch] Updated dependencies
acd86a1
- @atlaskit/media-card@31.2.1
- @atlaskit/icon@13.2.2
- @atlaskit/field-radio-group@4.0.3
- @atlaskit/checkbox@4.0.2
- @atlaskit/button@9.0.4
- @atlaskit/media-core@22.2.1
- @atlaskit/media-test-helpers@15.2.1
- @atlaskit/field-range@5.0.2
- @atlaskit/docs@5.0.2
10.2.0
- [minor] expose smart Filmstrip from media-filmstrip
7fa84a2
- [minor] Updated dependencies
7fa84a2
- @atlaskit/media-card@31.2.0
10.1.0
- [patch] Updated dependencies
fa6f865
- @atlaskit/media-card@31.0.0
- @atlaskit/media-test-helpers@15.1.0
- [none] Updated dependencies
fdd03d8
- @atlaskit/media-card@31.0.0
- @atlaskit/media-test-helpers@15.1.0
- [patch] Updated dependencies
49c8425
- @atlaskit/media-card@31.0.0
- @atlaskit/media-test-helpers@15.1.0
- [minor] Updated dependencies
3476e01
- @atlaskit/media-card@31.0.0
10.0.0
- [major] Updates to React ^16.4.0
7edb866
- [major] Updated dependencies
563a7eb
- @atlaskit/media-card@30.0.0
- @atlaskit/checkbox@4.0.0
- @atlaskit/button@9.0.0
- @atlaskit/media-core@22.0.0
- @atlaskit/media-test-helpers@15.0.0
- @atlaskit/field-range@5.0.0
- @atlaskit/docs@5.0.0
- @atlaskit/field-radio-group@4.0.0
- @atlaskit/icon@13.0.0
- [major] Updated dependencies
7edb866
- @atlaskit/media-card@30.0.0
- @atlaskit/media-test-helpers@15.0.0
- @atlaskit/media-core@22.0.0
- @atlaskit/checkbox@4.0.0
- @atlaskit/button@9.0.0
- @atlaskit/field-range@5.0.0
- @atlaskit/docs@5.0.0
- @atlaskit/field-radio-group@4.0.0
- @atlaskit/icon@13.0.0
9.0.7
- [patch] Updated dependencies
42ee1ea
- @atlaskit/media-test-helpers@14.0.6
- @atlaskit/media-core@21.0.0
- @atlaskit/media-card@29.1.8
9.0.6
-
[patch] Add missing dependencies to packages to get the website to build
99446e3
-
[none] Updated dependencies
99446e3
-
[none] Updated dependencies
9bac948
9.0.5
- [patch] Updated dependencies
c57e9c1
- @atlaskit/media-test-helpers@14.0.4
- @atlaskit/media-card@29.1.5
- @atlaskit/media-core@20.0.0
9.0.4
- [none] Updated dependencies
74a0d46
- @atlaskit/media-card@29.1.3
- [patch] Updated dependencies
6c6f078
- @atlaskit/media-card@29.1.3
- [none] Updated dependencies
5bb26b4
- @atlaskit/media-card@29.1.3
9.0.3
- [patch] Clean Changelogs - remove duplicates and empty entries
e7756cd
- [none] Updated dependencies
e7756cd
- @atlaskit/media-card@29.1.2
- @atlaskit/media-test-helpers@14.0.3
- @atlaskit/media-core@19.1.3
- @atlaskit/field-range@4.0.3
- @atlaskit/checkbox@3.0.6
- @atlaskit/field-radio-group@3.0.4
- @atlaskit/icon@12.1.2
9.0.2
- [patch] Update changelogs to remove duplicate
cc58e17
- [none] Updated dependencies
cc58e17
- @atlaskit/media-card@29.1.1
- @atlaskit/media-test-helpers@14.0.2
- @atlaskit/media-core@19.1.2
- @atlaskit/icon@12.1.1
- @atlaskit/field-radio-group@3.0.3
- @atlaskit/checkbox@3.0.5
- @atlaskit/docs@4.1.1
9.0.1
- [none] Updated dependencies
9d20f54
- @atlaskit/media-card@29.1.0
- @atlaskit/icon@12.1.0
- @atlaskit/field-radio-group@3.0.2
- @atlaskit/checkbox@3.0.4
- @atlaskit/docs@4.1.0
- @atlaskit/media-core@19.1.1
- @atlaskit/media-test-helpers@14.0.1
- @atlaskit/field-range@4.0.2
9.0.0
- [major] makes styled-components a peer dependency and upgrades version range from 1.4.6 - 3 to
^3.2.6 1e80619
- [patch] Updated dependencies
1e80619
- @atlaskit/media-card@29.0.0
- @atlaskit/media-test-helpers@14.0.0
- @atlaskit/media-core@19.0.0
- @atlaskit/icon@12.0.0
- @atlaskit/field-radio-group@3.0.0
- @atlaskit/checkbox@3.0.0
- @atlaskit/field-range@4.0.0
- @atlaskit/docs@4.0.0
8.0.9
- [patch] Updated dependencies
1c87e5a
- @atlaskit/media-card@28.0.6
8.0.8
- [patch]f87724e
- [none] Updated dependencies
f87724e
- @atlaskit/media-test-helpers@13.0.2
- @atlaskit/media-card@28.0.4
8.0.7
- [patch] Updated dependencies
84f6f91
- @atlaskit/media-test-helpers@13.0.0
- @atlaskit/media-core@18.1.0
- @atlaskit/media-card@28.0.0
- [patch] Updated dependencies
9041d71
- @atlaskit/media-test-helpers@13.0.0
- @atlaskit/media-core@18.1.0
- @atlaskit/media-card@28.0.0
8.0.6
- [patch] Updated dependencies
d662caa
- @atlaskit/icon@11.3.0
- @atlaskit/media-card@27.1.4
- @atlaskit/field-radio-group@2.0.3
- @atlaskit/media-test-helpers@12.0.4
- @atlaskit/media-core@18.0.3
- @atlaskit/checkbox@2.0.2
- @atlaskit/field-range@3.0.2
- @atlaskit/docs@3.0.4
8.0.5
- [patch] Fix issue with Filmstrip cutting Cards
c5b18db
8.0.0
- [major] Bump to React 16.3.
4251858
7.1.0
- [minor] add MutationObserver to FilmstripView to catch dom mutations
625ee2b
7.0.7
- [patch] Add "sideEffects: false" to AKM2 packages to allow consumer's to tree-shake
c3b018a
7.0.2
- [patch] Use child.key if available
d4835bd
6.1.3
- [patch] Remove TS types that requires styled-components v3
836e53b
6.1.0
- [minor] Update styled-components dependency to support versions 1.4.6 - 3
ceccf30
6.0.2
- [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2
1e57e5a
5.8.0
- [minor] Add React 16 support.
12ea6e4
5.5.4
- [patch] bump icon dependency
da14956
- [patch] bump icon dependency
da14956
5.5.1
- [patch] Use correct dependencies 7b178b1
- [patch] Use correct dependencies 7b178b1
- [patch] Adding responsive behavior to the editor. e0d9867
- [patch] Adding responsive behavior to the editor. e0d9867
5.5.0
- [minor] Upgrade Media Editor packages 193c8a0
5.3.0 (2017-09-19)
- feature; new LinkCards UI (06d49d2)
5.2.4 (2017-09-18)
- bug fix; update media-core and media-test-helpers version
(00108cf)
5.2.3 (2017-09-07)
- bug fix; renderLinkCardChildren.tsx hipster mode on
(6852141)
- bug fix; added story which shows filmstrip with only link cards
(27f24e6)
5.2.2 (2017-08-28)
- bug fix; move widths into state so they trigger a re-render inside a PureComponent
(95a7928)
5.2.1 (2017-08-18)
- bug fix; stop click events from propagating up (issues closed: msw-165)
(7ffc2b2)
5.2.0 (2017-08-11)
- feature; bump :allthethings: (f4b1375)
5.1.2 (2017-08-03)
- bug fix; moving position of letf and right arrow (issues closed: ed-2052)
(b930e8d)
- bug fix; images and flimstip will align to the left edge of the text in banana (issues closed:
ed-2052) (b97cdb4)
5.1.1 (2017-08-03)
- bug fix; fix issue with line-height and maxPosition issue
(e8c86e1)
4.4.0 (2017-07-27)
- feature; added the ability for integrators to navigate to the start or end of the filmstrip
(f23e285)
4.3.1 (2017-07-21)
- fix; use class transform in loose mode in babel to improve load performance in apps
(fde719a)
- fix; remove SC from peerDependencies to dependencies
(568161b)
4.3.0 (2017-07-17)
- fix; get right element parent to calculate dimensions from in FilmstripNavigator
(d044c60)
- feature; added an editable story for FilmStripNavigator
(230f8b3)
4.2.1 (2017-07-12)
- fix; align FilmstripNavigator items vertically
(3ccbfdb)
- fix; dont cut children of FilmstripNavigator, save children width and calculate distance
(651f26d)
4.2.0 (2017-07-05)
- feature; use child key as key for li
(478e72f)
4.1.5 (2017-06-26)
- fix; trigger a real scroll event from FilmstripNavigator when we navigate
(9649746)
4.1.4 (2017-06-19)
- fix; bump media-card in media-filmstrip
(d010432)
- fix; use Lazy load from cards not from navigator
(a039532)
4.1.3 (2017-05-25)
- fix; filmstrip lazyload works in both overflow and non-overflow containers
(3598534)
4.1.2 (2017-05-24)
- fix; fixed bug when width prop passed to FilmStripNavigator is undefined
(f42627f)
4.1.1 (2017-05-23)
- fix; update dependency "react-lazyload" to 2.2.7
(44e0037)
3.3.0 (2017-05-22)
- fix; fix filmstrip click handler
(5236b90)
- fix; remove FilmStrip component
(7853d3c)
- feature; bump media dependencies
(3b4f1cb)
3.1.2 (2017-05-01)
- fix; updated media-filmstrip to use new media-card goodness
(e8b7014)
3.1.0 (2017-04-27)
- fix; update legal copy to be more clear. Not all modules include ADG license.
(f3a945e)
- feature; use latest from media-card in media-filmstrip
(154f6ea)
3.0.2 (2017-04-26)
- fix; update legal copy and fix broken links for component README on npm. New contribution and
(0b3e454)
- fix; updated media packages key words and maintainers
(01bcbc5)
- feature; bumped the version of media-card and added a storybook for FilmstripNavigator
(db04476)
3.0.1 (2017-04-20)
- fix; removed hardcoded file and link ids
(754c548)
3.0.0 (2017-04-10)
- feature; BREAKING CHANGE: (5737e16)
- breaking; use latest media-card version
2.1.2 (2017-04-05)
- fix; remove media-test-helpers from dependencies as its a devDependency
(4a57f6a)
2.1.1 (2017-03-31)
- fix; dont use mediaItem id as list key and allow filmstrip to render same card multiple t
(504c6fb)
- fix; explicitly set white-space for Ellipsed text inside Filmstrip
(e6450fa)
- fix; fix subtitle overflow in cardOverlay
(486a967)
- fix; make Link image card clickable
(0778aa4)
2.1.0 (2017-03-29)
- fix; bump media packages and fix ts errors
(dcc463d)
- feature; introduce LinkCardImage support
(8b23147)
- feature; support mixed content in filmstrip
(2499a94)
2.0.10 (2017-03-23)
- fix; bumping media-card version
(bc039f3)
- fix; fixing the build (ba21a9d)
2.0.9 (2017-03-23)
- fix; fix build (1ff1ddc)
- feature; added 'super' card component
(559579f)
- breaking; Card API, LinkCard API, FileCard API
- ISSUES CLOSED: FIL-3919
2.0.7 (2017-03-21)
- fix; maintainers for all the packages were added
(261d00a)
2.0.6 (2017-03-20)
- fix; dont allow navigation on filmstrip component when resize event happens
(2ebbbdf)
2.0.5 (2017-03-17)
- fix; dont allow user to navigate when there is only one item
(bf1e156)
- feature; added application links to media-card and restructured
(618650e)
2.0.2 (2017-03-07)
- fix; dont manipulate filmstrip component state when the component has been destroyed
(64457c5)
- fix; set unmounted false to keep state consistent
(dfc264d)
- fix; use explicit imports in order to avoid ciclyng dependencies
(01befae)
- fix; use StoryList in order to display stories
(d96a4d8)
- feature; migrate FilmStrip component + create media-test-helpers
(8896543)
2.0.1 (2017-02-27)
- fix; add padding to filmstrip in order to show card shadow
(eac258e)
1.0.0 (2017-02-24)
- fix; Avoid scrolling for Y axis events
(404da41)
- fix; Check for element presence when getting dimensions
(121e972)
- fix; dont use flexbox as it makes IE getting wrong value for getBoundingClientRect
(b3237e1)
- fix; Fix active arrow state (438037d)
- fix; fix navigation at the beginning
(f990dc2)
- fix; fix TypeScript error in tests
(94cd79b)
- fix; remove _ from private methods
(404ba99)
- fix; Update dimensions if childs grown
(b2dcc95)
- fix; Update react state properly
(8298cbe)
- fix; use default tsconfig types
(d1f7830)
- feature; add animation duration depending on the items moved
(89a52bd)
- feature; Add arrow shadow to let user know about more elements
(e8c3279)
- feature; add MediaFilmStripView component
(732cb2c)
- feature; Allow user to manually navigate
(904719a)
- feature; Dont change arrows visibility until transition is done
(be2afa1)
- feature; Improve filmstrip navigation
(4c4f088)
- feature; Make media-filmstrip responsive to window resize events
(3f38fb1)
- feature; Use new shadow for arrows
(89895aa)