0.1.376 • Published 2 months ago

deskera-ui-library v0.1.376

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

DESKERA-UI-LIBRARY

deskera-ui-library is a set of React components, so understanding how React fits into web development is important.

Installing

Install the package in your project directory with:

// with npm
npm install deskera-ui-library

// with yarn
yarn add deskera-ui-library

List of components

showAlert

Alert box

Props

PropertyTypeRequiredValue
titleStringtrueempty
messageString
classNameString

Event

EventArgumentsDescription
onClickEmitted when clicked on button

Example

import { showAlert } from "deskera-ui-library";

showAlert("Updated successfully")

DKButton

Use button

Props

PropertyTypeRequiredValue
titleStringtrueempty
iconString
classNameString
styleString
isReverseBoolean

Event

EventArgumentsDescription
onClickEmitted when clicked on button

Example

import { DKButton } from "deskera-ui-library";

//simple button
<DKButton title="Try Now" className="text-white"/>

//button with icon
<DKButton title="Try Now" className="text-white" icon={`image_path`} />

DKCheckMark

Use Checkbox

Props

PropertyTypeRequiredValue
titleStringtrueempty
colorString
classNameString
isSelectedBoolean

Event

EventArgumentsDescription
onClickEmitted when clicked on check/uncheck

Example

import { DKCheckMark } from "deskera-ui-library";

<DKCheckMark title="Try Now" isSelected = {`true`} className="text-black"/>

DKContactIcon

Contact Icon

Props

PropertyTypeRequiredValue
titleStringtrueempty
classNameString

Example

import { DKContactIcon } from "deskera-ui-library";

<DKContactIcon title="Contact" />

DKHeader

Header Text

Props

PropertyTypeRequiredValue
textStringtrue
classNameString

Example

import { DKHeader } from "deskera-ui-library";

<DKHeader text="Heading title" />

DKIcon

Icon

Props

PropertyTypeRequiredValue
srcStringtrue
classNameString
styleString

Event

EventArgumentsDescription
onClickEmitted when clicked on check/uncheck

Example

import { DKIcon } from "deskera-ui-library";

<DKIcon src={`icon_path`} />

DKLabel

Label

Props

PropertyTypeRequiredValue
textStringtrue
classNameString
styleString

Example

import { DKLabel } from "deskera-ui-library";

<DKLabel text="Enter your phone no" />

DKLine

Line

Props

PropertyTypeRequiredValue
classNameString
styleString

Example

import { DKLine } from "deskera-ui-library";

<DKLine className="mt-m"/>

DKListPicker

List picker

Props

PropertyTypeRequiredValue
titleStringtrue-
classNameString-
styleString-
dataString-
iconsDKIcon-
iconClassNameString-
button{}-
needIconString-
needEditBoolean-
needDeleteBoolean-
allowSearchBoolean-

Event

EventArgumentsDescription
onSelectindex, valueEmitted when select an option
onEditindex, valueEmitted when editing an option
onDeleteindex, valueEmitted when deleting an option
onCloseEmitted when click on close button

Example

import { DKListPicker } from "deskera-ui-library";

<DKListPicker title="List Title" data={["Option1", "Option2"]} icons={[DKIcons.ic_edit, DKIcons.ic_delete]}  onSelect={(index, value)=>{}}
button={{title:"+ Add title", icon:"ic_add", className:"", style:{}, onClick:() => {} }}
/>;

DKListPicker2

Dynamic & Flexible List picker (with Object handling & search api functionalities)

Props

PropertyTypeRequiredValue
titleStringtrue-
classNameString-
styleString-
data{}-
iconClassNameString-
button{}-
needEditBoolean-
needDeleteBoolean-
allowSearchBoolean-
searchableKeyString-
searchApiConfig{}-

Event

EventArgumentsDescription
onSelectindex, objEmitted when select an option
onEditindex, objEmitted when editing an option
onDeleteindex, objEmitted when deleting an option
onCloseEmitted when click on close button
rendererindex, objEmitted while rendering list items

Example

import { DKListPicker2 } from "deskera-ui-library";

<DKListPicker2
  title="List Title"
  data={[{id: "0001", name: "Toy Car"}, {id: "0002", name: "Screw"}, {id: 0003", name: "Study Table"}]}
  searchableKey="name"
  renderer={(index, obj)=>(<span>{obj.name}</span>)}
  onSelect={(index, obj)=>{}}
  searchApiConfig={{
    method: "GET",
    getUrl: (val) => {
      return "https://jsonplaceholder.typicode.com/comments";
    },
    dataParser: (response) => {
      return response;
    },
    getPayload: (text) => {
      return null;
    },
    debounceTime: 250
  }}
  />;

DKSectionHeader

Section of header

Props

PropertyTypeRequiredValue
textStringtrue
classNameString
styleString

Example

import { DKSectionHeader } from "deskera-ui-library";

<DKSectionHeader text="Header Title" />

DKSpaceH

Space Horizontal

Props

PropertyTypeRequiredValue
valueIntegertrue10

Example

import { DKSpaceH } from "deskera-ui-library";

<DKSpaceH value="10" />

DKSpaceV

Space Horizontal

Props

PropertyTypeRequiredValue
valueIntegertrue10

Example

import { DKSpaceV } from "deskera-ui-library";

<DKSpaceV value="10" />

DKSpinner

Spinner

Props

PropertyTypeRequiredValue
titleString--
classNameString--

Example

import { DKSpinner } from "deskera-ui-library";

//only spinner
<DKSpinner />


//spinner with title
<DKSpinner title="Loading" />

DKStatus

Status

Props

PropertyTypeRequiredValue
titleStringtrue-
classNameString--
colorString--

Example

import { DKStatus } from "deskera-ui-library";

<DKStatus title="Pending" color="bg-red"/>

DKSubLabel

Sub label

Props

PropertyTypeRequiredValue
textStringtrue-
classNameString--

Example

import { DKSubLabel } from "deskera-ui-library";

<DKSubLabel text="List of items"/>

DKTable

Table

Props

PropertyTypeRequiredValue
header {title, type, width} true-
values val1, val2, .... ]true-
isUpdatingBoolean--
classNameString--

Event

EventArgumentsDescription
onRowClickEmitted when click on row
onActionEmitted when click on action
onColumnShiftEmitted when column change
onSortEmitted when click on sort

Example

import { DKTable } from "deskera-ui-library";

<DKTable header="[{ title: "Name", width: 14.2, ... }]" values="["James",...]"/>

DKTextarea

Text area

Props

PropertyTypeRequiredValue
placeHolderString--
valueany--
classNameString--
isEditableBoolean--
isUpperCaseBoolean--
typeText/Number/Static/Password--

Event

EventArgumentsDescription
onChangeEmitted when text change
onClickEmitted when click on

Example

import { DKTextarea } from "deskera-ui-library";

<DKTextarea  type="Text" placeHolder="Message" value="" onChange={(value) => {}}/>

DKTextField

Text Field

Props

PropertyTypeRequiredValue
placeHolderString--
valueany--
classNameString--
isEditableBoolean--
isUpperCaseBoolean--
typeText/Number/Static/Password--

Event

EventArgumentsDescription
onChangeEmitted when text change
onClickEmitted when click on

Example

import { DKTextField } from "deskera-ui-library";

<DKTextField  type="Text" placeHolder="Message" value="" onChange={(value) => {}}/>

DkInput

Input Field

Props

PropertyTypeRequiredValue
classNameString--
typeINPUT_TYPES--
nameString--
valueString--
placeholderString--
requiredBoolean--
needHeaderBoolean--
readonlyBoolean--
iconString(src)--
canValidateBoolean--
directionString--
style{...}--
errorMessageString--
autofocusINPUT_TYPES--
options"Op1", ...--
dropdownConfig{...}--
datePickerConfig{...}--

Event

EventArgumentsDescription
onChangeEmitted when text change
onClickEmitted when Input section is clicked
onFocusEmitted when text field receives focus

Example

import { DKInput } from "deskera-ui-library";

<DKInput name="fullName" value="" onChange={(value) => {}}/>
 dropdownConfig:
 {
   data?: [],
   allowSearch?: boolean,
   searchApiConfig?: {
     method?: "POST"/"GET"...,
     getUrl: (searchValue) => string,
     getPayload: (searchValue) => {...payload},
     dataParser: (response) => data
     debounceTime?: number
   },
   canEdit?: boolean,
   canDelete?: boolean,
   button?: {
     title: string,
     icon: string,
     className: string,
     style: {...},
     onClick: () => {}
   },
   renderer?: (value) => {},
   onSelect?: (index, value) => {},
   onEdit?: (index, value) => {},
   onDelete?: (index, value) => {}
 }

 datePickerConfig:
 {
   isDateRange?: boolean,
   className?: string,
   startDate?: date,
   endDate?: date,
   color?: string,
   needDualRangePicker?: boolean
 }

Toggle

Toggle

Props

PropertyTypeRequiredValue
isOnBoolean--
classNameString--

Event

EventArgumentsDescription
onChangeEmitted when click on button

Example

import { Toggle } from "deskera-ui-library";

<Toggle isOn={`true`}/>

DKDataGrid

Data Grid

Props

PropertyTypeRequiredValue
columns{key, name, type, width, options}--
rows{key: value}--
allowRowEditBoolean--
allowRowAddBoolean--
allowBottomRowAddBoolean--
allowColumnAddBoolean--
allowColumnShiftBoolean--
allowSearchBoolean--
allowFilterBoolean--
allowShareBoolean--
showHeaderBoolean--
isAllRowSelectedBoolean--
dateFormatString--
currentPageNumber--
totalPageCountNumber--
filterData{query: {key, condition, value}}--
filterOperatorString-"and"/"or"
addButton{title, icon, className, style, onClick}--
updatingBoolean--
updatingViewDiv--
contextMenu{title, icon, className, onClick}--

Row properties

PropertyTypeRequiredValue
rowContextMenu{title, icon, className, onClick}--
rowButtons{title, icon, className, onClick}--
allowRowEditBoolean--

Event

EventArgumentsDescription
onRowUpdaterowIndex, rowData, columnKey, columnDataEmitted when change of row
onColumnUpdatecolumnIndex, columnData, propertyEmitted when change of coloumn
onRowAddrowDataEmitted when change of add row
onColumnAddcolumnDataEmitted when change of add column
onColumnDeletecolumnIndex, columnDataEmitted when column delete
onColumnShiftnewIndex, oldIndexEmitted when column shift
onFilterquery: {}, logicalOperator: stringEmitted when on filter
onShareEmitted when on filter
onSearchsearchTextEmitted when on search
onRowClickrowIndex, rowDataEmitted when click on row
onRowOpenClickrowIndex, rowDataEmitted when click on row
onRowSelectrowIndex, rowDataEmitted when click on row
onAllRowSelectEmitted when click on row
onPageChangepageNo(Enables new paginator UI) Emitted when click on page in paginator
onPrevPageTappedEmitted when click on row
onNextPageTappedEmitted when click on row
onDataSourceClickcolumnNameEmitted when click on data source

Example

import { DKDataGrid } from "deskera-ui-library";

<DKDataGrid columns=[{
  key: "name",
  name: "Name",
  type: "Text",
  width: 10.2,
  systemField: false,
  editable: true,
  hidden: false,
  uiVisible: false,
  required: false,
  allowAddOption: false,}, ....]
  rows=[{name: "Zahir Rout"},...]/>

DKCalendar

Calendar

Props

PropertyTypeRequiredValue
selectedDateDate--
monthnumber--
yearnumber--
selectedDateString[]--
isDateRangeBoolean--
selectedStartDateDate--
selectedEndDateDate--

Event

EventArgumentsDescription
onSelectDateRangeEmitted when data range

Example

import { DKCalendar } from "deskera-ui-library";

<DKCalendar selectedDate={value} onSelectDate={(date) => {}} />

DKDateRangePicker

Dual Range Calendar

Props

PropertyTypeRequiredValue
startDateDate--
selectedStartDateDate--
selectedEndDateDate--
classNamestring--
style{...}--
colorstring(rgba())--
showPresetListboolean--

Event

EventArgumentsDescription
onSelectDateRangestartDate, endDateEmitted when data range

Example

import { DKDateRangePicker } from "deskera-ui-library";

<DKDateRangePicker startDate={value} onSelectDate={(start, end) => {}} />

showLoader

Show loader

Props

PropertyTypeRequiredValue
titleString--

Example

import { showLoader } from "deskera-ui-library";

showLoader("Loading...")

removeLoader

Remove loader

Example

import { removeLoader } from "deskera-ui-library";

removeLoader()

showToast

Show toast

Props

PropertyTypeRequiredValue
messageString--
typedefault,success,failure,warning--
directiontop,bottom--

Example

import { showToast } from "deskera-ui-library";

showToast("Please enter valid email", "failure", "top")

DataEntryPopup

Data Entry Popup

Props

PropertyTypeRequiredValue
formElementsArray--

Event

EventArgumentsDescription
onCancelEmitted when click on cancel button
onSubmitEmitted when click on submit button

Example

import { DataEntryPopup } from "deskera-ui-library";

<DataEntryPopup formElements=[{name: "Email", floatLabel: false, required: true, type: 'email', value: "", requestKey: "email"}, ...], />

DKSelectBox

Select Box

Props

PropertyTypeRequiredValue
nameStringtrue-
valueany--
optionsany--
descriptionString--
classNameString--
invalidBoolean--
requiredBoolean--

Event

EventArgumentsDescription
onSelectEmitted when it selected

Example

import { DKSelectBox } from "deskera-ui-library";

<DKSelectBox  name="Please select"  options=["val1", "val2", ...] value=""/>

FormPopup

Form Popup

Props

PropertyTypeRequiredValue
formElementsObjecttrue-

Event

EventArgumentsDescription
onCancelEmitted when click on cancel button
onSubmitEmitted when click on submit button

Example

import { FormPopup } from "deskera-ui-library";

<FormPopup  formElements=[{name: "Email", floatLabel: false, required: true, type: 'email', value: "", requestKey: "email"}, ...]/>

Border

// Border
.border-none
.border-s
.border-m
.border-red
.border-green
.border-orange
.border-blue

// Border Radius
.border-radius-s
.border-radius-m
.border-radius-r
.border-radius-l
.border-radius-xxl
.border-radius-none

Colors

// Background color
.bg-menu
.bg-dark-gray
.bg-gray
.bg-gray1
.bg-gray2
.bg-gray3
.bg-gray4
.bg-gray5
.bg-line
.bg-line-2
.bg-red
.bg-yellow
.bg-green
.bg-white
.bg-blue
.bg-orange
.bg-transparent
.bg-whats-app
.bg-telegram
.bg-india-shield
.bg-deskera
.bg-erp
.bg-crm
.bg-people
.bg-aio
.bg-deskera-secondary
.bg-erp-secondary
.bg-crm-secondary
.bg-people-secondary
.bg-aio-secondary
.bg-chip-gray
.bg-chip-green
.bg-chip-blue
.bg-chip-red
.bg-chip-orange

// Text color
.text-gray
.text-dark-gray
.text-white
.text-royalblue
.text-green
.text-orange
.text-blue
.text-red
.text-cut
.text-line-through

Common

.main-holder
.app-font-family
.transparent-background
.transparent-background-light
.popup-window

// Position
.position-absolute
.position-relative

// Display
.border-box
.display-block
.display-none
.circle

// Responsive
.display-only-web
.display-only-mobile
.scroll-y-only-web

.listPickerBG
.listPickerBG:hover
::-webkit-scrollbar
.hide-scroll-bar

// Responsive MR, ML
.pr-r-only-web
.ml-l-only-web
.main-holder-p-horizontal
.main-holder-p-vertical

.blur
.unselectable

Cursor

.cursor-hand
.cursor-move
.cursor-col-resize

DataGrid

.data-grid-right-border
.data-grid-bottom-border
.data-grid-top-border
.data-grid-header
.data-grid-header:hover
.data-grid-selected-bg
.data-grid-badge-color-1
.data-grid-badge-color-2
.data-grid-badge-color-3
.data-grid-badge-color-4
.data-grid-badge-color-5
.data-grid-badge-color-6
.data-grid-badge-color-7
.data-grid-badge-color-8
.data-grid-badge-color-9
.data-grid-badge-color-10
.data-grid-filter-arrow

Flex

.row
.row-reverse
.column
.row-responsive
.flex-wrap
.flex-1

.justify-content-around
.justify-content-center
.justify-content-start
.justify-content-end
.justify-content-between

.align-items-center
.align-items-baseline
.align-items-start
.align-items-end
.align-items-stretch

.align-self-center
.align-self-start
.align-self-end

.justify-self-center
.justify-self-start
.justify-self-end

Font

.fs-r
.fs-xs
.fs-s
.fs-m
.fs-l
.fs-xl
.fs-xl-2
.fs-xxl
.fs-xxxl

// Font weight
.fw-l
.fw-r
.fw-m
.fw-b
.fw-h

// Text alignment
.text-wrap-none
.text-wrap
.text-trailing
.text-align-left
.text-align-center
.text-align-right
.text-align-justify

Icon

.ic-r
.ic-xs
.ic-xs-2
.ic-s
.ic-s-2
.ic-m
.ic-r-2
.ic-r-3
.ic-l
.ic-xl
.ic-contact-r

Zindex

.z-index-1
.z-index-2
.z-index-3
.z-index-4
.z-index-5
.z-index-6

Text Field

.textField
.textField:focus
.textField-warning
.textField-invalid
.TextFieldFilter
.TextFieldFilterError
.textarea-resize
.textarea-resize

Sizes

.screen-width
.screen-height
.parent-width
.parent-height
.parent-size
.width-auto
.width-80
.width-90

Shadow

.shadow-s
.shadow-m
.shadow-l
.shadow-red-m

Padding

 // Padding - r
.p-r
.p-h-r
.p-v-r
.pl-r
.pr-r
.pt-r
.pb-r

 // Padding - xs
.p-xs
.p-h-xs
.p-v-xs
.pl-xs
.pr-xs
.pt-xs
.pb-xs

 // Padding - s
.p-s
.p-h-s
.p-v-s
.pl-s
.pr-s
.pt-s
.pb-s

 // Padding - m
.p-m
.p-h-m
.p-v-m
.pl-m
.pr-m
.pt-m
.pb-m

 // Padding - l
.p-l
.p-h-l
.p-v-l
.pl-l
.pr-l
.pt-l
.pb-l

 // Padding - xl
.p-xl
.p-h-xl
.p-v-xl
.pl-xl
.pr-xl
.pt-xl
.pb-xl

 // Padding - xxl
.p-xxl
.p-h-xxl
.p-v-xxl
.pl-xxl
.pr-xxl
.pt-xxl
.pb-xxl

Margin

 // Margin - r
.m-r
.m-h-r
.m-v-r
.ml-r
.mr-r
.mt-r
.mb-r

 // Margin - xs
.m-xs
.m-h-xs
.m-v-xs
.ml-xs
.mr-xs
.mt-xs
.mb-xs

 // Margin - s
.m-s
.m-h-s
.m-v-s
.ml-s
.mr-s
.mt-s
.mb-s

 // Margin - m
.m-m
.m-h-m
.m-v-m
.ml-m
.mr-m
.mt-m
.mb-m

 //Margin - l
.m-l
.m-h-l
.m-v-l
.ml-l
.mr-l
.mt-l
.mb-l

 // Margin - xl
.m-xl
.m-h-xl
.m-v-xl
.ml-xl
.mr-xl
.mt-xl
.mb-xl

 // Margin - xxl
.m-xxl
.m-h-xxl
.m-v-xxl
.ml-xxl
.mr-xxl
.mt-xxl
.mb-xxl
0.1.376

2 months ago

0.1.374

2 months ago

0.1.375

2 months ago

0.1.373

2 months ago

0.1.372

3 months ago

0.1.371

4 months ago

0.1.369

4 months ago

0.1.370

4 months ago

0.1.368

4 months ago

0.1.366

4 months ago

0.1.365

4 months ago

0.1.364

5 months ago

0.1.359

9 months ago

0.1.356

9 months ago

0.1.355

9 months ago

0.1.358

9 months ago

0.1.357

9 months ago

0.1.354

9 months ago

0.1.353

9 months ago

0.1.363

8 months ago

0.1.362

8 months ago

0.1.361

9 months ago

0.1.360

9 months ago

0.1.352

11 months ago

0.1.351

11 months ago

0.1.350

11 months ago

0.1.349

11 months ago

0.1.348

12 months ago

0.1.345

12 months ago

0.1.347

12 months ago

0.1.346

12 months ago

0.1.344

12 months ago

0.1.341

1 year ago

0.1.340

1 year ago

0.1.343

1 year ago

0.1.342

1 year ago

0.1.338

1 year ago

0.1.337

1 year ago

0.1.339

1 year ago

0.1.336

1 year ago

0.1.335

1 year ago

0.1.329

2 years ago

0.1.333

2 years ago

0.1.330

2 years ago

0.1.331

2 years ago

0.1.327

2 years ago

0.1.326

2 years ago

0.1.323

2 years ago

0.1.325

2 years ago

0.1.324

2 years ago

0.1.316

2 years ago

0.1.315

2 years ago

0.1.318

2 years ago

0.1.317

2 years ago

0.1.312

2 years ago

0.1.311

2 years ago

0.1.314

2 years ago

0.1.313

2 years ago

0.1.319

2 years ago

0.1.322

2 years ago

0.1.321

2 years ago

0.1.320

2 years ago

0.1.309

2 years ago

0.1.308

2 years ago

0.1.310

2 years ago

0.1.307

2 years ago

0.1.305

2 years ago

0.1.304

2 years ago

0.1.306

2 years ago

0.1.301

2 years ago

0.1.300

2 years ago

0.1.303

2 years ago

0.1.302

2 years ago

0.1.297

2 years ago

0.1.296

2 years ago

0.1.298

2 years ago

0.1.295

2 years ago

0.1.249

2 years ago

0.1.245

2 years ago

0.1.248

2 years ago

0.1.247

2 years ago

0.1.244

2 years ago

0.1.243

2 years ago

0.1.257

2 years ago

0.1.256

2 years ago

0.1.259

2 years ago

0.1.258

2 years ago

0.1.253

2 years ago

0.1.252

2 years ago

0.1.255

2 years ago

0.1.254

2 years ago

0.1.250

2 years ago

0.1.268

2 years ago

0.1.267

2 years ago

0.1.269

2 years ago

0.1.264

2 years ago

0.1.263

2 years ago

0.1.266

2 years ago

0.1.265

2 years ago

0.1.260

2 years ago

0.1.262

2 years ago

0.1.261

2 years ago

0.1.279

2 years ago

0.1.278

2 years ago

0.1.275

2 years ago

0.1.274

2 years ago

0.1.277

2 years ago

0.1.276

2 years ago

0.1.271

2 years ago

0.1.270

2 years ago

0.1.273

2 years ago

0.1.272

2 years ago

0.1.280

2 years ago

0.1.286

2 years ago

0.1.285

2 years ago

0.1.288

2 years ago

0.1.287

2 years ago

0.1.282

2 years ago

0.1.281

2 years ago

0.1.284

2 years ago

0.1.291

2 years ago

0.1.290

2 years ago

0.1.293

2 years ago

0.1.292

2 years ago

0.1.294

2 years ago

0.1.239

2 years ago

0.1.238

2 years ago

0.1.235

2 years ago

0.1.234

2 years ago

0.1.237

2 years ago

0.1.236

2 years ago

0.1.231

2 years ago

0.1.230

2 years ago

0.1.233

2 years ago

0.1.242

2 years ago

0.1.241

2 years ago

0.1.240

2 years ago

0.1.205

2 years ago

0.1.208

2 years ago

0.1.207

2 years ago

0.1.202

2 years ago

0.1.201

2 years ago

0.1.204

2 years ago

0.1.203

2 years ago

0.1.200

2 years ago

0.1.217

2 years ago

0.1.216

2 years ago

0.1.219

2 years ago

0.1.218

2 years ago

0.1.213

2 years ago

0.1.212

2 years ago

0.1.215

2 years ago

0.1.214

2 years ago

0.1.211

2 years ago

0.1.210

2 years ago

0.1.228

2 years ago

0.1.227

2 years ago

0.1.224

2 years ago

0.1.223

2 years ago

0.1.225

2 years ago

0.1.220

2 years ago

0.1.222

2 years ago

0.1.221

2 years ago

0.1.198

3 years ago

0.1.197

3 years ago

0.1.199

3 years ago

0.1.196

3 years ago

0.1.190

3 years ago

0.1.192

3 years ago

0.1.191

3 years ago

0.1.194

3 years ago

0.1.193

3 years ago

0.1.195

3 years ago

0.1.169

3 years ago

0.1.168

3 years ago

0.1.165

3 years ago

0.1.164

3 years ago

0.1.167

3 years ago

0.1.166

3 years ago

0.1.161

3 years ago

0.1.163

3 years ago

0.1.162

3 years ago

0.1.170

3 years ago

0.1.179

3 years ago

0.1.176

3 years ago

0.1.175

3 years ago

0.1.178

3 years ago

0.1.177

3 years ago

0.1.172

3 years ago

0.1.171

3 years ago

0.1.174

3 years ago

0.1.173

3 years ago

0.1.181

3 years ago

0.1.180

3 years ago

0.1.187

3 years ago

0.1.186

3 years ago

0.1.189

3 years ago

0.1.188

3 years ago

0.1.183

3 years ago

0.1.182

3 years ago

0.1.185

3 years ago

0.1.184

3 years ago

0.1.147

3 years ago

0.1.149

3 years ago

0.1.148

3 years ago

0.1.158

3 years ago

0.1.157

3 years ago

0.1.159

3 years ago

0.1.154

3 years ago

0.1.153

3 years ago

0.1.156

3 years ago

0.1.155

3 years ago

0.1.150

3 years ago

0.1.152

3 years ago

0.1.151

3 years ago

0.1.160

3 years ago

0.1.139

3 years ago

0.1.138

3 years ago

0.1.146

3 years ago

0.1.143

3 years ago

0.1.142

3 years ago

0.1.145

3 years ago

0.1.144

3 years ago

0.1.141

3 years ago

0.1.140

3 years ago

0.1.137

3 years ago

0.1.136

3 years ago

0.1.135

3 years ago

0.1.134

3 years ago

0.1.132

3 years ago

0.1.131

3 years ago

0.1.133

3 years ago

0.1.130

3 years ago

0.1.129

3 years ago

0.1.128

3 years ago

0.1.125

3 years ago

0.1.127

3 years ago

0.1.126

3 years ago

0.1.124

3 years ago

0.1.118

3 years ago

0.1.117

3 years ago

0.1.119

3 years ago

0.1.116

3 years ago

0.1.115

3 years ago

0.1.121

3 years ago

0.1.120

3 years ago

0.1.123

3 years ago

0.1.122

3 years ago

0.1.114

3 years ago

0.1.110

3 years ago

0.1.112

3 years ago

0.1.111

3 years ago

0.1.109

3 years ago

0.1.108

3 years ago

0.1.99

3 years ago

0.1.107

3 years ago

0.1.106

3 years ago

0.1.103

3 years ago

0.1.102

3 years ago

0.1.105

3 years ago

0.1.104

3 years ago

0.1.101

3 years ago

0.1.100

3 years ago

0.1.97

3 years ago

0.1.98

3 years ago

0.1.96

3 years ago

0.1.95

3 years ago

0.1.90

3 years ago

0.1.91

3 years ago

0.1.92

3 years ago

0.1.93

3 years ago

0.1.94

3 years ago

0.1.85

3 years ago

0.1.86

3 years ago

0.1.87

3 years ago

0.1.88

3 years ago

0.1.89

3 years ago

0.1.84

3 years ago

0.1.82

3 years ago

0.1.83

3 years ago

0.1.80

3 years ago

0.1.81

3 years ago

0.1.74

3 years ago

0.1.75

3 years ago

0.1.76

3 years ago

0.1.77

3 years ago

0.1.78

3 years ago

0.1.79

3 years ago

0.1.72

3 years ago

0.1.73

3 years ago

0.1.70

3 years ago

0.1.71

3 years ago

0.1.69

3 years ago

0.1.65

3 years ago

0.1.66

3 years ago

0.1.67

3 years ago

0.1.68

3 years ago

0.1.63

3 years ago

0.1.64

3 years ago

0.1.62

3 years ago

0.1.54

3 years ago

0.1.55

3 years ago

0.1.56

3 years ago

0.1.57

3 years ago

0.1.58

3 years ago

0.1.59

3 years ago

0.1.60

3 years ago

0.1.52

3 years ago

0.1.53

3 years ago

0.1.50

3 years ago

0.1.51

3 years ago

0.1.49

3 years ago

0.1.46

3 years ago

0.1.48

3 years ago

0.1.44

3 years ago

0.1.45

3 years ago

0.1.34

3 years ago

0.1.35

3 years ago

0.1.36

3 years ago

0.1.37

3 years ago

0.1.41

3 years ago

0.1.42

3 years ago

0.1.43

3 years ago

0.1.40

3 years ago

0.1.38

3 years ago

0.1.39

3 years ago

0.1.33

3 years ago

0.1.30

3 years ago

0.1.31

3 years ago

0.1.32

3 years ago

0.1.27

3 years ago

0.1.28

3 years ago

0.1.29

3 years ago

0.1.20

3 years ago

0.1.21

3 years ago

0.1.22

3 years ago

0.1.23

3 years ago

0.1.25

3 years ago

0.1.26

3 years ago

0.1.18

3 years ago

0.1.19

3 years ago

0.1.13

3 years ago

0.1.14

3 years ago

0.1.15

3 years ago

0.1.16

3 years ago

0.1.17

3 years ago

0.1.12

3 years ago

0.1.11

3 years ago

0.1.10

3 years ago

0.1.8

3 years ago

0.1.9

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago