@codecademy/gamut-patterns 0.10.23-alpha.4dfb89.0 → 0.10.23-alpha.7e328b.0
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/props.d.ts +20 -96
- package/package.json +6 -6
package/dist/props.d.ts
CHANGED
|
@@ -50,18 +50,10 @@ declare const patternStyles: import("@codecademy/variance/dist/types/config").Pa
|
|
|
50
50
|
readonly property: "overflow";
|
|
51
51
|
};
|
|
52
52
|
readonly overflowX: {
|
|
53
|
-
readonly property:
|
|
54
|
-
readonly physical: "overflowX";
|
|
55
|
-
readonly logical: "overflowInline";
|
|
56
|
-
};
|
|
57
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
53
|
+
readonly property: "overflowX";
|
|
58
54
|
};
|
|
59
55
|
readonly overflowY: {
|
|
60
|
-
readonly property:
|
|
61
|
-
readonly physical: "overflowY";
|
|
62
|
-
readonly logical: "overflowBlock";
|
|
63
|
-
};
|
|
64
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
56
|
+
readonly property: "overflowY";
|
|
65
57
|
};
|
|
66
58
|
readonly dimensions: {
|
|
67
59
|
readonly property: "width";
|
|
@@ -101,43 +93,23 @@ declare const patternStyles: import("@codecademy/variance/dist/types/config").Pa
|
|
|
101
93
|
};
|
|
102
94
|
readonly inset: {
|
|
103
95
|
readonly property: "inset";
|
|
104
|
-
readonly properties:
|
|
105
|
-
readonly physical: readonly ["top", "right", "bottom", "left"];
|
|
106
|
-
readonly logical: readonly ["insetBlockStart", "insetInlineEnd", "insetBlockEnd", "insetInlineStart"];
|
|
107
|
-
};
|
|
108
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
96
|
+
readonly properties: readonly ["top", "right", "bottom", "left"];
|
|
109
97
|
readonly transform: (value: string | number) => string | 0;
|
|
110
98
|
};
|
|
111
99
|
readonly top: {
|
|
112
|
-
readonly property:
|
|
113
|
-
readonly physical: "top";
|
|
114
|
-
readonly logical: "insetBlockStart";
|
|
115
|
-
};
|
|
116
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
100
|
+
readonly property: "top";
|
|
117
101
|
readonly transform: (value: string | number) => string | 0;
|
|
118
102
|
};
|
|
119
103
|
readonly right: {
|
|
120
|
-
readonly property:
|
|
121
|
-
readonly physical: "right";
|
|
122
|
-
readonly logical: "insetInlineEnd";
|
|
123
|
-
};
|
|
124
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
104
|
+
readonly property: "right";
|
|
125
105
|
readonly transform: (value: string | number) => string | 0;
|
|
126
106
|
};
|
|
127
107
|
readonly bottom: {
|
|
128
|
-
readonly property:
|
|
129
|
-
readonly physical: "bottom";
|
|
130
|
-
readonly logical: "insetBlockEnd";
|
|
131
|
-
};
|
|
132
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
108
|
+
readonly property: "bottom";
|
|
133
109
|
readonly transform: (value: string | number) => string | 0;
|
|
134
110
|
};
|
|
135
111
|
readonly left: {
|
|
136
|
-
readonly property:
|
|
137
|
-
readonly physical: "left";
|
|
138
|
-
readonly logical: "insetInlineStart";
|
|
139
|
-
};
|
|
140
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
112
|
+
readonly property: "left";
|
|
141
113
|
readonly transform: (value: string | number) => string | 0;
|
|
142
114
|
};
|
|
143
115
|
readonly zIndex: {
|
|
@@ -153,53 +125,29 @@ declare const patternStyles: import("@codecademy/variance/dist/types/config").Pa
|
|
|
153
125
|
};
|
|
154
126
|
readonly px: {
|
|
155
127
|
readonly property: "padding";
|
|
156
|
-
readonly properties:
|
|
157
|
-
readonly physical: readonly ["paddingLeft", "paddingRight"];
|
|
158
|
-
readonly logical: readonly ["paddingInlineStart", "paddingInlineEnd"];
|
|
159
|
-
};
|
|
128
|
+
readonly properties: readonly ["paddingLeft", "paddingRight"];
|
|
160
129
|
readonly scale: "spacing";
|
|
161
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
162
130
|
};
|
|
163
131
|
readonly py: {
|
|
164
132
|
readonly property: "padding";
|
|
165
|
-
readonly properties:
|
|
166
|
-
readonly physical: readonly ["paddingTop", "paddingBottom"];
|
|
167
|
-
readonly logical: readonly ["paddingBlockStart", "paddingBlockEnd"];
|
|
168
|
-
};
|
|
133
|
+
readonly properties: readonly ["paddingTop", "paddingBottom"];
|
|
169
134
|
readonly scale: "spacing";
|
|
170
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
171
135
|
};
|
|
172
136
|
readonly pt: {
|
|
173
|
-
readonly property:
|
|
174
|
-
readonly physical: "paddingTop";
|
|
175
|
-
readonly logical: "paddingBlockStart";
|
|
176
|
-
};
|
|
137
|
+
readonly property: "paddingTop";
|
|
177
138
|
readonly scale: "spacing";
|
|
178
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
179
139
|
};
|
|
180
140
|
readonly pb: {
|
|
181
|
-
readonly property:
|
|
182
|
-
readonly physical: "paddingBottom";
|
|
183
|
-
readonly logical: "paddingBlockEnd";
|
|
184
|
-
};
|
|
141
|
+
readonly property: "paddingBottom";
|
|
185
142
|
readonly scale: "spacing";
|
|
186
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
187
143
|
};
|
|
188
144
|
readonly pr: {
|
|
189
|
-
readonly property:
|
|
190
|
-
readonly physical: "paddingRight";
|
|
191
|
-
readonly logical: "paddingInlineEnd";
|
|
192
|
-
};
|
|
145
|
+
readonly property: "paddingRight";
|
|
193
146
|
readonly scale: "spacing";
|
|
194
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
195
147
|
};
|
|
196
148
|
readonly pl: {
|
|
197
|
-
readonly property:
|
|
198
|
-
readonly physical: "paddingLeft";
|
|
199
|
-
readonly logical: "paddingInlineStart";
|
|
200
|
-
};
|
|
149
|
+
readonly property: "paddingLeft";
|
|
201
150
|
readonly scale: "spacing";
|
|
202
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
203
151
|
};
|
|
204
152
|
readonly m: {
|
|
205
153
|
readonly property: "margin";
|
|
@@ -207,53 +155,29 @@ declare const patternStyles: import("@codecademy/variance/dist/types/config").Pa
|
|
|
207
155
|
};
|
|
208
156
|
readonly mx: {
|
|
209
157
|
readonly property: "margin";
|
|
210
|
-
readonly properties:
|
|
211
|
-
readonly physical: readonly ["marginLeft", "marginRight"];
|
|
212
|
-
readonly logical: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
213
|
-
};
|
|
214
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
158
|
+
readonly properties: readonly ["marginLeft", "marginRight"];
|
|
215
159
|
readonly scale: "spacing";
|
|
216
160
|
};
|
|
217
161
|
readonly my: {
|
|
218
162
|
readonly property: "margin";
|
|
219
|
-
readonly properties:
|
|
220
|
-
readonly physical: readonly ["marginTop", "marginBottom"];
|
|
221
|
-
readonly logical: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
222
|
-
};
|
|
223
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
163
|
+
readonly properties: readonly ["marginTop", "marginBottom"];
|
|
224
164
|
readonly scale: "spacing";
|
|
225
165
|
};
|
|
226
166
|
readonly mt: {
|
|
227
|
-
readonly property:
|
|
228
|
-
readonly physical: "marginTop";
|
|
229
|
-
readonly logical: "marginBlockStart";
|
|
230
|
-
};
|
|
167
|
+
readonly property: "marginTop";
|
|
231
168
|
readonly scale: "spacing";
|
|
232
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
233
169
|
};
|
|
234
170
|
readonly mb: {
|
|
235
|
-
readonly property:
|
|
236
|
-
readonly physical: "marginBottom";
|
|
237
|
-
readonly logical: "marginBlockEnd";
|
|
238
|
-
};
|
|
171
|
+
readonly property: "marginBottom";
|
|
239
172
|
readonly scale: "spacing";
|
|
240
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
241
173
|
};
|
|
242
174
|
readonly mr: {
|
|
243
|
-
readonly property:
|
|
244
|
-
readonly physical: "marginRight";
|
|
245
|
-
readonly logical: "marginInlineEnd";
|
|
246
|
-
};
|
|
175
|
+
readonly property: "marginRight";
|
|
247
176
|
readonly scale: "spacing";
|
|
248
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
249
177
|
};
|
|
250
178
|
readonly ml: {
|
|
251
|
-
readonly property:
|
|
252
|
-
readonly physical: "marginLeft";
|
|
253
|
-
readonly logical: "marginInlineStart";
|
|
254
|
-
};
|
|
179
|
+
readonly property: "marginLeft";
|
|
255
180
|
readonly scale: "spacing";
|
|
256
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
257
181
|
};
|
|
258
182
|
}>>]>>;
|
|
259
183
|
export type PatternStyleProps = StyleProps<typeof patternStyles>;
|
|
@@ -268,5 +192,5 @@ export interface PatternProps extends Omit<React.SVGProps<SVGSVGElement>, keyof
|
|
|
268
192
|
export declare const Svg: import("react").ForwardRefExoticComponent<Omit<{
|
|
269
193
|
theme?: import("@emotion/react").Theme | undefined;
|
|
270
194
|
as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
271
|
-
} & PatternProps & Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "alignmentBaseline" | "baselineShift" | "clipPath" | "clipRule" | "colorInterpolationFilters" | "cursor" | "cx" | "cy" | "d" | "direction" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "fontSizeAdjust" | "fontVariant" | "imageRendering" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "paintOrder" | "pointerEvents" | "r" | "rotate" | "rx" | "ry" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "textRendering" | "transform" | "
|
|
195
|
+
} & PatternProps & Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "alignmentBaseline" | "baselineShift" | "clipPath" | "clipRule" | "colorInterpolationFilters" | "cursor" | "cx" | "cy" | "d" | "direction" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "fontSizeAdjust" | "fontVariant" | "imageRendering" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "paintOrder" | "pointerEvents" | "r" | "rotate" | "rx" | "ry" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "textRendering" | "transform" | "unicodeBidi" | "vectorEffect" | "visibility" | "wordSpacing" | "writingMode" | "x" | "y" | "mask" | "offset" | "min" | "max" | "end" | "clip" | "suppressHydrationWarning" | "className" | "id" | "lang" | "media" | "method" | "nonce" | "part" | "slot" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolation" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "fontStretch" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "local" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mathematical" | "numOctaves" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "panose1" | "path" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "seed" | "slope" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture" | "ref" | "key">, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
272
196
|
export {};
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-patterns",
|
|
3
3
|
"description": "Pattern library for Codecademy",
|
|
4
|
-
"version": "0.10.23-alpha.
|
|
4
|
+
"version": "0.10.23-alpha.7e328b.0",
|
|
5
5
|
"author": "Codecademy Engineering <dev@codecademy.com>",
|
|
6
6
|
"bugs": "https://github.com/Codecademy/gamut/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@codecademy/gamut-styles": "17.
|
|
9
|
-
"@codecademy/variance": "0.
|
|
8
|
+
"@codecademy/gamut-styles": "17.11.4-alpha.7e328b.0",
|
|
9
|
+
"@codecademy/variance": "0.25.3-alpha.7e328b.0",
|
|
10
10
|
"classnames": "^2.2.5"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"@emotion/react": "^11.4.0",
|
|
21
21
|
"@emotion/styled": "^11.3.0",
|
|
22
|
-
"react": "^
|
|
23
|
-
"react-dom": "^
|
|
22
|
+
"react": "^18.3.0 || ^19.0.0",
|
|
23
|
+
"react-dom": "^18.3.0 || ^19.0.0"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
},
|
|
33
33
|
"sideEffects": false,
|
|
34
34
|
"types": "dist/index.d.ts",
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "8515f5385baedcf5063d683b056c80d8e00a409e"
|
|
36
36
|
}
|