7.0.5 • Published 4 months ago

@das-fed/web-components v7.0.5

Weekly downloads
-
License
-
Repository
-
Last release
4 months ago

das-ce-tabs 使用方法

  1. 引入 das-ce-tabs 组件并注册
import { createCeTabs } from '@das-fed/web-components'
createCeTabs('das-ce-tabs')
  1. 定义 optionsmodelValue 属性

das-ce-tabs 接收 optionsmodelValue 属性,options 属性配置如下:

interface TabOption {
  /** 唯一标识 */
  key: string | number
  /** 选项卡头显示文字 */
  tab: string
  /** 是否禁用 */
  disabled?: boolean
  /** 是否隐藏 */
  hidden?: boolean
  /** 被隐藏时是否渲染 DOM 结构 */
  forceRender?: boolean
  /** tab显示文字插槽 */
  tabSlot?: string
  /** 关闭图标插槽 */
  closeIconSlot?: string
  /** 显示内容插槽 */
  contentSlot?: string
}

定义实例如下:

const activeKey = ref(1)

const options = ref([
  { key: 1, tab: 'Tab 1' },
  { key: 2, tab: 'Tab 2', disabled: true },
  { key: 3, tab: 'Tab 3' },
])
  1. 监听组件事件

使用组件时,监听到的事件对象为 customEvent ,该对象中的 detail 属性是个数组,数组元素为组件事件的返回值。 das-ce-tabs 组件暴露了以下事件:

  1. update:modelValue:当 modelValue 属性变化时触发,要实现切换页签时 activeKey 属性自动变化,需要监听该事件。
import { ref } from 'vue'
import { createCeTabs } from '@das-fed/web-/components'
createCeTabs('das-ce-tabs')

const activeKey = ref(1)

const options = ref([
  { key: 1, tab: 'Tab 1' },
  { key: 2, tab: 'Tab 2', disabled: true },
  { key: 3, tab: 'Tab 3' },
])
<das-ce-tabs
  :modelValue="activeKey"
  :options="options"
  @update:modelValue="(customEvent) => (activeKey = customEvent.detail[0])"
></das-ce-tabs>
  1. tabClick:当 tab 被点击时触发。返回被点击页签的 key 值。
import { ref } from 'vue'
import { createCeTabs } from '@das-fed/web-components/components'
createCeTabs('das-ce-tabs')

const activeKey = ref(1)

const options = ref([
  { key: 1, tab: 'Tab 1' },
  { key: 2, tab: 'Tab 2', disabled: true },
  { key: 3, tab: 'Tab 3' },
])

const tabClick = (customEvent) => {
  console.log('当前点击页签的key: ', customEvent.detail[0])
}
<das-ce-tabs :modelValue="activeKey" :options="options" @tabClick="tabClick"></das-ce-tabs>
  1. tabDelete:当 tab 被删除时触发。返回被删除页签的 key 值。
import { ref } from 'vue'
import { createCeTabs } from '@das-fed/web-components/components'
createCeTabs('das-ce-tabs')

const activeKey = ref(1)

const options = ref([
  { key: 1, tab: 'Tab 1' },
  { key: 2, tab: 'Tab 2', disabled: true },
  { key: 3, tab: 'Tab 3' },
])

const tabDelete = (customEvent) => {
  console.log('当前删除页签的key:', customEvent.detail[0])
}
<das-ce-tabs :modelValue="activeKey" :options="options" @tabDelete="tabDelete"></das-ce-tabs>
  1. menuClick:当右键呼出的操作项选中时触发。返回被选中的操作项和当前右键操作的页签对象。
import { ref } from 'vue'
import { createCeTabs } from '@das-fed/web-components/components'
createCeTabs('das-ce-tabs')

const activeKey = ref(1)

const options = ref([
  { key: 1, tab: 'Tab 1' },
  { key: 2, tab: 'Tab 2', disabled: true },
  { key: 3, tab: 'Tab 3' },
])

const menuClick = (customEvent) => {
  console.log('当前选中操作项:', customEvent.detail[0], '当前页签对象:', customEvent.detail[1])
}
<das-ce-tabs :modelValue="activeKey" :options="options" @menuClick="menuClick"></das-ce-tabs>

操作项定义如下:

interface MenuListType {
  /** 唯一标识 */
  key: string | number
  /** 操作项名称 */
  name: string
  /** 是否隐藏 */
  hidden?: boolean | Function
  /** 是否禁用 */
  disabled?: boolean | Function
}
  1. pageRefresh: 当点击右侧刷新按钮时触发。无返回值。
import { ref } from 'vue'
import { createCeTabs } from '@das-fed/web-components/components'
createCeTabs('das-ce-tabs')

const activeKey = ref(1)

const options = ref([
  { key: 1, tab: 'Tab 1' },
  { key: 2, tab: 'Tab 2', disabled: true },
  { key: 3, tab: 'Tab 3' },
])

const pageRefresh = () => {
  console.log('刷新')
}
<das-ce-tabs :modelValue="activeKey" :options="options" @pageRefresh="pageRefresh"></das-ce-tabs>
  1. toggleFullScreen: 切换全屏状态。无返回值。
import { ref } from 'vue'
import { createCeTabs } from '@das-fed/web-components/components'
createCeTabs('das-ce-tabs')

const activeKey = ref(1)

const options = ref([
  { key: 1, tab: 'Tab 1' },
  { key: 2, tab: 'Tab 2', disabled: true },
  { key: 3, tab: 'Tab 3' },
])

const toggleFullScreen = () => {
  console.log('全屏')
}
<das-ce-tabs :modelValue="activeKey" :options="options" @toggleFullScreen="toggleFullScreen"></das-ce-tabs>

das-ce-nav 使用方法

1. 引入 das-ce-nav 组件并注册

import { createCeNav } from '@das-fed/web-components'
createCeNav('das-ce-nav')

① 在 vue 文件中使用

<das-ce-nav
  @update:modelValue="(event) => (activeKey = event.detail[0])"
  :modelValue="activeKey"
  @handleTabClick="handleTabClick"
  @handleTabDelete="handleTabDelete"
  :config="config"
  :logoUrl="logoUrl"
  :searchConfig="searchConfig"
  @searchToPage="searchToPage"
  @clearSearchList="clearSearchList"
  @deleteSearchItem="deleteSearchItem"
  :userInfoConfig="userInfoConfig"
  @userCommandHandle="userCommandHandle"
  :projectTreeConfig="projectTreeConfig"
  @changeTreeHandle="changeTreeHandle"
  :innerPagesConfig="innerPagesConfig"
  @changeInnerPage="changeInnerPage"
></das-ce-nav>

① 在 html 文件中使用

<head>
  <script type="module">
    import { createCeNav } from '@das-fed/web-components'
    createCeNav('das-ce-nav')
    const handleTabClick = (event) => {
      console.log(event)
    }
    const dasceNavEle = document.getElementsByTagName('das-ce-nav')[0]
    dasceNavEle.addEventListener('handleTabClick', handleTabClick)
  </script>
</head>
<body>
  <das-ce-nav
    @update:modelValue="(event) => (activeKey = event.detail[0])"
    :modelValue="activeKey"
    :config="config"
    :logoUrl="logoUrl"
    :searchConfig="searchConfig"
    :userInfoConfig="userInfoConfig"
    :projectTreeConfig="projectTreeConfig"
    :innerPagesConfig="innerPagesConfig"
  ></das-ce-nav>
</body>

2. 属性

属性名描述类型默认值是否必填
modelValue当前选中菜单string/number-
config导航栏配置configconfig
logoUrllogo 图片链接string-
innerPagesConfig内置页面配置innerPagesConfiginnerPagesConfig
searchConfig搜索配置searchConfigsearchConfig
userInfoConfig用户信息配置userInfoConfiguserInfoConfig
projectTreeConfig项目树配置projectTreeConfigprojectTreeConfig

config

属性名描述类型默认值是否必填
showSearch是否显示搜索boolfalse
showProjectTree是否显示项目下拉树boolfalse
subAppList导航栏菜单数据{name:string,code:string/number}[]-

innerPagesConfig

属性名描述类型默认值是否必填
activeInnerPagePath内置菜单当前选中值string/numberfalse
innerPages内置菜单数据{title: string, path: string}[]false

searchConfig

属性名描述类型默认值是否必填
defaultProps-{value: string,label: string}{value: 'id',label: 'name'}
getHistoryList获取历史搜索记录() => Promise-
getSearchList获取菜单() => Promise-
addHistory添加历史记录(data:any) => void-

userInfoConfig

属性名描述类型默认值是否必填
headPicture用户头像默认头像
commandList用户信息操作项() => Promise-
getSearchList获取菜单{value?: string /number,label?: string / number}[]-

projectTreeConfig

属性名描述类型默认值是否必填
projectStore项目数据-
defaultProps-{value: string,label: string}{value: 'id',label: 'name'}
treeProps树组件配置TreeOptionProps-
filterNode搜索过滤(value: any, data: any) => projectTreeType[]-
filterFlatCondition树切换平铺,符合条件的加入平铺列表(data: any) => boolean[]-

TreeOptionProps

interface TreeOptionProps {
  label?: string // 默认name
  pathName?: string // 默认pathName
  children?: string // 默认children
  parentId?: string // 默认parentId
  disabled?: string | ((data: TreeNodeData, node?: Node) => boolean) // 默认disabled
  isLeaf?: string | ((data: TreeNodeData, node?: Node) => boolean) // 默认leaf;懒加载不支持方法
  // 允许取消选中(keepSelected为true时生效)
  allowUnSelect?: string | ((data: TreeNodeData) => boolean) // 默认allowUnSelect
  class?: (
    data: TreeNodeData,
    node: Node,
  ) =>
    | string
    | {
        [key: string]: boolean
      }
    | string
}

projectTreeType

属性名描述类型默认值是否必填
-唯一标识(可使用 defaultProps.value 配置)id
-项目名称(可使用 defaultProps.label 配置)name
children树组件配置projectTreeType-

3. 事件

事件说明回调参数
handleTabClick切换应用function(value:any)
handleTabDelete删除应用function(value:any)
changeInnerPage切换内置页面function(value:any)
searchToPage搜索-选中菜单跳转function(value:any)
clearSearchList搜索-清空历史记录void
deleteSearchItem搜索-删除指定的历史记录function(value:any)
userCommandHandle用户信息-操作项function(value:any)
changeTreeHandle项目树-是否确定切换选中项目function(status:bool,value:any)

das-ce-menu 使用方法

  1. 引入 das-ce-menu 组件并注册
import { createCeMenu } from '@das-fed/web-components'
createCeMenu('das-ce-menu')
  1. 使用
<das-ce-menu
  :data="menuData"
  :modelValue.prop="currentVal"
  @update:modelValue="(event) => (currentVal = event.detail[0])"
  :collapse.prop="collapse"
  @change="onChange"
  @collapse-change="onCollapseChange"
></das-ce-menu>
  1. 属性
属性名描述类型默认值是否必填
modelValue当前选中菜单string/number-
data导航栏配置array[]
collapse菜单栏初始折叠状态booleanfalse
  1. 事件
事件描述回调参数
change选中项改变触发function(value: string/number, option: any)
collapse-change折叠状态改变触发function(value:boolean)
  1. 方法
方法描述参数
changeCollapse切换折叠状态接收一个布尔类型参数:折叠状态
6.4.0-dev.55.10

11 months ago

6.4.0-dev.55.12

11 months ago

6.4.0-dev.55.11

11 months ago

6.4.0-dev.99

8 months ago

6.4.0-test.5.1

11 months ago

6.4.0-dev.96

8 months ago

6.4.0-dev.55.18

11 months ago

6.4.0-dev.95

8 months ago

6.4.0-dev.55.17

11 months ago

7.0.4-test.3

4 months ago

6.4.0-dev.98

8 months ago

7.0.4-test.2

5 months ago

6.4.0-dev.97

8 months ago

6.4.0-dev.55.19

11 months ago

7.0.4-test.1

5 months ago

6.4.0-dev.92

9 months ago

6.4.0-dev.55.14

11 months ago

6.4.0-dev.91

9 months ago

6.4.0-dev.55.13

11 months ago

6.4.0-dev.94

8 months ago

6.4.0-dev.55.16

11 months ago

6.4.0-dev.93

8 months ago

6.4.0-dev.55.15

11 months ago

6.4.0-dev.55.21

11 months ago

6.4.0-dev.55.20

11 months ago

6.4.0-dev.55.23

11 months ago

6.4.0-dev.55.22

11 months ago

6.4.0-dev.55.25

11 months ago

6.4.0-dev.55.24

11 months ago

6.4.0-dev.55.27

11 months ago

6.4.0-dev.55.26

11 months ago

7.0.0-zhaohang.1

6 months ago

7.0.0-zhaohang.5

6 months ago

7.0.0-zhaohang.4

6 months ago

7.0.0-zhaohang.3

6 months ago

7.0.0-zhaohang.2

6 months ago

7.0.0-zhaohang.7

5 months ago

7.0.0-zhaohang.6

6 months ago

6.4.0-test.8

10 months ago

6.4.0-test.7

10 months ago

6.4.0-test.6

11 months ago

6.4.0-hot.49

5 months ago

6.4.0-hot.48

6 months ago

6.4.0-hot.45

6 months ago

6.4.0-hot.44

6 months ago

6.4.0-hot.47

6 months ago

6.4.0-hot.46

6 months ago

7.0.0-zhongshen.1

5 months ago

6.4.0-hot.41

6 months ago

6.4.0-hot.40

6 months ago

6.4.0-hot.43

6 months ago

6.4.0-hot.42

6 months ago

6.4.0-beta.15.11

12 months ago

6.4.0-hot.38

6 months ago

6.4.0-hot.37

8 months ago

6.4.0-hot.39

6 months ago

6.4.0-hot.34

8 months ago

6.4.0-hot.33

9 months ago

6.4.0-hot.36

8 months ago

6.4.0-hot.35

8 months ago

6.4.0-hot.30

9 months ago

6.4.0-hot.32

9 months ago

6.4.0-hot.31

9 months ago

6.4.0-beta.17.1

11 months ago

6.4.0-beta.17.2

11 months ago

6.4.0-beta.17.3

11 months ago

6.4.0-beta.17.4

11 months ago

6.4.0-beta.17.5

11 months ago

6.4.0-beta.17.6

11 months ago

6.4.0-beta.17.7

11 months ago

6.4.0-beta.17.8

11 months ago

6.4.0-hot.56

5 months ago

6.4.0-hot.55

5 months ago

6.4.0-hot.58

5 months ago

6.4.0-hot.57

5 months ago

7.0.1-beta.6

5 months ago

6.4.0-hot.52

5 months ago

7.0.1-beta.5

5 months ago

6.4.0-hot.51

5 months ago

6.4.0-hot.54

5 months ago

6.4.0-hot.53

5 months ago

6.4.0-hot.50

5 months ago

7.0.1-beta.2

6 months ago

7.0.1-beta.1

6 months ago

7.0.1-beta.4

5 months ago

7.0.1-beta.3

5 months ago

6.4.0-beta.16

12 months ago

6.4.0-beta.17

11 months ago

6.4.0-beta.18

10 months ago

6.4.0-beta.19

10 months ago

6.4.0-beta.27

8 months ago

6.4.0-beta.28

7 months ago

7.0.5

5 months ago

6.4.0-beta.23

10 months ago

6.4.0-beta.24

9 months ago

6.4.0-beta.26

9 months ago

6.4.0-beta.20

10 months ago

6.4.0-beta.21

10 months ago

6.4.0-beta.22

10 months ago

6.4.0-test.10

10 months ago

6.4.0-test.11

9 months ago

6.4.0-hot.29

9 months ago

6.4.0-hot.28

11 months ago

6.4.0-test.8.1

10 months ago

6.4.0-test.8.2

10 months ago

7.0.0

6 months ago

7.0.4

5 months ago

7.0.3

5 months ago

7.0.2

6 months ago

7.0.1

6 months ago

6.4.0-dev.54.5

12 months ago

6.4.0-dev.54.6

12 months ago

6.4.0-dev.54.4

12 months ago

6.4.0-dev.54.9

12 months ago

6.4.0-dev.54.7

12 months ago

6.4.0-dev.54.8

12 months ago

6.4.0-test.30

8 months ago

6.4.0-test.31

8 months ago

6.4.0-dev.102

8 months ago

6.4.0-dev.101

8 months ago

6.4.0-dev.100

8 months ago

6.4.0-dev.106

8 months ago

6.4.0-dev.105

8 months ago

6.4.0-dev.104

8 months ago

6.4.0-dev.103

8 months ago

6.4.0-dev.109

8 months ago

6.4.0-dev.59

11 months ago

6.4.0-dev.108

8 months ago

6.4.0-dev.107

8 months ago

6.4.0-test.7.1

10 months ago

6.4.0-dev.56

11 months ago

6.4.0-dev.55

12 months ago

6.4.0-dev.58

11 months ago

6.4.0-dev.57

11 months ago

6.4.0-test.20

8 months ago

6.4.0-dev.55.1

12 months ago

6.4.0-dev.55.3

11 months ago

6.4.0-dev.55.2

12 months ago

6.4.0-test.21

8 months ago

6.4.0-dev.55.5

11 months ago

6.4.0-dev.55.4

11 months ago

6.4.0-dev.113

7 months ago

6.4.0-dev.112

8 months ago

6.4.0-dev.111

8 months ago

6.4.0-dev.110

8 months ago

6.4.0-dev.117

7 months ago

6.4.0-dev.116

7 months ago

6.4.0-dev.115

7 months ago

6.4.0-dev.114

7 months ago

6.4.0-dev.54.10

12 months ago

6.4.0-dev.119

7 months ago

6.4.0-dev.118

7 months ago

6.4.0-dev.67

10 months ago

6.4.0-dev.66

10 months ago

6.4.0-dev.69

10 months ago

6.4.0-dev.68

10 months ago

6.4.0-dev.63

10 months ago

6.4.0-dev.55.7

11 months ago

6.4.0-dev.62

10 months ago

6.4.0-dev.55.6

11 months ago

6.4.0-dev.65

10 months ago

6.4.0-dev.55.9

11 months ago

6.4.0-dev.64

10 months ago

6.4.0-dev.55.8

11 months ago

6.4.0-dev.61

10 months ago

6.4.0-dev.60

11 months ago

6.4.0-test.52

6 months ago

6.4.0-test.53

6 months ago

6.4.0-test.50

7 months ago

6.4.0-test.51

6 months ago

6.4.0-dev.120

7 months ago

6.4.0-test.54

6 months ago

6.4.0-test.55

6 months ago

6.4.0-dev.124

6 months ago

6.4.0-dev.123

7 months ago

6.4.0-dev.122

7 months ago

6.4.0-dev.121

7 months ago

6.4.0-dev.128

5 months ago

6.4.0-dev.127

5 months ago

6.4.0-dev.126

6 months ago

6.4.0-dev.125

6 months ago

6.4.0-test.6.1

11 months ago

6.4.0-dev.129

5 months ago

6.4.0-dev.78

10 months ago

6.4.0-dev.77

10 months ago

6.4.0-dev.79

10 months ago

6.4.0-dev.74

10 months ago

6.4.0-dev.73

10 months ago

6.4.0-dev.76

10 months ago

6.4.0-dev.75

10 months ago

6.4.0-dev.70

10 months ago

6.4.0-dev.72

10 months ago

6.4.0-dev.71

10 months ago

6.4.0-dev.90

9 months ago

6.4.0-test.40

7 months ago

6.4.0-dev.131

5 months ago

6.4.0-dev.130

5 months ago

6.4.0-dev.132

5 months ago

7.0.0-beta.4

6 months ago

7.0.0-beta.5

6 months ago

7.0.4-beta.2

5 months ago

6.4.0-dev.89

9 months ago

6.4.0-dev.88

9 months ago

7.0.4-beta.1

5 months ago

6.4.0-dev.85

9 months ago

6.4.0-dev.84

10 months ago

6.4.0-dev.87

9 months ago

7.0.2-beta.1

5 months ago

6.4.0-dev.86

9 months ago

7.0.2-beta.2

5 months ago

7.0.0-beta.2

6 months ago

6.4.0-dev.81

10 months ago

7.0.2-beta.3

5 months ago

7.0.0-beta.3

6 months ago

6.4.0-dev.80

10 months ago

6.4.0-dev.83

10 months ago

7.0.0-beta.1

6 months ago

6.4.0-dev.82

10 months ago

6.4.0-dev.54.2

12 months ago

6.4.0-dev.54.3

12 months ago

6.4.0-dev.54.1

12 months ago

6.4.0-beta.15.9

12 months ago

6.4.0-test.3.2

12 months ago

6.4.0-dev.52

12 months ago

6.4.0-dev.54

12 months ago

6.4.0-dev.53

12 months ago

6.4.0-beta.15.10

12 months ago

6.4.0-beta.15.6

12 months ago

6.4.0-beta.15.7

12 months ago

6.4.0-beta.15.8

12 months ago

6.4.0-dev.48

12 months ago

6.4.0-dev.47

12 months ago

6.4.0-dev.46

12 months ago

6.4.0-test.3.1

12 months ago

6.4.0-dev.51

12 months ago

6.4.0-dev.50

12 months ago

6.4.0-beta.15.3

12 months ago

6.4.0-beta.15.4

12 months ago

6.4.0-beta.15.5

12 months ago

6.4.0-beta.15.1

1 year ago

6.4.0-beta.15.2

1 year ago

6.4.0-dev.45

12 months ago

6.4.0-dev.44

12 months ago

6.4.0-test.3

12 months ago

6.4.0-hot.27

1 year ago

6.4.0-hot.26

1 year ago

6.4.0-dev.43

1 year ago

6.4.0-dev.42

1 year ago

6.4.0-beta.15

1 year ago

6.4.0-hot.25

1 year ago

6.4.0-hot.24

1 year ago

6.4.0-dev.39

1 year ago

6.4.0-dev.41

1 year ago

6.4.0-dev.40

1 year ago

6.4.0-hot.23

1 year ago

6.4.0-hot.22

1 year ago

6.4.0-beta.12

1 year ago

6.4.0-beta.13

1 year ago

6.4.0-beta.14

1 year ago

6.4.0-test.2

1 year ago

6.4.0-dev.27

1 year ago

6.4.0-dev.29

1 year ago

6.4.0-dev.28

1 year ago

6.4.0-dev.38

1 year ago

6.4.0-dev.37

1 year ago

6.4.0-hot.21

1 year ago

6.4.0-hot.20

1 year ago

6.4.0-dev.34

1 year ago

6.4.0-dev.33

1 year ago

6.4.0-test.2.1

1 year ago

6.4.0-dev.36

1 year ago

6.4.0-dev.35

1 year ago

6.4.0-dev.30

1 year ago

6.4.0-hot.9

1 year ago

6.4.0-dev.32

1 year ago

6.4.0-dev.31

1 year ago

6.4.0-hot.19

1 year ago

6.4.0-hot.16

1 year ago

6.4.0-hot.15

1 year ago

6.4.0-hot.18

1 year ago

6.4.0-hot.17

1 year ago

6.4.0-hot.12

1 year ago

6.4.0-hot.11

1 year ago

6.4.0-hot.14

1 year ago

6.4.0-hot.13

1 year ago

6.4.0-hot.10

1 year ago

6.4.0-hot.9.1

1 year ago

6.4.0-dev.26

1 year ago

6.4.0-dev.25

1 year ago

6.4.0-dev.24

1 year ago

6.4.0-dev.23

1 year ago

6.4.0-dev.22

1 year ago

6.4.0-dev.21

1 year ago

6.4.0-hot.8

1 year ago

6.4.0-beta.11

1 year ago

6.4.0-dev.20

1 year ago

6.4.0-dev.19

1 year ago

6.4.0-beta.10

1 year ago

6.4.0-beta.9

1 year ago

6.4.0-hot.6

1 year ago

6.4.0-hot.7

1 year ago

6.4.0-dev.18

1 year ago

6.4.0-dev.17

1 year ago

6.4.0-dev.16

1 year ago

6.4.0-dev.15

1 year ago

6.4.0-hot.5

1 year ago

6.4.0-dev.14

1 year ago

6.4.0-beta.8

1 year ago

6.4.0-test.1

1 year ago

6.4.0-hot.3

1 year ago

6.4.0-hot.4

1 year ago

6.4.0-hot.2

1 year ago

6.4.0-dev.13

1 year ago

6.4.0-hot.1

1 year ago

6.4.0-dev.12

1 year ago

6.4.0-beta.7

1 year ago

6.4.0-dev.11

1 year ago

6.4.0-dev.10

1 year ago

6.4.0-dev.9

1 year ago

6.4.0-dev.5

1 year ago

6.4.0-dev.4

1 year ago

6.4.0-dev.7

1 year ago

6.4.0-dev.6

1 year ago

6.4.0-dev.1

1 year ago

6.4.0-dev.3

1 year ago

6.4.0-dev.2

1 year ago

6.3.0-beta.0

1 year ago

6.3.0-beta.1

1 year ago

6.3.0-beta.3

1 year ago

6.3.0-beta.4

1 year ago

6.3.0-beta.8

1 year ago

6.3.0-beta.9

1 year ago

6.4.0-dev.8

1 year ago

6.4.0-beta.5

1 year ago

6.4.0-beta.6

1 year ago

6.4.0-beta.3

1 year ago

6.4.0-beta.4

1 year ago

6.4.0-beta.1

1 year ago

6.4.0-beta.2

1 year ago

6.3.0-beta.10

1 year ago

6.3.0-beta.12

1 year ago

6.3.0-beta.11

1 year ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago