@app-studio/web 0.9.45 → 0.9.47
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.
- package/dist/components/Button/Button/Button.style.d.ts +1 -1
- package/dist/components/Icon/Icon.d.ts +2 -1
- package/dist/web.cjs.development.js +538 -445
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +538 -446
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +538 -445
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/docs/components/Icon.mdx +90 -57
- package/docs/components.md +0 -164
- package/package.json +1 -1
- package/docs/components/Calendar.mdx +0 -189
- package/docs/components/Flow.mdx +0 -258
- package/docs/components/KanbanBoard.mdx +0 -286
- package/docs/components/OKR.mdx +0 -452
- package/docs/components/Tree.mdx +0 -341
|
@@ -21,7 +21,7 @@ export declare const ButtonShapes: Record<Shape, number | string>;
|
|
|
21
21
|
* Icon sizes for different button sizes
|
|
22
22
|
*/
|
|
23
23
|
export declare const IconSizes: Record<Size, ViewProps>;
|
|
24
|
-
export declare const getButtonVariants: (color: string, isLight: boolean) => Record<Variant, ViewProps>;
|
|
24
|
+
export declare const getButtonVariants: (color: string, isLight: boolean, isThemeLight?: boolean) => Record<Variant, ViewProps>;
|
|
25
25
|
/**
|
|
26
26
|
* Generate offset path for border animation
|
|
27
27
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ViewProps } from 'app-studio';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
export interface IconProps extends ViewProps {
|
|
3
|
+
export interface IconProps extends Omit<ViewProps, 'orientation'> {
|
|
4
4
|
color?: string;
|
|
5
5
|
filled?: boolean;
|
|
6
6
|
orientation?: 'left' | 'right' | 'up' | 'down';
|
|
@@ -94,3 +94,4 @@ export declare const ShieldIcon: React.FC<IconProps>;
|
|
|
94
94
|
export declare const CheckIcon: React.FC<IconProps>;
|
|
95
95
|
export declare const LogoutIcon: React.FC<IconProps>;
|
|
96
96
|
export declare const PowerOffIcon: React.FC<IconProps>;
|
|
97
|
+
export declare const BackIcon: (props: any) => React.JSX.Element;
|