@app-studio/web 0.9.44 → 0.9.46
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/Icon/Icon.d.ts +2 -1
- package/dist/pages/themeTest.page.d.ts +3 -0
- package/dist/web.cjs.development.js +7 -2
- 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 +7 -3
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +7 -2
- 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/Badge.mdx +1 -1
- package/docs/components/ColorPicker.mdx +16 -16
- package/docs/components/DragAndDrop.mdx +11 -11
- package/docs/components/Drawer.mdx +3 -3
- package/docs/components/Gradient.mdx +40 -40
- package/docs/components/Icon.mdx +90 -57
- package/docs/components/Loader.mdx +17 -17
- package/docs/components/ProgressBar.mdx +14 -14
- package/docs/components/StatusIndicator.mdx +5 -5
- package/docs/components.md +0 -164
- package/package.json +1 -1
- package/dist/bot/Bot.d.ts +0 -15
- package/dist/bot/Cache.d.ts +0 -13
- package/dist/bot/Config.d.ts +0 -13
- package/dist/bot/ContentFetcher.d.ts +0 -9
- package/dist/bot/DocuCode.d.ts +0 -19
- package/dist/bot/FileHandler.d.ts +0 -39
- package/dist/bot/ai/AnthropicConnector.d.ts +0 -6
- package/dist/bot/ai/GeminiConnector.d.ts +0 -7
- package/dist/bot/ai/GroqConnector.d.ts +0 -7
- package/dist/bot/ai/HuggingFaceConnector.d.ts +0 -6
- package/dist/bot/ai/OpenAIConnector.d.ts +0 -11
- package/dist/bot/ai/ReplicateConnector.d.ts +0 -7
- package/dist/bot/ai/SambaNovaConnector.d.ts +0 -6
- package/dist/bot/ai/ai.config.d.ts +0 -12
- package/dist/bot/ai/ai.service.d.ts +0 -36
- package/dist/bot/data.d.ts +0 -19
- package/dist/bot/extractors.d.ts +0 -8
- package/dist/bot/index.d.ts +0 -1
- package/dist/bot/prompt/1-project.d.ts +0 -1
- package/dist/bot/prompt/2-response.d.ts +0 -1
- package/dist/bot/prompt/3-comment.d.ts +0 -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
|
@@ -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;
|
|
@@ -2849,6 +2849,9 @@ var PowerOffIcon = _ref87 => {
|
|
|
2849
2849
|
d: "M6.8 6.8a8 8 0 1 0 10 0"
|
|
2850
2850
|
})));
|
|
2851
2851
|
};
|
|
2852
|
+
var BackIcon = props => (/*#__PURE__*/React__default.createElement(ChevronIcon, Object.assign({
|
|
2853
|
+
orientation: "left"
|
|
2854
|
+
}, props)));
|
|
2852
2855
|
|
|
2853
2856
|
var Icon = {
|
|
2854
2857
|
__proto__: null,
|
|
@@ -2940,7 +2943,8 @@ var Icon = {
|
|
|
2940
2943
|
ShieldIcon: ShieldIcon,
|
|
2941
2944
|
CheckIcon: CheckIcon,
|
|
2942
2945
|
LogoutIcon: LogoutIcon,
|
|
2943
|
-
PowerOffIcon: PowerOffIcon
|
|
2946
|
+
PowerOffIcon: PowerOffIcon,
|
|
2947
|
+
BackIcon: BackIcon
|
|
2944
2948
|
};
|
|
2945
2949
|
|
|
2946
2950
|
/**
|
|
@@ -3753,7 +3757,7 @@ var UploadView = _ref => {
|
|
|
3753
3757
|
height: 4,
|
|
3754
3758
|
width: progress + "%",
|
|
3755
3759
|
borderRadius: 2,
|
|
3756
|
-
backgroundColor: "
|
|
3760
|
+
backgroundColor: "color.dark.50"
|
|
3757
3761
|
}, views == null ? void 0 : views.view))), /*#__PURE__*/React__default.createElement(appStudio.Text, Object.assign({
|
|
3758
3762
|
fontSize: 12
|
|
3759
3763
|
}, views == null ? void 0 : views.text), progress, "%"));
|
|
@@ -27908,6 +27912,7 @@ exports.AudioIcon = AudioIcon;
|
|
|
27908
27912
|
exports.AudioInput = AudioInput;
|
|
27909
27913
|
exports.AudioWaveform = AudioWaveform;
|
|
27910
27914
|
exports.Avatar = Avatar;
|
|
27915
|
+
exports.BackIcon = BackIcon;
|
|
27911
27916
|
exports.Background = Background;
|
|
27912
27917
|
exports.Badge = Badge;
|
|
27913
27918
|
exports.BatteryIcon = BatteryIcon;
|