Ray Stubbs
Ray Stubbs
I have an `icons.clj` with a macro for generating icon markup, and an `icon.cljs` with `:require-macros`. The CSS for `icons.clj` never gets generated. It looks like multiple files with the...
Any chance these can be parameterized? ```clojure ; girouette.processor:88-95 (defn- string->classes [s] (->> (str/split s #"\s+") (remove str/blank?))) (defn- kw->classes [kw] (->> (name kw) (re-seq #"\.[^\.#]+") (map (fn [s] (subs...
Allow predicate to be customized for these utilities.
We repeat a lot of work, and can end up with some inconsistencies in binding values with the way things are now. An alternative is to have an actual dependency...
Previously I'd thought the `extends` option for custom element definitions wasn't supported by several browsers, so didn't expose it in Zero. Turns out only WebKit/Safari doesn't support it these days,...
The following snippet breaks when `contents` is an empty array. Seems like bounds checking on `sourceIndex` and `offset` aren't correct for 0 length ArrayBuffer. ```csharp public IArrayBuffer CreateJsBuffer(byte[] contents) {...
Data streams should have a grace period after the watch count reaches zero, before winding down.
**Describe the bug** This doesn't work: ``` (deftype MyRouteInfoProvider [] :extends m/RouteInformationProvider (routerReportsNewRouteInformation [_ routeInfo .type m/RouteInformationReportingType.none] ...) ...) ``` The `m/RouteInformationReportingType.none` is treated as another parameter name, instead of...
**Is your feature request related to a problem? Please describe.** It seems like the CSS [`:host`](https://developer.mozilla.org/en-US/docs/Web/CSS/:host) selector isn't supported yet. Would be great to have this. **Describe the solution you'd...