2019-08-03 15:03:33 +02:00
|
|
|
import Design from './design'
|
|
|
|
import Pattern from './pattern'
|
|
|
|
import Point from './point'
|
|
|
|
import Path from './path'
|
|
|
|
import Snippet from './snippet'
|
|
|
|
import * as utils from './utils'
|
|
|
|
import { version } from '../package.json'
|
2018-07-23 14:16:39 +00:00
|
|
|
|
2018-07-23 11:12:06 +00:00
|
|
|
export default {
|
2019-02-16 08:41:56 +01:00
|
|
|
version,
|
2019-02-16 07:28:56 +01:00
|
|
|
Design,
|
2018-08-05 18:19:48 +02:00
|
|
|
Pattern,
|
|
|
|
Point,
|
|
|
|
Path,
|
|
|
|
Snippet,
|
2018-07-26 13:43:12 +00:00
|
|
|
utils,
|
|
|
|
patterns: {},
|
2021-04-24 10:16:31 +02:00
|
|
|
plugins: {},
|
2021-09-15 20:20:59 +02:00
|
|
|
/**
|
|
|
|
* This pctBasedOn() method makes it easy to add the optional
|
|
|
|
* toAbs() and fromAbs() methods to percentage options config
|
|
|
|
*
|
|
|
|
* It was backported from the v3 roadmap into v2.
|
|
|
|
**/
|
|
|
|
pctBasedOn: utils.pctBasedOn,
|
2019-08-03 15:03:33 +02:00
|
|
|
}
|