@app-studio/web 0.8.82 → 0.8.84

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.
@@ -22,7 +22,7 @@ export interface ButtonProps extends Omit<$ButtonProps, 'size'> {
22
22
  ariaLabel?: string;
23
23
  variant?: Variant;
24
24
  effect?: Effects;
25
- colorScheme?: string;
25
+ color?: string;
26
26
  views?: {
27
27
  container?: ViewProps;
28
28
  icon?: ViewProps;
@@ -5,7 +5,5 @@
5
5
  */
6
6
  import React from 'react';
7
7
  import { ButtonProps } from './Button.props';
8
- interface Props extends ButtonProps {
9
- }
10
- declare const ButtonView: React.FC<Props>;
8
+ declare const ButtonView: React.FC<ButtonProps>;
11
9
  export default ButtonView;
@@ -71,10 +71,6 @@ export interface SliderProps extends Omit<InputProps, 'size' | 'onChange'> {
71
71
  * Callback function when the slider is being dragged
72
72
  */
73
73
  onDrag?: (value: number) => void;
74
- /**
75
- * Optional color scheme to apply (e.g., 'theme.primary')
76
- */
77
- colorScheme?: string;
78
74
  /**
79
75
  * Custom styles for the slider components
80
76
  */