@toptal/picasso-tagselector 1.0.6 → 1.0.7
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,5 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
Label: typeof TagSelectorLabel;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const TagSelectorCompound: import("react").ForwardRefExoticComponent<import("../TagSelector").Props & import("react").RefAttributes<HTMLInputElement>> & {
|
|
3
|
+
Label: import("react").ForwardRefExoticComponent<import("packages/base/Tag/dist-package/src").TagProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
4
|
};
|
|
6
|
-
export declare const TagSelectorCompound: TagSelectorCompoundType;
|
|
7
|
-
export {};
|
|
8
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/TagSelectorCompound/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/TagSelectorCompound/index.ts"],"names":[],"mappings":";AAGA,eAAO,MAAM,mBAAmB;;CAE9B,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/TagSelectorCompound/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/TagSelectorCompound/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAEtD,MAAM,CAAC,MAAM,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,WAAW,EAAE;IAC5D,KAAK,EAAE,gBAAgB;CACxB,CAAC,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/picasso-tagselector",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "Toptal UI components library - Tagselector",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
},
|
|
23
23
|
"homepage": "https://github.com/toptal/picasso/tree/master/packages/picasso#readme",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@toptal/picasso-autocomplete": "1.0.
|
|
26
|
-
"@toptal/picasso-form": "1.1.
|
|
27
|
-
"@toptal/picasso-input": "1.0.
|
|
28
|
-
"@toptal/picasso-outlined-input": "1.0.
|
|
25
|
+
"@toptal/picasso-autocomplete": "1.0.7",
|
|
26
|
+
"@toptal/picasso-form": "1.1.3",
|
|
27
|
+
"@toptal/picasso-input": "1.0.6",
|
|
28
|
+
"@toptal/picasso-outlined-input": "1.0.6",
|
|
29
29
|
"@toptal/picasso-shared": "14.0.1",
|
|
30
|
-
"@toptal/picasso-tag": "1.0.
|
|
30
|
+
"@toptal/picasso-tag": "1.0.4",
|
|
31
31
|
"@toptal/picasso-utils": "1.0.2",
|
|
32
32
|
"classnames": "^2.5.1"
|
|
33
33
|
},
|
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
import { TagSelector } from '../TagSelector'
|
|
2
2
|
import { TagSelectorLabel } from '../TagSelectorLabel'
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
Label:
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
export const TagSelectorCompound: TagSelectorCompoundType = Object.assign(
|
|
9
|
-
TagSelector,
|
|
10
|
-
{
|
|
11
|
-
Label: TagSelectorLabel,
|
|
12
|
-
}
|
|
13
|
-
)
|
|
4
|
+
export const TagSelectorCompound = Object.assign(TagSelector, {
|
|
5
|
+
Label: TagSelectorLabel,
|
|
6
|
+
})
|