@kahi-ui/framework
Version:
Straight-forward Svelte UI for the Web
29 lines (28 loc) • 1.08 kB
JavaScript
/**
* Represents the tiers of alignment tokens that can be applied to Framework Components
*/
export var TOKENS_ALIGNMENT;
(function (TOKENS_ALIGNMENT) {
TOKENS_ALIGNMENT["center"] = "center";
TOKENS_ALIGNMENT["stretch"] = "stretch";
})(TOKENS_ALIGNMENT || (TOKENS_ALIGNMENT = {}));
/**
* Represents the tiers of alignment x-axis tokens that can be applied to Framework Components
*/
export var TOKENS_ALIGNMENT_X;
(function (TOKENS_ALIGNMENT_X) {
TOKENS_ALIGNMENT_X["left"] = "left";
TOKENS_ALIGNMENT_X["center"] = "center";
TOKENS_ALIGNMENT_X["right"] = "right";
TOKENS_ALIGNMENT_X["stretch"] = "stretch";
})(TOKENS_ALIGNMENT_X || (TOKENS_ALIGNMENT_X = {}));
/**
* Represents the tiers of alignment y-axis tokens that can be applied to Framework Components
*/
export var TOKENS_ALIGNMENT_Y;
(function (TOKENS_ALIGNMENT_Y) {
TOKENS_ALIGNMENT_Y["top"] = "top";
TOKENS_ALIGNMENT_Y["center"] = "center";
TOKENS_ALIGNMENT_Y["bottom"] = "bottom";
TOKENS_ALIGNMENT_Y["stretch"] = "stretch";
})(TOKENS_ALIGNMENT_Y || (TOKENS_ALIGNMENT_Y = {}));