@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.
Files changed (67) hide show
  1. package/dist/components/Button/Button/Button.view.d.ts +1 -1
  2. package/dist/components/Formik/Formik.ColorInput.d.ts +1 -1
  3. package/dist/components/Gradient/Gradient.d.ts +4 -4
  4. package/dist/components/Title/Title/Title.props.d.ts +3 -3
  5. package/dist/components/Title/Title/Title.type.d.ts +1 -1
  6. package/dist/web.cjs.development.js +755 -784
  7. package/dist/web.cjs.development.js.map +1 -1
  8. package/dist/web.cjs.production.min.js +1 -1
  9. package/dist/web.cjs.production.min.js.map +1 -1
  10. package/dist/web.esm.js +755 -784
  11. package/dist/web.esm.js.map +1 -1
  12. package/dist/web.umd.development.js +755 -784
  13. package/dist/web.umd.development.js.map +1 -1
  14. package/dist/web.umd.production.min.js +1 -1
  15. package/dist/web.umd.production.min.js.map +1 -1
  16. package/docs/app-studio/Components.md +8 -8
  17. package/docs/app-studio/Design.md +2 -2
  18. package/docs/app-studio/Events.md +31 -31
  19. package/docs/app-studio/Hooks.md +6 -6
  20. package/docs/app-studio/Providers.md +2 -2
  21. package/docs/app-studio/README.md +30 -30
  22. package/docs/app-studio/Responsive.md +3 -3
  23. package/docs/app-studio/Theming.md +114 -113
  24. package/docs/app-studio.md +2 -2
  25. package/docs/component-development/guide.md +10 -10
  26. package/docs/components/Background.mdx +2 -2
  27. package/docs/components/Badge.mdx +1 -1
  28. package/docs/components/Button.mdx +2 -2
  29. package/docs/components/Carousel.mdx +15 -15
  30. package/docs/components/Center.mdx +40 -40
  31. package/docs/components/Checkbox.mdx +5 -5
  32. package/docs/components/ColorInput.mdx +13 -13
  33. package/docs/components/ColorPicker.mdx +17 -17
  34. package/docs/components/ContextMenu.mdx +1 -1
  35. package/docs/components/DatePicker.mdx +6 -6
  36. package/docs/components/DragAndDrop.mdx +8 -8
  37. package/docs/components/Drawer.mdx +3 -3
  38. package/docs/components/Form.mdx +2 -2
  39. package/docs/components/Formik.mdx +3 -3
  40. package/docs/components/Gradient.mdx +32 -32
  41. package/docs/components/Horizontal.mdx +3 -3
  42. package/docs/components/HoverCard.mdx +3 -3
  43. package/docs/components/Icon.mdx +14 -14
  44. package/docs/components/Label.mdx +28 -28
  45. package/docs/components/Link.mdx +2 -2
  46. package/docs/components/Loader.mdx +16 -16
  47. package/docs/components/OTPInput.mdx +9 -9
  48. package/docs/components/Password.mdx +1 -1
  49. package/docs/components/ProgressBar.mdx +9 -9
  50. package/docs/components/Resizable.mdx +6 -6
  51. package/docs/components/Selector.mdx +4 -4
  52. package/docs/components/Sidebar.mdx +2 -2
  53. package/docs/components/Slider.mdx +10 -10
  54. package/docs/components/StatusIndicator.mdx +5 -5
  55. package/docs/components/Switch.mdx +1 -1
  56. package/docs/components/TagInput.mdx +8 -8
  57. package/docs/components/Text.mdx +1 -1
  58. package/docs/components/TextArea.mdx +2 -2
  59. package/docs/components/TextField.mdx +2 -2
  60. package/docs/components/Title.mdx +1 -1
  61. package/docs/components/Vertical.mdx +64 -64
  62. package/docs/components.md +4 -4
  63. package/docs/conventions.md +1 -1
  64. package/docs/design-system/theming.md +19 -19
  65. package/docs/tutorials/README.md +1 -1
  66. package/docs/tutorials/basic/creating-a-simple-form.md +2 -2
  67. 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.primary`.
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.500" to="purple.500" height="200px" width="100%" />
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.500', position: '0%' },
22
- * { color: 'orange.500', position: '50%' },
23
- * { color: 'yellow.500', position: '100%' }
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 'background'
66
+ * @default 'solid'
67
67
  */
68
68
  highlightStyle?: HighlightStyle;
69
69
  /**
70
70
  * Color for the highlight effect
71
- * @default 'theme.primary'
71
+ * @default 'theme-primary'
72
72
  */
73
73
  highlightColor?: string;
74
74
  /**
75
75
  * Secondary color for gradient highlights
76
- * @default 'theme.secondary'
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
  */