Skip to content
This repository was archived by the owner on Dec 28, 2022. It is now read-only.

Commit eed7e73

Browse files
author
Jiří Třečák
committed
More structure, added stubs for main transformers that are shared between different blueprints
1 parent 23436f1 commit eed7e73

15 files changed

+43
-19
lines changed

src/borders.pr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{*
22

3-
Generate all tokens as named variables.
3+
Generate all border tokens as named variables.
44
Tokens are named by their group path and then name,
5-
and their value rendered using `rendered-color` blueprint
5+
and their value rendered using `rendered-border` blueprint
66

77
*}

src/colors.pr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{*
22

3-
Generate all tokens as named variables.
3+
Generate all color tokens as named variables.
44
Tokens are named by their group path and then name,
55
and their value rendered using `rendered-color` blueprint
66

src/gradients.pr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{*
22

3-
Generate all tokens as named variables.
3+
Generate all gradient tokens as named variables.
44
Tokens are named by their group path and then name,
5-
and their value rendered using `rendered-color` blueprint
5+
and their value rendered using `gradient-color` blueprint
66

77
*}

src/measures.pr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{*
22

3-
Generate all tokens as named variables.
3+
Generate all measure tokens as named variables.
44
Tokens are named by their group path and then name,
5-
and their value rendered using `rendered-color` blueprint
5+
and their value rendered using `rendered-measure` blueprint
66

77
*}

src/object-renderers/rendered-border.pr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{*
22

3-
Rendered to present Border token as CSS string.
3+
Injectable blueprint that represents Border token as CSS string.
44
Note that this only converts the value, actual name is provided somewhere else
55

66

src/object-renderers/rendered-color.pr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{*
22

3-
Renderer to convert Color token as CSS string.
3+
Injectable blueprint that represents Color token as CSS string.
44
Note that this only converts the value, actual name is provided somewhere else
55

66

src/object-renderers/rendered-gradient.pr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{*
22

3-
Rendered to present Gradient token as CSS string.
3+
Injectable blueprint that represents Gradient token as CSS string.
44
Note that this only converts the value, actual name is provided somewhere else
55

66

src/object-renderers/rendered-measure.pr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{*
22

3-
Rendered to present Measure token as CSS string.
3+
Injectable blueprint that represents Measure token as CSS string.
44
Note that this only converts the value, actual name is provided somewhere else
55

66

src/object-renderers/rendered-name.pr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{*
22

3-
Rendered to convert name of the token to a CSS string.
3+
Injectable blueprint that represents token name and groups as css-valid string.
44
Note that this only converts the name, actual value is provided somewhere else
55

66

src/object-renderers/rendered-shadow.pr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{*
22

3-
Rendered to present Shadow token as CSS string.
3+
Injectable blueprint that represents Shadow token as CSS string.
44
Note that this only converts the value, actual name is provided somewhere else
55

66

0 commit comments

Comments
 (0)