diff options
Diffstat (limited to 'src/props-shortcodes.scss')
| -rw-r--r-- | src/props-shortcodes.scss | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/src/props-shortcodes.scss b/src/props-shortcodes.scss deleted file mode 100644 index 2e5fa1e..0000000 --- a/src/props-shortcodes.scss +++ /dev/null | |||
| @@ -1,79 +0,0 @@ | |||
| 1 | //// | ||
| 2 | /// Shorter version of the prop-related functions. Useful to reduce clutter. | ||
| 3 | /// | ||
| 4 | /// @group Props shortcodes | ||
| 5 | /// | ||
| 6 | /// @access public | ||
| 7 | //// | ||
| 8 | |||
| 9 | /// | ||
| 10 | /// @alias iro-props-namespace | ||
| 11 | /// | ||
| 12 | @mixin namespace($name) { | ||
| 13 | @include iro-props-namespace($name) { | ||
| 14 | @content; | ||
| 15 | } | ||
| 16 | } | ||
| 17 | |||
| 18 | /// | ||
| 19 | /// @alias iro-props-namespace | ||
| 20 | /// | ||
| 21 | @function namespace() { | ||
| 22 | @return iro-props-namespace(); | ||
| 23 | } | ||
| 24 | |||
| 25 | /// | ||
| 26 | /// @alias iro-props-store | ||
| 27 | /// | ||
| 28 | @function store($map, $tree: $iro-props-default-tree, $merge: true, $global: false) { | ||
| 29 | @return iro-props-store($map, $tree, $merge, $global); | ||
| 30 | } | ||
| 31 | |||
| 32 | /// | ||
| 33 | /// @alias iro-props-store | ||
| 34 | /// | ||
| 35 | @mixin store($map, $tree: $iro-props-default-tree, $merge: true, $global: false) { | ||
| 36 | @include iro-props-store($map, $tree, $merge, $global); | ||
| 37 | } | ||
| 38 | |||
| 39 | /// | ||
| 40 | /// @alias iro-props-clear | ||
| 41 | /// | ||
| 42 | @mixin clear($tree: $iro-props-default-tree) { | ||
| 43 | @include iro-props-clear($tree); | ||
| 44 | } | ||
| 45 | |||
| 46 | /// | ||
| 47 | /// @alias iro-props-clear | ||
| 48 | /// | ||
| 49 | @function clear($tree: $iro-props-default-tree) { | ||
| 50 | @return iro-props-clear($tree); | ||
| 51 | } | ||
| 52 | |||
| 53 | /// | ||
| 54 | /// @alias iro-props-get-static | ||
| 55 | /// | ||
| 56 | @function static($key: (), $tree: $iro-props-default-tree, $default: null, $global: false) { | ||
| 57 | @return iro-props-get-static($key, $tree, $default, $global); | ||
| 58 | } | ||
| 59 | |||
| 60 | /// | ||
| 61 | /// @alias iro-props-get | ||
| 62 | /// | ||
| 63 | @function prop($key, $tree: $iro-props-default-tree, $default: null, $global: false) { | ||
| 64 | @return iro-props-get($key, $tree, $default, $global); | ||
| 65 | } | ||
| 66 | |||
| 67 | /// | ||
| 68 | /// @alias iro-props-assign | ||
| 69 | /// | ||
| 70 | @mixin assign($tree: $iro-props-default-tree, $root: (), $skip: (), $prefix: '', $global: false) { | ||
| 71 | @include iro-props-assign($tree, $root, $skip, $prefix, $global); | ||
| 72 | } | ||
| 73 | |||
| 74 | /// | ||
| 75 | /// @alias iro-props-ref | ||
| 76 | /// | ||
| 77 | @function ref($tree: $iro-props-default-tree, $key: null, $global: false) { | ||
| 78 | @return iro-props-ref($tree, $key, $global); | ||
| 79 | } | ||
