@xaui/native 0.9.1-alpha.32 → 0.9.1-alpha.33

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.
@@ -0,0 +1,131 @@
1
+ import * as react from 'react';
2
+ import { ReactNode } from 'react';
3
+ import * as react_native from 'react-native';
4
+ import { StyleProp, ViewStyle, TextStyle, ViewProps, ImageProps, ImageStyle, TextProps } from 'react-native';
5
+ import { V as ViewStyleProps, I as ImageStyleProps, T as TextStyleProps } from '../../style-props.type-CfnoGEP7.js';
6
+ import { S as Size, R as RadiusKey, X as XAUITheme } from '../../theme.type-C2gNHpEx.js';
7
+ import { I as IconContextValue } from '../../icon.type-Kml72iSz.js';
8
+ import { R as Recipe, S as SlotStyles, a as StyleFn } from '../../create-recipe-BdVd2ffi.js';
9
+
10
+ type AvatarSlot = 'root' | 'fallback' | 'initials' | 'icon';
11
+ /**
12
+ * The full vocabulary (§1 bis), and the `Chip`'s eleven names exactly — an avatar is a
13
+ * token *about* a person or a thing, which is the category the `Chip` established, so a
14
+ * name means here what it means there.
15
+ *
16
+ * They colour the **frame**, which is all that shows when there is no image: `primary` is
17
+ * the accent fill with its contrasted initials, `secondary` the soft slice, `tertiary` a
18
+ * border and nothing else. The three status families are here because an avatar reports as
19
+ * often as it identifies — a red frame for the account that failed to sync, a green one for
20
+ * the person who is online.
21
+ *
22
+ * It is HeroUI's `variant × color` matrix said once: their `default` is this `default`, and
23
+ * their `soft` crossed with five colours is `secondary` plus the five `-soft` names.
24
+ */
25
+ type AvatarVariant = 'primary' | 'secondary' | 'default' | 'tertiary' | 'ghost' | 'success' | 'success-soft' | 'warning' | 'warning-soft' | 'danger' | 'danger-soft';
26
+ type AvatarSize = Size;
27
+ /**
28
+ * What the `Avatar` itself understands. R14 — a name in here is the component's, so the
29
+ * style prop that shares it is not exposed: `size` is the avatar's diameter and never
30
+ * `ViewStyle`'s, and `color` is R7's tint.
31
+ */
32
+ type AvatarOwnProps = {
33
+ variant?: AvatarVariant;
34
+ /** The diameter, and the type inside it. It sets both sides, never a width alone. */
35
+ size?: AvatarSize;
36
+ /**
37
+ * Overrides the circle. An avatar is round at every size — that is the shape the name
38
+ * means — so this is the prop for the logo or the cover that wants a square.
39
+ */
40
+ radius?: RadiusKey;
41
+ /**
42
+ * A raw tint (`'#7c3aed'`), never a token (R7). Where it lands follows the variant: the
43
+ * fill of a `primary`, the border of a `tertiary`, the initials of a `ghost`. Its
44
+ * contrasted and soft slices are derived in OKLab, so it behaves exactly like `accent` —
45
+ * which is also why it must be a hex value.
46
+ */
47
+ color?: string;
48
+ /** R12 — the child element becomes the frame and keeps this variant's style. */
49
+ asChild?: boolean;
50
+ style?: StyleProp<ViewStyle>;
51
+ children?: ReactNode;
52
+ };
53
+ type AvatarProps = Omit<ViewProps, 'style'> & AvatarOwnProps & Omit<ViewStyleProps, keyof AvatarOwnProps | keyof ViewProps>;
54
+ type AvatarImageOwnProps = {
55
+ /**
56
+ * `false` shows the image the moment it decodes, with no fade. The frame does not change
57
+ * either way, so a list switched off with this does not reflow.
58
+ */
59
+ animation?: boolean;
60
+ style?: StyleProp<ImageStyle>;
61
+ };
62
+ /**
63
+ * `Image`'s own props win over the `ImageStyle` keys of the same name (R14). `source`
64
+ * stays required, as `Image` declares it: an `Avatar.Image` with nothing to show is an
65
+ * `Avatar.Fallback`.
66
+ */
67
+ type AvatarImageProps = Omit<ImageProps, 'style'> & AvatarImageOwnProps & Omit<ImageStyleProps, keyof AvatarImageOwnProps | keyof ImageProps>;
68
+ type AvatarFallbackOwnProps = {
69
+ /**
70
+ * Initials, an `Icon`, anything. A stringifiable tree becomes `Avatar.Initials` (R3); an
71
+ * element is centred and left alone — and an `Icon` among them needs no props, because
72
+ * the fallback publishes the frame's size and colour to it.
73
+ */
74
+ children?: ReactNode;
75
+ style?: StyleProp<ViewStyle>;
76
+ };
77
+ type AvatarFallbackProps = Omit<ViewProps, 'style'> & AvatarFallbackOwnProps & Omit<ViewStyleProps, keyof AvatarFallbackOwnProps | keyof ViewProps>;
78
+ /** `Text`'s own props win over the `TextStyle` keys of the same name (R14). */
79
+ type AvatarInitialsProps = TextProps & Omit<TextStyleProps, keyof TextProps> & {
80
+ children?: ReactNode;
81
+ };
82
+ /**
83
+ * R5 — resolved styles, not props for a slot to resolve a second time. Each entry is the
84
+ * cached `StyleSheet` reference with the uncached tint pass layered over it, so a slot
85
+ * merges its own `style` on top and does no work of its own.
86
+ */
87
+ type AvatarContextValue = {
88
+ fallbackStyle: StyleProp<ViewStyle>;
89
+ initialsStyle: StyleProp<TextStyle>;
90
+ /**
91
+ * Values, not a style: `Icon` hands `size` and `color` to a third-party component, so
92
+ * the root flattens its icon slot once here rather than in every icon it contains.
93
+ */
94
+ icon: IconContextValue;
95
+ };
96
+
97
+ declare const useAvatar: () => AvatarContextValue;
98
+
99
+ declare const avatarRecipe: Recipe<"root" | "icon" | "fallback" | "initials", AvatarVariant, {
100
+ readonly size: {
101
+ readonly xs: (theme: XAUITheme) => SlotStyles<AvatarSlot>;
102
+ readonly sm: (theme: XAUITheme) => SlotStyles<AvatarSlot>;
103
+ readonly md: (theme: XAUITheme) => SlotStyles<AvatarSlot>;
104
+ readonly lg: (theme: XAUITheme) => SlotStyles<AvatarSlot>;
105
+ };
106
+ readonly radius: Record<RadiusKey, StyleFn<AvatarSlot>>;
107
+ }>;
108
+
109
+ declare const Avatar: react.ForwardRefExoticComponent<Omit<react_native.ViewProps, "style"> & {
110
+ variant?: AvatarVariant;
111
+ size?: AvatarSize;
112
+ radius?: RadiusKey;
113
+ color?: string;
114
+ asChild?: boolean;
115
+ style?: react_native.StyleProp<react_native.ViewStyle>;
116
+ children?: react.ReactNode;
117
+ } & Omit<ViewStyleProps, "color" | "pointerEvents" | "style" | "children" | "hitSlop" | "id" | "needsOffscreenAlphaCompositing" | "onLayout" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "onBlur" | "onFocus" | "renderToHardwareTextureAndroid" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "role" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | "asChild" | "radius" | "size" | "variant"> & react.RefAttributes<react_native.View>> & {
118
+ Image: react.ForwardRefExoticComponent<Omit<react_native.ImageProps, "style"> & {
119
+ animation?: boolean;
120
+ style?: react_native.StyleProp<react_native.ImageStyle>;
121
+ } & Omit<ImageStyleProps, "height" | "width" | "borderRadius" | "resizeMode" | "tintColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "style" | "id" | "onLayout" | "testID" | "nativeID" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "role" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | "source" | "animation" | "onError" | "onLoad" | "onLoadEnd" | "onLoadStart" | "progressiveRenderingEnabled" | "src" | "srcSet" | "loadingIndicatorSource" | "defaultSource" | "alt" | "crossOrigin" | "referrerPolicy" | "blurRadius" | "capInsets" | "onProgress" | "onPartialLoad" | "resizeMethod" | "fadeDuration"> & react.RefAttributes<react_native.Image>>;
122
+ Fallback: react.ForwardRefExoticComponent<Omit<react_native.ViewProps, "style"> & {
123
+ children?: react.ReactNode;
124
+ style?: react_native.StyleProp<react_native.ViewStyle>;
125
+ } & Omit<ViewStyleProps, "pointerEvents" | "style" | "children" | "hitSlop" | "id" | "needsOffscreenAlphaCompositing" | "onLayout" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "onBlur" | "onFocus" | "renderToHardwareTextureAndroid" | "focusable" | "tabIndex" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "role" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction"> & react.RefAttributes<react_native.View>>;
126
+ Initials: react.ForwardRefExoticComponent<react_native.TextProps & Omit<TextStyleProps, keyof react_native.TextProps> & {
127
+ children?: react.ReactNode;
128
+ } & react.RefAttributes<react_native.Text>>;
129
+ };
130
+
131
+ export { Avatar, type AvatarContextValue, type AvatarFallbackProps, type AvatarImageProps, type AvatarInitialsProps, type AvatarProps, type AvatarSize, type AvatarSlot, type AvatarVariant, avatarRecipe, useAvatar };
@@ -0,0 +1,17 @@
1
+ import {
2
+ Avatar,
3
+ avatarRecipe,
4
+ useAvatar
5
+ } from "../../chunk-ZA6RT3XQ.js";
6
+ import "../../chunk-WJPQARJ5.js";
7
+ import "../../chunk-YXPYOOHU.js";
8
+ import "../../chunk-36PRYGAM.js";
9
+ import "../../chunk-4GTAZM2C.js";
10
+ import "../../chunk-MEYCZS32.js";
11
+ import "../../chunk-A3EGFI6T.js";
12
+ import "../../chunk-GGW42MY4.js";
13
+ export {
14
+ Avatar,
15
+ avatarRecipe,
16
+ useAvatar
17
+ };
@@ -2,13 +2,13 @@
2
2
 
3
3
 
4
4
 
5
- var _chunk4MPSXDABcjs = require('../../chunk-4MPSXDAB.cjs');
5
+ var _chunkDBXFFJTCcjs = require('../../chunk-DBXFFJTC.cjs');
6
6
  require('../../chunk-K4TWKF5U.cjs');
7
7
  require('../../chunk-7EIHHOHP.cjs');
8
+ require('../../chunk-PCWT2YBE.cjs');
8
9
  require('../../chunk-6M7RUU7V.cjs');
9
10
  require('../../chunk-7DPL3ZDS.cjs');
10
11
  require('../../chunk-EJQCQPET.cjs');
11
- require('../../chunk-PCWT2YBE.cjs');
12
12
  require('../../chunk-54FJOKAN.cjs');
13
13
  require('../../chunk-H4E4HDEP.cjs');
14
14
  require('../../chunk-FNEUOBCV.cjs');
@@ -19,4 +19,4 @@ require('../../chunk-MC7SY2QH.cjs');
19
19
 
20
20
 
21
21
 
22
- exports.Button = _chunk4MPSXDABcjs.Button; exports.buttonRecipe = _chunk4MPSXDABcjs.buttonRecipe; exports.useButton = _chunk4MPSXDABcjs.useButton;
22
+ exports.Button = _chunkDBXFFJTCcjs.Button; exports.buttonRecipe = _chunkDBXFFJTCcjs.buttonRecipe; exports.useButton = _chunkDBXFFJTCcjs.useButton;
@@ -2,13 +2,13 @@ import {
2
2
  Button,
3
3
  buttonRecipe,
4
4
  useButton
5
- } from "../../chunk-Y2B4XM3Y.js";
5
+ } from "../../chunk-2IWL6R3D.js";
6
6
  import "../../chunk-PPWXLZGL.js";
7
7
  import "../../chunk-F6W3JQ7K.js";
8
+ import "../../chunk-WJPQARJ5.js";
8
9
  import "../../chunk-XNNJM5DQ.js";
9
10
  import "../../chunk-423RQBOX.js";
10
11
  import "../../chunk-EGLLDKN6.js";
11
- import "../../chunk-WJPQARJ5.js";
12
12
  import "../../chunk-YXPYOOHU.js";
13
13
  import "../../chunk-36PRYGAM.js";
14
14
  import "../../chunk-4GTAZM2C.js";
@@ -2,12 +2,12 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkETSYP3NHcjs = require('../../chunk-ETSYP3NH.cjs');
5
+ var _chunkQY4MN7X3cjs = require('../../chunk-QY4MN7X3.cjs');
6
6
  require('../../chunk-CYS6U374.cjs');
7
+ require('../../chunk-PCWT2YBE.cjs');
7
8
  require('../../chunk-6M7RUU7V.cjs');
8
9
  require('../../chunk-7DPL3ZDS.cjs');
9
10
  require('../../chunk-EJQCQPET.cjs');
10
- require('../../chunk-PCWT2YBE.cjs');
11
11
  require('../../chunk-54FJOKAN.cjs');
12
12
  require('../../chunk-H4E4HDEP.cjs');
13
13
  require('../../chunk-FNEUOBCV.cjs');
@@ -18,4 +18,4 @@ require('../../chunk-MC7SY2QH.cjs');
18
18
 
19
19
 
20
20
 
21
- exports.Chip = _chunkETSYP3NHcjs.Chip; exports.chipRecipe = _chunkETSYP3NHcjs.chipRecipe; exports.useChip = _chunkETSYP3NHcjs.useChip;
21
+ exports.Chip = _chunkQY4MN7X3cjs.Chip; exports.chipRecipe = _chunkQY4MN7X3cjs.chipRecipe; exports.useChip = _chunkQY4MN7X3cjs.useChip;
@@ -2,12 +2,12 @@ import {
2
2
  Chip,
3
3
  chipRecipe,
4
4
  useChip
5
- } from "../../chunk-4YJLNYUS.js";
5
+ } from "../../chunk-M2BGCN77.js";
6
6
  import "../../chunk-U3RDU3HU.js";
7
+ import "../../chunk-WJPQARJ5.js";
7
8
  import "../../chunk-XNNJM5DQ.js";
8
9
  import "../../chunk-423RQBOX.js";
9
10
  import "../../chunk-EGLLDKN6.js";
10
- import "../../chunk-WJPQARJ5.js";
11
11
  import "../../chunk-YXPYOOHU.js";
12
12
  import "../../chunk-36PRYGAM.js";
13
13
  import "../../chunk-4GTAZM2C.js";
package/dist/index.cjs CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
 
4
4
 
5
+ var _chunkAOEXU5UVcjs = require('./chunk-AOEXU5UV.cjs');
6
+
7
+
8
+
9
+
5
10
 
6
11
 
7
12
  var _chunk7CTIE42Jcjs = require('./chunk-7CTIE42J.cjs');
@@ -31,8 +36,8 @@ var _chunkOHEHPQLCcjs = require('./chunk-OHEHPQLC.cjs');
31
36
 
32
37
 
33
38
 
39
+ var _chunkTVCS5UOEcjs = require('./chunk-TVCS5UOE.cjs');
34
40
 
35
- var _chunkPBR44KVVcjs = require('./chunk-PBR44KVV.cjs');
36
41
 
37
42
 
38
43
 
@@ -40,79 +45,76 @@ var _chunkPBR44KVVcjs = require('./chunk-PBR44KVV.cjs');
40
45
 
41
46
 
42
47
 
43
- var _chunkMSMZBUZOcjs = require('./chunk-MSMZBUZO.cjs');
44
48
 
45
49
 
50
+ var _chunkPBR44KVVcjs = require('./chunk-PBR44KVV.cjs');
46
51
 
47
- var _chunkLT6XHFXJcjs = require('./chunk-LT6XHFXJ.cjs');
48
52
 
49
53
 
50
54
 
51
- var _chunkXWMB66ZMcjs = require('./chunk-XWMB66ZM.cjs');
52
55
 
53
56
 
54
57
 
58
+ var _chunkMSMZBUZOcjs = require('./chunk-MSMZBUZO.cjs');
55
59
 
56
60
 
57
61
 
62
+ var _chunkLT6XHFXJcjs = require('./chunk-LT6XHFXJ.cjs');
58
63
 
59
64
 
60
- var _chunkOX2YNMNScjs = require('./chunk-OX2YNMNS.cjs');
61
65
 
66
+ var _chunkXWMB66ZMcjs = require('./chunk-XWMB66ZM.cjs');
62
67
 
63
68
 
64
- var _chunkCM4LI5OHcjs = require('./chunk-CM4LI5OH.cjs');
65
69
 
66
70
 
67
71
 
68
72
 
69
- var _chunkAOEXU5UVcjs = require('./chunk-AOEXU5UV.cjs');
70
73
 
71
74
 
75
+ var _chunkOX2YNMNScjs = require('./chunk-OX2YNMNS.cjs');
72
76
 
73
77
 
74
- var _chunkK7LLERKTcjs = require('./chunk-K7LLERKT.cjs');
75
78
 
79
+ var _chunkCM4LI5OHcjs = require('./chunk-CM4LI5OH.cjs');
76
80
 
77
81
 
78
82
 
79
- var _chunk4MPSXDABcjs = require('./chunk-4MPSXDAB.cjs');
80
83
 
81
84
 
82
85
 
83
86
 
84
87
 
85
- var _chunkK4TWKF5Ucjs = require('./chunk-K4TWKF5U.cjs');
86
88
 
89
+ var _chunkQ3D6KIVFcjs = require('./chunk-Q3D6KIVF.cjs');
87
90
 
88
91
 
89
92
 
90
93
 
94
+ var _chunkK7LLERKTcjs = require('./chunk-K7LLERKT.cjs');
91
95
 
92
- var _chunkUORTYL63cjs = require('./chunk-UORTYL63.cjs');
93
96
 
94
97
 
95
98
 
99
+ var _chunkI66VMLHEcjs = require('./chunk-I66VMLHE.cjs');
96
100
 
97
101
 
98
102
 
99
103
 
100
- var _chunkCNNLMMFVcjs = require('./chunk-CNNLMMFV.cjs');
104
+ var _chunkDBXFFJTCcjs = require('./chunk-DBXFFJTC.cjs');
101
105
 
102
106
 
103
- var _chunkF6CQ6CBIcjs = require('./chunk-F6CQ6CBI.cjs');
104
107
 
105
108
 
106
- var _chunk7EIHHOHPcjs = require('./chunk-7EIHHOHP.cjs');
107
109
 
110
+ var _chunkK4TWKF5Ucjs = require('./chunk-K4TWKF5U.cjs');
108
111
 
109
112
 
110
113
 
111
- var _chunkETSYP3NHcjs = require('./chunk-ETSYP3NH.cjs');
112
114
 
113
115
 
114
116
 
115
- var _chunkCYS6U374cjs = require('./chunk-CYS6U374.cjs');
117
+ var _chunkUORTYL63cjs = require('./chunk-UORTYL63.cjs');
116
118
 
117
119
 
118
120
 
@@ -120,29 +122,31 @@ var _chunkCYS6U374cjs = require('./chunk-CYS6U374.cjs');
120
122
 
121
123
 
122
124
 
125
+ var _chunkCNNLMMFVcjs = require('./chunk-CNNLMMFV.cjs');
123
126
 
124
127
 
128
+ var _chunkF6CQ6CBIcjs = require('./chunk-F6CQ6CBI.cjs');
125
129
 
126
130
 
131
+ var _chunk7EIHHOHPcjs = require('./chunk-7EIHHOHP.cjs');
127
132
 
128
133
 
129
134
 
130
135
 
136
+ var _chunkQY4MN7X3cjs = require('./chunk-QY4MN7X3.cjs');
131
137
 
132
138
 
133
139
 
140
+ var _chunkCYS6U374cjs = require('./chunk-CYS6U374.cjs');
134
141
 
135
142
 
136
143
 
137
- var _chunk6M7RUU7Vcjs = require('./chunk-6M7RUU7V.cjs');
138
144
 
145
+ var _chunkPCWT2YBEcjs = require('./chunk-PCWT2YBE.cjs');
139
146
 
140
- var _chunk7DPL3ZDScjs = require('./chunk-7DPL3ZDS.cjs');
141
- require('./chunk-EJQCQPET.cjs');
142
147
 
143
148
 
144
149
 
145
- var _chunkVSALV7VOcjs = require('./chunk-VSALV7VO.cjs');
146
150
 
147
151
 
148
152
 
@@ -152,7 +156,6 @@ var _chunkVSALV7VOcjs = require('./chunk-VSALV7VO.cjs');
152
156
 
153
157
 
154
158
 
155
- var _chunkTVCS5UOEcjs = require('./chunk-TVCS5UOE.cjs');
156
159
 
157
160
 
158
161
 
@@ -161,13 +164,15 @@ var _chunkTVCS5UOEcjs = require('./chunk-TVCS5UOE.cjs');
161
164
 
162
165
 
163
166
 
167
+ var _chunk6M7RUU7Vcjs = require('./chunk-6M7RUU7V.cjs');
164
168
 
165
- var _chunkQ3D6KIVFcjs = require('./chunk-Q3D6KIVF.cjs');
166
169
 
170
+ var _chunk7DPL3ZDScjs = require('./chunk-7DPL3ZDS.cjs');
171
+ require('./chunk-EJQCQPET.cjs');
167
172
 
168
173
 
169
174
 
170
- var _chunkPCWT2YBEcjs = require('./chunk-PCWT2YBE.cjs');
175
+ var _chunkVSALV7VOcjs = require('./chunk-VSALV7VO.cjs');
171
176
 
172
177
 
173
178
 
@@ -325,4 +330,7 @@ require('./chunk-MC7SY2QH.cjs');
325
330
 
326
331
 
327
332
 
328
- exports.Alert = _chunkK7LLERKTcjs.Alert; exports.Button = _chunk4MPSXDABcjs.Button; exports.CARD_BACKGROUND = _chunkUORTYL63cjs.CARD_BACKGROUND; exports.Card = _chunkUORTYL63cjs.Card; exports.Checkbox = _chunkCNNLMMFVcjs.Checkbox; exports.CheckboxIndicator = _chunkCNNLMMFVcjs.CheckboxIndicator; exports.CheckboxLabel = _chunkCNNLMMFVcjs.CheckboxLabel; exports.CheckboxRoot = _chunkCNNLMMFVcjs.CheckboxRoot; exports.Chip = _chunkETSYP3NHcjs.Chip; exports.CloseButton = _chunkCYS6U374cjs.CloseButton; exports.Column = _chunk7CTIE42Jcjs.Column; exports.Divider = _chunkVSALV7VOcjs.Divider; exports.FEEDBACK_OVERLAY = _chunk6M7RUU7Vcjs.FEEDBACK_OVERLAY; exports.Grid = _chunk7CTIE42Jcjs.Grid; exports.HIGHLIGHT_DURATION = _chunk6M7RUU7Vcjs.HIGHLIGHT_DURATION; exports.HIGHLIGHT_OPACITY = _chunk6M7RUU7Vcjs.HIGHLIGHT_OPACITY; exports.Icon = _chunkPCWT2YBEcjs.Icon; exports.IconContext = _chunkPCWT2YBEcjs.IconContext; exports.Input = _chunkQ3D6KIVFcjs.Input; exports.InputDescription = _chunkQ3D6KIVFcjs.InputDescription; exports.InputError = _chunkQ3D6KIVFcjs.InputError; exports.InputField = _chunkQ3D6KIVFcjs.InputField; exports.InputGroup = _chunkTVCS5UOEcjs.InputGroup; exports.InputGroupField = _chunkTVCS5UOEcjs.InputGroupField; exports.InputGroupIcon = _chunkTVCS5UOEcjs.InputGroupIcon; exports.InputGroupPrefix = _chunkTVCS5UOEcjs.InputGroupPrefix; exports.InputGroupRoot = _chunkTVCS5UOEcjs.InputGroupRoot; exports.InputGroupSuffix = _chunkTVCS5UOEcjs.InputGroupSuffix; exports.InputLabel = _chunkQ3D6KIVFcjs.InputLabel; exports.InputOTP = _chunkPBR44KVVcjs.InputOTP; exports.InputRoot = _chunkQ3D6KIVFcjs.InputRoot; exports.OTP_ALPHANUMERIC = _chunkPBR44KVVcjs.OTP_ALPHANUMERIC; exports.OTP_DIGITS = _chunkPBR44KVVcjs.OTP_DIGITS; exports.OTP_LETTERS = _chunkPBR44KVVcjs.OTP_LETTERS; exports.PRESS_DURATION = _chunk6M7RUU7Vcjs.PRESS_DURATION; exports.PRESS_SCALE = _chunk6M7RUU7Vcjs.PRESS_SCALE; exports.Portal = _chunk4SLOOIE5cjs.Portal; exports.PortalContext = _chunk4SLOOIE5cjs.PortalContext; exports.PortalHost = _chunk4SLOOIE5cjs.PortalHost; exports.PressableFeedback = _chunk6M7RUU7Vcjs.PressableFeedback; exports.RIPPLE_CONFIRM_DURATION = _chunk6M7RUU7Vcjs.RIPPLE_CONFIRM_DURATION; exports.RIPPLE_EXPAND_DURATION = _chunk6M7RUU7Vcjs.RIPPLE_EXPAND_DURATION; exports.RIPPLE_FADE_IN = _chunk6M7RUU7Vcjs.RIPPLE_FADE_IN; exports.RIPPLE_FADE_OUT = _chunk6M7RUU7Vcjs.RIPPLE_FADE_OUT; exports.RIPPLE_FADE_OUT_DELAY = _chunk6M7RUU7Vcjs.RIPPLE_FADE_OUT_DELAY; exports.RIPPLE_OPACITY = _chunk6M7RUU7Vcjs.RIPPLE_OPACITY; exports.RIPPLE_START_SCALE = _chunk6M7RUU7Vcjs.RIPPLE_START_SCALE; exports.ROTATION_DURATION = _chunkK4TWKF5Ucjs.ROTATION_DURATION; exports.Radio = _chunkMSMZBUZOcjs.Radio; exports.RadioIndicator = _chunkMSMZBUZOcjs.RadioIndicator; exports.RadioLabel = _chunkMSMZBUZOcjs.RadioLabel; exports.RadioRoot = _chunkMSMZBUZOcjs.RadioRoot; exports.Row = _chunk7CTIE42Jcjs.Row; exports.SCALE_REFERENCE_WIDTH = _chunk6M7RUU7Vcjs.SCALE_REFERENCE_WIDTH; exports.SelectionFill = _chunkF6CQ6CBIcjs.SelectionFill; exports.Skeleton = _chunkLT6XHFXJcjs.Skeleton; exports.Slot = _chunk54FJOKANcjs.Slot; exports.Spinner = _chunkXWMB66ZMcjs.Spinner; exports.Stack = _chunk7CTIE42Jcjs.Stack; exports.Switch = _chunkOX2YNMNScjs.Switch; exports.SwitchLabel = _chunkOX2YNMNScjs.SwitchLabel; exports.SwitchRoot = _chunkOX2YNMNScjs.SwitchRoot; exports.SwitchThumb = _chunkOX2YNMNScjs.SwitchThumb; exports.SwitchTrack = _chunkOX2YNMNScjs.SwitchTrack; exports.TextArea = _chunkCM4LI5OHcjs.TextArea; exports.TextSpan = _chunkAOEXU5UVcjs.TextSpan; exports.ThemeContext = _chunk57SJ4LJFcjs.ThemeContext; exports.Typography = _chunkAOEXU5UVcjs.Typography; exports.XAUIProvider = _chunkOHEHPQLCcjs.XAUIProvider; exports.alertRecipe = _chunkK7LLERKTcjs.alertRecipe; exports.buildRadius = _chunkOHEHPQLCcjs.buildRadius; exports.buildShadows = _chunkOHEHPQLCcjs.buildShadows; exports.buildSlots = _chunkPBR44KVVcjs.buildSlots; exports.buttonRecipe = _chunk4MPSXDABcjs.buttonRecipe; exports.cardRecipe = _chunkUORTYL63cjs.cardRecipe; exports.checkboxRecipe = _chunkCNNLMMFVcjs.checkboxRecipe; exports.childrenToString = _chunk54FJOKANcjs.childrenToString; exports.chipRecipe = _chunkETSYP3NHcjs.chipRecipe; exports.closeButtonBase = _chunkCYS6U374cjs.closeButtonBase; exports.createRecipe = _chunkFNEUOBCVcjs.createRecipe; exports.createSlotContext = _chunk54FJOKANcjs.createSlotContext; exports.createTheme = _chunkOHEHPQLCcjs.createTheme; exports.decoratorPadding = _chunkTVCS5UOEcjs.decoratorPadding; exports.defaultTheme = _chunkOHEHPQLCcjs.defaultTheme; exports.deriveColors = _chunkOHEHPQLCcjs.deriveColors; exports.deriveTint = _chunk57SJ4LJFcjs.deriveTint; exports.dividerRecipe = _chunkVSALV7VOcjs.dividerRecipe; exports.extractPastedCode = _chunkPBR44KVVcjs.extractPastedCode; exports.inputOTPRecipe = _chunkPBR44KVVcjs.inputOTPRecipe; exports.inputRecipe = _chunkQ3D6KIVFcjs.inputRecipe; exports.markBackground = _chunkUORTYL63cjs.markBackground; exports.markOverlay = _chunk6M7RUU7Vcjs.markOverlay; exports.mergeProps = _chunk54FJOKANcjs.mergeProps; exports.mergeRefs = _chunkH4E4HDEPcjs.mergeRefs; exports.palette = _chunkOHEHPQLCcjs.palette; exports.pressScaleFor = _chunk6M7RUU7Vcjs.pressScaleFor; exports.primitives = _chunkOHEHPQLCcjs.primitives; exports.radioRecipe = _chunkMSMZBUZOcjs.radioRecipe; exports.radiusAxis = _chunkFNEUOBCVcjs.radiusAxis; exports.resolveAnimation = _chunk6M7RUU7Vcjs.resolveAnimation; exports.resolveSlotAnimation = _chunk6M7RUU7Vcjs.resolveSlotAnimation; exports.rippleRadiusFor = _chunk6M7RUU7Vcjs.rippleRadiusFor; exports.skeletonRecipe = _chunkLT6XHFXJcjs.skeletonRecipe; exports.sourceKeys = _chunkOHEHPQLCcjs.sourceKeys; exports.spinnerRecipe = _chunkXWMB66ZMcjs.spinnerRecipe; exports.switchRecipe = _chunkOX2YNMNScjs.switchRecipe; exports.tokens = _chunkOHEHPQLCcjs.tokens; exports.typographyRecipe = _chunkAOEXU5UVcjs.typographyRecipe; exports.useAlert = _chunkK7LLERKTcjs.useAlert; exports.useButton = _chunk4MPSXDABcjs.useButton; exports.useCard = _chunkUORTYL63cjs.useCard; exports.useCheckbox = _chunkCNNLMMFVcjs.useCheckbox; exports.useChip = _chunkETSYP3NHcjs.useChip; exports.useColorMode = _chunk57SJ4LJFcjs.useColorMode; exports.useControllableState = _chunk7EIHHOHPcjs.useControllableState; exports.useFeedback = _chunk6M7RUU7Vcjs.useFeedback; exports.useGrid = _chunk7CTIE42Jcjs.useGrid; exports.useIconContext = _chunkPCWT2YBEcjs.useIconContext; exports.useInput = _chunkQ3D6KIVFcjs.useInput; exports.useInputGroup = _chunkTVCS5UOEcjs.useInputGroup; exports.useInputOTP = _chunkPBR44KVVcjs.useInputOTP; exports.useInputOTPBox = _chunkPBR44KVVcjs.useInputOTPBox; exports.useMergedRef = _chunkK4TWKF5Ucjs.useMergedRef; exports.usePressState = _chunk7DPL3ZDScjs.usePressState; exports.usePrevious = _chunkK4TWKF5Ucjs.usePrevious; exports.useRadio = _chunkMSMZBUZOcjs.useRadio; exports.useRotation = _chunkK4TWKF5Ucjs.useRotation; exports.useStyleProps = _chunkI6ZB3FZIcjs.useStyleProps; exports.useSwitch = _chunkOX2YNMNScjs.useSwitch; exports.useTextArea = _chunkCM4LI5OHcjs.useTextArea; exports.useThemeColor = _chunk57SJ4LJFcjs.useThemeColor; exports.useXAUITheme = _chunk57SJ4LJFcjs.useXAUITheme;
333
+
334
+
335
+
336
+ exports.Alert = _chunkK7LLERKTcjs.Alert; exports.Avatar = _chunkI66VMLHEcjs.Avatar; exports.Button = _chunkDBXFFJTCcjs.Button; exports.CARD_BACKGROUND = _chunkUORTYL63cjs.CARD_BACKGROUND; exports.Card = _chunkUORTYL63cjs.Card; exports.Checkbox = _chunkCNNLMMFVcjs.Checkbox; exports.CheckboxIndicator = _chunkCNNLMMFVcjs.CheckboxIndicator; exports.CheckboxLabel = _chunkCNNLMMFVcjs.CheckboxLabel; exports.CheckboxRoot = _chunkCNNLMMFVcjs.CheckboxRoot; exports.Chip = _chunkQY4MN7X3cjs.Chip; exports.CloseButton = _chunkCYS6U374cjs.CloseButton; exports.Column = _chunk7CTIE42Jcjs.Column; exports.Divider = _chunkVSALV7VOcjs.Divider; exports.FEEDBACK_OVERLAY = _chunk6M7RUU7Vcjs.FEEDBACK_OVERLAY; exports.Grid = _chunk7CTIE42Jcjs.Grid; exports.HIGHLIGHT_DURATION = _chunk6M7RUU7Vcjs.HIGHLIGHT_DURATION; exports.HIGHLIGHT_OPACITY = _chunk6M7RUU7Vcjs.HIGHLIGHT_OPACITY; exports.Icon = _chunkPCWT2YBEcjs.Icon; exports.IconContext = _chunkPCWT2YBEcjs.IconContext; exports.Input = _chunkQ3D6KIVFcjs.Input; exports.InputDescription = _chunkQ3D6KIVFcjs.InputDescription; exports.InputError = _chunkQ3D6KIVFcjs.InputError; exports.InputField = _chunkQ3D6KIVFcjs.InputField; exports.InputGroup = _chunkTVCS5UOEcjs.InputGroup; exports.InputGroupField = _chunkTVCS5UOEcjs.InputGroupField; exports.InputGroupIcon = _chunkTVCS5UOEcjs.InputGroupIcon; exports.InputGroupPrefix = _chunkTVCS5UOEcjs.InputGroupPrefix; exports.InputGroupRoot = _chunkTVCS5UOEcjs.InputGroupRoot; exports.InputGroupSuffix = _chunkTVCS5UOEcjs.InputGroupSuffix; exports.InputLabel = _chunkQ3D6KIVFcjs.InputLabel; exports.InputOTP = _chunkPBR44KVVcjs.InputOTP; exports.InputRoot = _chunkQ3D6KIVFcjs.InputRoot; exports.OTP_ALPHANUMERIC = _chunkPBR44KVVcjs.OTP_ALPHANUMERIC; exports.OTP_DIGITS = _chunkPBR44KVVcjs.OTP_DIGITS; exports.OTP_LETTERS = _chunkPBR44KVVcjs.OTP_LETTERS; exports.PRESS_DURATION = _chunk6M7RUU7Vcjs.PRESS_DURATION; exports.PRESS_SCALE = _chunk6M7RUU7Vcjs.PRESS_SCALE; exports.Portal = _chunk4SLOOIE5cjs.Portal; exports.PortalContext = _chunk4SLOOIE5cjs.PortalContext; exports.PortalHost = _chunk4SLOOIE5cjs.PortalHost; exports.PressableFeedback = _chunk6M7RUU7Vcjs.PressableFeedback; exports.RIPPLE_CONFIRM_DURATION = _chunk6M7RUU7Vcjs.RIPPLE_CONFIRM_DURATION; exports.RIPPLE_EXPAND_DURATION = _chunk6M7RUU7Vcjs.RIPPLE_EXPAND_DURATION; exports.RIPPLE_FADE_IN = _chunk6M7RUU7Vcjs.RIPPLE_FADE_IN; exports.RIPPLE_FADE_OUT = _chunk6M7RUU7Vcjs.RIPPLE_FADE_OUT; exports.RIPPLE_FADE_OUT_DELAY = _chunk6M7RUU7Vcjs.RIPPLE_FADE_OUT_DELAY; exports.RIPPLE_OPACITY = _chunk6M7RUU7Vcjs.RIPPLE_OPACITY; exports.RIPPLE_START_SCALE = _chunk6M7RUU7Vcjs.RIPPLE_START_SCALE; exports.ROTATION_DURATION = _chunkK4TWKF5Ucjs.ROTATION_DURATION; exports.Radio = _chunkMSMZBUZOcjs.Radio; exports.RadioIndicator = _chunkMSMZBUZOcjs.RadioIndicator; exports.RadioLabel = _chunkMSMZBUZOcjs.RadioLabel; exports.RadioRoot = _chunkMSMZBUZOcjs.RadioRoot; exports.Row = _chunk7CTIE42Jcjs.Row; exports.SCALE_REFERENCE_WIDTH = _chunk6M7RUU7Vcjs.SCALE_REFERENCE_WIDTH; exports.SelectionFill = _chunkF6CQ6CBIcjs.SelectionFill; exports.Skeleton = _chunkLT6XHFXJcjs.Skeleton; exports.Slot = _chunk54FJOKANcjs.Slot; exports.Spinner = _chunkXWMB66ZMcjs.Spinner; exports.Stack = _chunk7CTIE42Jcjs.Stack; exports.Switch = _chunkOX2YNMNScjs.Switch; exports.SwitchLabel = _chunkOX2YNMNScjs.SwitchLabel; exports.SwitchRoot = _chunkOX2YNMNScjs.SwitchRoot; exports.SwitchThumb = _chunkOX2YNMNScjs.SwitchThumb; exports.SwitchTrack = _chunkOX2YNMNScjs.SwitchTrack; exports.TextArea = _chunkCM4LI5OHcjs.TextArea; exports.TextSpan = _chunkAOEXU5UVcjs.TextSpan; exports.ThemeContext = _chunk57SJ4LJFcjs.ThemeContext; exports.Typography = _chunkAOEXU5UVcjs.Typography; exports.XAUIProvider = _chunkOHEHPQLCcjs.XAUIProvider; exports.alertRecipe = _chunkK7LLERKTcjs.alertRecipe; exports.avatarRecipe = _chunkI66VMLHEcjs.avatarRecipe; exports.buildRadius = _chunkOHEHPQLCcjs.buildRadius; exports.buildShadows = _chunkOHEHPQLCcjs.buildShadows; exports.buildSlots = _chunkPBR44KVVcjs.buildSlots; exports.buttonRecipe = _chunkDBXFFJTCcjs.buttonRecipe; exports.cardRecipe = _chunkUORTYL63cjs.cardRecipe; exports.checkboxRecipe = _chunkCNNLMMFVcjs.checkboxRecipe; exports.childrenToString = _chunk54FJOKANcjs.childrenToString; exports.chipRecipe = _chunkQY4MN7X3cjs.chipRecipe; exports.closeButtonBase = _chunkCYS6U374cjs.closeButtonBase; exports.createRecipe = _chunkFNEUOBCVcjs.createRecipe; exports.createSlotContext = _chunk54FJOKANcjs.createSlotContext; exports.createTheme = _chunkOHEHPQLCcjs.createTheme; exports.decoratorPadding = _chunkTVCS5UOEcjs.decoratorPadding; exports.defaultTheme = _chunkOHEHPQLCcjs.defaultTheme; exports.deriveColors = _chunkOHEHPQLCcjs.deriveColors; exports.deriveTint = _chunk57SJ4LJFcjs.deriveTint; exports.dividerRecipe = _chunkVSALV7VOcjs.dividerRecipe; exports.extractPastedCode = _chunkPBR44KVVcjs.extractPastedCode; exports.inputOTPRecipe = _chunkPBR44KVVcjs.inputOTPRecipe; exports.inputRecipe = _chunkQ3D6KIVFcjs.inputRecipe; exports.markBackground = _chunkUORTYL63cjs.markBackground; exports.markOverlay = _chunk6M7RUU7Vcjs.markOverlay; exports.mergeProps = _chunk54FJOKANcjs.mergeProps; exports.mergeRefs = _chunkH4E4HDEPcjs.mergeRefs; exports.palette = _chunkOHEHPQLCcjs.palette; exports.pressScaleFor = _chunk6M7RUU7Vcjs.pressScaleFor; exports.primitives = _chunkOHEHPQLCcjs.primitives; exports.radioRecipe = _chunkMSMZBUZOcjs.radioRecipe; exports.radiusAxis = _chunkFNEUOBCVcjs.radiusAxis; exports.resolveAnimation = _chunk6M7RUU7Vcjs.resolveAnimation; exports.resolveSlotAnimation = _chunk6M7RUU7Vcjs.resolveSlotAnimation; exports.rippleRadiusFor = _chunk6M7RUU7Vcjs.rippleRadiusFor; exports.skeletonRecipe = _chunkLT6XHFXJcjs.skeletonRecipe; exports.sourceKeys = _chunkOHEHPQLCcjs.sourceKeys; exports.spinnerRecipe = _chunkXWMB66ZMcjs.spinnerRecipe; exports.switchRecipe = _chunkOX2YNMNScjs.switchRecipe; exports.tokens = _chunkOHEHPQLCcjs.tokens; exports.typographyRecipe = _chunkAOEXU5UVcjs.typographyRecipe; exports.useAlert = _chunkK7LLERKTcjs.useAlert; exports.useAvatar = _chunkI66VMLHEcjs.useAvatar; exports.useButton = _chunkDBXFFJTCcjs.useButton; exports.useCard = _chunkUORTYL63cjs.useCard; exports.useCheckbox = _chunkCNNLMMFVcjs.useCheckbox; exports.useChip = _chunkQY4MN7X3cjs.useChip; exports.useColorMode = _chunk57SJ4LJFcjs.useColorMode; exports.useControllableState = _chunk7EIHHOHPcjs.useControllableState; exports.useFeedback = _chunk6M7RUU7Vcjs.useFeedback; exports.useGrid = _chunk7CTIE42Jcjs.useGrid; exports.useIconContext = _chunkPCWT2YBEcjs.useIconContext; exports.useInput = _chunkQ3D6KIVFcjs.useInput; exports.useInputGroup = _chunkTVCS5UOEcjs.useInputGroup; exports.useInputOTP = _chunkPBR44KVVcjs.useInputOTP; exports.useInputOTPBox = _chunkPBR44KVVcjs.useInputOTPBox; exports.useMergedRef = _chunkK4TWKF5Ucjs.useMergedRef; exports.usePressState = _chunk7DPL3ZDScjs.usePressState; exports.usePrevious = _chunkK4TWKF5Ucjs.usePrevious; exports.useRadio = _chunkMSMZBUZOcjs.useRadio; exports.useRotation = _chunkK4TWKF5Ucjs.useRotation; exports.useStyleProps = _chunkI6ZB3FZIcjs.useStyleProps; exports.useSwitch = _chunkOX2YNMNScjs.useSwitch; exports.useTextArea = _chunkCM4LI5OHcjs.useTextArea; exports.useThemeColor = _chunk57SJ4LJFcjs.useThemeColor; exports.useXAUITheme = _chunk57SJ4LJFcjs.useXAUITheme;
package/dist/index.d.cts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { Alert, AlertCloseProps, AlertContentProps, AlertContextValue, AlertDescriptionProps, AlertIconProps, AlertProps, AlertSize, AlertSlot, AlertTitleProps, AlertVariant, alertRecipe, useAlert } from './components/alert/index.cjs';
2
+ export { Avatar, AvatarContextValue, AvatarFallbackProps, AvatarImageProps, AvatarInitialsProps, AvatarProps, AvatarSize, AvatarSlot, AvatarVariant, avatarRecipe, useAvatar } from './components/avatar/index.cjs';
2
3
  export { Button, ButtonContextValue, ButtonIconProps, ButtonLabelProps, ButtonProps, ButtonSize, ButtonSlot, ButtonSpinnerProps, ButtonVariant, buttonRecipe, useButton } from './components/button/index.cjs';
3
4
  export { CARD_BACKGROUND, Card, CardBackgroundProps, CardBodyProps, CardContextValue, CardDescriptionProps, CardFooterProps, CardHeaderProps, CardProps, CardSize, CardSlot, CardTitleProps, CardVariant, cardRecipe, markBackground, useCard } from './components/card/index.cjs';
4
5
  export { Checkbox, CheckboxContextValue, CheckboxIndicator, CheckboxIndicatorProps, CheckboxLabel, CheckboxLabelProps, CheckboxProps, CheckboxRoot, CheckboxSize, CheckboxSlot, CheckboxVariant, checkboxRecipe, useCheckbox } from './components/checkbox/index.cjs';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { Alert, AlertCloseProps, AlertContentProps, AlertContextValue, AlertDescriptionProps, AlertIconProps, AlertProps, AlertSize, AlertSlot, AlertTitleProps, AlertVariant, alertRecipe, useAlert } from './components/alert/index.js';
2
+ export { Avatar, AvatarContextValue, AvatarFallbackProps, AvatarImageProps, AvatarInitialsProps, AvatarProps, AvatarSize, AvatarSlot, AvatarVariant, avatarRecipe, useAvatar } from './components/avatar/index.js';
2
3
  export { Button, ButtonContextValue, ButtonIconProps, ButtonLabelProps, ButtonProps, ButtonSize, ButtonSlot, ButtonSpinnerProps, ButtonVariant, buttonRecipe, useButton } from './components/button/index.js';
3
4
  export { CARD_BACKGROUND, Card, CardBackgroundProps, CardBodyProps, CardContextValue, CardDescriptionProps, CardFooterProps, CardHeaderProps, CardProps, CardSize, CardSlot, CardTitleProps, CardVariant, cardRecipe, markBackground, useCard } from './components/card/index.js';
4
5
  export { Checkbox, CheckboxContextValue, CheckboxIndicator, CheckboxIndicatorProps, CheckboxLabel, CheckboxLabelProps, CheckboxProps, CheckboxRoot, CheckboxSize, CheckboxSlot, CheckboxVariant, checkboxRecipe, useCheckbox } from './components/checkbox/index.js';
package/dist/index.js CHANGED
@@ -1,3 +1,8 @@
1
+ import {
2
+ TextSpan,
3
+ Typography,
4
+ typographyRecipe
5
+ } from "./chunk-HVD5EX7V.js";
1
6
  import {
2
7
  Column,
3
8
  Grid,
@@ -22,6 +27,16 @@ import {
22
27
  sourceKeys,
23
28
  tokens
24
29
  } from "./chunk-TZG3DERP.js";
30
+ import {
31
+ InputGroup,
32
+ InputGroupField,
33
+ InputGroupIcon,
34
+ InputGroupPrefix,
35
+ InputGroupRoot,
36
+ InputGroupSuffix,
37
+ decoratorPadding,
38
+ useInputGroup
39
+ } from "./chunk-MHEL3NAN.js";
25
40
  import {
26
41
  InputOTP,
27
42
  OTP_ALPHANUMERIC,
@@ -63,20 +78,30 @@ import {
63
78
  useTextArea
64
79
  } from "./chunk-HXL2QCMR.js";
65
80
  import {
66
- TextSpan,
67
- Typography,
68
- typographyRecipe
69
- } from "./chunk-HVD5EX7V.js";
81
+ Input,
82
+ InputDescription,
83
+ InputError,
84
+ InputField,
85
+ InputLabel,
86
+ InputRoot,
87
+ inputRecipe,
88
+ useInput
89
+ } from "./chunk-L55CDXNI.js";
70
90
  import {
71
91
  Alert,
72
92
  alertRecipe,
73
93
  useAlert
74
94
  } from "./chunk-AYOVBZAX.js";
95
+ import {
96
+ Avatar,
97
+ avatarRecipe,
98
+ useAvatar
99
+ } from "./chunk-ZA6RT3XQ.js";
75
100
  import {
76
101
  Button,
77
102
  buttonRecipe,
78
103
  useButton
79
- } from "./chunk-Y2B4XM3Y.js";
104
+ } from "./chunk-2IWL6R3D.js";
80
105
  import {
81
106
  ROTATION_DURATION,
82
107
  useMergedRef,
@@ -108,11 +133,16 @@ import {
108
133
  Chip,
109
134
  chipRecipe,
110
135
  useChip
111
- } from "./chunk-4YJLNYUS.js";
136
+ } from "./chunk-M2BGCN77.js";
112
137
  import {
113
138
  CloseButton,
114
139
  closeButtonBase
115
140
  } from "./chunk-U3RDU3HU.js";
141
+ import {
142
+ Icon,
143
+ IconContext,
144
+ useIconContext
145
+ } from "./chunk-WJPQARJ5.js";
116
146
  import {
117
147
  FEEDBACK_OVERLAY,
118
148
  HIGHLIGHT_DURATION,
@@ -143,31 +173,6 @@ import {
143
173
  Divider,
144
174
  dividerRecipe
145
175
  } from "./chunk-JCYWU5TO.js";
146
- import {
147
- InputGroup,
148
- InputGroupField,
149
- InputGroupIcon,
150
- InputGroupPrefix,
151
- InputGroupRoot,
152
- InputGroupSuffix,
153
- decoratorPadding,
154
- useInputGroup
155
- } from "./chunk-MHEL3NAN.js";
156
- import {
157
- Input,
158
- InputDescription,
159
- InputError,
160
- InputField,
161
- InputLabel,
162
- InputRoot,
163
- inputRecipe,
164
- useInput
165
- } from "./chunk-L55CDXNI.js";
166
- import {
167
- Icon,
168
- IconContext,
169
- useIconContext
170
- } from "./chunk-WJPQARJ5.js";
171
176
  import {
172
177
  Slot,
173
178
  childrenToString,
@@ -194,6 +199,7 @@ import {
194
199
  import "./chunk-GGW42MY4.js";
195
200
  export {
196
201
  Alert,
202
+ Avatar,
197
203
  Button,
198
204
  CARD_BACKGROUND,
199
205
  Card,
@@ -263,6 +269,7 @@ export {
263
269
  Typography,
264
270
  XAUIProvider,
265
271
  alertRecipe,
272
+ avatarRecipe,
266
273
  buildRadius,
267
274
  buildShadows,
268
275
  buildSlots,
@@ -302,6 +309,7 @@ export {
302
309
  tokens,
303
310
  typographyRecipe,
304
311
  useAlert,
312
+ useAvatar,
305
313
  useButton,
306
314
  useCard,
307
315
  useCheckbox,
@@ -14,6 +14,7 @@ var _chunkCYS6U374cjs = require('../chunk-CYS6U374.cjs');
14
14
 
15
15
 
16
16
 
17
+ var _chunkPCWT2YBEcjs = require('../chunk-PCWT2YBE.cjs');
17
18
 
18
19
 
19
20
 
@@ -31,14 +32,13 @@ var _chunkCYS6U374cjs = require('../chunk-CYS6U374.cjs');
31
32
 
32
33
 
33
34
 
34
- var _chunk6M7RUU7Vcjs = require('../chunk-6M7RUU7V.cjs');
35
- require('../chunk-7DPL3ZDS.cjs');
36
- require('../chunk-EJQCQPET.cjs');
37
35
 
38
36
 
39
37
 
40
38
 
41
- var _chunkPCWT2YBEcjs = require('../chunk-PCWT2YBE.cjs');
39
+ var _chunk6M7RUU7Vcjs = require('../chunk-6M7RUU7V.cjs');
40
+ require('../chunk-7DPL3ZDS.cjs');
41
+ require('../chunk-EJQCQPET.cjs');
42
42
 
43
43
 
44
44
 
@@ -10,6 +10,11 @@ import {
10
10
  CloseButton,
11
11
  closeButtonBase
12
12
  } from "../chunk-U3RDU3HU.js";
13
+ import {
14
+ Icon,
15
+ IconContext,
16
+ useIconContext
17
+ } from "../chunk-WJPQARJ5.js";
13
18
  import {
14
19
  FEEDBACK_OVERLAY,
15
20
  HIGHLIGHT_DURATION,
@@ -34,11 +39,6 @@ import {
34
39
  } from "../chunk-XNNJM5DQ.js";
35
40
  import "../chunk-423RQBOX.js";
36
41
  import "../chunk-EGLLDKN6.js";
37
- import {
38
- Icon,
39
- IconContext,
40
- useIconContext
41
- } from "../chunk-WJPQARJ5.js";
42
42
  import {
43
43
  Slot,
44
44
  childrenToString,