@ibiz/model-core 0.1.87 → 0.1.88
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/out/view/iuiaction.d.ts
CHANGED
|
@@ -27,7 +27,6 @@ export interface IUIAction extends INavigateParamContainer {
|
|
|
27
27
|
* 按钮样式
|
|
28
28
|
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
29
29
|
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
30
|
-
* @default 100
|
|
31
30
|
* 来源 getButtonStyle
|
|
32
31
|
*/
|
|
33
32
|
buttonStyle?: string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
package/package.json
CHANGED
package/src/view/iuiaction.ts
CHANGED
|
@@ -36,7 +36,6 @@ export interface IUIAction extends INavigateParamContainer {
|
|
|
36
36
|
* 按钮样式
|
|
37
37
|
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
38
38
|
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
39
|
-
* @default 100
|
|
40
39
|
* 来源 getButtonStyle
|
|
41
40
|
*/
|
|
42
41
|
buttonStyle?:
|