Liking cljdoc? Tell your friends :D

License Deploy Clojars

ant.design

A ClojureScript library for Ant Design

Quick Start Guide

Add the following dependency in your project:

;; project.clj or build.boot
[ant.design "RELEASE"]

;; deps.edn
{:deps {ant.design {:mvn/version "RELEASE"}}}

Usage

(ns example.app
  (:require [ant.design :as ant]))

(defn my-button []
  [ant/button {:onClick #(js/console.log "Amazing...")}
    "Click me"])

Deploy

# create a new git tag (available types `minor`, `major`)
$ make patch

# push a new git tag to Github then wait for GitHub Actions
# start to deploy the new version to clojars
$ git push origin --tags

Available commands

$ make help
help                           Show help
repl                           Run nREPL
clean                          Clean
lint                           Run linter
build                          Build jar
init                           Init first version
patch                          Increment patch version
minor                          Increment minor version
major                          Increment major version
deploy                         Deploy to clojars

Changelog

v5.1.0

  • antd library updated to v3.24.3

  • reverted artifact coordinates

  • removed deprecated components:

    • mention

    • mention-nav

    • locale-provider

v5.0.3

  • fixed clj-kondo warnings

v5.0.1

  • antd library updated to v3.23.4

  • migrated from cambada to depstar

v5.0.0

  • added automated releases with Github Actions

  • changed artifact coordinates

v4.0.0

  • the library version is now independent of the antd library version

  • added new libraries for automation

    • com.workframe/garamond 0.4.0

    • deps-deploy 0.0.9

  • cambada library updated to 1.0.7

  • deprecated components:

    • mention

    • mention-nav

    • locale-provider

  • added form functions:

    • get-field-decorator

    • get-field-error

    • get-fields-error

    • get-field-value

    • get-fields-value

    • field-touched?

    • fields-touched?

    • field-validating?

    • reset-fields

    • set-fields

    • set-fields-value

    • validate-fields

    • validate-fields-and-scroll

v3.22.0-1

  • deps are explicitly indicated

v3.22.0-0

v3.21.1-0

  • antd library updated to v3.21.1

  • added new component breadcrumb-separator

v3.19.0-0

  • antd library updated to v3.19.0

  • added new components mentions, descriptions

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close