webrix icon indicating copy to clipboard operation
webrix copied to clipboard

Powerful building blocks for React-based web applications

Results 34 webrix issues
Sort by recently updated
recently updated
newest added

Bumps [terser](https://github.com/terser/terser) from 5.10.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...

dependencies

it's beneficial for a toggling function to have an optional argument that, if set to `true` or `false`, will force the toggle to that state. This is handy in such...

enhancement
Hooks

Prefix all components' class names so their selectors' styles will be more "isolated" - having less chance of "colliding" with the CSS selectors of the project which is using *Webrix*:...

enhancement
Breaking

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 19.0.2 to 19.0.3. Release notes Sourced from semantic-release's releases. v19.0.3 19.0.3 (2022-06-09) Bug Fixes log-repo: use the original form of the repo url to remove the need...

dependencies

Bumps [semver-regex](https://github.com/sindresorhus/semver-regex) from 3.1.3 to 3.1.4. Release notes Sourced from semver-regex's releases. v3.1.4 Backport of ReDoS fix https://github.com/sindresorhus/semver-regex/commit/7712ba564d40da101cf2b2b33e6a910d9f2f57f4 Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=semver-regex&package-manager=npm_and_yarn&previous-version=3.1.3&new-version=3.1.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will...

dependencies

Bumps [npm](https://github.com/npm/cli) from 8.4.0 to 8.12.0. Changelog Sourced from npm's changelog. v8.12.0 (2022-06-01) Features aee6fc8 #4892 feat(init): reify on init new workspace (@​ruyadorno) a8ae177 #4931 feat: Add --auth-type=webauthn flag (@​jumoel)...

dependencies

https://webrix.amdocs.com/docs/tools/resizeobserver

For nested collapsible, add an HTML attribute which indicates the depth-level of nested *Collapsible* components, for example: ![GIF 4-11-2022 5-42-39 PM](https://user-images.githubusercontent.com/845031/162764642-a24c72d1-f26a-49f6-aa49-2d30b5aa50f0.gif) [Codesandbox demo](https://codesandbox.io/s/webrix-collapsible-depth-example-v8i2w8)

enhancement
Collapsible

Currently, when using [`Movable.useMove()`](https://github.com/open-amdocs/webrix/blob/master/src/components/Movable/Movable.hooks.js#L19) or `Resizable.useResize()`, you need to wrap the list of provided operations in a `useMemo`. We can eliminate the need for `useMemo` if we maintain the list...

enhancement
Resizable
Movable

[useMounted](https://github.com/open-amdocs/webrix/blob/master/src/hooks/useMounted/useMounted.js) ### Explanation **Code example** ```js const Element = () => { const [state, setState] = useState('text'); const unmounted = useUnmounted(); useEffect(() => { setTimeout(() => { !unmounted && setState('no...

bug