properties
changelog

Text Selection Type

Control text selection behavior.

Usage:

  • @live select-*;

Reference

shilp.config.js
const shilpConfig = {
	source: "react",

	properties: {
		live: {
			select: {
				property: "user-select: <v><i>;",
				values: {
					auto: "auto",
					none: "none",
					text: "text",
					all: "all",
				},
			},
		},
	},
};

export default shilpConfig;