shineout 3.7.5 → 3.8.0-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/form/form.type.d.ts +1 -6
- package/cjs/form/interface.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/dist/shineout.js +712 -973
- package/dist/shineout.js.map +1 -1
- package/dist/shineout.min.js +1 -1
- package/dist/shineout.min.js.map +1 -1
- package/esm/form/form.type.d.ts +1 -6
- package/esm/form/interface.d.ts +1 -1
- package/esm/index.js +1 -1
- package/package.json +9 -9
package/esm/form/form.type.d.ts
CHANGED
|
@@ -1,14 +1,9 @@
|
|
|
1
|
-
import { FormFieldProps as UiFormFieldProps, FormFieldSetProps as UiFormFieldSetProps, FormItemProps as UiFormItemProps, FormProps as UiFormProps, ObjectType, FormFlowProps as UiFormFlowProps, FormRef as UiFormRef
|
|
1
|
+
import { FormFieldProps as UiFormFieldProps, FormFieldSetProps as UiFormFieldSetProps, FormItemProps as UiFormItemProps, FormProps as UiFormProps, ObjectType, FormFlowProps as UiFormFlowProps, FormRef as UiFormRef } from '@sheinx/base';
|
|
2
2
|
/**
|
|
3
3
|
* @title FormRef
|
|
4
4
|
* @sort 6
|
|
5
5
|
*/
|
|
6
6
|
export type FormRef<T> = UiFormRef<T>;
|
|
7
|
-
/**
|
|
8
|
-
* @title FormDatum
|
|
9
|
-
* @sort 7
|
|
10
|
-
*/
|
|
11
|
-
export type FormDatum = UiFormDatum;
|
|
12
7
|
/**
|
|
13
8
|
* @title Form
|
|
14
9
|
* @sort 1
|
package/esm/form/interface.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export type { FormRef as Ref, FormFieldChildrenFunc as FieldChildrenFunc, FormFieldSetChildrenFunc as FieldSetChildrenFunc, } from '@sheinx/base';
|
|
2
|
-
export type { FormProps as Props, FormItemProps as ItemProps, FormFieldProps as FieldProps, FormFieldSetProps as FieldSetProps,
|
|
2
|
+
export type { FormProps as Props, FormItemProps as ItemProps, FormFieldProps as FieldProps, FormFieldSetProps as FieldSetProps, } from './form.type';
|
|
3
3
|
export type { ButtonProps as SubmitProps, ButtonProps as ResetProps } from '../button/button.type';
|
package/esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shineout",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.0-beta.2",
|
|
4
4
|
"description": "A components library for React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -16,18 +16,18 @@
|
|
|
16
16
|
"module": "./esm/index.js",
|
|
17
17
|
"typings": "./cjs/index.d.ts",
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@sheinx/base": "3.
|
|
20
|
-
"@sheinx/hooks": "3.
|
|
21
|
-
"@sheinx/shineout-style": "3.
|
|
22
|
-
"@sheinx/theme": "3.
|
|
19
|
+
"@sheinx/base": "3.8.0-beta.2",
|
|
20
|
+
"@sheinx/hooks": "3.8.0-beta.2",
|
|
21
|
+
"@sheinx/shineout-style": "3.8.0-beta.2",
|
|
22
|
+
"@sheinx/theme": "3.8.0-beta.2",
|
|
23
23
|
"classnames": "^2.0.0",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
24
|
+
"immer": "^10.0.0",
|
|
25
|
+
"deep-eql": "^4.0.0"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"core-js": ">=3",
|
|
29
28
|
"react": ">=16.8",
|
|
30
|
-
"react-dom": ">=16.8"
|
|
29
|
+
"react-dom": ">=16.8",
|
|
30
|
+
"core-js": ">=3"
|
|
31
31
|
},
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|