@kahi-ui/framework
Version:
Straight-forward Svelte UI for the Web
22 lines (21 loc) • 779 B
JavaScript
/**
* Represents the modes of horizontal-based orientation tokens that can be applied to Framework Components
*/
export var TOKENS_ORIENTATION_X;
(function (TOKENS_ORIENTATION_X) {
TOKENS_ORIENTATION_X["vertical"] = "vertical";
})(TOKENS_ORIENTATION_X || (TOKENS_ORIENTATION_X = {}));
/**
* Represents the modes of vertical-based orientation tokens that can be applied to Framework Components
*/
export var TOKENS_ORIENTATION_Y;
(function (TOKENS_ORIENTATION_Y) {
TOKENS_ORIENTATION_Y["horizontal"] = "horizontal";
})(TOKENS_ORIENTATION_Y || (TOKENS_ORIENTATION_Y = {}));
/**
* Represents the modes of orientation tokens that can be applied to Framework Components
*/
export const TOKENS_ORIENTATION = {
...TOKENS_ORIENTATION_X,
...TOKENS_ORIENTATION_Y,
};