Skip to content

Commit d0f2d10

Browse files
committed
0.21.5
1 parent 94ae00b commit d0f2d10

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.21.5
2+
3+
### Patches
4+
5+
* Use name `plot()` for `point()`.
6+
7+
<br /> <br />
8+
9+
10+
111
## 0.21.4
212

313
### Patches

css-doodle.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! css-doodle@0.21.4 */
1+
/*! css-doodle@0.21.5 */
22
(function (global, factory) {
33
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
44
typeof define === 'function' && define.amd ? define(factory) :
@@ -2706,7 +2706,7 @@
27062706
return value => `var(--${ uniform_time.name })`;
27072707
},
27082708

2709-
point({ count, context, extra, position, grid }) {
2709+
plot({ count, context, extra, position, grid }) {
27102710
let key = 'offset-points' + position;
27112711
return commands => {
27122712
let [idx = count, _, __, max = grid.count] = extra || [];
@@ -2719,7 +2719,7 @@
27192719
};
27202720
},
27212721

2722-
Point({ count, context, extra, position, grid }) {
2722+
Plot({ count, context, extra, position, grid }) {
27232723
let key = 'offset-points' + position;
27242724
return commands => {
27252725
let [idx = count, _, __, max = grid.count] = extra || [];
@@ -2908,8 +2908,10 @@
29082908
'pick-by-turn': 'pick-n',
29092909
'max-row': 'size-row',
29102910
'max-col': 'size-col',
2911-
'offset': 'point',
2912-
'Offset': 'Point',
2911+
'offset': 'plot',
2912+
'Offset': 'Plot',
2913+
'point': 'plot',
2914+
'Point': 'Plot',
29132915

29142916
// error prone
29152917
'stripes': 'stripe',

0 commit comments

Comments
 (0)