@tamagui/popper 2.7.7 → 3.0.0-beta.643.1
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/cjs/Popper.cjs +474 -606
- package/dist/cjs/Popper.native.cjs +533 -0
- package/dist/cjs/Popper.native.js +484 -606
- package/dist/cjs/Popper.native.js.map +1 -1
- package/dist/cjs/index.cjs +10 -11
- package/dist/cjs/index.native.cjs +21 -0
- package/dist/cjs/index.native.js +10 -10
- package/dist/cjs/index.native.js.map +1 -1
- package/dist/esm/Popper.mjs +443 -559
- package/dist/esm/Popper.mjs.map +1 -1
- package/dist/esm/Popper.native.js +453 -555
- package/dist/esm/Popper.native.js.map +1 -1
- package/dist/esm/index.js +1 -2
- package/dist/esm/index.mjs +1 -2
- package/dist/esm/index.native.js +1 -2
- package/dist/jsx/Popper.mjs +443 -559
- package/dist/jsx/Popper.mjs.map +1 -1
- package/dist/jsx/Popper.native.cjs +533 -0
- package/dist/jsx/Popper.native.js +484 -606
- package/dist/jsx/Popper.native.js.map +1 -1
- package/dist/jsx/index.js +1 -2
- package/dist/jsx/index.mjs +1 -2
- package/dist/jsx/index.native.cjs +21 -0
- package/dist/jsx/index.native.js +10 -10
- package/dist/jsx/index.native.js.map +1 -1
- package/package.json +13 -12
- package/src/Popper.tsx +30 -87
- package/types/Popper.d.ts +42 -74
- package/types/Popper.d.ts.map +1 -1
- package/dist/esm/index.js.map +0 -1
- package/dist/esm/index.mjs.map +0 -1
- package/dist/esm/index.native.js.map +0 -1
- package/dist/jsx/index.js.map +0 -1
- package/dist/jsx/index.mjs.map +0 -1
package/types/Popper.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import type { SizeTokens, TamaguiElement } from '@tamagui/core';
|
|
1
|
+
import type { SizeTokens, TamaguiElement, ViewProps } from '@tamagui/core';
|
|
2
2
|
import type { PopupTriggerMap } from '@tamagui/floating';
|
|
3
3
|
import type { Coords, OffsetOptions, Placement, SizeOptions, Strategy, UseFloatingReturn } from '@tamagui/floating';
|
|
4
4
|
import { flip, shift } from '@tamagui/floating';
|
|
5
|
-
import type { SizableStackProps, YStackProps } from '@tamagui/stacks';
|
|
6
5
|
import * as React from 'react';
|
|
7
6
|
type ShiftProps = typeof shift extends (options: infer Opts) => void ? Opts : never;
|
|
8
7
|
type FlipProps = typeof flip extends (options: infer Opts) => void ? Opts : never;
|
|
@@ -22,8 +21,28 @@ export type PopperContextShared = {
|
|
|
22
21
|
};
|
|
23
22
|
};
|
|
24
23
|
export type PopperContextValue = UseFloatingReturn & PopperContextShared;
|
|
25
|
-
export declare const PopperContextFast: import("@tamagui/core").StyledContext<PopperContextValue>;
|
|
26
|
-
export declare const PopperPositionContext:
|
|
24
|
+
export declare const PopperContextFast: import("@tamagui/core").StyledContext<PopperContextValue, never>;
|
|
25
|
+
export declare const PopperPositionContext: {
|
|
26
|
+
<VariantProps extends Record<string, any>, ConsumedKeys extends Extract<keyof VariantProps, string>>(defaultValues: VariantProps, namespaceOrOptions: import("@tamagui/core").StyledContextOptions<VariantProps, ConsumedKeys> & {
|
|
27
|
+
keys: readonly ConsumedKeys[];
|
|
28
|
+
}): import("@tamagui/core").StyledContext<VariantProps, ConsumedKeys>;
|
|
29
|
+
<VariantProps extends Record<string, any>>(defaultValues: {
|
|
30
|
+
[x: string]: never;
|
|
31
|
+
[x: number]: never;
|
|
32
|
+
[x: symbol]: never;
|
|
33
|
+
}, namespaceOrOptions?: string | {
|
|
34
|
+
namespace?: string;
|
|
35
|
+
keys?: never;
|
|
36
|
+
}): import("@tamagui/core").StyledContext<VariantProps, never>;
|
|
37
|
+
<VariantProps extends Record<string, any>>(defaultValues: VariantProps & ({ [Key in Exclude<keyof VariantProps, { [Key in keyof VariantProps]-?: {} extends Pick<VariantProps, Key> ? Key : never; }[keyof VariantProps]>]: VariantProps[Key]; } & { [Key in { [Key in keyof VariantProps]-?: {} extends Pick<VariantProps, Key> ? Key : never; }[keyof VariantProps]]: VariantProps[Key] | undefined; }), namespaceOrOptions?: string | {
|
|
38
|
+
namespace?: string;
|
|
39
|
+
keys?: never;
|
|
40
|
+
}): import("@tamagui/core").StyledContext<VariantProps, Extract<keyof VariantProps, string>>;
|
|
41
|
+
<VariantProps extends Record<string, any>, ConsumedKeys extends Extract<keyof VariantProps, string>>(defaultValues: undefined, namespaceOrOptions: import("@tamagui/core").StyledContextOptions<VariantProps, ConsumedKeys> & {
|
|
42
|
+
keys: readonly ConsumedKeys[];
|
|
43
|
+
}): import("@tamagui/core").StyledContext<VariantProps, ConsumedKeys>;
|
|
44
|
+
<VariantProps extends Record<string, any> = Record<string, any>>(defaultValues?: undefined, namespaceOrOptions?: string): import("@tamagui/core").StyledContext<VariantProps, never>;
|
|
45
|
+
};
|
|
27
46
|
export declare const usePopperContext: (scope?: string) => PopperContextValue, PopperProviderFast: React.Provider<PopperContextValue> & React.ProviderExoticComponent<Partial<PopperContextValue> & {
|
|
28
47
|
children?: React.ReactNode;
|
|
29
48
|
scope?: string;
|
|
@@ -33,7 +52,7 @@ export type PopperContextSlowValue = Pick<UseFloatingReturn, 'getReferenceProps'
|
|
|
33
52
|
onLeaveReference?: () => void;
|
|
34
53
|
triggerElements?: PopupTriggerMap;
|
|
35
54
|
};
|
|
36
|
-
export declare const PopperContextSlow: import("@tamagui/core").StyledContext<PopperContextSlowValue>;
|
|
55
|
+
export declare const PopperContextSlow: import("@tamagui/core").StyledContext<PopperContextSlowValue, never>;
|
|
37
56
|
export declare const usePopperContextSlow: (scope?: string) => PopperContextSlowValue, PopperProviderSlow: React.Provider<PopperContextSlowValue> & React.ProviderExoticComponent<Partial<PopperContextSlowValue> & {
|
|
38
57
|
children?: React.ReactNode;
|
|
39
58
|
scope?: string;
|
|
@@ -41,7 +60,7 @@ export declare const usePopperContextSlow: (scope?: string) => PopperContextSlow
|
|
|
41
60
|
export declare const PopperProvider: ({ scope, children, ...context }: PopperContextValue & {
|
|
42
61
|
scope?: string;
|
|
43
62
|
children?: React.ReactNode;
|
|
44
|
-
}) =>
|
|
63
|
+
}) => React.JSX.Element;
|
|
45
64
|
export type PopperProps = {
|
|
46
65
|
/**
|
|
47
66
|
* Popper is a component used by other components to create interfaces, so scope is required
|
|
@@ -91,75 +110,27 @@ export type PopperSetupOptions = {
|
|
|
91
110
|
disableRTL?: boolean;
|
|
92
111
|
};
|
|
93
112
|
export declare function setupPopper(options?: PopperSetupOptions): void;
|
|
94
|
-
export declare function Popper(props: PopperProps):
|
|
113
|
+
export declare function Popper(props: PopperProps): React.JSX.Element;
|
|
95
114
|
export type PopperAnchorExtraProps = {
|
|
96
115
|
virtualRef?: React.RefObject<any>;
|
|
97
116
|
scope?: string;
|
|
98
117
|
};
|
|
99
|
-
export type PopperAnchorProps =
|
|
100
|
-
export declare const PopperAnchor: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
101
|
-
|
|
102
|
-
fullscreen?: boolean | undefined;
|
|
103
|
-
}>, keyof PopperAnchorExtraProps> & PopperAnchorExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & PopperAnchorExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
104
|
-
elevation?: number | SizeTokens | undefined;
|
|
105
|
-
fullscreen?: boolean | undefined;
|
|
106
|
-
}, import("@tamagui/core").StaticConfigPublic>;
|
|
107
|
-
export type PopperContentProps = SizableStackProps & {
|
|
118
|
+
export type PopperAnchorProps = ViewProps;
|
|
119
|
+
export declare const PopperAnchor: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}>, keyof PopperAnchorExtraProps> & PopperAnchorExtraProps, import("react-native").View | (HTMLElement & import("@tamagui/core").TamaguiElementMethods), import("@tamagui/core").RNTamaguiViewNonStyleProps & PopperAnchorExtraProps, import("@tamagui/core").StackStyleBase, {}, {}>;
|
|
120
|
+
export type PopperContentProps = ViewProps & {
|
|
108
121
|
scope?: string;
|
|
109
122
|
/**
|
|
110
123
|
* Enable smooth animation when the content position changes (e.g., when flipping sides)
|
|
111
124
|
*/
|
|
112
125
|
animatePosition?: boolean | 'even-when-repositioning';
|
|
113
|
-
/** @deprecated Use `animatePosition` instead */
|
|
114
|
-
enableAnimationForPositionChange?: boolean | 'even-when-repositioning';
|
|
115
126
|
passThrough?: boolean;
|
|
116
127
|
};
|
|
117
|
-
export declare const PopperContentFrame: import("@tamagui/core").
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
export declare const PopperContent: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "size" | "unstyled" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "transparent" | "circular" | "elevate" | "bordered" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
124
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
125
|
-
unstyled?: boolean | undefined;
|
|
126
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
127
|
-
transparent?: boolean | undefined;
|
|
128
|
-
fullscreen?: boolean | undefined;
|
|
129
|
-
circular?: boolean | undefined;
|
|
130
|
-
elevate?: boolean | undefined;
|
|
131
|
-
bordered?: boolean | undefined;
|
|
132
|
-
chromeless?: boolean | "all" | undefined;
|
|
133
|
-
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
134
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
135
|
-
unstyled?: boolean | undefined;
|
|
136
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
137
|
-
transparent?: boolean | undefined;
|
|
138
|
-
fullscreen?: boolean | undefined;
|
|
139
|
-
circular?: boolean | undefined;
|
|
140
|
-
elevate?: boolean | undefined;
|
|
141
|
-
bordered?: boolean | undefined;
|
|
142
|
-
chromeless?: boolean | "all" | undefined;
|
|
143
|
-
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
144
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
145
|
-
unstyled?: boolean | undefined;
|
|
146
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
147
|
-
transparent?: boolean | undefined;
|
|
148
|
-
fullscreen?: boolean | undefined;
|
|
149
|
-
circular?: boolean | undefined;
|
|
150
|
-
elevate?: boolean | undefined;
|
|
151
|
-
bordered?: boolean | undefined;
|
|
152
|
-
chromeless?: boolean | "all" | undefined;
|
|
153
|
-
}>> & {
|
|
154
|
-
scope?: string;
|
|
155
|
-
/**
|
|
156
|
-
* Enable smooth animation when the content position changes (e.g., when flipping sides)
|
|
157
|
-
*/
|
|
158
|
-
animatePosition?: boolean | "even-when-repositioning";
|
|
159
|
-
/** @deprecated Use `animatePosition` instead */
|
|
160
|
-
enableAnimationForPositionChange?: boolean | "even-when-repositioning";
|
|
161
|
-
passThrough?: boolean;
|
|
162
|
-
} & React.RefAttributes<TamaguiElement>>;
|
|
128
|
+
export declare const PopperContentFrame: React.FunctionComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & {
|
|
129
|
+
ref?: React.Ref<TamaguiElement> | undefined;
|
|
130
|
+
}> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic> & Omit<import("@tamagui/core").StaticConfigPublic, "staticConfig"> & {
|
|
131
|
+
__tama: [import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic];
|
|
132
|
+
};
|
|
133
|
+
export declare const PopperContent: import("@tamagui/compose-refs").RefComponent<TamaguiElement, PopperContentProps>;
|
|
163
134
|
export type PopperArrowExtraProps = {
|
|
164
135
|
offset?: number;
|
|
165
136
|
size?: SizeTokens;
|
|
@@ -169,15 +140,12 @@ export type PopperArrowExtraProps = {
|
|
|
169
140
|
*/
|
|
170
141
|
animatePosition?: boolean;
|
|
171
142
|
};
|
|
172
|
-
export type PopperArrowProps =
|
|
173
|
-
export declare const PopperArrowFrame: import("@tamagui/core").
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
}
|
|
178
|
-
export declare const PopperArrow:
|
|
179
|
-
elevation?: number | SizeTokens | undefined;
|
|
180
|
-
fullscreen?: boolean | undefined;
|
|
181
|
-
}>, keyof import("@tamagui/stacks").StackVariants> & import("@tamagui/stacks").StackVariants & PopperArrowExtraProps & React.RefAttributes<TamaguiElement>>;
|
|
143
|
+
export type PopperArrowProps = ViewProps & PopperArrowExtraProps;
|
|
144
|
+
export declare const PopperArrowFrame: React.FunctionComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & {
|
|
145
|
+
ref?: React.Ref<TamaguiElement> | undefined;
|
|
146
|
+
}> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic> & Omit<import("@tamagui/core").StaticConfigPublic, "staticConfig"> & {
|
|
147
|
+
__tama: [import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic];
|
|
148
|
+
};
|
|
149
|
+
export declare const PopperArrow: import("@tamagui/compose-refs").RefComponent<TamaguiElement, PopperArrowProps>;
|
|
182
150
|
export {};
|
|
183
151
|
//# sourceMappingURL=Popper.d.ts.map
|
package/types/Popper.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Popper.d.ts","sourceRoot":"","sources":["../src/Popper.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,
|
|
1
|
+
{"version":3,"file":"Popper.d.ts","sourceRoot":"","sources":["../src/Popper.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAW1E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAExD,OAAO,KAAK,EACV,MAAM,EAEN,aAAa,EACb,SAAS,EAGT,WAAW,EACX,QAAQ,EACR,iBAAiB,EAClB,MAAM,mBAAmB,CAAA;AAC1B,OAAO,EAEL,IAAI,EAIJ,KAAK,EAGN,MAAM,mBAAmB,CAAA;AAG1B,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,KAAK,UAAU,GAAG,OAAO,KAAK,SAAS,CAAC,OAAO,EAAE,MAAM,IAAI,KAAK,IAAI,GAAG,IAAI,GAAG,KAAK,CAAA;AACnF,KAAK,SAAS,GAAG,OAAO,IAAI,SAAS,CAAC,OAAO,EAAE,MAAM,IAAI,KAAK,IAAI,GAAG,IAAI,GAAG,KAAK,CAAA;AAMjF,MAAM,MAAM,mBAAmB,GAAG;IAChC,IAAI,EAAE,OAAO,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;IACjB,WAAW,EAAE,OAAO,CAAA;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,GAAG;QAC7B,YAAY,EAAE,MAAM,CAAA;KACrB,CAAA;IACD,SAAS,CAAC,EAAE,SAAS,CAAA;IACrB,QAAQ,EAAE,GAAG,CAAA;IACb,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAA;IACnC,eAAe,CAAC,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAA;CAC3C,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG,iBAAiB,GAAG,mBAAmB,CAAA;AAExE,eAAO,MAAM,iBAAiB,kEAI7B,CAAA;AAED,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;CAAsB,CAAA;AAExD,eAAO,MAA0B,gBAAgB,0CAAY,kBAAkB;;;EAC5D,CAAA;AAEnB,MAAM,MAAM,sBAAsB,GAAG,IAAI,CACvC,iBAAiB,EACjB,mBAAmB,GAAG,QAAQ,GAAG,MAAM,CACxC,GAAG;IACF,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAA;IACvC,gBAAgB,CAAC,EAAE,MAAM,IAAI,CAAA;IAC7B,eAAe,CAAC,EAAE,eAAe,CAAA;CAClC,CAAA;AAED,eAAO,MAAM,iBAAiB,sEAI7B,CAAA;AAED,eAAO,MAA0B,oBAAoB,8CAAY,kBAAkB;;;EAChE,CAAA;AAGnB,eAAO,MAAM,cAAc,oCAIxB,kBAAkB,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,sBAmCrE,CAAA;AAED,MAAM,MAAM,WAAW,GAAG;IACxB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;SAEK;IACL,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd,IAAI,CAAC,EAAE,UAAU,CAAA;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAE1B;;OAEG;IACH,SAAS,CAAC,EAAE,SAAS,CAAA;IAErB;;;;;OAKG;IACH,WAAW,CAAC,EAAE,UAAU,GAAG,OAAO,CAAA;IAElC;;;OAGG;IACH,SAAS,CAAC,EAAE,SAAS,GAAG,OAAO,CAAA;IAE/B;;;OAGG;IACH,MAAM,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,CAAA;IAE7C;;OAEG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAA;IAEnB;;;OAGG;IACH,MAAM,CAAC,EAAE,aAAa,CAAA;IAEtB,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB,CAAA;AAgBD,MAAM,MAAM,kBAAkB,GAAG;IAC/B,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAA;AAID,wBAAgB,WAAW,CAAC,OAAO,CAAC,EAAE,kBAAkB,QAEvD;AAmID,wBAAgB,MAAM,CAAC,KAAK,EAAE,WAAW,qBA4MxC;AAQD,MAAM,MAAM,sBAAsB,GAAG;IACnC,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,GAAG,CAAC,CAAA;IACjC,KAAK,CAAC,EAAE,MAAM,CAAA;CACf,CAAA;AACD,MAAM,MAAM,iBAAiB,GAAG,SAAS,CAAA;AAEzC,eAAO,MAAM,YAAY,wcA0FxB,CAAA;AAQD,MAAM,MAAM,kBAAkB,GAAG,SAAS,GAAG;IAC3C,KAAK,CAAC,EAAE,MAAM,CAAA;IACd;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,GAAG,yBAAyB,CAAA;IACrD,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB,CAAA;AAED,eAAO,MAAM,kBAAkB;;;;CAE7B,CAAA;AAEF,eAAO,MAAM,aAAa,kFAkMzB,CAAA;AAMD,MAAM,MAAM,qBAAqB,GAAG;IAClC,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,UAAU,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAA;CAC1B,CAAA;AAED,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG,qBAAqB,CAAA;AAEhE,eAAO,MAAM,gBAAgB;;;;CAG3B,CAAA;AAqBF,eAAO,MAAM,WAAW,gFA+FvB,CAAA"}
|
package/dist/esm/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,cAAc","ignoreList":[]}
|
package/dist/esm/index.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,cAAc","ignoreList":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,cAAc","ignoreList":[]}
|
package/dist/jsx/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,cAAc","ignoreList":[]}
|
package/dist/jsx/index.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,cAAc","ignoreList":[]}
|