@rbxts/react-clean-ui 1.2.7 → 1.2.8

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.
@@ -10,6 +10,7 @@ export interface ButtonProps extends SpacedElementProps, ShadowElementProps, ZIn
10
10
  children?: React.ReactNode;
11
11
  group?: boolean;
12
12
  disabled?: boolean;
13
+ spinning?: boolean;
13
14
  LayoutOrder?: number;
14
15
  styleOverride?: ButtonStyleOverride;
15
16
  name?: string;
@@ -287,6 +287,7 @@ local Button = React.forwardRef(function(props, ref)
287
287
  intent = props.intent,
288
288
  disabled = props.disabled,
289
289
  icon = props.icon,
290
+ spinning = props.spinning,
290
291
  styleOverride = props.styleOverride,
291
292
  }), props.text ~= nil and React.createElement(ButtonText, {
292
293
  text = props.text,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/react-clean-ui",
3
- "version": "1.2.7",
3
+ "version": "1.2.8",
4
4
  "description": "A clean UI library for Roblox TypeScript projects",
5
5
  "main": "out/init.lua",
6
6
  "scripts": {