@app-studio/web 0.9.41 → 0.9.44
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/bot/Bot.d.ts +15 -0
- package/dist/bot/Cache.d.ts +13 -0
- package/dist/bot/Config.d.ts +13 -0
- package/dist/bot/ContentFetcher.d.ts +9 -0
- package/dist/bot/DocuCode.d.ts +19 -0
- package/dist/bot/FileHandler.d.ts +39 -0
- package/dist/bot/ai/AnthropicConnector.d.ts +6 -0
- package/dist/bot/ai/GeminiConnector.d.ts +7 -0
- package/dist/bot/ai/GroqConnector.d.ts +7 -0
- package/dist/bot/ai/HuggingFaceConnector.d.ts +6 -0
- package/dist/bot/ai/OpenAIConnector.d.ts +11 -0
- package/dist/bot/ai/ReplicateConnector.d.ts +7 -0
- package/dist/bot/ai/SambaNovaConnector.d.ts +6 -0
- package/dist/bot/ai/ai.config.d.ts +12 -0
- package/dist/bot/ai/ai.service.d.ts +36 -0
- package/dist/bot/data.d.ts +19 -0
- package/dist/bot/extractors.d.ts +8 -0
- package/dist/bot/index.d.ts +1 -0
- package/dist/bot/prompt/1-project.d.ts +1 -0
- package/dist/bot/prompt/2-response.d.ts +1 -0
- package/dist/bot/prompt/3-comment.d.ts +1 -0
- package/dist/components/Title/Title/SlideEffect.d.ts +14 -0
- package/dist/components/Title/Title/Title.props.d.ts +20 -0
- package/dist/components/Title/Title/Title.state.d.ts +4 -0
- package/dist/web.cjs.development.js +265 -78
- 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 +265 -78
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +265 -78
- 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/Accordion.mdx +74 -121
- package/docs/components/Alert.mdx +19 -70
- package/docs/components/AspectRatio.mdx +13 -11
- package/docs/components/AudioInput.mdx +43 -0
- package/docs/components/Avatar.mdx +18 -43
- package/docs/components/Background.mdx +100 -492
- package/docs/components/Badge.mdx +45 -130
- package/docs/components/Button.mdx +76 -128
- package/docs/components/Calendar.mdx +7 -7
- package/docs/components/Card.mdx +247 -290
- package/docs/components/Carousel.mdx +94 -321
- package/docs/components/Chart.mdx +171 -26
- package/docs/components/ChatInput.mdx +327 -275
- package/docs/components/Checkbox.mdx +3 -5
- package/docs/components/ColorInput.mdx +6 -6
- package/docs/components/ColorPicker.mdx +452 -0
- package/docs/components/ComboBox.mdx +13 -13
- package/docs/components/Command.mdx +140 -188
- package/docs/components/ContextMenu.mdx +47 -171
- package/docs/components/CookieConsent.mdx +53 -0
- package/docs/components/CountryPicker.mdx +8 -8
- package/docs/components/DatePicker.mdx +3 -3
- package/docs/components/DragAndDrop.mdx +279 -463
- package/docs/components/Drawer.mdx +392 -231
- package/docs/components/DropdownMenu.mdx +37 -155
- package/docs/components/EmojiPicker.mdx +84 -0
- package/docs/components/File.mdx +130 -4
- package/docs/components/Formik.mdx +39 -39
- package/docs/components/Gradient.mdx +359 -182
- package/docs/components/Horizontal.mdx +1 -2
- package/docs/components/HoverCard.mdx +57 -125
- package/docs/components/KanbanBoard.mdx +9 -9
- package/docs/components/Link.mdx +22 -30
- package/docs/components/Loader.mdx +230 -413
- package/docs/components/Menubar.mdx +73 -69
- package/docs/components/Message.mdx +210 -525
- package/docs/components/Modal.mdx +351 -475
- package/docs/components/NavigationMenu.mdx +8 -8
- package/docs/components/OTPInput.mdx +194 -0
- package/docs/components/Pagination.mdx +451 -107
- package/docs/components/Password.mdx +8 -8
- package/docs/components/ProgressBar.mdx +460 -0
- package/docs/components/Resizable.mdx +103 -102
- package/docs/components/Select.mdx +5 -5
- package/docs/components/Separator.mdx +11 -98
- package/docs/components/ShareButton.mdx +29 -0
- package/docs/components/Sidebar.mdx +70 -131
- package/docs/components/Slider.mdx +99 -185
- package/docs/components/StatusIndicator.mdx +373 -0
- package/docs/components/Switch.mdx +3 -3
- package/docs/components/Table.mdx +25 -105
- package/docs/components/Tabs.mdx +40 -143
- package/docs/components/TagInput.mdx +17 -17
- package/docs/components/Text.mdx +3 -3
- package/docs/components/TextArea.mdx +6 -6
- package/docs/components/TextField.mdx +12 -12
- package/docs/components/Title.mdx +267 -525
- package/docs/components/Toast.mdx +65 -142
- package/docs/components/Toggle.mdx +37 -49
- package/docs/components/ToggleGroup.mdx +36 -57
- package/docs/components/Tooltip.mdx +501 -138
- package/docs/components/Uploader.mdx +205 -351
- package/package.json +1 -1
- package/dist/components/AuthGuard/AuthGuard.d.ts +0 -35
- package/dist/components/AuthGuard/index.d.ts +0 -1
- package/docs/adk-components.md +0 -319
- package/docs/adk-quick-start.md +0 -268
|
@@ -10,7 +10,7 @@ Enables users to select a country from a dropdown list with various styling opti
|
|
|
10
10
|
### **Default**
|
|
11
11
|
```tsx
|
|
12
12
|
import React from 'react';
|
|
13
|
-
import { CountryPicker } from '
|
|
13
|
+
import { CountryPicker } from '@app-studio/web';
|
|
14
14
|
|
|
15
15
|
export const DefaultCountryPicker = () => <CountryPicker label="Country" />;
|
|
16
16
|
|
|
@@ -21,7 +21,7 @@ Optional error flag to indicate validation state
|
|
|
21
21
|
|
|
22
22
|
```tsx
|
|
23
23
|
import React from 'react';
|
|
24
|
-
import { CountryPicker } from '
|
|
24
|
+
import { CountryPicker } from '@app-studio/web';
|
|
25
25
|
|
|
26
26
|
export const ErrorCountryPicker = () => (
|
|
27
27
|
<CountryPicker id="error" label="Country" error />
|
|
@@ -35,7 +35,7 @@ Optional helper text for guiding the user
|
|
|
35
35
|
```tsx
|
|
36
36
|
import React from 'react';
|
|
37
37
|
|
|
38
|
-
import { CountryPicker } from '
|
|
38
|
+
import { CountryPicker } from '@app-studio/web';
|
|
39
39
|
|
|
40
40
|
export const HelperTextCountryPicker = () => (
|
|
41
41
|
<CountryPicker helperText="CountryPicker one item!" error />
|
|
@@ -62,11 +62,11 @@ Optional shape of the CountryPicker for visual styles
|
|
|
62
62
|
|
|
63
63
|
```tsx
|
|
64
64
|
import React from 'react';
|
|
65
|
-
import { CountryPicker } from '
|
|
65
|
+
import { CountryPicker } from '@app-studio/web';
|
|
66
66
|
|
|
67
67
|
import { Vertical } from '@app-studio/web';
|
|
68
68
|
|
|
69
|
-
import { Shape } from '
|
|
69
|
+
import { Shape } from '@app-studio/web';
|
|
70
70
|
|
|
71
71
|
export const ShapeCountryPicker = () => (
|
|
72
72
|
<Vertical gap={10}>
|
|
@@ -88,11 +88,11 @@ Variant for different visual types of CountryPicker
|
|
|
88
88
|
|
|
89
89
|
```tsx
|
|
90
90
|
import React from 'react';
|
|
91
|
-
import { CountryPicker } from '
|
|
91
|
+
import { CountryPicker } from '@app-studio/web';
|
|
92
92
|
|
|
93
93
|
import { Vertical } from '@app-studio/web';
|
|
94
94
|
|
|
95
|
-
import { Variant } from '
|
|
95
|
+
import { Variant } from '@app-studio/web';
|
|
96
96
|
|
|
97
97
|
export const VariantCountryPicker = () => (
|
|
98
98
|
<Vertical gap={10}>
|
|
@@ -114,7 +114,7 @@ Shadow or Elevation styles for visual depth and perspective
|
|
|
114
114
|
|
|
115
115
|
```tsx
|
|
116
116
|
import React from 'react';
|
|
117
|
-
import { CountryPicker } from '
|
|
117
|
+
import { CountryPicker } from '@app-studio/web';
|
|
118
118
|
|
|
119
119
|
export const ShadowCountryPicker = () => (
|
|
120
120
|
<CountryPicker shadow={{ boxShadow: 'rgba(0, 0, 0, 0.20) 0px 3px 8px' }} />
|
|
@@ -10,7 +10,7 @@ A customizable date selection input for user interfaces.
|
|
|
10
10
|
### **Default**
|
|
11
11
|
```tsx
|
|
12
12
|
import React from 'react';
|
|
13
|
-
import { DatePicker } from '
|
|
13
|
+
import { DatePicker } from '@app-studio/web';
|
|
14
14
|
|
|
15
15
|
export const DefaultDatePicker = () => <DatePicker label="Select a date" />;
|
|
16
16
|
|
|
@@ -23,7 +23,7 @@ The color scheme that changes the background color of the DatePicker.
|
|
|
23
23
|
import React from 'react';
|
|
24
24
|
import { Vertical } from '@app-studio/web';
|
|
25
25
|
|
|
26
|
-
import { DatePicker } from '
|
|
26
|
+
import { DatePicker } from '@app-studio/web';
|
|
27
27
|
|
|
28
28
|
export const ColorDatePicker = () => (
|
|
29
29
|
<Vertical gap={15}>
|
|
@@ -51,7 +51,7 @@ Adds a shadow effect to the DatePicker.
|
|
|
51
51
|
|
|
52
52
|
```tsx
|
|
53
53
|
import React from 'react';
|
|
54
|
-
import { DatePicker } from '
|
|
54
|
+
import { DatePicker } from '@app-studio/web';
|
|
55
55
|
|
|
56
56
|
export const ShadowDatePicker = () => (
|
|
57
57
|
<DatePicker
|