🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

css-doodle

Package Overview
Dependencies
Maintainers
1
Versions
191
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

css-doodle - npm Package Versions

1345
20

0.40.4

Diff
yuanchuan
published 0.40.4 •

Changelog

Source

0.40.4

  • No change.
yuanchuan
published 0.40.3 •

Changelog

Source

0.40.3

  • Add @Ii, @Xx, @Yy and @Nn.
  • Quick addition to support container hover selector.
  • Use background instead of background-color for grid bg value.
  • Return empty list for invalid iteration value.
  • Remove cached value for plot function.
  • Fix empty selector name.
  • Fix returned plot points value.
  • Fix undefined unit.
  • Fix calc with var().
yuanchuan
published 0.40.2 •

Changelog

Source

0.40.2

  • Fix css selector parsing.
  • Fix animation name in root element.
yuanchuan
published 0.40.1 •

Changelog

Source

0.40.1

  • Fix export path.
  • Improve unit handleing in calc chain.
  • Improve noise implementation code.
  • Set default degree unit form * command.
yuanchuan
published 0.40.0 •

Changelog

Source

0.40.0

  • Prevent hash and possible build error.
  • Fix error in SSR.
  • Fix bad variables.
  • Switch to exbuild.
  • Improve selector parsing to support media query.
  • Add View Transition via view-transition attribute or viewTransition option in update().
  • Use native NodeJS test runner.
  • Extend * command to support hue-rotate().
  • Add @nd in the context of @m/@M, similar to @dx/@dy.
yuanchuan
published 0.39.2 •

Changelog

Source

0.39.2

  • Fix seed generation in nested doodle element.
  • Fix calc type in function arguments.
  • Fix multiple ± symbol detection.
  • Set default rand end to 1.
  • Experimenting with a gap shorthand to grid.
yuanchuan
published 0.39.1 •

Changelog

Source

0.39.1

  • Add new time uniform @T, which increases in ms and starts from beginning of the day.
  • Add alias R for @rn.
  • Add @ts and @TS.
  • Simplify generated calc expressions.
  • Simplify counter-reset.
  • Restrict animation frame to 60fps.
yuanchuan
published 0.39.0 •

Changelog

Source

0.39.0

  • Use native mod function for variables.

    /* mod(@t, 360deg) */
    transform: rotate(@t(%360deg));
    
  • Support calc chain.

    @content: @i(*2, +10, *100);
    
  • Add @PN and @PD for outside bouding to @doodle.

    background: @m2.doodle(
      @grid: @PN(2x1, 3x1);
    );
    
  • Enable uniform value debugging through content.

    :after {
      content: @ux;
    }
    
  • Add grid border[:color] for debugging purposes.

    @grid: 1 / 100% border:red;
    
  • Add support viewbox padding inside @svg-polygon.

    @content: @svg-polygon(
      paddng: .2;
    );
    
  • Add @xX and @yY similar to @iI.

  • Remove the feature of adding vendor prefixes to properties.

yuanchuan
published 0.38.4 •

Changelog

Source

0.38.4

  • Cleanup inline styles on update.
  • Use contain:strict for css-doodle element.
  • New export css-doodle/component for importng CSSDoodle class itself.
  • Add p3d (preserve-3d) keyword for grid.
yuanchuan
published 0.38.3 •

Changelog

Source

0.38.3

  • Fix bad variable name.