Kendrick Wong

Results 6 comments of Kendrick Wong

The whitespace surrounding text within an XML element or attribute value are considered to be "Significant whitespace". In the case of `` tag, all the immediate child nodes are not...

You are absolutely correct. When `xmlWhitespaceSensitivity` is `strict`, all white spaces must be preserve according to section 2.10: > An [XML processor](https://www.w3.org/TR/xml/#dt-xml-proc) must always pass all characters in a document...

@kddnewton , please let me know if more clarification is required on this issue.

@brsanthu , I agree with your proposal. So `xmlWhitespaceSensitivity` can have three values: - `strict` all white spaces are preserved - `ignore` trim all spaces surrounding and within text node...

You can pass a custom scope name callback by specifying `generateScopedName` option in the modules option. See https://github.com/css-modules/postcss-modules for details of supported options. For example: ``` postcss({ modules: { generateScopedName:...

As a workaround, if you don't pass an array to the `wrapper` slot, like so: ``` classNames={{ base: "max-h-[520px] overflow-scroll", table: "min-h-[400px]", wrapper: "rounded-none border p-0", // remove array here...