@hanzogui/toggle-group 7.0.0 → 7.3.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/LICENSE +40 -19
- package/dist/cjs/Toggle.cjs +150 -0
- package/dist/cjs/Toggle.native.js +159 -0
- package/dist/cjs/Toggle.native.js.map +1 -0
- package/dist/cjs/ToggleGroup.cjs +245 -0
- package/dist/cjs/ToggleGroup.native.js +262 -0
- package/dist/cjs/ToggleGroup.native.js.map +1 -0
- package/dist/cjs/context.cjs +36 -0
- package/dist/cjs/context.native.js +39 -0
- package/dist/cjs/context.native.js.map +1 -0
- package/dist/cjs/index.cjs +30 -0
- package/dist/cjs/index.native.js +33 -0
- package/dist/cjs/index.native.js.map +1 -0
- package/dist/cjs/types.cjs +18 -0
- package/dist/cjs/types.native.js +21 -0
- package/dist/cjs/types.native.js.map +1 -0
- package/dist/esm/Toggle.mjs +113 -0
- package/dist/esm/Toggle.mjs.map +1 -0
- package/dist/esm/Toggle.native.js +119 -0
- package/dist/esm/Toggle.native.js.map +1 -0
- package/dist/esm/ToggleGroup.mjs +209 -0
- package/dist/esm/ToggleGroup.mjs.map +1 -0
- package/dist/esm/ToggleGroup.native.js +223 -0
- package/dist/esm/ToggleGroup.native.js.map +1 -0
- package/dist/esm/context.mjs +10 -0
- package/dist/esm/context.mjs.map +1 -0
- package/dist/esm/context.native.js +10 -0
- package/dist/esm/context.native.js.map +1 -0
- package/dist/esm/index.js +4 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/index.mjs +4 -0
- package/dist/esm/index.mjs.map +1 -0
- package/dist/esm/index.native.js +4 -0
- package/dist/esm/index.native.js.map +1 -0
- package/dist/esm/types.mjs +2 -0
- package/dist/esm/types.mjs.map +1 -0
- package/dist/esm/types.native.js +2 -0
- package/dist/esm/types.native.js.map +1 -0
- package/dist/jsx/Toggle.mjs +113 -0
- package/dist/jsx/Toggle.mjs.map +1 -0
- package/dist/jsx/Toggle.native.js +159 -0
- package/dist/jsx/Toggle.native.js.map +1 -0
- package/dist/jsx/ToggleGroup.mjs +209 -0
- package/dist/jsx/ToggleGroup.mjs.map +1 -0
- package/dist/jsx/ToggleGroup.native.js +262 -0
- package/dist/jsx/ToggleGroup.native.js.map +1 -0
- package/dist/jsx/context.mjs +10 -0
- package/dist/jsx/context.mjs.map +1 -0
- package/dist/jsx/context.native.js +39 -0
- package/dist/jsx/context.native.js.map +1 -0
- package/dist/jsx/index.js +4 -0
- package/dist/jsx/index.js.map +1 -0
- package/dist/jsx/index.mjs +4 -0
- package/dist/jsx/index.mjs.map +1 -0
- package/dist/jsx/index.native.js +33 -0
- package/dist/jsx/index.native.js.map +1 -0
- package/dist/jsx/types.mjs +2 -0
- package/dist/jsx/types.mjs.map +1 -0
- package/dist/jsx/types.native.js +21 -0
- package/dist/jsx/types.native.js.map +1 -0
- package/package.json +23 -21
- package/src/Toggle.tsx +3 -3
- package/src/ToggleGroup.tsx +6 -6
- package/types/Toggle.d.ts +9 -9
- package/types/Toggle.d.ts.map +1 -0
- package/types/ToggleGroup.d.ts +19 -19
- package/types/ToggleGroup.d.ts.map +1 -0
- package/types/context.d.ts.map +1 -0
- package/types/index.d.ts.map +1 -0
- package/types/types.d.ts.map +1 -0
package/types/ToggleGroup.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { RovingFocusGroup } from '@hanzogui/roving-focus';
|
|
2
|
-
import type { GetProps,
|
|
2
|
+
import type { GetProps, GuiElement } from '@hanzogui/web';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { ToggleFrame } from './Toggle';
|
|
5
5
|
type ToggleGroupItemProps = GetProps<typeof ToggleFrame> & {
|
|
@@ -17,9 +17,9 @@ interface ToggleGroupMultipleProps extends ToggleGroupImplMultipleProps {
|
|
|
17
17
|
type: 'multiple';
|
|
18
18
|
}
|
|
19
19
|
type ToggleGroupProps = ToggleGroupSingleProps | ToggleGroupMultipleProps;
|
|
20
|
-
declare const ToggleGroup: React.ForwardRefExoticComponent<ScopedProps<ToggleGroupProps> & React.RefAttributes<
|
|
21
|
-
Item: import("@hanzogui/web").
|
|
22
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
20
|
+
declare const ToggleGroup: React.ForwardRefExoticComponent<ScopedProps<ToggleGroupProps> & React.RefAttributes<GuiElement>> & {
|
|
21
|
+
Item: import("@hanzogui/web").GuiComponent<Omit<import("@hanzogui/web").GetFinalProps<import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase & {
|
|
22
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
23
23
|
accept: {
|
|
24
24
|
readonly activeStyle: "style";
|
|
25
25
|
};
|
|
@@ -29,7 +29,7 @@ declare const ToggleGroup: React.ForwardRefExoticComponent<ScopedProps<ToggleGro
|
|
|
29
29
|
size?: number | import("@hanzogui/web").SizeTokens | undefined;
|
|
30
30
|
defaultActiveStyle?: boolean | undefined;
|
|
31
31
|
}>, "theme" | "debug" | "style" | `$${string}` | `$${number}` | import("@hanzogui/web").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "render" | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "unstyled" | "id" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "animatedBy" | "onFocus" | "onBlur" | "onPointerCancel" | "onPointerDown" | "onPointerMove" | "onPointerUp" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancelCapture" | "onPointerDownCapture" | "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" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | keyof import("@hanzogui/web").StackStyleBase | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onMouseMove" | "onMouseOver" | "onMouseOut" | "onClick" | "onDoubleClick" | "onContextMenu" | "onWheel" | "onKeyDown" | "onKeyUp" | "onChange" | "onInput" | "onBeforeInput" | "onScroll" | "onCopy" | "onCut" | "onPaste" | "onDrag" | "onDragStart" | "onDragEnd" | "onDragEnter" | "onDragLeave" | "onDragOver" | "onDrop" | "size" | "activeStyle" | "value" | "defaultActiveStyle" | keyof import("@hanzogui/web").WithPseudoProps<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase & {
|
|
32
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
32
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
33
33
|
accept: {
|
|
34
34
|
readonly activeStyle: "style";
|
|
35
35
|
};
|
|
@@ -39,13 +39,13 @@ declare const ToggleGroup: React.ForwardRefExoticComponent<ScopedProps<ToggleGro
|
|
|
39
39
|
size?: number | import("@hanzogui/web").SizeTokens | undefined;
|
|
40
40
|
defaultActiveStyle?: boolean | undefined;
|
|
41
41
|
} & import("@hanzogui/web").WithShorthands<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase & {
|
|
42
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
42
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
43
43
|
accept: {
|
|
44
44
|
readonly activeStyle: "style";
|
|
45
45
|
};
|
|
46
46
|
}>> | undefined;
|
|
47
47
|
}>>> | "__scopeToggleGroup"> & Omit<import("@hanzogui/web").StackNonStyleProps, "unstyled" | keyof import("@hanzogui/web").StackStyleBase | "size" | "activeStyle" | "defaultActiveStyle"> & import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase & {
|
|
48
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
48
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
49
49
|
accept: {
|
|
50
50
|
readonly activeStyle: "style";
|
|
51
51
|
};
|
|
@@ -55,13 +55,13 @@ declare const ToggleGroup: React.ForwardRefExoticComponent<ScopedProps<ToggleGro
|
|
|
55
55
|
size?: number | import("@hanzogui/web").SizeTokens | undefined;
|
|
56
56
|
defaultActiveStyle?: boolean | undefined;
|
|
57
57
|
} & import("@hanzogui/web").WithShorthands<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase & {
|
|
58
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
58
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
59
59
|
accept: {
|
|
60
60
|
readonly activeStyle: "style";
|
|
61
61
|
};
|
|
62
62
|
}>> | undefined;
|
|
63
63
|
}>> & import("@hanzogui/web").WithPseudoProps<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase & {
|
|
64
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
64
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
65
65
|
accept: {
|
|
66
66
|
readonly activeStyle: "style";
|
|
67
67
|
};
|
|
@@ -71,13 +71,13 @@ declare const ToggleGroup: React.ForwardRefExoticComponent<ScopedProps<ToggleGro
|
|
|
71
71
|
size?: number | import("@hanzogui/web").SizeTokens | undefined;
|
|
72
72
|
defaultActiveStyle?: boolean | undefined;
|
|
73
73
|
} & import("@hanzogui/web").WithShorthands<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase & {
|
|
74
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
74
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
75
75
|
accept: {
|
|
76
76
|
readonly activeStyle: "style";
|
|
77
77
|
};
|
|
78
78
|
}>> | undefined;
|
|
79
79
|
}>>> & import("@hanzogui/web").WithMediaProps<import("@hanzogui/web").WithThemeShorthandsAndPseudos<import("@hanzogui/web").StackStyleBase & {
|
|
80
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
80
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
81
81
|
accept: {
|
|
82
82
|
readonly activeStyle: "style";
|
|
83
83
|
};
|
|
@@ -92,8 +92,8 @@ declare const ToggleGroup: React.ForwardRefExoticComponent<ScopedProps<ToggleGro
|
|
|
92
92
|
disabled?: boolean;
|
|
93
93
|
} & {
|
|
94
94
|
__scopeToggleGroup?: string;
|
|
95
|
-
},
|
|
96
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
95
|
+
}, GuiElement, import("@hanzogui/web").StackNonStyleProps & Omit<import("@hanzogui/web").StackNonStyleProps, "unstyled" | keyof import("@hanzogui/web").StackStyleBase | "size" | "activeStyle" | "defaultActiveStyle"> & import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase & {
|
|
96
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
97
97
|
accept: {
|
|
98
98
|
readonly activeStyle: "style";
|
|
99
99
|
};
|
|
@@ -103,13 +103,13 @@ declare const ToggleGroup: React.ForwardRefExoticComponent<ScopedProps<ToggleGro
|
|
|
103
103
|
size?: number | import("@hanzogui/web").SizeTokens | undefined;
|
|
104
104
|
defaultActiveStyle?: boolean | undefined;
|
|
105
105
|
} & import("@hanzogui/web").WithShorthands<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase & {
|
|
106
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
106
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
107
107
|
accept: {
|
|
108
108
|
readonly activeStyle: "style";
|
|
109
109
|
};
|
|
110
110
|
}>> | undefined;
|
|
111
111
|
}>> & import("@hanzogui/web").WithPseudoProps<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase & {
|
|
112
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
112
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
113
113
|
accept: {
|
|
114
114
|
readonly activeStyle: "style";
|
|
115
115
|
};
|
|
@@ -119,13 +119,13 @@ declare const ToggleGroup: React.ForwardRefExoticComponent<ScopedProps<ToggleGro
|
|
|
119
119
|
size?: number | import("@hanzogui/web").SizeTokens | undefined;
|
|
120
120
|
defaultActiveStyle?: boolean | undefined;
|
|
121
121
|
} & import("@hanzogui/web").WithShorthands<import("@hanzogui/web").WithThemeValues<import("@hanzogui/web").StackStyleBase & {
|
|
122
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
122
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
123
123
|
accept: {
|
|
124
124
|
readonly activeStyle: "style";
|
|
125
125
|
};
|
|
126
126
|
}>> | undefined;
|
|
127
127
|
}>>> & import("@hanzogui/web").WithMediaProps<import("@hanzogui/web").WithThemeShorthandsAndPseudos<import("@hanzogui/web").StackStyleBase & {
|
|
128
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
128
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
129
129
|
accept: {
|
|
130
130
|
readonly activeStyle: "style";
|
|
131
131
|
};
|
|
@@ -141,7 +141,7 @@ declare const ToggleGroup: React.ForwardRefExoticComponent<ScopedProps<ToggleGro
|
|
|
141
141
|
} & {
|
|
142
142
|
__scopeToggleGroup?: string;
|
|
143
143
|
}, import("@hanzogui/web").StackStyleBase & {
|
|
144
|
-
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").
|
|
144
|
+
readonly activeStyle?: Partial<import("@hanzogui/web").InferStyleProps<import("@hanzogui/web").GuiComponent<import("@hanzogui/web").ViewProps, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, {}>, {
|
|
145
145
|
accept: {
|
|
146
146
|
readonly activeStyle: "style";
|
|
147
147
|
};
|
|
@@ -176,7 +176,7 @@ interface ToggleGroupImplMultipleProps extends ToggleGroupImplProps {
|
|
|
176
176
|
disableDeactivation?: never;
|
|
177
177
|
}
|
|
178
178
|
type RovingFocusGroupProps = React.ComponentPropsWithoutRef<typeof RovingFocusGroup>;
|
|
179
|
-
declare const ToggleGroupFrame: import("@hanzogui/web").
|
|
179
|
+
declare const ToggleGroupFrame: import("@hanzogui/web").GuiComponent<import("@hanzogui/web").TamaDefer, GuiElement, import("@hanzogui/web").StackNonStyleProps, import("@hanzogui/web").StackStyleBase, {}, import("@hanzogui/web").StaticConfigPublic>;
|
|
180
180
|
type ToggleGroupImplProps = GetProps<typeof ToggleGroupFrame> & {
|
|
181
181
|
orientation?: 'horizontal' | 'vertical';
|
|
182
182
|
rovingFocus?: boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ToggleGroup.d.ts","sourceRoot":"","sources":["../src/ToggleGroup.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAA;AAGzD,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAEzD,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,OAAO,EAAU,WAAW,EAAE,MAAM,UAAU,CAAA;AAmB9C,KAAK,oBAAoB,GAAG,QAAQ,CAAC,OAAO,WAAW,CAAC,GAAG;IACzD,KAAK,EAAE,MAAM,CAAA;IACb,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAA;AA8ED,KAAK,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,kBAAkB,CAAC,EAAE,MAAM,CAAA;CAAE,CAAA;AAEzD,UAAU,sBAAuB,SAAQ,0BAA0B;IACjE,IAAI,EAAE,QAAQ,CAAA;CACf;AAED,UAAU,wBAAyB,SAAQ,4BAA4B;IACrE,IAAI,EAAE,UAAU,CAAA;CACjB;AAED,KAAK,gBAAgB,GAAG,sBAAsB,GAAG,wBAAwB,CAAA;AAEzE,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eA7FR,MAAM;aACR,MAAM;mBACA,OAAO;;6BA+E6B,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eAjF9C,MAAM;aACR,MAAM;mBACA,OAAO;;6BA+E6B,MAAM;;;;;;;;;;;;;;;;CA0CtD,CAAA;AAmBD,UAAU,0BAA2B,SAAQ,oBAAoB;IAC/D,iEAAiE;IACjE,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,qEAAqE;IACrE,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,0EAA0E;IAC1E,aAAa,CAAC,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;IACnC,mDAAmD;IACnD,mBAAmB,CAAC,EAAE,OAAO,CAAA;CAC9B;AAwCD,UAAU,4BAA6B,SAAQ,oBAAoB;IACjE,mEAAmE;IACnE,KAAK,CAAC,EAAE,MAAM,EAAE,CAAA;IAChB,uEAAuE;IACvE,YAAY,CAAC,EAAE,MAAM,EAAE,CAAA;IACvB,0EAA0E;IAC1E,aAAa,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI,CAAA;IACrC,mBAAmB,CAAC,EAAE,KAAK,CAAA;CAC5B;AAuDD,KAAK,qBAAqB,GAAG,KAAK,CAAC,wBAAwB,CAAC,OAAO,gBAAgB,CAAC,CAAA;AAEpF,QAAA,MAAM,gBAAgB,yNAEpB,CAAA;AAEF,KAAK,oBAAoB,GAAG,QAAQ,CAAC,OAAO,gBAAgB,CAAC,GAAG;IAC9D,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAA;IACvC,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,GAAG,CAAC,EAAE,qBAAqB,CAAC,KAAK,CAAC,CAAA;IAClC,IAAI,CAAC,EAAE,qBAAqB,CAAC,MAAM,CAAC,CAAA;IACpC,KAAK,CAAC,EAAE,MAAM,CAAA;CACf,CAAA;AAmDD,OAAO,EAAE,WAAW,EAAE,CAAA;AACtB,YAAY,EACV,oBAAoB,EACpB,wBAAwB,EACxB,gBAAgB,EAChB,sBAAsB,GACvB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../src/context.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO;;;EAGlB,CAAA;AAEF,eAAO,MAAM,kBAAkB;;;CAE9B,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAA;AAC7B,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAE9C,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAA;CAAE,CAAA"}
|