shineout 3.6.2-beta.1 → 3.6.2-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/esm/index.js CHANGED
@@ -61,5 +61,5 @@ export * from "./deprecated";
61
61
  import * as _TYPE from "./type";
62
62
  export { _TYPE as TYPE };
63
63
  export default {
64
- version: '3.6.2-beta.1'
64
+ version: '3.6.2-beta.2'
65
65
  };
@@ -1,4 +1,8 @@
1
1
  import { InputGroupProps } from '@sheinx/base';
2
+ /**
3
+ * @title Input.Group
4
+ * @sort 2
5
+ */
2
6
  export interface GroupProps extends Omit<InputGroupProps, 'jssStyle'> {
3
7
  className?: string;
4
8
  }
@@ -9,5 +9,6 @@ export interface BaseInputProps extends Omit<UnStyledInputProps, 'jssStyle'> {
9
9
  }
10
10
  /**
11
11
  * @title Input
12
+ * @sort 1
12
13
  */
13
14
  export type InputProps = GetWithFieldProps<BaseInputProps, BaseInputProps['value']>;
@@ -3,5 +3,6 @@ import { GetWithFieldProps } from '../hooks/use-field-common';
3
3
  export type BaseNumberProps = Omit<UnStyledInputNumberProps, 'jssStyle'>;
4
4
  /**
5
5
  * @title Input.Number
6
+ * @sort 3
6
7
  */
7
8
  export type InputNumberProps = GetWithFieldProps<BaseNumberProps, BaseNumberProps['value']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shineout",
3
- "version": "3.6.2-beta.1",
3
+ "version": "3.6.2-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.2-beta.1",
20
- "@sheinx/hooks": "3.6.2-beta.1",
21
- "@sheinx/shineout-style": "3.6.2-beta.1",
22
- "@sheinx/theme": "3.6.2-beta.1",
19
+ "@sheinx/base": "3.6.2-beta.2",
20
+ "@sheinx/hooks": "3.6.2-beta.2",
21
+ "@sheinx/shineout-style": "3.6.2-beta.2",
22
+ "@sheinx/theme": "3.6.2-beta.2",
23
23
  "classnames": "^2.0.0",
24
24
  "immer": "^10.0.0",
25
25
  "deep-eql": "^4.0.0"