Skip to content

Commit

Permalink
tag📌: 0.6.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wcz0 committed Jul 5, 2024
1 parent bdb9d46 commit 04eb80a
Show file tree
Hide file tree
Showing 170 changed files with 23,473 additions and 23,044 deletions.
310 changes: 155 additions & 155 deletions renderers/ajax_action.go

Large diffs are not rendered by default.

172 changes: 86 additions & 86 deletions renderers/alert.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,34 @@ func NewAlert() *Alert {
}

/**
* 静态展示表单项Label类名
* 容器 css 类名
*/
func (a *Alert) StaticLabelClassName(value interface{}) *Alert {
a.Set("staticLabelClassName", value)
func (a *Alert) ClassName(value interface{}) *Alert {
a.Set("className", value)
return a
}

/**
* 是否静态展示表达式
*/
func (a *Alert) TestIdBuilder(value interface{}) *Alert {
a.Set("testIdBuilder", value)
func (a *Alert) StaticOn(value interface{}) *Alert {
a.Set("staticOn", value)
return a
}

/**
* 指定为提示框类型
*/
func (a *Alert) Type(value interface{}) *Alert {
a.Set("type", value)
return a
}

/**
* 提示框标题
*/
func (a *Alert) Title(value interface{}) *Alert {
a.Set("title", value)
return a
}

Expand All @@ -43,121 +60,121 @@ func (a *Alert) ShowCloseButton(value interface{}) *Alert {
}

/**
* 容器 css 类名
* 静态展示空值占位
*/
func (a *Alert) ClassName(value interface{}) *Alert {
a.Set("className", value)
func (a *Alert) StaticPlaceholder(value interface{}) *Alert {
a.Set("staticPlaceholder", value)
return a
}

/**
* 是否禁用
* 静态展示表单项类名
*/
func (a *Alert) Disabled(value interface{}) *Alert {
a.Set("disabled", value)
func (a *Alert) StaticClassName(value interface{}) *Alert {
a.Set("staticClassName", value)
return a
}

/**
* 是否静态展示表达式
* 组件样式
*/
func (a *Alert) StaticOn(value interface{}) *Alert {
a.Set("staticOn", value)
func (a *Alert) Style(value interface{}) *Alert {
a.Set("style", value)
return a
}

/**
* 图标CSS类名
* 左侧图标
*/
func (a *Alert) IconClassName(value interface{}) *Alert {
a.Set("iconClassName", value)
func (a *Alert) Icon(value interface{}) *Alert {
a.Set("icon", value)
return a
}

/**
* 操作区域
* 是否隐藏
*/
func (a *Alert) Actions(value interface{}) *Alert {
a.Set("actions", value)
func (a *Alert) Hidden(value interface{}) *Alert {
a.Set("hidden", value)
return a
}

/**
* 是否显示
*/
func (a *Alert) Visible(value interface{}) *Alert {
a.Set("visible", value)
func (a *Alert) Testid(value interface{}) *Alert {
a.Set("testid", value)
return a
}

/**
* 编辑器配置,运行时可以忽略
* 提示类型
* 可选值: info | warning | success | danger
*/
func (a *Alert) EditorSetting(value interface{}) *Alert {
a.Set("editorSetting", value)
func (a *Alert) Level(value interface{}) *Alert {
a.Set("level", value)
return a
}

/**
* 事件动作配置
* 是否禁用表达式
*/
func (a *Alert) OnEvent(value interface{}) *Alert {
a.Set("onEvent", value)
func (a *Alert) DisabledOn(value interface{}) *Alert {
a.Set("disabledOn", value)
return a
}

/**
* 静态展示空值占位
* 是否显示
*/
func (a *Alert) StaticPlaceholder(value interface{}) *Alert {
a.Set("staticPlaceholder", value)
func (a *Alert) Visible(value interface{}) *Alert {
a.Set("visible", value)
return a
}

/**
* 静态展示表单项Value类名
*/
func (a *Alert) StaticSchema(value interface{}) *Alert {
a.Set("staticSchema", value)
func (a *Alert) StaticInputClassName(value interface{}) *Alert {
a.Set("staticInputClassName", value)
return a
}

/**
* 可以组件级别用来关闭移动端样式
* 关闭按钮CSS类名
*/
func (a *Alert) UseMobileUI(value interface{}) *Alert {
a.Set("useMobileUI", value)
func (a *Alert) CloseButtonClassName(value interface{}) *Alert {
a.Set("closeButtonClassName", value)
return a
}

/**
* 是否静态展示
*/
func (a *Alert) Testid(value interface{}) *Alert {
a.Set("testid", value)
func (a *Alert) Static(value interface{}) *Alert {
a.Set("static", value)
return a
}

/**
* 内容区域
*/
func (a *Alert) Body(value interface{}) *Alert {
a.Set("body", value)
func (a *Alert) TestIdBuilder(value interface{}) *Alert {
a.Set("testIdBuilder", value)
return a
}

/**
* 提示类型
* 可选值: info | warning | success | danger
* 内容区域
*/
func (a *Alert) Level(value interface{}) *Alert {
a.Set("level", value)
func (a *Alert) Body(value interface{}) *Alert {
a.Set("body", value)
return a
}

/**
* 是否隐藏
* 操作区域
*/
func (a *Alert) Hidden(value interface{}) *Alert {
a.Set("hidden", value)
func (a *Alert) Actions(value interface{}) *Alert {
a.Set("actions", value)
return a
}

Expand Down Expand Up @@ -186,66 +203,57 @@ func (a *Alert) Id(value interface{}) *Alert {
}

/**
* 静态展示表单项Value类名
*/
func (a *Alert) StaticInputClassName(value interface{}) *Alert {
a.Set("staticInputClassName", value)
return a
}

/**
* 是否禁用表达式
* 事件动作配置
*/
func (a *Alert) DisabledOn(value interface{}) *Alert {
a.Set("disabledOn", value)
func (a *Alert) OnEvent(value interface{}) *Alert {
a.Set("onEvent", value)
return a
}

/**
* 提示框标题
* 静态展示表单项Label类名
*/
func (a *Alert) Title(value interface{}) *Alert {
a.Set("title", value)
func (a *Alert) StaticLabelClassName(value interface{}) *Alert {
a.Set("staticLabelClassName", value)
return a
}

/**
* 组件样式
* 可以组件级别用来关闭移动端样式
*/
func (a *Alert) Style(value interface{}) *Alert {
a.Set("style", value)
func (a *Alert) UseMobileUI(value interface{}) *Alert {
a.Set("useMobileUI", value)
return a
}

/**
* 指定为提示框类型
* 图标CSS类名
*/
func (a *Alert) Type(value interface{}) *Alert {
a.Set("type", value)
func (a *Alert) IconClassName(value interface{}) *Alert {
a.Set("iconClassName", value)
return a
}

/**
* 是否静态展示
* 是否禁用
*/
func (a *Alert) Static(value interface{}) *Alert {
a.Set("static", value)
func (a *Alert) Disabled(value interface{}) *Alert {
a.Set("disabled", value)
return a
}

/**
* 静态展示表单项类名
*/
func (a *Alert) StaticClassName(value interface{}) *Alert {
a.Set("staticClassName", value)
func (a *Alert) StaticSchema(value interface{}) *Alert {
a.Set("staticSchema", value)
return a
}

/**
* 关闭按钮CSS类名
* 编辑器配置,运行时可以忽略
*/
func (a *Alert) CloseButtonClassName(value interface{}) *Alert {
a.Set("closeButtonClassName", value)
func (a *Alert) EditorSetting(value interface{}) *Alert {
a.Set("editorSetting", value)
return a
}

Expand All @@ -256,11 +264,3 @@ func (a *Alert) ShowIcon(value interface{}) *Alert {
a.Set("showIcon", value)
return a
}

/**
* 左侧图标
*/
func (a *Alert) Icon(value interface{}) *Alert {
a.Set("icon", value)
return a
}
Loading

0 comments on commit 04eb80a

Please sign in to comment.