Dhanraj Padmashali

Results 13 comments of Dhanraj Padmashali

+1 on creating a PR. We are also facing the same issue as of #17390 where there is one component style which exceeds the set budget, and the component is...

> edit 2: Yep, got it working properly using state! The shrink prop on the label component is equal to a boolean state value, which gets changed using the onChange...

I believe this use case is covered with the following: ```js const answers = require('./answers'); // This could be from a file, or from some business logic. const questions =...

From https://github.com/wooorm/xdm#syntax-highlighting-with-the-meta-field ``` import { visit } from 'unist-util-visit' const re = /\b([-\w]+(?![^{]*}))(?:=(?:"([^"]*)"|'([^']*)'|([^"'\s]+)))?/g export const rehypeMetaAttribute = (options = {}) => { return (tree) => { visit(tree, 'element', visitor) }...

@allangrds I am on `"mdx-bundler": "^9.0.1"` and it works for my projects. Mind sharing a min reproducible code of the issue that you are facing?

Thank you for the code samples @allangrds. Couple of things to note here: - It seems like in your markdown, you are using `'''` (quotes) instead of ` ``` `...

you can update the tests https://github.com/dchester/jsonpath/blob/master/test/query.js to ensure it works?

> One more thing @PsyGik, I just noticed that the expected result in your opening post does not match the [behaviour of `jp.apply` describe in README](https://github.com/dchester/jsonpath#jpapplyobj-pathexpression-fn). > > Specifically, the...

The thing you are looking for is [Git submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules). Here's an awesome article by [Tania Rascia ](https://www.taniarascia.com/) on setting up Git Submodules: https://www.taniarascia.com/git-submodules-private-content/