@atlaskit/quiz-widget 3.0.21 → 3.0.23

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,17 @@
1
1
  # @atlaskit/quiz-widget
2
2
 
3
+ ## 3.0.23
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 3.0.22
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 3.0.21
4
16
 
5
17
  ### Patch Changes
@@ -12,7 +12,7 @@ var _styled = _interopRequireDefault(require("@emotion/styled"));
12
12
  var Quiz = exports.Quiz = _styled.default.div({
13
13
  display: 'flex',
14
14
  flexDirection: 'column',
15
- font: "var(--ds-font-body-large, normal 400 16px/24px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
15
+ font: "var(--ds-font-body-large, normal 400 16px/24px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
16
16
  width: '100%',
17
17
  padding: "var(--ds-space-250, 20px)".concat(" ", "var(--ds-space-400, 32px)", " ", "var(--ds-space-250, 20px)", " 0"),
18
18
  border: "var(--ds-border-width, 1px)".concat(" solid grey"),
@@ -24,7 +24,7 @@ var Quiz = exports.Quiz = _styled.default.div({
24
24
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
25
25
  var QuizName = exports.QuizName = _styled.default.div({
26
26
  margin: '3px 0',
27
- font: "var(--ds-font-heading-large, normal 500 24px/28px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
27
+ font: "var(--ds-font-heading-large, normal 653 24px/28px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
28
28
  paddingLeft: "var(--ds-space-250, 20px)"
29
29
  });
30
30
 
@@ -56,7 +56,7 @@ var Footer = exports.Footer = _styled.default.div({
56
56
  var Question = exports.Question = _styled.default.div({
57
57
  paddingLeft: "var(--ds-space-075, 6px)",
58
58
  marginBottom: "var(--ds-space-150, 12px)",
59
- font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
59
+ font: "var(--ds-font-body, normal 400 14px/20px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
60
60
  color: '#707070',
61
61
  textAlign: 'left'
62
62
  });
@@ -75,7 +75,7 @@ var NavQuiz = exports.NavQuiz = _styled.default.div({
75
75
 
76
76
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
77
77
  var NavAction = exports.NavAction = _styled.default.span({
78
- font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
78
+ font: "var(--ds-font-body, normal 400 14px/20px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
79
79
  fontWeight: "var(--ds-font-weight-medium, 500)",
80
80
  display: 'flex',
81
81
  alignItems: 'center'
@@ -4,7 +4,7 @@ import styled from '@emotion/styled';
4
4
  export const Quiz = styled.div({
5
5
  display: 'flex',
6
6
  flexDirection: 'column',
7
- font: "var(--ds-font-body-large, normal 400 16px/24px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
7
+ font: "var(--ds-font-body-large, normal 400 16px/24px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
8
8
  width: '100%',
9
9
  padding: `${"var(--ds-space-250, 20px)"} ${"var(--ds-space-400, 32px)"} ${"var(--ds-space-250, 20px)"} 0`,
10
10
  border: `${"var(--ds-border-width, 1px)"} solid grey`,
@@ -16,7 +16,7 @@ export const Quiz = styled.div({
16
16
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
17
17
  export const QuizName = styled.div({
18
18
  margin: '3px 0',
19
- font: "var(--ds-font-heading-large, normal 500 24px/28px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
19
+ font: "var(--ds-font-heading-large, normal 653 24px/28px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
20
20
  paddingLeft: "var(--ds-space-250, 20px)"
21
21
  });
22
22
 
@@ -48,7 +48,7 @@ export const Footer = styled.div({
48
48
  export const Question = styled.div({
49
49
  paddingLeft: "var(--ds-space-075, 6px)",
50
50
  marginBottom: "var(--ds-space-150, 12px)",
51
- font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
51
+ font: "var(--ds-font-body, normal 400 14px/20px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
52
52
  color: '#707070',
53
53
  textAlign: 'left'
54
54
  });
@@ -67,7 +67,7 @@ export const NavQuiz = styled.div({
67
67
 
68
68
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
69
69
  export const NavAction = styled.span({
70
- font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
70
+ font: "var(--ds-font-body, normal 400 14px/20px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
71
71
  fontWeight: "var(--ds-font-weight-medium, 500)",
72
72
  display: 'flex',
73
73
  alignItems: 'center'
@@ -4,7 +4,7 @@ import styled from '@emotion/styled';
4
4
  export var Quiz = styled.div({
5
5
  display: 'flex',
6
6
  flexDirection: 'column',
7
- font: "var(--ds-font-body-large, normal 400 16px/24px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
7
+ font: "var(--ds-font-body-large, normal 400 16px/24px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
8
8
  width: '100%',
9
9
  padding: "var(--ds-space-250, 20px)".concat(" ", "var(--ds-space-400, 32px)", " ", "var(--ds-space-250, 20px)", " 0"),
10
10
  border: "var(--ds-border-width, 1px)".concat(" solid grey"),
@@ -16,7 +16,7 @@ export var Quiz = styled.div({
16
16
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
17
17
  export var QuizName = styled.div({
18
18
  margin: '3px 0',
19
- font: "var(--ds-font-heading-large, normal 500 24px/28px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
19
+ font: "var(--ds-font-heading-large, normal 653 24px/28px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
20
20
  paddingLeft: "var(--ds-space-250, 20px)"
21
21
  });
22
22
 
@@ -48,7 +48,7 @@ export var Footer = styled.div({
48
48
  export var Question = styled.div({
49
49
  paddingLeft: "var(--ds-space-075, 6px)",
50
50
  marginBottom: "var(--ds-space-150, 12px)",
51
- font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
51
+ font: "var(--ds-font-body, normal 400 14px/20px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
52
52
  color: '#707070',
53
53
  textAlign: 'left'
54
54
  });
@@ -67,7 +67,7 @@ export var NavQuiz = styled.div({
67
67
 
68
68
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-styled, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
69
69
  export var NavAction = styled.span({
70
- font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
70
+ font: "var(--ds-font-body, normal 400 14px/20px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
71
71
  fontWeight: "var(--ds-font-weight-medium, 500)",
72
72
  display: 'flex',
73
73
  alignItems: 'center'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/quiz-widget",
3
- "version": "3.0.21",
3
+ "version": "3.0.23",
4
4
  "description": "A React component that gives a possibility to pass quizzes",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,11 +32,11 @@
32
32
  "atlaskit:src": "src/index.ts",
33
33
  "dependencies": {
34
34
  "@atlaskit/button": "^23.9.0",
35
- "@atlaskit/icon": "^29.4.0",
36
- "@atlaskit/primitives": "^17.1.0",
35
+ "@atlaskit/icon": "^30.0.0",
36
+ "@atlaskit/primitives": "^18.0.0",
37
37
  "@atlaskit/radio": "^8.4.0",
38
38
  "@atlaskit/spinner": "^19.0.0",
39
- "@atlaskit/tokens": "^10.0.0",
39
+ "@atlaskit/tokens": "^11.0.0",
40
40
  "@babel/runtime": "^7.0.0",
41
41
  "@emotion/styled": "^11.0.0"
42
42
  },