Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
19 lines
516 B
Plaintext
19 lines
516 B
Plaintext
import { alpha } from '../../../value/types/numbers/index.mjs';
|
|
import { px } from '../../../value/types/numbers/units.mjs';
|
|
import { browserNumberValueTypes } from './number-browser.mjs';
|
|
import { transformValueTypes } from './transform.mjs';
|
|
import { int } from './type-int.mjs';
|
|
|
|
const numberValueTypes = {
|
|
...browserNumberValueTypes,
|
|
...transformValueTypes,
|
|
zIndex: int,
|
|
size: px,
|
|
// SVG
|
|
fillOpacity: alpha,
|
|
strokeOpacity: alpha,
|
|
numOctaves: int,
|
|
};
|
|
|
|
export { numberValueTypes };
|