@app-studio/web 0.9.83 → 0.9.85
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.view.d.ts +1 -1
- package/dist/components/Formik/Formik.ColorInput.d.ts +1 -1
- package/dist/components/Gradient/Gradient.d.ts +4 -4
- package/dist/components/Title/Title/Title.props.d.ts +3 -3
- package/dist/components/Title/Title/Title.type.d.ts +1 -1
- package/dist/web.cjs.development.js +755 -784
- 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 +755 -784
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +755 -784
- 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/app-studio/Components.md +8 -8
- package/docs/app-studio/Design.md +2 -2
- package/docs/app-studio/Events.md +31 -31
- package/docs/app-studio/Hooks.md +6 -6
- package/docs/app-studio/Providers.md +2 -2
- package/docs/app-studio/README.md +30 -30
- package/docs/app-studio/Responsive.md +3 -3
- package/docs/app-studio/Theming.md +114 -113
- package/docs/app-studio.md +2 -2
- package/docs/component-development/guide.md +10 -10
- package/docs/components/Background.mdx +2 -2
- package/docs/components/Badge.mdx +1 -1
- package/docs/components/Button.mdx +2 -2
- package/docs/components/Carousel.mdx +15 -15
- package/docs/components/Center.mdx +40 -40
- package/docs/components/Checkbox.mdx +5 -5
- package/docs/components/ColorInput.mdx +13 -13
- package/docs/components/ColorPicker.mdx +17 -17
- package/docs/components/ContextMenu.mdx +1 -1
- package/docs/components/DatePicker.mdx +6 -6
- package/docs/components/DragAndDrop.mdx +8 -8
- package/docs/components/Drawer.mdx +3 -3
- package/docs/components/Form.mdx +2 -2
- package/docs/components/Formik.mdx +3 -3
- package/docs/components/Gradient.mdx +32 -32
- package/docs/components/Horizontal.mdx +3 -3
- package/docs/components/HoverCard.mdx +3 -3
- package/docs/components/Icon.mdx +14 -14
- package/docs/components/Label.mdx +28 -28
- package/docs/components/Link.mdx +2 -2
- package/docs/components/Loader.mdx +16 -16
- package/docs/components/OTPInput.mdx +9 -9
- package/docs/components/Password.mdx +1 -1
- package/docs/components/ProgressBar.mdx +9 -9
- package/docs/components/Resizable.mdx +6 -6
- package/docs/components/Selector.mdx +4 -4
- package/docs/components/Sidebar.mdx +2 -2
- package/docs/components/Slider.mdx +10 -10
- package/docs/components/StatusIndicator.mdx +5 -5
- package/docs/components/Switch.mdx +1 -1
- package/docs/components/TagInput.mdx +8 -8
- package/docs/components/Text.mdx +1 -1
- package/docs/components/TextArea.mdx +2 -2
- package/docs/components/TextField.mdx +2 -2
- package/docs/components/Title.mdx +1 -1
- package/docs/components/Vertical.mdx +64 -64
- package/docs/components.md +4 -4
- package/docs/conventions.md +1 -1
- package/docs/design-system/theming.md +19 -19
- package/docs/tutorials/README.md +1 -1
- package/docs/tutorials/basic/creating-a-simple-form.md +2 -2
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* ButtonView component – minimal and design‑system aligned.
|
|
3
|
-
* - Chooses a **main color** with priority: `backgroundColor` → `color` → `theme
|
|
3
|
+
* - Chooses a **main color** with priority: `backgroundColor` → `color` → `theme-primary`.
|
|
4
4
|
* - Uses `getButtonVariants` to derive base/hover/active styles per variant.
|
|
5
5
|
*/
|
|
6
6
|
import React from 'react';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ColorInputProps } from '../Form/ColorInput/ColorInput/ColorInput.props';
|
|
3
3
|
/**
|
|
4
|
-
* Color input allows users to select a color from a predefined palette or enter a custom color
|
|
4
|
+
* Color input allows users to select a color from a predefined palette or enter a custom color-
|
|
5
5
|
*/
|
|
6
6
|
export declare const FormikColorInput: React.FC<ColorInputProps>;
|
|
@@ -11,16 +11,16 @@ import { GradientProps } from './Gradient/Gradient.props';
|
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
13
|
* // Basic linear gradient
|
|
14
|
-
* <Gradient from="blue
|
|
14
|
+
* <Gradient from="blue-500" to="purple-500" height="200px" width="100%" />
|
|
15
15
|
*
|
|
16
16
|
* @example
|
|
17
17
|
* // Radial gradient with content
|
|
18
18
|
* <Gradient
|
|
19
19
|
* type="radial"
|
|
20
20
|
* colors={[
|
|
21
|
-
* { color: 'red
|
|
22
|
-
* { color: 'orange
|
|
23
|
-
* { color: 'yellow
|
|
21
|
+
* { color: 'red-500', position: '0%' },
|
|
22
|
+
* { color: 'orange-500', position: '50%' },
|
|
23
|
+
* { color: 'yellow-500', position: '100%' }
|
|
24
24
|
* ]}
|
|
25
25
|
* height="200px"
|
|
26
26
|
* >
|
|
@@ -63,17 +63,17 @@ export interface TitleProps extends ViewProps {
|
|
|
63
63
|
highlightSlideSequential?: boolean;
|
|
64
64
|
/**
|
|
65
65
|
* Style of the highlight effect
|
|
66
|
-
* @default '
|
|
66
|
+
* @default 'solid'
|
|
67
67
|
*/
|
|
68
68
|
highlightStyle?: HighlightStyle;
|
|
69
69
|
/**
|
|
70
70
|
* Color for the highlight effect
|
|
71
|
-
* @default 'theme
|
|
71
|
+
* @default 'theme-primary'
|
|
72
72
|
*/
|
|
73
73
|
highlightColor?: string;
|
|
74
74
|
/**
|
|
75
75
|
* Secondary color for gradient highlights
|
|
76
|
-
* @default 'theme
|
|
76
|
+
* @default 'theme-secondary'
|
|
77
77
|
*/
|
|
78
78
|
highlightSecondaryColor?: string;
|
|
79
79
|
/**
|
|
@@ -2,7 +2,7 @@ import { ViewProps } from 'app-studio';
|
|
|
2
2
|
/**
|
|
3
3
|
* Highlight style options for the Title component
|
|
4
4
|
*/
|
|
5
|
-
export declare type HighlightStyle = 'underline' | 'background' | 'gradient' | 'outline' | 'glow' | 'default';
|
|
5
|
+
export declare type HighlightStyle = 'underline' | 'background' | 'gradient' | 'outline' | 'glow' | 'solid' | 'default';
|
|
6
6
|
/**
|
|
7
7
|
* Title size options
|
|
8
8
|
*/
|