Alex
Alex
I've studied the specification and I think I understand now: - contenteditable ([MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/contenteditable), [standard](https://html.spec.whatwg.org/multipage/interaction.html#attr-contenteditable)) = `"plaintext-only" | "false" | "true" | ""` - draggable ([MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/draggable), [standard](https://html.spec.whatwg.org/multipage/dnd.html#the-draggable-attribute)) = `"false" | "true"`...
related: https://github.com/sveltejs/svelte/issues/11179
It would be great if you could set up everything that is possible. People often do something like this: https://ui.shadcn.com/themes https://www.skeleton.dev/ That means you'll get a lot of css variables...
I'm sorry, I won't be able to help with this anytime soon.
You need to turn on `postcss` and add the `postcss-preset-env` plugin. ```ts sveltePreprocess({ postcss: { plugins: [ postcssPresetEnv(), ], }, }), ```
As far as I understand, everything happens here: https://github.com/samchon/typia/blob/cbaa2e79b9bc6ca04b12888263052a4678103aec/src/programmers/internal/check_template.ts https://github.com/samchon/typia/blob/cbaa2e79b9bc6ca04b12888263052a4678103aec/src/programmers/internal/template_to_pattern.ts https://github.com/samchon/typia/blob/cbaa2e79b9bc6ca04b12888263052a4678103aec/src/programmers/internal/metadata_to_pattern.ts https://github.com/samchon/typia/blob/cbaa2e79b9bc6ca04b12888263052a4678103aec/src/utils/PatternUtil.ts And here are the typia tags: MetadataTemplate["tags"] MetadataAtomic["tags"] MetadataConstantValue["tags"] You need to create a regular expression for each...
> How about challenge to the regular expression enhancement? I don't understand.
But in what way? Just expressions are not enough here.
You can also add a compile-time check that will generate ts warnings.
Not every time, but when necessary, when a generic is passed and it is not equal to the type of the argument.