@app-studio/web 0.8.69 → 0.8.70

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.
@@ -24,4 +24,9 @@ export interface ButtonProps extends Omit<$ButtonProps, 'size'> {
24
24
  effect?: Effects;
25
25
  containerProps?: ViewProps;
26
26
  linkProps?: ViewProps;
27
+ views?: {
28
+ container?: ViewProps;
29
+ icon?: ViewProps;
30
+ link?: ViewProps;
31
+ };
27
32
  }
@@ -1,12 +1,6 @@
1
1
  import React from 'react';
2
- import { ViewProps } from 'app-studio';
3
2
  import { ButtonProps } from './Button.props';
4
3
  interface Props extends ButtonProps {
5
- views?: {
6
- container?: ViewProps;
7
- link?: ViewProps;
8
- horizontal?: ViewProps;
9
- };
10
4
  }
11
5
  declare const ButtonView: React.FC<Props>;
12
6
  export default ButtonView;
@@ -39,6 +39,7 @@ export declare const MenuIcon: React.FC<IconProps>;
39
39
  export declare const ShareIcon: React.FC<IconProps>;
40
40
  export declare const RefreshIcon: React.FC<IconProps>;
41
41
  export declare const PrintIcon: React.FC<IconProps>;
42
+ export declare const SliderVerticalIcon: React.FC<IconProps>;
42
43
  export declare const PanelIcon: React.FC<IconProps>;
43
44
  export declare const FilterIcon: React.FC<IconProps>;
44
45
  export declare const HomeIcon: React.FC<IconProps>;
@@ -68,3 +69,10 @@ export declare const BoldArrowIcon: React.FC<IconProps>;
68
69
  export declare const ArrowIcon: React.FC<IconProps>;
69
70
  export declare const SpinnerIcon: React.FC<IconProps>;
70
71
  export declare const CalendarIcon: React.FC<IconProps>;
72
+ export declare const SliderIcon: React.FC<IconProps>;
73
+ export declare const CropIcon: React.FC<IconProps>;
74
+ export declare const ZoomInIcon: React.FC<IconProps>;
75
+ export declare const ZoomOutIcon: React.FC<IconProps>;
76
+ export declare const TextIcon: React.FC<IconProps>;
77
+ export declare const ShapeIcon: React.FC<IconProps>;
78
+ export declare const RotateIcon: React.FC<IconProps>;
@@ -29,6 +29,7 @@ export interface TabsProps {
29
29
  * These props are derived or passed down from the main Tabs component.
30
30
  */
31
31
  export interface TabsViewProps {
32
+ iconPosition?: 'left' | 'right' | 'bottom' | 'top';
32
33
  /** The original array of tab objects. */
33
34
  tabs: Tab[];
34
35
  /** The currently active tab object, or undefined if none is active. */