@atlaskit/logo 13.12.1 → 13.13.0

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.
@@ -0,0 +1,2 @@
1
+ export { AtlasIcon } from './icon';
2
+ export { AtlasLogo } from './logo';
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ import { LogoPropsAppearanceRequired } from '../types';
3
+ /**
4
+ * __Atlas logo__
5
+ *
6
+ * The Atlas logo with both the wordmark and the icon combined.
7
+ *
8
+ * - [Examples](https://atlassian.design/components/logo/examples)
9
+ * - [Code](https://atlassian.design/components/logo/code)
10
+ * - [Usage](https://atlassian.design/components/logo/usage)
11
+ */
12
+ export declare const AtlasLogo: ({ appearance, label, size, testId, }: LogoPropsAppearanceRequired) => JSX.Element;
@@ -19,3 +19,4 @@ export { OpsGenieIcon, OpsGenieLogo, OpsGenieWordmark, OpsgenieIcon, OpsgenieLog
19
19
  export { StatuspageIcon, StatuspageLogo, StatuspageWordmark, } from './statuspage-logo';
20
20
  export { StrideIcon, StrideLogo, StrideWordmark } from './stride-logo';
21
21
  export { TrelloIcon, TrelloLogo, TrelloWordmark } from './trello-logo';
22
+ export { AtlasIcon, AtlasLogo } from './atlas-logo';
@@ -1,3 +1,3 @@
1
1
  export { TrelloIcon } from './icon';
2
- export { TrelloLogo } from './logo';
2
+ export { AtlasLogo as TrelloLogo } from './logo';
3
3
  export { TrelloWordmark } from './wordmark';
@@ -9,4 +9,4 @@ import { LogoProps } from '../types';
9
9
  * - [Code](https://atlassian.design/components/logo/code)
10
10
  * - [Usage](https://atlassian.design/components/logo/usage)
11
11
  */
12
- export declare const TrelloLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
12
+ export declare const AtlasLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
@@ -43,5 +43,5 @@ export declare type LogoProps = {
43
43
  declare type WithRequiredProperty<Type, Key extends keyof Type> = Type & {
44
44
  [Property in Key]-?: Type[Property];
45
45
  };
46
- export declare type LogoPropsAppearanceRequired = WithRequiredProperty<LogoProps, 'appearance'>;
46
+ export declare type LogoPropsAppearanceRequired = Omit<WithRequiredProperty<LogoProps, 'appearance'>, 'iconColor' | 'iconGradientStart' | 'iconGradientStop' | 'textColor'>;
47
47
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/logo",
3
- "version": "13.12.1",
3
+ "version": "13.13.0",
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/"
@@ -37,6 +37,7 @@
37
37
  "./statuspage-icon": "./src/statuspage-logo/icon.tsx",
38
38
  "./stride-icon": "./src/stride-logo/icon.tsx",
39
39
  "./trello-icon": "./src/trello-logo/icon.tsx",
40
+ "./atlas-icon": "./src/atlas-logo/icon.tsx",
40
41
  "./constants": "./src/constants.tsx",
41
42
  "./Wrapper": "./src/wrapper.tsx",
42
43
  ".": "./src/index.tsx"