@toptal/picasso-application-update-notification 1.0.5 → 1.0.6

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.
@@ -1,8 +1,8 @@
1
- import { ApplicationUpdateNotification } from '../ApplicationUpdateNotification';
2
- import { ApplicationUpdateNotificationActions } from '../ApplicationUpdateNotificationActions';
3
- declare type ApplicationUpdateNotificationCompoundType = typeof ApplicationUpdateNotification & {
4
- Actions: typeof ApplicationUpdateNotificationActions;
1
+ /// <reference types="react" />
2
+ export declare const ApplicationUpdateNotificationCompound: import("react").ForwardRefExoticComponent<import("../ApplicationUpdateNotification").ApplicationUpdateNotificationProps & import("react").RefAttributes<HTMLElement>> & {
3
+ Actions: {
4
+ ({ justifyContent, alignItems, children, }: import("../ApplicationUpdateNotificationActions").ApplicationUpdateNotificationActionsProps): JSX.Element;
5
+ displayName: string;
6
+ };
5
7
  };
6
- export declare const ApplicationUpdateNotificationCompound: ApplicationUpdateNotificationCompoundType;
7
- export {};
8
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ApplicationUpdateNotificationCompound/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAA;AAChF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAA;AAE9F,aAAK,yCAAyC,GAC5C,OAAO,6BAA6B,GAAG;IACrC,OAAO,EAAE,OAAO,oCAAoC,CAAA;CACrD,CAAA;AAEH,eAAO,MAAM,qCAAqC,EAAE,yCAGhD,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ApplicationUpdateNotificationCompound/index.ts"],"names":[],"mappings":";AAGA,eAAO,MAAM,qCAAqC;;;;;CAKjD,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/ApplicationUpdateNotificationCompound/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAA;AAChF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAA;AAO9F,MAAM,CAAC,MAAM,qCAAqC,GAChD,MAAM,CAAC,MAAM,CAAC,6BAA6B,EAAE;IAC3C,OAAO,EAAE,oCAAoC;CAC9C,CAAC,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/ApplicationUpdateNotificationCompound/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,6BAA6B,EAAE,MAAM,kCAAkC,CAAA;AAChF,OAAO,EAAE,oCAAoC,EAAE,MAAM,yCAAyC,CAAA;AAE9F,MAAM,CAAC,MAAM,qCAAqC,GAAG,MAAM,CAAC,MAAM,CAChE,6BAA6B,EAC7B;IACE,OAAO,EAAE,oCAAoC;CAC9C,CACF,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/picasso-application-update-notification",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Toptal UI components library - ApplicationUpdateNotification",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "homepage": "https://github.com/toptal/picasso/tree/master/packages/picasso#readme",
24
24
  "dependencies": {
25
- "@toptal/picasso-button": "1.0.5",
25
+ "@toptal/picasso-button": "1.0.6",
26
26
  "@toptal/picasso-container": "1.0.2",
27
27
  "@toptal/picasso-icons": "1.0.2",
28
28
  "@toptal/picasso-typography": "1.0.2",
@@ -1,12 +1,9 @@
1
1
  import { ApplicationUpdateNotification } from '../ApplicationUpdateNotification'
2
2
  import { ApplicationUpdateNotificationActions } from '../ApplicationUpdateNotificationActions'
3
3
 
4
- type ApplicationUpdateNotificationCompoundType =
5
- typeof ApplicationUpdateNotification & {
6
- Actions: typeof ApplicationUpdateNotificationActions
7
- }
8
-
9
- export const ApplicationUpdateNotificationCompound: ApplicationUpdateNotificationCompoundType =
10
- Object.assign(ApplicationUpdateNotification, {
4
+ export const ApplicationUpdateNotificationCompound = Object.assign(
5
+ ApplicationUpdateNotification,
6
+ {
11
7
  Actions: ApplicationUpdateNotificationActions,
12
- })
8
+ }
9
+ )