@atlaskit/logo 13.13.0 → 13.14.1

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,21 @@
1
1
  # @atlaskit/logo
2
2
 
3
+ ## 13.14.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
8
+
9
+ ## 13.14.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies
18
+
3
19
  ## 13.13.0
4
20
 
5
21
  ### Minor Changes
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/wrapper.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/wrapper.d.ts"
11
+ "../dist/types-ts4.5/wrapper.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/atlas-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/atlas-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/atlas-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/atlassian-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/atlassian-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/atlassian-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/bitbucket-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/bitbucket-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/bitbucket-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/confluence-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/confluence-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/confluence-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/constants.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/constants.d.ts"
11
+ "../dist/types-ts4.5/constants.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/logo",
3
- "version": "13.13.0",
3
+ "version": "13.14.1",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/logo",
3
- "version": "13.13.0",
3
+ "version": "13.14.1",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/logo",
3
- "version": "13.13.0",
3
+ "version": "13.14.1",
4
4
  "sideEffects": false
5
5
  }
@@ -7,7 +7,7 @@ export declare const defaultLogoParams: Partial<LogoProps>;
7
7
  /**
8
8
  * The props for the <Wrapper /> that takes the svg and turns it into a component.
9
9
  */
10
- export declare type WrapperProps = LogoProps & {
10
+ export type WrapperProps = LogoProps & {
11
11
  svg: string;
12
12
  };
13
13
  export declare const sizes: {
@@ -30,7 +30,7 @@ export declare const sizes: {
30
30
  /**
31
31
  * @deprecated {@link https://hello.atlassian.net/browse/ENGHEALTH-175 Internal documentation for deprecation (no external access)} This has been renamed, please import `LogoProps` instead.
32
32
  */
33
- export declare type Props = LogoProps;
33
+ export type Props = LogoProps;
34
34
  /**
35
35
  * @deprecated {@link https://hello.atlassian.net/browse/ENGHEALTH-176 Internal documentation for deprecation (no external access)} This has been renamed, please import `defaultLogoParams` instead.
36
36
  */
@@ -1,6 +1,6 @@
1
- export declare type Appearance = 'brand' | 'neutral' | 'inverse';
2
- export declare type Size = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
3
- export declare type LogoProps = {
1
+ export type Appearance = 'brand' | 'neutral' | 'inverse';
2
+ export type Size = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
3
+ export type LogoProps = {
4
4
  /**
5
5
  * The size of the icon, uses the same sizing scheme as in `@atlaskit/icon`.
6
6
  */
@@ -40,8 +40,8 @@ export declare type LogoProps = {
40
40
  * Utility type to make an optional property required.
41
41
  * We use this to force new logos to use the appearance prop while older ones go through the deprecation process.
42
42
  */
43
- declare type WithRequiredProperty<Type, Key extends keyof Type> = Type & {
43
+ type WithRequiredProperty<Type, Key extends keyof Type> = Type & {
44
44
  [Property in Key]-?: Type[Property];
45
45
  };
46
- export declare type LogoPropsAppearanceRequired = Omit<WithRequiredProperty<LogoProps, 'appearance'>, 'iconColor' | 'iconGradientStart' | 'iconGradientStop' | 'textColor'>;
46
+ export type LogoPropsAppearanceRequired = Omit<WithRequiredProperty<LogoProps, 'appearance'>, 'iconColor' | 'iconGradientStart' | 'iconGradientStop' | 'textColor'>;
47
47
  export {};
@@ -1,4 +1,4 @@
1
- export declare const getColorsFromAppearance: (appearance?: string | undefined) => {
1
+ export declare const getColorsFromAppearance: (appearance?: string) => {
2
2
  iconGradientStart: string | undefined;
3
3
  iconGradientStop: string | undefined;
4
4
  iconColor: string | undefined;
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/hipchat-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/hipchat-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/hipchat-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/jira-core-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/jira-core-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/jira-core-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/jira-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/jira-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/jira-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/jira-service-desk-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/jira-service-desk-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/jira-service-desk-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/jira-service-management-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/jira-service-management-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/jira-service-management-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/jira-software-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/jira-software-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/jira-software-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/jira-service-desk-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/jira-service-desk-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/jira-service-desk-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/opsgenie-logo/old-icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/opsgenie-logo/old-icon.d.ts"
11
+ "../dist/types-ts4.5/opsgenie-logo/old-icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/logo",
3
- "version": "13.13.0",
3
+ "version": "13.14.1",
4
4
  "description": "A logo is a visual representation of a brand or product. It can be a word or an image, or a combination of both.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -12,6 +12,14 @@
12
12
  "module": "dist/esm/index.js",
13
13
  "module:es2019": "dist/es2019/index.js",
14
14
  "types": "dist/types/index.d.ts",
15
+ "typesVersions": {
16
+ ">=4.5 <4.9": {
17
+ "*": [
18
+ "dist/types-ts4.5/*",
19
+ "dist/types-ts4.5/index.d.ts"
20
+ ]
21
+ }
22
+ },
15
23
  "sideEffects": false,
16
24
  "atlaskit:src": "src/index.tsx",
17
25
  "atlassian": {
@@ -43,9 +51,9 @@
43
51
  ".": "./src/index.tsx"
44
52
  },
45
53
  "dependencies": {
46
- "@atlaskit/ds-lib": "^2.1.0",
47
- "@atlaskit/theme": "^12.4.0",
48
- "@atlaskit/tokens": "^1.2.0",
54
+ "@atlaskit/ds-lib": "^2.2.0",
55
+ "@atlaskit/theme": "^12.5.0",
56
+ "@atlaskit/tokens": "^1.4.0",
49
57
  "@babel/runtime": "^7.0.0",
50
58
  "@emotion/react": "^11.7.1",
51
59
  "react-uid": "^2.2.0"
@@ -54,20 +62,20 @@
54
62
  "react": "^16.8.0"
55
63
  },
56
64
  "devDependencies": {
57
- "@atlaskit/atlassian-navigation": "^2.4.0",
58
- "@atlaskit/button": "^16.6.0",
59
- "@atlaskit/code": "^14.5.0",
65
+ "@atlaskit/atlassian-navigation": "^2.5.0",
66
+ "@atlaskit/button": "^16.7.0",
67
+ "@atlaskit/code": "^14.6.0",
60
68
  "@atlaskit/docs": "*",
61
- "@atlaskit/radio": "^5.4.0",
62
- "@atlaskit/section-message": "^6.3.0",
63
- "@atlaskit/select": "^16.1.0",
69
+ "@atlaskit/radio": "^5.5.0",
70
+ "@atlaskit/section-message": "^6.4.0",
71
+ "@atlaskit/select": "^16.2.0",
64
72
  "@atlaskit/ssr": "*",
65
73
  "@atlaskit/visual-regression": "*",
66
74
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
67
75
  "@testing-library/react": "^12.1.5",
68
76
  "jscodeshift": "^0.13.0",
69
77
  "react-dom": "^16.8.0",
70
- "typescript": "4.5.5"
78
+ "typescript": "~4.9.5"
71
79
  },
72
80
  "techstack": {
73
81
  "@atlassian/frontend": {
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/statuspage-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/statuspage-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/statuspage-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/stride-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/stride-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/stride-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }
@@ -6,9 +6,9 @@
6
6
  "sideEffects": false,
7
7
  "types": "../dist/types/trello-logo/icon.d.ts",
8
8
  "typesVersions": {
9
- ">=4.0 <4.5": {
9
+ ">=4.5 <4.9": {
10
10
  "*": [
11
- "../dist/types-ts4.0/trello-logo/icon.d.ts"
11
+ "../dist/types-ts4.5/trello-logo/icon.d.ts"
12
12
  ]
13
13
  }
14
14
  }