@atlaskit/media-avatar-picker 24.3.9 → 24.3.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @atlaskit/media-avatar-picker
2
2
 
3
+ ## 24.3.11
4
+
5
+ ### Patch Changes
6
+
7
+ - [`f64b71e6a69`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f64b71e6a69) - [ux] [MEX-2586] Bug fix: prevent the entire page from scrolling when opening the list of predefined avatars from media avatar picker
8
+ - Updated dependencies
9
+
10
+ ## 24.3.10
11
+
12
+ ### Patch Changes
13
+
14
+ - [`3322bd8d915`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3322bd8d915) - fix the atlaskit:src path
15
+
3
16
  ## 24.3.9
4
17
 
5
18
  ### Patch Changes
@@ -7,7 +7,7 @@ exports.visuallyHiddenRadioStyles = exports.selectedShadow = exports.focusedShad
7
7
  var _colors = require("@atlaskit/theme/colors");
8
8
  var avatarImageStyles = "\n border-radius: ".concat("var(--ds-border-radius-100, 3px)", ";\n cursor: pointer;\n");
9
9
  exports.avatarImageStyles = avatarImageStyles;
10
- var visuallyHiddenRadioStyles = "\n width: 1px;\n height: 1px;\n padding: 0;\n position: absolute;\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n overflow: hidden;\n white-space: nowrap;\n";
10
+ var visuallyHiddenRadioStyles = "\n width: 1px;\n height: 1px;\n padding: 0;\n position: fixed;\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n overflow: hidden;\n white-space: nowrap;\n";
11
11
  exports.visuallyHiddenRadioStyles = visuallyHiddenRadioStyles;
12
12
  var selectedShadow = "box-shadow: 0px 0px 0px 1px ".concat("var(--ds-border-inverse, white)", ", 0px 0px 0px 3px ", "var(--ds-border-selected, ".concat(_colors.B200, ")"), ";");
13
13
  exports.selectedShadow = selectedShadow;
@@ -7,7 +7,7 @@ export const visuallyHiddenRadioStyles = `
7
7
  width: 1px;
8
8
  height: 1px;
9
9
  padding: 0;
10
- position: absolute;
10
+ position: fixed;
11
11
  border: 0;
12
12
  clip: rect(1px, 1px, 1px, 1px);
13
13
  overflow: hidden;
@@ -1,5 +1,5 @@
1
1
  import { B200, B100 } from '@atlaskit/theme/colors';
2
2
  export var avatarImageStyles = "\n border-radius: ".concat("var(--ds-border-radius-100, 3px)", ";\n cursor: pointer;\n");
3
- export var visuallyHiddenRadioStyles = "\n width: 1px;\n height: 1px;\n padding: 0;\n position: absolute;\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n overflow: hidden;\n white-space: nowrap;\n";
3
+ export var visuallyHiddenRadioStyles = "\n width: 1px;\n height: 1px;\n padding: 0;\n position: fixed;\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n overflow: hidden;\n white-space: nowrap;\n";
4
4
  export var selectedShadow = "box-shadow: 0px 0px 0px 1px ".concat("var(--ds-border-inverse, white)", ", 0px 0px 0px 3px ", "var(--ds-border-selected, ".concat(B200, ")"), ";");
5
5
  export var focusedShadow = "box-shadow: 0px 0px 0px 1px ".concat("var(--ds-border-inverse, white)", ", 0px 0px 0px 3px ", "var(--ds-border-focused, ".concat(B100, ")"), ";");
@@ -1,4 +1,4 @@
1
1
  export declare const avatarImageStyles: string;
2
- export declare const visuallyHiddenRadioStyles = "\n width: 1px;\n height: 1px;\n padding: 0;\n position: absolute;\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n overflow: hidden;\n white-space: nowrap;\n";
2
+ export declare const visuallyHiddenRadioStyles = "\n width: 1px;\n height: 1px;\n padding: 0;\n position: fixed;\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n overflow: hidden;\n white-space: nowrap;\n";
3
3
  export declare const selectedShadow: string;
4
4
  export declare const focusedShadow: string;
@@ -1,4 +1,4 @@
1
1
  export declare const avatarImageStyles: string;
2
- export declare const visuallyHiddenRadioStyles = "\n width: 1px;\n height: 1px;\n padding: 0;\n position: absolute;\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n overflow: hidden;\n white-space: nowrap;\n";
2
+ export declare const visuallyHiddenRadioStyles = "\n width: 1px;\n height: 1px;\n padding: 0;\n position: fixed;\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n overflow: hidden;\n white-space: nowrap;\n";
3
3
  export declare const selectedShadow: string;
4
4
  export declare const focusedShadow: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/media-avatar-picker",
3
- "version": "24.3.9",
3
+ "version": "24.3.11",
4
4
  "description": "A component to select, drag and resize image avatars. It also provides a default list of predefined avatars.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -21,7 +21,7 @@
21
21
  }
22
22
  },
23
23
  "sideEffects": false,
24
- "atlaskit:src": "src/index.ts",
24
+ "atlaskit:src": "src/index.tsx",
25
25
  "af:exports": {
26
26
  ".": "./src/index.tsx"
27
27
  },
@@ -34,15 +34,15 @@
34
34
  }
35
35
  },
36
36
  "dependencies": {
37
- "@atlaskit/button": "^16.9.0",
37
+ "@atlaskit/button": "^16.10.0",
38
38
  "@atlaskit/flag": "^15.2.0",
39
39
  "@atlaskit/icon": "^21.12.0",
40
40
  "@atlaskit/media-ui": "^24.0.0",
41
41
  "@atlaskit/modal-dialog": "^12.6.0",
42
42
  "@atlaskit/range": "^7.1.0",
43
43
  "@atlaskit/spinner": "^15.5.0",
44
- "@atlaskit/theme": "^12.5.0",
45
- "@atlaskit/tokens": "^1.18.0",
44
+ "@atlaskit/theme": "^12.6.0",
45
+ "@atlaskit/tokens": "^1.21.0",
46
46
  "@atlaskit/visually-hidden": "^1.2.0",
47
47
  "@babel/runtime": "^7.0.0",
48
48
  "exenv": "^1.2.2"