enwawa-ui 2.0.24 → 2.0.25
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/lib/index.d.ts +2 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +25 -19
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +25 -19
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -108,7 +108,7 @@ export interface AtButtonProps {
|
|
|
108
108
|
/**
|
|
109
109
|
* Can be set to primary ghost dashed link text
|
|
110
110
|
*/
|
|
111
|
-
type?: ButtonType;
|
|
111
|
+
type?: ButtonType | "success" | "warning";
|
|
112
112
|
/**
|
|
113
113
|
* Set the handler to handle click
|
|
114
114
|
*/
|
|
@@ -3476,6 +3476,7 @@ export interface IFormStep<T> {
|
|
|
3476
3476
|
label: string;
|
|
3477
3477
|
onClick: () => void;
|
|
3478
3478
|
type: AtButtonProps['type'];
|
|
3479
|
+
htmlType?: AtButtonProps['htmlType'];
|
|
3479
3480
|
}[];
|
|
3480
3481
|
}
|
|
3481
3482
|
export interface TmCrudPageProps<RecordType = AnyObject, FormType = any> {
|