@muraldevkit/ui-toolkit 4.50.1 → 4.51.1-dev-L2i7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ @use '../button.mixins.scss' as *;
2
+ .MrlProcessingButton[aria-disabled='false'].MrlProcessingButton-is-processing[aria-disabled='false'] {
3
+ @include mrl-button-common-disabled;
4
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muraldevkit/ui-toolkit",
3
- "version": "4.50.1",
3
+ "version": "4.51.1-dev-L2i7.1",
4
4
  "description": "Mural's UI Toolkit",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -1,8 +0,0 @@
1
- import * as React from 'react';
2
- /**
3
- * Function to recursively extract all text content from children
4
- *
5
- * @param children - the children of the component
6
- * @returns the combined text content of the children
7
- */
8
- export declare const extractTextContent: (children: React.ReactNode) => string;