(col {:keys [width sm-width md-width lg-width xl-width halign valign push
sm-push md-push lg-push xl-push]
:as props}
&
children)
Output a div that represents a column in the 12-column responsive grid.
NOTE: halign works on anything, valign on on rows
Output a div that represents a column in the 12-column responsive grid. NOTE: halign works on anything, valign on on rows
(concat-class-string fragments)
(concat-class-string type fragments)
(concat-class-string base-str type fragments)
fragments
is a collection of fragmentsto concatinate.
`fragments` is a collection of fragmentsto concatinate.
(filter-button icon-type data)
(filter-button icon-type data this-filter current-filter toggle-filter-cb)
(make-test-renderer {:keys [with-websockets?] :or {with-websockets? true}})
(row {:keys [distribute-extra-columns halign valign density] :as props}
&
children)
Generate a layout row. This is a div container for a row in a 12-wide grid responsive layout.
Rows should contain layout columns generated with the col
function of this namespace.
The properties are normal DOM attributes as a cljs map and can include standard React DOM properties.
:distribute-extra-columns
can be :between or :around, and indicates where to put unused columns.
- :between Unused column space is even distributed between columns
2COL _____ 2COL _____ 2COL
- :around Unused column space is even distributed around columns
__ 2COL __ 2COL __ 2COL __
:halign
can be :start, :center, or :end for positioning a single child column in that position
:valign
can be :top, :middle, or :bottom and will affect the vertical positioning of nested cells that do not
share a common height.
Generate a layout row. This is a div container for a row in a 12-wide grid responsive layout. Rows should contain layout columns generated with the `col` function of this namespace. The properties are normal DOM attributes as a cljs map and can include standard React DOM properties. `:distribute-extra-columns` can be :between or :around, and indicates where to put unused columns. - :between Unused column space is even distributed between columns 2COL _____ 2COL _____ 2COL - :around Unused column space is even distributed around columns __ 2COL __ 2COL __ 2COL __ `:halign` can be :start, :center, or :end for positioning a single child column in that position `:valign` can be :top, :middle, or :bottom and will affect the vertical positioning of nested cells that do not share a common height.
(test-info {:keys [pass fail error namespaces end-time run-time]}
current-filter
toggle-filter-cb)
(title-case s)
Capitalize every word in a string
Capitalize every word in a string
(ui-checkbox {:keys [id state checked className] :as props})
Render a checkbox (not the label). Props is a normal clj(s) map with React/HTML attributes plus:
:className
- additional class stylings to apply to the top level of the checkbox
:id
string - Unique DOM ID. Required for correct rendering.
:checked
- true, false, or :partial
Render a checkbox (not the label). Props is a normal clj(s) map with React/HTML attributes plus: `:className` - additional class stylings to apply to the top level of the checkbox `:id` string - Unique DOM ID. Required for correct rendering. `:checked` - true, false, or :partial
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close