Skip to content

Latest commit

 

History

History

custom-value

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

@stylable/custom-value

npm version

@stylable/custom-value serves as a package where various implementation for Stylable (build-time) variable custom types. Currently, this package only offers an stBorder type, with more to be added in the future.

Usage example

:import {
  -st-from: '@stylable/custom-value';
  -st-named: stBorder;
}

:vars {
  myBorder: stBorder(1px, solid, green);
}

.root {
  border: value(stBorder); /* returns: 1px solid green */
  background-color: value(stBorder, color); /* returns: green */
}

License

Copyright (c) 2021 Wix.com Ltd. All Rights Reserved. Use of this source code is governed by a MIT license.