shineout 3.6.6 → 3.6.7-beta.2
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.
- package/cjs/index.js +1 -1
- package/cjs/tag/tag.type.d.ts +1 -1
- package/dist/shineout.js +54 -25
- package/dist/shineout.js.map +1 -1
- package/dist/shineout.min.js +1 -1
- package/dist/shineout.min.js.map +1 -1
- package/esm/index.js +1 -1
- package/esm/tag/tag.type.d.ts +1 -1
- package/package.json +5 -5
package/esm/index.js
CHANGED
package/esm/tag/tag.type.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { TagProps as UnStyledTagProps, TagInputProps as UnStyledTagInputProps }
|
|
|
2
2
|
/**
|
|
3
3
|
* @title Tag
|
|
4
4
|
*/
|
|
5
|
-
export type TagProps = Omit<UnStyledTagProps, 'jssStyle' | 'inlineStyle'>;
|
|
5
|
+
export type TagProps = Omit<UnStyledTagProps, 'jssStyle' | 'inlineStyle' | 'onMouseDown'>;
|
|
6
6
|
/**
|
|
7
7
|
* @title Tag.Input
|
|
8
8
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shineout",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.7-beta.2",
|
|
4
4
|
"description": "A components library for React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"module": "./esm/index.js",
|
|
17
17
|
"typings": "./cjs/index.d.ts",
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@sheinx/base": "3.6.
|
|
20
|
-
"@sheinx/hooks": "3.6.
|
|
21
|
-
"@sheinx/shineout-style": "3.6.
|
|
22
|
-
"@sheinx/theme": "3.6.
|
|
19
|
+
"@sheinx/base": "3.6.7-beta.2",
|
|
20
|
+
"@sheinx/hooks": "3.6.7-beta.2",
|
|
21
|
+
"@sheinx/shineout-style": "3.6.7-beta.2",
|
|
22
|
+
"@sheinx/theme": "3.6.7-beta.2",
|
|
23
23
|
"classnames": "^2.0.0",
|
|
24
24
|
"immer": "^10.0.0",
|
|
25
25
|
"deep-eql": "^4.0.0"
|