@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
|
-
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
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":"
|
|
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;
|
|
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
package/src/TagCompound/index.ts
CHANGED
|
@@ -4,14 +4,7 @@ import { TagRectangular } from '../TagRectangular'
|
|
|
4
4
|
import { TagConnection } from '../TagConnection'
|
|
5
5
|
import { TagCheckable } from '../TagCheckable'
|
|
6
6
|
|
|
7
|
-
|
|
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,
|