@toptal/picasso-tag 1.0.3 → 1.0.4

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,14 +1,8 @@
1
- import { Tag } from '../Tag';
2
- import { TagGroup } from '../TagGroup';
3
- import { TagRectangular } from '../TagRectangular';
4
- import { TagConnection } from '../TagConnection';
5
- import { TagCheckable } from '../TagCheckable';
6
- declare type TagCompoundType = typeof Tag & {
7
- Group: typeof TagGroup;
8
- Rectangular: typeof TagRectangular;
9
- Connection: typeof TagConnection;
10
- Checkable: typeof TagCheckable;
1
+ /// <reference types="react" />
2
+ export declare const TagCompound: import("react").ForwardRefExoticComponent<import("../Tag/Tag").Props & import("react").RefAttributes<HTMLDivElement>> & {
3
+ Group: import("react").ForwardRefExoticComponent<import("../TagGroup/TagGroup").Props & import("react").RefAttributes<HTMLDivElement>>;
4
+ Rectangular: import("react").ForwardRefExoticComponent<import("../TagRectangular/types").Props & import("react").RefAttributes<HTMLDivElement>>;
5
+ Connection: ({ children }: import("../TagConnection/TagConnection").Props) => JSX.Element;
6
+ Checkable: import("react").ForwardRefExoticComponent<import("../TagCheckable/TagCheckable").Props & import("react").RefAttributes<HTMLDivElement>>;
11
7
  };
12
- export declare const TagCompound: TagCompoundType;
13
- export {};
14
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/TagCompound/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAA;AAC5B,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACtC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAE9C,aAAK,eAAe,GAAG,OAAO,GAAG,GAAG;IAClC,KAAK,EAAE,OAAO,QAAQ,CAAA;IACtB,WAAW,EAAE,OAAO,cAAc,CAAA;IAClC,UAAU,EAAE,OAAO,aAAa,CAAA;IAChC,SAAS,EAAE,OAAO,YAAY,CAAA;CAC/B,CAAA;AAED,eAAO,MAAM,WAAW,EAAE,eAKxB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/TagCompound/index.ts"],"names":[],"mappings":";AAMA,eAAO,MAAM,WAAW;;;;;CAKtB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/TagCompound/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAA;AAC5B,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACtC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAS9C,MAAM,CAAC,MAAM,WAAW,GAAoB,MAAM,CAAC,MAAM,CAAC,GAAG,EAAE;IAC7D,KAAK,EAAE,QAAQ;IACf,WAAW,EAAE,cAAc;IAC3B,UAAU,EAAE,aAAa;IACzB,SAAS,EAAE,YAAY;CACxB,CAAC,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/TagCompound/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAA;AAC5B,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACtC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAE9C,MAAM,CAAC,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,CAAC,GAAG,EAAE;IAC5C,KAAK,EAAE,QAAQ;IACf,WAAW,EAAE,cAAc;IAC3B,UAAU,EAAE,aAAa;IACzB,SAAS,EAAE,YAAY;CACxB,CAAC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/picasso-tag",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Toptal UI components library - Tag",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -4,14 +4,7 @@ import { TagRectangular } from '../TagRectangular'
4
4
  import { TagConnection } from '../TagConnection'
5
5
  import { TagCheckable } from '../TagCheckable'
6
6
 
7
- type TagCompoundType = typeof Tag & {
8
- Group: typeof TagGroup
9
- Rectangular: typeof TagRectangular
10
- Connection: typeof TagConnection
11
- Checkable: typeof TagCheckable
12
- }
13
-
14
- export const TagCompound: TagCompoundType = Object.assign(Tag, {
7
+ export const TagCompound = Object.assign(Tag, {
15
8
  Group: TagGroup,
16
9
  Rectangular: TagRectangular,
17
10
  Connection: TagConnection,