@codecademy/gamut-icons 9.55.2-alpha.835d7c.0 → 9.55.2-alpha.9e53d2.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 +91 -85
- package/package.json +4 -4
package/dist/props.d.ts
CHANGED
|
@@ -80,51 +80,74 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
80
80
|
readonly property: "overflow";
|
|
81
81
|
};
|
|
82
82
|
readonly overflowX: {
|
|
83
|
-
readonly property:
|
|
84
|
-
readonly physical: "overflowX";
|
|
85
|
-
readonly logical: "overflowInline";
|
|
86
|
-
};
|
|
87
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
83
|
+
readonly property: "overflowX";
|
|
88
84
|
};
|
|
89
85
|
readonly overflowY: {
|
|
90
|
-
readonly property:
|
|
91
|
-
readonly physical: "overflowY";
|
|
92
|
-
readonly logical: "overflowBlock";
|
|
93
|
-
};
|
|
94
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
86
|
+
readonly property: "overflowY";
|
|
95
87
|
};
|
|
96
88
|
readonly dimensions: {
|
|
97
89
|
readonly property: "width";
|
|
98
|
-
readonly properties:
|
|
90
|
+
readonly properties: {
|
|
91
|
+
readonly physical: readonly ["width", "height"];
|
|
92
|
+
readonly logical: readonly ["inlineSize", "blockSize"];
|
|
93
|
+
};
|
|
94
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
99
95
|
readonly transform: (value: string | number) => string | 0;
|
|
100
96
|
};
|
|
101
97
|
readonly width: {
|
|
102
|
-
readonly property:
|
|
98
|
+
readonly property: {
|
|
99
|
+
readonly physical: "width";
|
|
100
|
+
readonly logical: "inlineSize";
|
|
101
|
+
};
|
|
102
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
103
103
|
readonly transform: (value: string | number) => string | 0;
|
|
104
104
|
};
|
|
105
105
|
readonly minWidth: {
|
|
106
|
-
readonly property:
|
|
106
|
+
readonly property: {
|
|
107
|
+
readonly physical: "minWidth";
|
|
108
|
+
readonly logical: "minInlineSize";
|
|
109
|
+
};
|
|
110
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
107
111
|
readonly transform: (value: string | number) => string | 0;
|
|
108
112
|
};
|
|
109
113
|
readonly maxWidth: {
|
|
110
|
-
readonly property:
|
|
114
|
+
readonly property: {
|
|
115
|
+
readonly physical: "maxWidth";
|
|
116
|
+
readonly logical: "maxInlineSize";
|
|
117
|
+
};
|
|
118
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
111
119
|
readonly transform: (value: string | number) => string | 0;
|
|
112
120
|
};
|
|
113
121
|
readonly height: {
|
|
114
|
-
readonly property:
|
|
122
|
+
readonly property: {
|
|
123
|
+
readonly physical: "height";
|
|
124
|
+
readonly logical: "blockSize";
|
|
125
|
+
};
|
|
126
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
115
127
|
readonly transform: (value: string | number) => string | 0;
|
|
116
128
|
};
|
|
117
129
|
readonly minHeight: {
|
|
118
|
-
readonly property:
|
|
130
|
+
readonly property: {
|
|
131
|
+
readonly physical: "minHeight";
|
|
132
|
+
readonly logical: "minBlockSize";
|
|
133
|
+
};
|
|
134
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
119
135
|
readonly transform: (value: string | number) => string | 0;
|
|
120
136
|
};
|
|
121
137
|
readonly maxHeight: {
|
|
122
|
-
readonly property:
|
|
138
|
+
readonly property: {
|
|
139
|
+
readonly physical: "maxHeight";
|
|
140
|
+
readonly logical: "maxBlockSize";
|
|
141
|
+
};
|
|
142
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
123
143
|
readonly transform: (value: string | number) => string | 0;
|
|
124
144
|
};
|
|
125
145
|
readonly verticalAlign: {
|
|
126
146
|
readonly property: "verticalAlign";
|
|
127
147
|
};
|
|
148
|
+
readonly direction: {
|
|
149
|
+
readonly property: "direction";
|
|
150
|
+
};
|
|
128
151
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
129
152
|
readonly color: {
|
|
130
153
|
readonly property: "color";
|
|
@@ -295,43 +318,23 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
295
318
|
};
|
|
296
319
|
readonly inset: {
|
|
297
320
|
readonly property: "inset";
|
|
298
|
-
readonly properties:
|
|
299
|
-
readonly physical: readonly ["top", "right", "bottom", "left"];
|
|
300
|
-
readonly logical: readonly ["insetBlockStart", "insetInlineEnd", "insetBlockEnd", "insetInlineStart"];
|
|
301
|
-
};
|
|
302
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
321
|
+
readonly properties: readonly ["top", "right", "bottom", "left"];
|
|
303
322
|
readonly transform: (value: string | number) => string | 0;
|
|
304
323
|
};
|
|
305
324
|
readonly top: {
|
|
306
|
-
readonly property:
|
|
307
|
-
readonly physical: "top";
|
|
308
|
-
readonly logical: "insetBlockStart";
|
|
309
|
-
};
|
|
310
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
325
|
+
readonly property: "top";
|
|
311
326
|
readonly transform: (value: string | number) => string | 0;
|
|
312
327
|
};
|
|
313
328
|
readonly right: {
|
|
314
|
-
readonly property:
|
|
315
|
-
readonly physical: "right";
|
|
316
|
-
readonly logical: "insetInlineEnd";
|
|
317
|
-
};
|
|
318
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
329
|
+
readonly property: "right";
|
|
319
330
|
readonly transform: (value: string | number) => string | 0;
|
|
320
331
|
};
|
|
321
332
|
readonly bottom: {
|
|
322
|
-
readonly property:
|
|
323
|
-
readonly physical: "bottom";
|
|
324
|
-
readonly logical: "insetBlockEnd";
|
|
325
|
-
};
|
|
326
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
333
|
+
readonly property: "bottom";
|
|
327
334
|
readonly transform: (value: string | number) => string | 0;
|
|
328
335
|
};
|
|
329
336
|
readonly left: {
|
|
330
|
-
readonly property:
|
|
331
|
-
readonly physical: "left";
|
|
332
|
-
readonly logical: "insetInlineStart";
|
|
333
|
-
};
|
|
334
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
337
|
+
readonly property: "left";
|
|
335
338
|
readonly transform: (value: string | number) => string | 0;
|
|
336
339
|
};
|
|
337
340
|
readonly zIndex: {
|
|
@@ -615,51 +618,74 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
615
618
|
readonly property: "overflow";
|
|
616
619
|
}>;
|
|
617
620
|
overflowX?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
618
|
-
readonly property:
|
|
619
|
-
readonly physical: "overflowX";
|
|
620
|
-
readonly logical: "overflowInline";
|
|
621
|
-
};
|
|
622
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
621
|
+
readonly property: "overflowX";
|
|
623
622
|
}>;
|
|
624
623
|
overflowY?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
625
|
-
readonly property:
|
|
626
|
-
readonly physical: "overflowY";
|
|
627
|
-
readonly logical: "overflowBlock";
|
|
628
|
-
};
|
|
629
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
624
|
+
readonly property: "overflowY";
|
|
630
625
|
}>;
|
|
631
626
|
dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
632
627
|
readonly property: "width";
|
|
633
|
-
readonly properties:
|
|
628
|
+
readonly properties: {
|
|
629
|
+
readonly physical: readonly ["width", "height"];
|
|
630
|
+
readonly logical: readonly ["inlineSize", "blockSize"];
|
|
631
|
+
};
|
|
632
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
634
633
|
readonly transform: (value: string | number) => string | 0;
|
|
635
634
|
}>;
|
|
636
635
|
width?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
637
|
-
readonly property:
|
|
636
|
+
readonly property: {
|
|
637
|
+
readonly physical: "width";
|
|
638
|
+
readonly logical: "inlineSize";
|
|
639
|
+
};
|
|
640
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
638
641
|
readonly transform: (value: string | number) => string | 0;
|
|
639
642
|
}>;
|
|
640
643
|
minWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
641
|
-
readonly property:
|
|
644
|
+
readonly property: {
|
|
645
|
+
readonly physical: "minWidth";
|
|
646
|
+
readonly logical: "minInlineSize";
|
|
647
|
+
};
|
|
648
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
642
649
|
readonly transform: (value: string | number) => string | 0;
|
|
643
650
|
}>;
|
|
644
651
|
maxWidth?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
645
|
-
readonly property:
|
|
652
|
+
readonly property: {
|
|
653
|
+
readonly physical: "maxWidth";
|
|
654
|
+
readonly logical: "maxInlineSize";
|
|
655
|
+
};
|
|
656
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
646
657
|
readonly transform: (value: string | number) => string | 0;
|
|
647
658
|
}>;
|
|
648
659
|
height?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
649
|
-
readonly property:
|
|
660
|
+
readonly property: {
|
|
661
|
+
readonly physical: "height";
|
|
662
|
+
readonly logical: "blockSize";
|
|
663
|
+
};
|
|
664
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
650
665
|
readonly transform: (value: string | number) => string | 0;
|
|
651
666
|
}>;
|
|
652
667
|
minHeight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
653
|
-
readonly property:
|
|
668
|
+
readonly property: {
|
|
669
|
+
readonly physical: "minHeight";
|
|
670
|
+
readonly logical: "minBlockSize";
|
|
671
|
+
};
|
|
672
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
654
673
|
readonly transform: (value: string | number) => string | 0;
|
|
655
674
|
}>;
|
|
656
675
|
maxHeight?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
657
|
-
readonly property:
|
|
676
|
+
readonly property: {
|
|
677
|
+
readonly physical: "maxHeight";
|
|
678
|
+
readonly logical: "maxBlockSize";
|
|
679
|
+
};
|
|
680
|
+
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
658
681
|
readonly transform: (value: string | number) => string | 0;
|
|
659
682
|
}>;
|
|
660
683
|
verticalAlign?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
661
684
|
readonly property: "verticalAlign";
|
|
662
685
|
}>;
|
|
686
|
+
direction?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
687
|
+
readonly property: "direction";
|
|
688
|
+
}>;
|
|
663
689
|
color?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
664
690
|
readonly property: "color";
|
|
665
691
|
readonly scale: "colors";
|
|
@@ -827,43 +853,23 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
827
853
|
}>;
|
|
828
854
|
inset?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
829
855
|
readonly property: "inset";
|
|
830
|
-
readonly properties:
|
|
831
|
-
readonly physical: readonly ["top", "right", "bottom", "left"];
|
|
832
|
-
readonly logical: readonly ["insetBlockStart", "insetInlineEnd", "insetBlockEnd", "insetInlineStart"];
|
|
833
|
-
};
|
|
834
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
856
|
+
readonly properties: readonly ["top", "right", "bottom", "left"];
|
|
835
857
|
readonly transform: (value: string | number) => string | 0;
|
|
836
858
|
}>;
|
|
837
859
|
top?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
838
|
-
readonly property:
|
|
839
|
-
readonly physical: "top";
|
|
840
|
-
readonly logical: "insetBlockStart";
|
|
841
|
-
};
|
|
842
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
860
|
+
readonly property: "top";
|
|
843
861
|
readonly transform: (value: string | number) => string | 0;
|
|
844
862
|
}>;
|
|
845
863
|
right?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
846
|
-
readonly property:
|
|
847
|
-
readonly physical: "right";
|
|
848
|
-
readonly logical: "insetInlineEnd";
|
|
849
|
-
};
|
|
850
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
864
|
+
readonly property: "right";
|
|
851
865
|
readonly transform: (value: string | number) => string | 0;
|
|
852
866
|
}>;
|
|
853
867
|
bottom?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
854
|
-
readonly property:
|
|
855
|
-
readonly physical: "bottom";
|
|
856
|
-
readonly logical: "insetBlockEnd";
|
|
857
|
-
};
|
|
858
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
868
|
+
readonly property: "bottom";
|
|
859
869
|
readonly transform: (value: string | number) => string | 0;
|
|
860
870
|
}>;
|
|
861
871
|
left?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
862
|
-
readonly property:
|
|
863
|
-
readonly physical: "left";
|
|
864
|
-
readonly logical: "insetInlineStart";
|
|
865
|
-
};
|
|
866
|
-
readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
|
|
872
|
+
readonly property: "left";
|
|
867
873
|
readonly transform: (value: string | number) => string | 0;
|
|
868
874
|
}>;
|
|
869
875
|
zIndex?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
@@ -1094,5 +1100,5 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
1094
1100
|
}>;
|
|
1095
1101
|
} & {
|
|
1096
1102
|
theme?: import("@emotion/react").Theme | undefined;
|
|
1097
|
-
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "alignmentBaseline" | "baselineShift" | "clipPath" | "clipRule" | "colorInterpolationFilters" | "cursor" | "cx" | "cy" | "d" | "
|
|
1103
|
+
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "alignmentBaseline" | "baselineShift" | "clipPath" | "clipRule" | "colorInterpolationFilters" | "cursor" | "cx" | "cy" | "d" | "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" | "transformOrigin" | "unicodeBidi" | "vectorEffect" | "visibility" | "wordSpacing" | "writingMode" | "x" | "y" | "mask" | "offset" | "min" | "max" | "end" | "clip" | "suppressHydrationWarning" | "className" | "id" | "lang" | "media" | "method" | "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" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "ref" | "key">, {}>;
|
|
1098
1104
|
export {};
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-icons",
|
|
3
3
|
"description": "Icon library for codecademy.com",
|
|
4
|
-
"version": "9.55.2-alpha.
|
|
4
|
+
"version": "9.55.2-alpha.9e53d2.0",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "17.12.0-alpha.
|
|
8
|
-
"@codecademy/variance": "0.26.0-alpha.
|
|
7
|
+
"@codecademy/gamut-styles": "17.12.0-alpha.9e53d2.0",
|
|
8
|
+
"@codecademy/variance": "0.26.0-alpha.9e53d2.0"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"types": "dist/index.d.ts",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "cb848b578a24ad4b3657640f469ca68e179c95b7"
|
|
33
33
|
}
|