@kalamazoo/media-card
66.1.2
Patch Changes
[patch]24865cfaff:
Fix File Status in Media Card Analytics Events- Updated dependencies 24865cfaff:
Updated dependencies 24865cfaff:
- Updated dependencies 24865cfaff:
- Updated dependencies 24865cfaff:
- Updated dependencies 24865cfaff:
- Updated dependencies 24865cfaff:
- Updated dependencies 24865cfaff:
- Updated dependencies 24865cfaff:
- Updated dependencies 24865cfaff:
- Updated dependencies 24865cfaff:
- Updated dependencies 24865cfaff:
- Updated dependencies 24865cfaff:
- Updated dependencies 24865cfaff:
66.1.1
Patch Changes
[patch]139ab68e90:
ED-4359 fix focus being reset on remove mediagroup- Updated dependencies 768bac6d81:
66.1.0
Minor Changes
[minor]c23ff56fb0:
Introduced new optional prop
testId
that will be applied todata-testid
prop on top DOM element of Card
Patch Changes
[patch]5b2c89203e:
Fix linting errors from prettier upgrade
66.0.2
Patch Changes
[patch]d222c2b987:
Theme has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided.
Breaking
** getTokens props changes ** When defining the value function passed into a ThemeProvider, the getTokens parameter cannot be called without props; if no props are provided an empty object
{}
must be passed in:<CustomTheme.Provider value={t => ({ ...t(), backgroundColor: '#333'})} >
becomes:
<CustomTheme.Provider value={t => ({ ...t({}), backgroundColor: '#333'})} >
** Color palette changes ** Color palettes have been moved into their own file. Users will need to update imports from this:
import { colors } from '@kalamazoo/theme'; colors.colorPalette('8');
to this:
import { colorPalette } from '@kalamazoo/theme'; colorPalette.colorPalette('8');
or for multi entry-point users:
import * as colors from '@kalamazoo/theme/colors'; colors.colorPalette('8');
to this:
import * as colorPalettes from '@kalamazoo/theme/color-palette'; colorPalettes.colorPalette('8');
66.0.1
Patch Changes
[patch]760bd84462:
fixing analytics failed when user cancels file upload
Updated dependencies 24b8ea2667:
66.0.0
Major Changes
[major]c3e65f1b9e:
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 '@kalamazoo/media-core'; import {Card} from '@kalamazoo/media-card' import {SmartMediaEditor} from '@kalamazoo/media-editor' import {Filmstrip} from '@kalamazoo/media-filmstrip' import {MediaImage} from '@kalamazoo/media-image' import {MediaViewer} from '@kalamazoo/media-viewer' import {Dropzone, Clipboard, Browser, MediaPicker} from '@kalamazoo/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 '@kalamazoo/media-core'; import {Card} from '@kalamazoo/media-card' import {SmartMediaEditor} from '@kalamazoo/media-editor' import {Filmstrip} from '@kalamazoo/media-filmstrip' import {MediaImage} from '@kalamazoo/media-image' import {MediaViewer} from '@kalamazoo/media-viewer' import {Dropzone, Clipboard, Browser, MediaPicker} from '@kalamazoo/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}> ```- [major]ae4f336a3a:
FABDODGEM-13 Editor Damask Release
BREAKING CHANGES
- Media: Removed deprecated "context" property from media components in favor of "mediaClientConfig". This affects all public media UI components.
- Tasks & Decisions: Removed containerAri for task-decisions components.
- 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
- Updated i18n translations
- Improved analytics & crash reporting (via a new error boundary)
- Improvements to heading anchor links.
- Copy/Paste improvements
- Fixes for the selection state of Smart links.
- Improvements for table resizing & column creation.
Mobile
- GASv3 Analytics Events are now relayed from the web to the native context, ready for dispatching.
- Hybrid Renderer Recycler view now handles invalid ADF nodes gracefully.
Media
- Improved analytics
- Added shouldOpenMediaViewer property to renderer
- Implemented analytics for file copy
- New
media-viewed
event dispatched when media is interacted with via the media card or viewer. - Support for
alt
text attribute on media image elements.
i18n-tools
Bumped dependencies.
Minor Changes
- [minor]eeb47666dd:
Emit media-viewed
event through globalMediaEventEmitter
when media is viewed, played or downloaded via media card or media viewer.- [minor]550d260bfc:
Introducing support for alt-text in media.
- Updated dependencies e7b5c917de:
- @kalamazoo/media-store@12.0.14
- @kalamazoo/media-test-helpers@25.2.0
- @kalamazoo/media-viewer@44.0.0
- @kalamazoo/media-client@3.0.0
65.3.4
Patch Changes
- [patch]c0bb2ebac5:
check if selection.containsNode is available before using it to fix issue with IE11
65.3.3
Patch Changes
- [patch]35d2229b2a:
Adding missing license to packages and update to Copyright 2019 Atlassian Pty Ltd.
65.3.2
Patch Changes
- [patch]a2d0043716:
Updated version of analytics-next to fix potential incompatibilities with TS 3.6
65.3.1
Patch Changes
- [patch]9bac6fd58e:
HOT-88731 don't send external image URL as a part of analytics
65.3.0
Minor Changes
- [minor]e44b5324de:
Card now sends "copied file" on card copy event in editor and renderer- [minor]ab53f33dc5:
Adding operational events for media card component
65.2.1
- Updated dependencies 97bab7fd28:
- @kalamazoo/button@13.3.1
- @kalamazoo/media-ui@11.6.7
- @kalamazoo/checkbox@10.0.0
- @kalamazoo/docs@8.1.7
65.2.0
Minor Changes
- [minor]b709292a5c:
Add new "contextId?: string" property to Card, to retrieve auth from a given context
Patch Changes
- [patch]ace05e438f:
Dont release file preview from Card when an external file is passed
65.1.1
Patch Changes
- [patch]fc79969f86:
Update all the theme imports in media to use multi entry points
65.1.0
Minor Changes
- [minor]b95f6ba701:
Added Analytics events for Media Card Action, Dropdown Menu and Retry buttons
65.0.1
Patch Changes
- [patch]8e2cb88526:
Adding Error boundary in Media Card
65.0.0
Major Changes
- [major]af72468517:
Media card now emit analytics events which payload and context stuctures reflect GASv3 payload specification. Media Analytics Listener merges Payload and Context data before sending it to the backend. The merge is based on attributes.packageName equality Media Analytics Listener adds packageHierarchy attribute to merged payload, the same way Atlaskit Listener does.
64.2.1
Patch Changes
- [patch]9ce6986361:
CEMS-244: Emit processed state when file gets copied
64.2.0
Minor Changes
- [minor]c6efb2f5b6:
Prefix the legacy lifecycle methods with UNSAFE_* to avoid warning in React 16.9+
More information about the deprecation of lifecycles methods can be found here: https://reactjs.org/blog/2018/03/29/react-v-16-3.html#component-lifecycle-changes
64.1.0
Minor Changes
- [minor]44202a6e9a:
Analytics Event will be fired when InlinePlayer is being clicked
64.0.2
Patch Changes
- [patch]097b696613:
Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving non-relative imports as relative imports
64.0.1
Patch Changes
- [patch]ecca4d1dbb:
Upgraded Typescript to 3.3.x
64.0.0
Major Changes
- [major]3624730f44:
Property type
was removed from CardViewAnalyticsContext
interface
File size won't be displayed if it was set to zero or not obtained
63.3.12
Patch Changes
- [patch]926b43142b:
Analytics-next has been converted to Typescript. Typescript consumers will now get static type safety. Flow types are no longer provided. No behavioural changes.
Breaking changes
withAnalyticsForSumTypeProps
alias has been removed, please usewithAnalyticsEvents
AnalyticsContextWrappedComp
alias has been removed, please usewithAnalyticsContext
Breaking changes to TypeScript annotations
withAnalyticsEvents
now infers proptypes automatically, consumers no longer need to provide props as a generic type.withAnalyticsContext
now infers proptypes automatically, consumers no longer need to provide props as a generic type.- Type
WithAnalyticsEventProps
has been renamed toWithAnalyticsEventsProps
to match source code - Type
CreateUIAnalyticsEventSignature
has been renamed toCreateUIAnalyticsEvent
to match source code - Type
UIAnalyticsEventHandlerSignature
has been renamed toUIAnalyticsEventHandler
to match source code - Type
AnalyticsEventsPayload
has been renamed toAnalyticsEventPayload
- Type
ObjectType
has been removed, please useRecord<string, any>
or[key: string]: any
- Type
UIAnalyticsEventInterface
has been removed, please useUIAnalyticsEvent
- Type
AnalyticsEventInterface
has been removed, please useAnalyticsEvent
- Type
CreateAndFireEventFunction
removed and should now be inferred by TypeScript - Type
AnalyticsEventUpdater
removed and should now be inferred by TypeScript
63.3.11
- Updated dependencies 69586b5353:
- @kalamazoo/media-client@2.0.1
- @kalamazoo/media-store@12.0.8
- @kalamazoo/media-viewer@43.2.10
- @kalamazoo/media-ui@11.5.2
- @kalamazoo/media-test-helpers@25.0.0
63.3.10
Patch Changes
- [patch]6ad542fe85:
Adding try/catch in async imports for @kalamazoo/media-avatar-picker, @kalamazoo/media-card, @kalamazoo/media-editor, @kalamazoo/media-viewer
63.3.9
- Updated dependencies ee804f3eeb:
- @kalamazoo/media-store@12.0.6
- @kalamazoo/media-test-helpers@24.3.5
- @kalamazoo/media-viewer@43.2.8
- @kalamazoo/media-client@2.0.0
63.3.8
Patch Changes
- [patch]8dbc8914cd:
Hide inline video player controls during inactivty
63.3.7
- Updated dependencies 7e9d653278:
- @kalamazoo/toggle@8.0.0
63.3.6
Patch Changes
- [patch]9f8ab1084b:
Consume analytics-next ts type definitions as an ambient declaration.
63.3.5
Patch Changes
- [patch]6742fbf2cc:
bugfix, fixes missing version.json file
63.3.4
Patch Changes
- [patch]18dfac7332:
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
63.3.3
Patch Changes
- [patch]d0db01b410:
TypeScript users of withAnalyticsEvents and withAnalyticsContext are now required to provide props as a generic type. This is so that TypeScript can correctly calculate the props and defaultProps of the returned component.
Before:
withAnalyticsEvents()(Button) as ComponentClass<Props>;
After:
withAnalyticsEvents<Props>()(Button);
63.3.2
- Updated dependencies 87a2638655:
63.3.1
- Updated dependencies 06326ef3f7:
63.3.0
Minor Changes
[minor]53b1e6a783:
Add a download button to inline video player to allow download of video binary
63.2.0
Minor Changes
[minor]09f094a7a2:
SL-259: bump react-lazily-render, remove react-lazily-render-scroll-parent.
63.1.5
- Updated dependencies cfc3c8adb3:
- @kalamazoo/docs@8.1.2
- @kalamazoo/button@13.0.8
- @kalamazoo/checkbox@8.0.2
- @kalamazoo/dropdown-menu@8.0.4
- @kalamazoo/field-radio-group@6.0.2
- @kalamazoo/toggle@7.0.1
- @kalamazoo/media-test-helpers@24.0.3
- @kalamazoo/media-ui@11.2.8
- @kalamazoo/media-viewer@43.1.1
- @kalamazoo/field-range@7.0.4
- @kalamazoo/icon@18.0.0
63.1.4
Patch Changes
[patch]b37dd8dc38:
Use video binary artifact while video is processing
63.1.3
Patch Changes
[patch]0a313cd541:
- rename AsyncCardState
63.1.2
- Updated dependencies 70862830d6:
63.1.1
[patch]b0ef06c685:
- This is just a safety release in case anything strange happened in in the previous one. See Pull Request #5942 for details
63.1.0
[minor]a02cbd46c0:
- Now you can provide
MediaClientConfig
asmediaClientConfig
prop to a Card as an alternative to Context. This is preferential, since Context prop will be dropped very soon.
- Now you can provide
Updated dependencies 215688984e:
- Updated dependencies 9ecfef12ac:
63.0.4
[patch]b91590107b:
- ED-6178 Fix media wrapper having a transparent background for images
63.0.3
[patch]a6f27f106a:
- use componentDidMount in CardLoader to make it SSR hydrate friendly
63.0.2
- Updated dependencies ed3f034232:
63.0.1
[patch]cbc9ff5b6a:
- Fix support for exif orientation when dropping a picture
63.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:
- @kalamazoo/media-viewer@43.0.0
- @kalamazoo/docs@8.0.0
- @kalamazoo/analytics-next@5.0.0
- @kalamazoo/button@13.0.0
- @kalamazoo/checkbox@7.0.0
- @kalamazoo/dropdown-menu@8.0.0
- @kalamazoo/field-radio-group@6.0.0
- @kalamazoo/field-range@7.0.0
- @kalamazoo/field-text@9.0.0
- @kalamazoo/icon@17.0.0
- @kalamazoo/spinner@11.0.0
- @kalamazoo/theme@9.0.0
- @kalamazoo/toggle@7.0.0
- @kalamazoo/media-core@30.0.0
- @kalamazoo/media-store@12.0.0
- @kalamazoo/media-test-helpers@22.0.0
- @kalamazoo/media-ui@11.0.0
62.0.0
- Updated dependencies a1192ef860:
61.0.0
- Updated dependencies e7292ab444:
60.0.6
[patch]d3cad2622e:
- Removes babel-runtime in favour of @babel/runtime
60.0.5
[patch]8f17450f46:
- Fix media-card code split from 82kB to 10kB
60.0.4
[patch]0a4ccaafae:
- Bump tslib
60.0.3
- Updated dependencies 9c0b4744be:
- @kalamazoo/docs@7.0.3
- @kalamazoo/button@12.0.3
- @kalamazoo/checkbox@6.0.4
- @kalamazoo/dropdown-menu@7.0.6
- @kalamazoo/field-radio-group@5.0.3
- @kalamazoo/field-range@6.0.4
- @kalamazoo/field-text@8.0.3
- @kalamazoo/icon@16.0.9
- @kalamazoo/spinner@10.0.7
- @kalamazoo/toggle@6.0.4
- @kalamazoo/media-ui@10.1.5
- @kalamazoo/media-viewer@40.1.10
- @kalamazoo/theme@8.1.7
60.0.2
[patch]3f28e6443c:
- @kalamazoo/analytics-next-types is deprecated. Now you can use types for @kalamazoo/analytics-next supplied from itself.
60.0.1
- Updated dependencies 1e826b2966:
- @kalamazoo/docs@7.0.2
- @kalamazoo/analytics-next@4.0.3
- @kalamazoo/checkbox@6.0.3
- @kalamazoo/dropdown-menu@7.0.4
- @kalamazoo/field-radio-group@5.0.2
- @kalamazoo/field-text@8.0.2
- @kalamazoo/icon@16.0.8
- @kalamazoo/spinner@10.0.5
- @kalamazoo/theme@8.1.6
- @kalamazoo/toggle@6.0.3
- @kalamazoo/media-core@29.1.4
- @kalamazoo/media-store@11.0.7
- @kalamazoo/media-ui@10.1.3
- @kalamazoo/media-viewer@40.1.5
- @kalamazoo/field-range@6.0.3
- @kalamazoo/button@12.0.0
60.0.0
[major]0ff405bd0f:
- Removed CardView and CardViewLoader from public APIs and replaced it with light-weight and stateless CardLoading and CardError components. Handling of external images is now done by Card component itself using ExternalImageIdentifier interface.
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} />
59.1.1
[patch]d13fad66df:
- Enable esModuleInterop for typescript, this allows correct use of default exports
59.1.0
[minor]e1c1fa454a:
- Support external image identifier in MediaViewer
59.0.0
- Updated dependencies c2c36de22b:
58.0.1
[patch]106d046114:
- Fix issue with media-viewer opening in CC on inline video player controlls clicked
58.0.0
[major]9c316bd8aa:
- Exported MediaImage component is removed from media-card and moved to @kalamazoo/media-ui
57.0.3
[patch]d402fdb775:
- FIX ED-6584: Keep card dataURI regardless of previus state
57.0.2
[patch]1bcaa1b991:
- Add npmignore for index.ts to prevent some jest tests from resolving that instead of index.js
57.0.1
[patch]9192df506a:
- Do not call given onClick if it's a video file and inline video player is enabled
57.0.0
[major]9d5cc39394:
- Dropped ES5 distributables from the typescript packages
Updated dependencies 9d5cc39394:
- @kalamazoo/docs@7.0.1
- @kalamazoo/analytics-next@4.0.1
- @kalamazoo/checkbox@6.0.1
- @kalamazoo/dropdown-menu@7.0.1
- @kalamazoo/field-radio-group@5.0.1
- @kalamazoo/field-text@8.0.1
- @kalamazoo/icon@16.0.5
- @kalamazoo/spinner@10.0.1
- @kalamazoo/theme@8.0.1
- @kalamazoo/toggle@6.0.1
- @kalamazoo/media-viewer@39.0.0
- @kalamazoo/field-range@6.0.1
- @kalamazoo/button@11.0.0
- @kalamazoo/analytics-next-types@4.0.0
- @kalamazoo/media-core@29.0.0
- @kalamazoo/media-store@11.0.0
- @kalamazoo/media-test-helpers@21.0.0
- @kalamazoo/media-ui@10.0.0
56.0.0
- Updated dependencies 7ab3e93996:
55.0.4
[patch]ff3f40bc38:
- Fix remove from cache function, which fixes issue when user is deleting recent image in media picker
55.0.3
[patch]3591859b2f:
- use ReactDOM.createPortal to render MediaViewer when shouldOpenMediaViewer=true
55.0.2
- Updated dependencies 76299208e6:
- @kalamazoo/button@10.1.3
- @kalamazoo/icon@16.0.4
- @kalamazoo/media-core@27.2.3
- @kalamazoo/media-store@9.2.1
- @kalamazoo/media-ui@9.2.1
- @kalamazoo/media-viewer@37.0.1
- @kalamazoo/media-test-helpers@20.1.7
- @kalamazoo/docs@7.0.0
- @kalamazoo/analytics-next@4.0.0
- @kalamazoo/checkbox@6.0.0
- @kalamazoo/dropdown-menu@7.0.0
- @kalamazoo/field-radio-group@5.0.0
- @kalamazoo/field-range@6.0.0
- @kalamazoo/field-text@8.0.0
- @kalamazoo/spinner@10.0.0
- @kalamazoo/theme@8.0.0
- @kalamazoo/toggle@6.0.0
55.0.1
[patch]d18b085e2a:
- Integrating truly upfront ID
55.0.0
[patch]6bd4c428e2:
- load image preview as soon representation is present instead of waiting for file status to be processed
Updated dependencies 4aee5f3cec:
54.1.0
[minor]eda74c4dce:
- Add shouldOpenMediaViewer + mediaViewerDataSource optional props to Card api to simplify MediaViewer integration
54.0.0
[major]190c4b7bd3:
- Remove Identifier type + related utilities and use the one from media-core
Updated dependencies fc6164c8c2:
53.0.0
[major]46dfcfbeca:
- remove Link support from media-card
52.0.7
[patch]ab6ba14cd3:
- Fix a bug where droping image with EXIF orientation >= 5 end up screwing up proportions for some of the cases
52.0.6
[patch]05c5bf7a93:
- Dont user pointer cursor for external images in Cards
52.0.5
[patch]c415876da9:
- add selected state to InlinePlayer in media-card
52.0.4
- Updated dependencies d5bce1ea15:
52.0.3
[patch]ef469cbb0b:
- MS-357 replaced @kalamazoo/util-shared-styles from media components by @kalamazoo/theme
52.0.2
[patch]0e164e542a:
- MS-1465: Dont fetch file preview if we already have a local one
52.0.1
[patch]1d3e336534:
- Show progress bar while file is uploading
52.0.0
- Updated dependencies 69c8d0c19c:
51.0.3
[patch]a3f8e527aa:
- Take into account if image is on it's side according to orientation tag when deciding how to crop/fit and image
51.0.2
- Updated dependencies 07a187bb30:
51.0.1
- Updated dependencies d7ef59d432:
51.0.0
[patch]b1627a5837:
- Enable inline video player in Editor and Renderer
Updated dependencies 85d5d168fd:
50.0.0
49.0.0
- Updated dependencies cbb8cb5:
48.0.0
[minor]72d37fb:
- Remove deprecated methods from media-core
- Use context.collection methods in MediaViewer
- Remove link support from media-card
- Remove legacy services + providers from media-core
- Remove link related methods from media-core
- Remove axios dependency
- Make context.getImage cancelable
Updated dependencies 72d37fb:
47.0.0
[major]135ed00:
- remove "small" appearance from media-card
46.0.1
[patch]ca16fa9:
- Add SSR support to media components
46.0.0
- Updated dependencies b3738ea:
45.0.0
[minor]b5ab1a5:
- Add stretch as a prop for CardContent and MediaImage; Convert new stretchy-fit resizeMode to stretch=true;
Updated dependencies 80f765b:
44.2.0
[minor]34369e4:
- ED-5888 Add dark mode for media-card
44.1.4
[patch]6f44079:
- ED-5612: make image preview display correctly after replacing Card props
44.1.3
- Updated dependencies 58b84fa:
- @kalamazoo/analytics-next@3.1.2
- @kalamazoo/button@10.1.1
- @kalamazoo/dropdown-menu@6.1.25
- @kalamazoo/field-radio-group@4.0.14
- @kalamazoo/field-range@5.0.12
- @kalamazoo/field-text@7.0.18
- @kalamazoo/icon@15.0.2
- @kalamazoo/spinner@9.0.13
- @kalamazoo/toggle@5.0.14
- @kalamazoo/media-core@24.5.2
- @kalamazoo/media-ui@8.1.2
- @kalamazoo/docs@6.0.0
44.1.2
[patch]676257b:
- Prepare/fix card to be displayed as video inline player in renderer/editor contexts
44.1.1
[patch]5de3574:
- CustomVideoPlayer is now CustomMediaPlayer and supports audio through type property. Media Viewer now uses custom audio player for audio everywhere except IE11.
44.1.0
[minor]c1ea81c:
- use custom video player for inline video in media-card
44.0.2
- Updated dependencies ab9b69c:
44.0.1
- Updated dependencies 6998f11:
- @kalamazoo/docs@5.2.1
- @kalamazoo/analytics-next@3.1.1
- @kalamazoo/dropdown-menu@6.1.22
- @kalamazoo/field-radio-group@4.0.11
- @kalamazoo/field-text@7.0.15
- @kalamazoo/icon@14.6.1
- @kalamazoo/spinner@9.0.11
- @kalamazoo/toggle@5.0.11
- @kalamazoo/media-core@24.5.1
- @kalamazoo/media-ui@7.6.1
- @kalamazoo/field-range@5.0.9
- @kalamazoo/button@10.0.0
- @kalamazoo/analytics-next-types@3.1.2
44.0.0
- Updated dependencies 7e8b4b9:
43.0.0
42.0.0
[major]04c7192:
- remove CardList component from media-card
41.4.0
[minor]abef80b:
- ED-5527: apply max-width: 100% and pass container size to Card as dimension
41.3.0
[minor]4718333:
- Add play icon for video files in MediaCard
41.2.0
[minor][439dde6" d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/439dde6" d):
- rotate local image preview in cards based on the file orientation
41.1.2
- [patch] Updated dependencies ced32d0
41.1.1
- [patch] Override css rules for an image inside a cart 20a15ef
41.1.0
- [minor] Cleanup media + editor integration 🔥 2f9d14d
41.0.2
- [patch] Make image in the card non-draggable 615a536
41.0.1
- [patch] User img tag in cards instead of div with background 22ae8bb
41.0.0
40.0.1
- [patch] Code split media list d101ce1
40.0.0
- [major] Remove support for ApplicationCard 6e510d8
39.0.1
- [patch] Fix bug with download binary 71ebe0b
39.0.0
- [minor] Media-card: allow to download binary when processing failed, add failed-processing to CardStatus; Media-core: add context.file.downloadBinary, add failed-processing to FileStatus; Media-store: add getFileBinaryURL; 2afa60d
- [major] Updated dependencies 2afa60d
38.0.1
- [patch] Add pagination to recents view in MediaPicker 4b3c1f5
38.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
37.0.1
- [patch] Updated dependencies 65c6514
37.0.0
- [major] Add I18n support to media-card dae7792
36.1.1
- [patch] Fix rxjs imports to only import what's needed 2e0ce2b
36.1.0
- [minor] Support external image identifiers in media-card 82c8bb9
36.0.0
35.0.0
- [major] Fix CardView code split + remove private components from public api 1be4bb8
34.1.0
- [minor] Async load media-card modules by default 01416b4
34.0.4
- [patch] Refetch image when the dimensions change a0475c2
34.0.3
- [patch] Revert fix for MS-667 43e601f
34.0.2
- [patch] use new tsconfig for typechecking 09df171
34.0.1
- [patch] Media-card now re-fetches the underlaying image when the dimensions prop changes 59fb6a4
34.0.0
- [major] Updated dependencies 6e1d642
33.0.2
33.0.1
- [patch] use media tsconfig in media-card 3417d76
33.0.0
32.0.6
- [patch] Updated dependencies 911a570
32.0.5
- [patch] Updated dependencies b12f7e6
32.0.4
32.0.3
32.0.2
- [patch] Removing mutational rxjs imports and replace with explicit operators 353f9db
- [patch] Removing mutational rxjs imports and replace with explicit operators 56c2df9
- [none] Updated dependencies 353f9db
- [none] Updated dependencies 56c2df9
32.0.1
- [patch] update the dependency of react-dom to 16.4.2 due to vulnerability in previous versions read https://reactjs.org/blog/2018/08/01/react-v-16-4-2.html for details a4bd557
- [none] Updated dependencies a4bd557
- @kalamazoo/analytics-next-types@3.0.1
- @kalamazoo/tooltip@12.0.5
- @kalamazoo/field-text@7.0.4
- @kalamazoo/analytics-next@3.0.4
- @kalamazoo/toggle@5.0.5
- @kalamazoo/button@9.0.5
- @kalamazoo/lozenge@6.1.4
- @kalamazoo/field-range@5.0.3
- @kalamazoo/badge@9.0.4
- @kalamazoo/spinner@9.0.5
- @kalamazoo/field-radio-group@4.0.4
- @kalamazoo/icon@13.2.4
- @kalamazoo/dropdown-menu@6.1.5
- @kalamazoo/avatar@14.0.6
32.0.0
- [patch] Synchronous property "serviceHost" as part of many Interfaces in media components (like MediaApiConfig) is removed and replaced with asynchronous "baseUrl" as part of Auth object. d02746f
- [major] Updated dependencies d02746f
31.3.0
- [minor] change file image cards background color to transparent 59ccb09
31.2.1
- [patch] Updated dependencies acd86a1
- @kalamazoo/smart-card@7.0.2
- @kalamazoo/media-ui@5.0.2
- @kalamazoo/tooltip@12.0.4
- @kalamazoo/icon@13.2.2
- @kalamazoo/toggle@5.0.4
- @kalamazoo/field-radio-group@4.0.3
- @kalamazoo/button@9.0.4
- @kalamazoo/media-core@22.2.1
- @kalamazoo/media-test-helpers@15.2.1
- @kalamazoo/lozenge@6.1.3
- @kalamazoo/field-range@5.0.2
- @kalamazoo/badge@9.0.3
- @kalamazoo/spinner@9.0.4
- @kalamazoo/field-text@7.0.3
- @kalamazoo/analytics-next@3.0.3
- @kalamazoo/docs@5.0.2
- @kalamazoo/dropdown-menu@6.1.4
- @kalamazoo/avatar@14.0.5
31.2.0
- [minor] expose smart Filmstrip from media-filmstrip 7fa84a2
31.1.1
- [patch] pass mimeType to files in uploads-start event in MediaPicker 3485c00
- [patch] Updated dependencies 3485c00
31.1.0
31.0.0
- [major] Implemented smart cards and common views for other cards fa6f865
- [minor] Implemented smart cards and common UI elements fdd03d8
- [major] Implement smart card 49c8425
- [major] Smart cards implementation and moved UI elements into media-ui package 3476e01
- [major] Updated dependencies fa6f865
- [minor] Updated dependencies fdd03d8
- [major] Updated dependencies 49c8425
- [major] Updated dependencies 3476e01
30.0.1
- [patch] Updated dependencies e6b1985
30.0.0
- [major] Updates to React ^16.4.0 7edb866
- [major] Updated dependencies 563a7eb
- @kalamazoo/tooltip@11.0.0
- @kalamazoo/smart-card@6.0.0
- @kalamazoo/field-text@7.0.0
- @kalamazoo/analytics-next@3.0.0
- @kalamazoo/toggle@5.0.0
- @kalamazoo/button@9.0.0
- @kalamazoo/media-ui@4.0.0
- @kalamazoo/media-core@22.0.0
- @kalamazoo/media-test-helpers@15.0.0
- @kalamazoo/lozenge@6.0.0
- @kalamazoo/field-range@5.0.0
- @kalamazoo/badge@9.0.0
- @kalamazoo/spinner@9.0.0
- @kalamazoo/docs@5.0.0
- @kalamazoo/field-radio-group@4.0.0
- @kalamazoo/icon@13.0.0
- @kalamazoo/dropdown-menu@6.0.0
- @kalamazoo/avatar@14.0.0
- [major] Updated dependencies 7edb866
- @kalamazoo/smart-card@6.0.0
- @kalamazoo/media-ui@4.0.0
- @kalamazoo/media-test-helpers@15.0.0
- @kalamazoo/media-core@22.0.0
- @kalamazoo/analytics-next-types@3.0.0
- @kalamazoo/tooltip@11.0.0
- @kalamazoo/field-text@7.0.0
- @kalamazoo/analytics-next@3.0.0
- @kalamazoo/toggle@5.0.0
- @kalamazoo/button@9.0.0
- @kalamazoo/lozenge@6.0.0
- @kalamazoo/field-range@5.0.0
- @kalamazoo/badge@9.0.0
- @kalamazoo/spinner@9.0.0
- @kalamazoo/docs@5.0.0
- @kalamazoo/field-radio-group@4.0.0
- @kalamazoo/icon@13.0.0
- @kalamazoo/dropdown-menu@6.0.0
- @kalamazoo/avatar@14.0.0
29.1.11
29.1.10
29.1.9
- [patch] Render empty component in CardList when there are no items in the collection 9a1b6a2
29.1.8
- [patch] Updated dependencies 42ee1ea
29.1.7
- [patch] Updated dependencies 8a01bcd
29.1.6
- [patch] Bitbucket images were displaying at 100% of the container, and not respect max-width of the image. ED-4946 370c812
29.1.5
- [patch] Updated dependencies c57e9c1
29.1.4
- [patch] Updated dependencies cdba8b3
29.1.3
- [patch] Updated dependencies 74a0d46
- [patch] Updated dependencies 6c6f078
- [patch] Updated dependencies 5bb26b4
29.1.2
- [patch] Clean Changelogs - remove duplicates and empty entries e7756cd
- [none] Updated dependencies e7756cd
- @kalamazoo/media-ui@3.1.2
- @kalamazoo/media-test-helpers@14.0.3
- @kalamazoo/media-core@19.1.3
- @kalamazoo/tooltip@10.2.1
- @kalamazoo/field-text@6.0.4
- @kalamazoo/button@8.1.2
- @kalamazoo/toggle@4.0.3
- @kalamazoo/lozenge@5.0.4
- @kalamazoo/field-range@4.0.3
- @kalamazoo/spinner@7.0.2
- @kalamazoo/field-radio-group@3.0.4
- @kalamazoo/icon@12.1.2
- @kalamazoo/dropdown-menu@5.0.4
29.1.1
- [patch] Update changelogs to remove duplicate cc58e17
- [none] Updated dependencies cc58e17
- @kalamazoo/smart-card@5.2.1
- @kalamazoo/media-ui@3.1.1
- @kalamazoo/media-test-helpers@14.0.2
- @kalamazoo/media-core@19.1.2
- @kalamazoo/spinner@7.0.1
- @kalamazoo/lozenge@5.0.3
- @kalamazoo/icon@12.1.1
- @kalamazoo/analytics-next@2.1.8
- @kalamazoo/field-radio-group@3.0.3
- @kalamazoo/dropdown-menu@5.0.3
- @kalamazoo/button@8.1.1
- @kalamazoo/badge@8.0.3
- @kalamazoo/avatar@11.1.1
- @kalamazoo/docs@4.1.1
29.1.0
- [patch] Updated dependencies 9d20f54
- @kalamazoo/spinner@7.0.0
- @kalamazoo/smart-card@5.2.0
- @kalamazoo/tooltip@10.2.0
- @kalamazoo/dropdown-menu@5.0.2
- @kalamazoo/avatar@11.1.0
- @kalamazoo/icon@12.1.0
- @kalamazoo/media-ui@3.1.0
- @kalamazoo/toggle@4.0.2
- @kalamazoo/field-radio-group@3.0.2
- @kalamazoo/docs@4.1.0
- @kalamazoo/media-core@19.1.1
- @kalamazoo/media-test-helpers@14.0.1
- @kalamazoo/lozenge@5.0.2
- @kalamazoo/field-text@6.0.2
- @kalamazoo/field-range@4.0.2
- @kalamazoo/badge@8.0.2
- @kalamazoo/analytics-next@2.1.7
- @kalamazoo/button@8.1.0
29.0.3
- [patch] Updated dependencies 2de7ce7
29.0.2
- [patch] Updated dependencies 823caef
29.0.1
- [patch] Updated dependencies 732d2f5
29.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
- @kalamazoo/smart-card@4.0.0
- @kalamazoo/media-ui@3.0.0
- @kalamazoo/media-test-helpers@14.0.0
- @kalamazoo/media-core@19.0.0
- @kalamazoo/tooltip@10.0.0
- @kalamazoo/icon@12.0.0
- @kalamazoo/toggle@4.0.0
- @kalamazoo/field-radio-group@3.0.0
- @kalamazoo/field-text@6.0.0
- @kalamazoo/analytics-next@2.1.4
- @kalamazoo/button@8.0.0
- @kalamazoo/lozenge@5.0.0
- @kalamazoo/field-range@4.0.0
- @kalamazoo/badge@8.0.0
- @kalamazoo/spinner@6.0.0
- @kalamazoo/docs@4.0.0
- @kalamazoo/dropdown-menu@5.0.0
- @kalamazoo/avatar@11.0.0
28.0.6
- [patch] Updated dependencies 1c87e5a
28.0.5
- [patch] Updated dependencies 35d547f
28.0.4
28.0.3
- [patch] Fix Card's defaultProps TS type 527bc9c
28.0.2
- [patch] Remove card's "shown" analytics event 7877ce6
28.0.1
- [patch] Updated dependencies bd26d3c
28.0.0
27.1.4
- [patch] Updated dependencies d662caa
- @kalamazoo/icon@11.3.0
- @kalamazoo/smart-card@3.0.2
- @kalamazoo/media-ui@2.1.1
- @kalamazoo/tooltip@9.2.1
- @kalamazoo/toggle@3.0.2
- @kalamazoo/field-radio-group@2.0.3
- @kalamazoo/field-text@5.0.3
- @kalamazoo/media-test-helpers@12.0.4
- @kalamazoo/media-core@18.0.3
- @kalamazoo/analytics-next@2.1.1
- @kalamazoo/dropdown-menu@4.0.3
- @kalamazoo/button@7.2.5
- @kalamazoo/field-range@3.0.2
- @kalamazoo/badge@7.1.2
- @kalamazoo/spinner@5.0.2
- @kalamazoo/avatar@10.0.6
- @kalamazoo/docs@3.0.4
- @kalamazoo/lozenge@4.0.1
27.1.3
- [patch] Renamed smart card components and exposed inline smart card views 1094bb6
- [patch] Updated dependencies 1094bb6
27.1.2
27.1.0
- [minor] Added "disableOverlay" prop to Card and CardView public API 533d085
27.0.4
- [patch] hide link items from CardList (Sidebard) dd2c7e7
27.0.3
- [patch] Turn side effects to true due to rxjs operators imports 668f01c
- [patch] Turn side effects to true due to rxjs operators imports 5eddd49
27.0.2
- [patch] remove polished dependency 0e54c69
26.0.1
- [patch] Added missing dependencies and added lint rule to catch them all 0672503
26.0.0
- [major] Bump to React 16.3. 4251858
25.2.0
- [minor] use local preview in MediaCard when available b33788b
25.1.6
- [patch] Fix typo and potential memory leak 6ecc601
25.1.5
- [patch] Add "sideEffects: false" to AKM2 packages to allow consumer's to tree-shake c3b018a
25.1.3
- [patch] Fix/revert TS TDs in analytics-next 1284d32
25.1.2
- [patch] ED-4030 Don't reload Image cards again after upload is done 9aff937
25.1.0
- [minor] Add analytics events for click and show actions of media-card 031d5da
- [minor] Add analytics events for click and show actions of media-card b361185
25.0.0
- [major] icons are now assignable to card actions, which will cause media cards to render upto 2 icon buttons, or a dropdown menu if more than 2 actions are set 649871c
24.1.6
- [patch] added a cursor to application cards when the onClick property is passed 97cb9c2
24.1.5
- [patch] Remove TS types that requires styled-components v3 836e53b
24.1.3
- [patch] Add key as an optional parameter to applicationCard actions 28be081
24.1.2
- [patch] fix issues with ellipsing of new smart-card designs ec2bed9
24.1.0
- [minor] Update styled-components dependency to support versions 1.4.6 - 3 ceccf30
24.0.6
- [patch] Introduce media-ui package 39579e2
24.0.5
- [patch] fix new smart-card design which is showing the dropdown below consecutive smart-cards 5574b67
- [patch] fix issue with smart-card dropdown being hidden behind successive cards in new designs ff01687
24.0.4
- [patch] updated the repository url to https://bitbucket.org/atlassian/atlaskit-mk-2 1e57e5a
24.0.3
- [patch] fixed issue where clicking on smart-card try-again and cancel links would trigger onClick 1e575b3
24.0.2
- [patch] added missing smart-card action states 3f7536e
23.2.2
- [patch] Migrate Navigation from Ak repo to ak mk 2 repo, Fixed flow typing inconsistencies in ak mk 2 bdeef5b
23.2.1
- [patch] added an offset to load lazily loaded cards earlier d1d891c
23.2.0
- [minor] Add React 16 support. 12ea6e4
23.1.1
- [patch] Update dependencies 623f8ca
23.1.0
- [minor] Added new AppCardView v1.5 designs behind a feature flag. 92bc6c8
23.0.2
- [patch] Make Card to work with pixel units dedba4f
23.0.1
- [patch] Make Card to work properly with pixel units 69c6443
- [patch] Dont use default dimensions for link cards ae94181
23.0.0
- [major] Bump media-core peer dependency to next major versoin (12) 0a84f90
22.4.2
- [patch] fix z-index issue for app cards d2e05ae
22.4.1
- [patch] Use default dimensions in CardView when dimensions are not provided d07f3f8
22.4.0
- [minor] make Card and CardView to work properly when percetanges are passed as dimensions 3178808
22.3.0
- [minor] Update signature onClick event on filmstrip (renderer) 30bdfcc
- [minor] Update signature onClick event on filmstrip (renderer) dbced25
- [minor] Update signature onClick event on filmstrip (renderer) 7ee4743
22.2.7
- [patch] fix lazy-loading of cards when scrolling up 868505d
22.2.6
- [patch] Show static images for gifs in small cards e2508f9
- [patch] Show static images for gifs in small cards e2508f9
22.2.5
- [patch] Fixed hover state for link media-cards in renderer 05ae05d
22.2.3
- [patch] Bumping dependency on docs (from a failed build) 6949056
22.2.1
- [patch] Migrated to the new repo and updated dependencies f76434e
2.1.1 (2017-09-18)
- bug fix; update media-core and media-test-helpers version (00108cf)
2.1.0 (2017-08-11)
- feature; bump :allthethings: (f4b1375)
2.0.1 (2017-07-25)
- fix; use class transform in loose mode in babel to improve load performance in apps (fde719a)