Questions tagged [atlaskit]

Atlaskit is the Atlassian UI library. Use for questions about using this toolkit.

Atlassian's official UI library, built according to the Atlassian Design Guidelines.

Atlaskit Website

33 questions
1
vote
0 answers

Atlaskit datePicker hidden by the container div

I am using atlaskit date picker and DateTime picker. I am facing issue with position datePicker hidden by the container div. atlaskit/datetime-picker - version 10.0.1 Reactjs - 16.13.0
Manju Prem
  • 49
  • 9
1
vote
1 answer

How to specify a custom Media Client in Atlaskit especially @atlaskit/editor-core

I'm trying to use @atlaskit/editor-core in my own project and want to specify my own Fileserver/MediaClient. Atlassian does provide a function, where I could mock the client and instead of really mocking it injecting my own client this way... but is…
1
vote
0 answers

onclick is not working inside map function

I am trying to call onClick function on DropdownItem, it's working outside of map function but inside map function it's not working without any errors . How to implement that? ReactJs and Atlaskit packages I have used.
Parvin
  • 71
  • 4
1
vote
1 answer

Issues with state-changes in submit method of AtlasKit Form

In the submit method of an Atlaskit Form, I want to change a value of a state property that results in the form being hidden:
{ return new Promise(resolve => { setShowForm(false); resolve(); }) …
Eindbaas
  • 945
  • 1
  • 8
  • 16
1
vote
1 answer

How to submit @atlaskit/form remotely

I want to submit a @atlaskit/form from the button outside the form. I have gone through https://atlaskit.atlassian.com/packages/core/form but no documentation regarding this
Shiv
  • 199
  • 5
  • 16
1
vote
0 answers

Why does node dependency of my dependency can't be resolved?

I try to use node dependency @atlaskit/editor-core@^87.6.7, but there is a problem with its dependency, @atlaskit/adf-utils. I tried to add explicitly @atlaskit/adf-utils as dependency but it doesn't help. I can see adf-utils in my node_modules.…
Paweł Albecki
  • 223
  • 3
  • 9
0
votes
0 answers

Safari double input focus

We're developing a Jira app and ran into an issue in Safari. When the user opens a modal, the first input gets focused (which is the intended behavior of Atlaskit's modal) then about 200-300ms later the input gets focused again. This can result in…
Laci556
  • 123
  • 8
0
votes
1 answer

How to trigger a cancel event on inline edit view of atlaskit?

I'm trying to programmatically trigger a onCancel event on Inline edit view component of Atlaskit, But I couldn't find any API docs where I can trigger on cancel event on this inline component. import React from 'react'; import styled from…
0
votes
1 answer

How to implement real time collaboration in atlaskit editor?

I am trying to use the Editor Component of Atlaskit to create a real time WYSIWYG editor however there is no proper documentation to get things done I am confused at the collabEdit part, React gives an error: cannot resolve CollabProvider, what…
0
votes
0 answers

popper.js Offsets separated by white space(s) are deprecated, use a comma (,) instead

I am having this error in my console every time I open the dropdown from this package @atlaskit/dropdown-menu and my error is this one: popper.js: Offsets separated by white space(s) are deprecated, use a comma (,) instead. Thank you so much I went…
0
votes
0 answers

"@atlaskit/tooltip" does not work with Next.js

I'm using "@atlaskit/tooltip" with Next.js. The reproduction code is simple. // index.js import React from 'react'; import Button from '@atlaskit/button'; import Tooltip from '@atlaskit/tooltip'; export default () => (
Jim Jin
  • 1,249
  • 1
  • 15
  • 28
0
votes
2 answers

How to se defaultValue for AtlasKit editor/editor-core?

I'm trying to get a simple controlled component going that outputs a string of html and takes in a string of html. Unfortunately atlaskit team turned off issues in the repo. I see this link on google, but can't actually see it on bitbucket (sigh):…
A.com
  • 1,466
  • 4
  • 19
  • 31
0
votes
1 answer

Submit checked Atlaskit Dropdown(@atlaskit/dropdown-menu) menu checkboxes on Item click

I am using @atlaskit/dropdown-menu (https://atlaskit.atlassian.com/packages/core/dropdown-menu). I would like to submit a small form on Item click, I need to submit values of DropdownItemCheckbox. Here is a code to render needed components:…
0
votes
1 answer

How to access the list of selected DropdownItemCheckboxes in @atlaskit/dropdown-menu

There is no documentation or examples for DropdownMenu which show how to obtain and react to modifications to the state of DropdownItemCheckbox items. Some of the relevant features seem to have been deprecated. How is this done now? I would like the…
Simon Gibbs
  • 4,737
  • 6
  • 50
  • 80
0
votes
1 answer

How to open and close an inline dialog in a react redux app

I have a working inline dialog using react state. The working code is below. import React, { PureComponent } from 'react'; import { render } from 'react-dom'; import PropTypes from 'prop-types'; import Button from '@atlaskit/button'; import…