value; } public function toSelector(): string { return '[' . $this->value . ']'; } public function toDatasetKey(): string { // Remove "data-" prefix and convert kebab-case to camelCase $key = substr($this->value, 5); // Remove "data-" return str_replace('-', '', ucwords($key, '-')); } }