@codecademy/gamut-icons 9.52.2-alpha.09238f.0 → 9.52.2-alpha.79f45d.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 +105 -61
- package/package.json +3 -3
package/dist/props.d.ts
CHANGED
|
@@ -102,18 +102,6 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
102
102
|
readonly property: "maxWidth";
|
|
103
103
|
readonly transform: (value: string | number) => string | 0;
|
|
104
104
|
};
|
|
105
|
-
readonly inlineSize: {
|
|
106
|
-
readonly property: "inlineSize";
|
|
107
|
-
readonly transform: (value: string | number) => string | 0;
|
|
108
|
-
};
|
|
109
|
-
readonly minInlineSize: {
|
|
110
|
-
readonly property: "minInlineSize";
|
|
111
|
-
readonly transform: (value: string | number) => string | 0;
|
|
112
|
-
};
|
|
113
|
-
readonly maxInlineSize: {
|
|
114
|
-
readonly property: "maxInlineSize";
|
|
115
|
-
readonly transform: (value: string | number) => string | 0;
|
|
116
|
-
};
|
|
117
105
|
readonly height: {
|
|
118
106
|
readonly property: "height";
|
|
119
107
|
readonly transform: (value: string | number) => string | 0;
|
|
@@ -126,27 +114,9 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
126
114
|
readonly property: "maxHeight";
|
|
127
115
|
readonly transform: (value: string | number) => string | 0;
|
|
128
116
|
};
|
|
129
|
-
readonly blockSize: {
|
|
130
|
-
readonly property: "blockSize";
|
|
131
|
-
readonly transform: (value: string | number) => string | 0;
|
|
132
|
-
};
|
|
133
|
-
readonly minBlockSize: {
|
|
134
|
-
readonly property: "minBlockSize";
|
|
135
|
-
readonly transform: (value: string | number) => string | 0;
|
|
136
|
-
};
|
|
137
|
-
readonly maxBlockSize: {
|
|
138
|
-
readonly property: "maxBlockSize";
|
|
139
|
-
readonly transform: (value: string | number) => string | 0;
|
|
140
|
-
};
|
|
141
117
|
readonly verticalAlign: {
|
|
142
118
|
readonly property: "verticalAlign";
|
|
143
119
|
};
|
|
144
|
-
readonly writingMode: {
|
|
145
|
-
readonly property: "writingMode";
|
|
146
|
-
};
|
|
147
|
-
readonly direction: {
|
|
148
|
-
readonly property: "direction";
|
|
149
|
-
};
|
|
150
120
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
151
121
|
readonly color: {
|
|
152
122
|
readonly property: "color";
|
|
@@ -221,6 +191,32 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
221
191
|
readonly property: "paddingLeft";
|
|
222
192
|
readonly scale: "spacing";
|
|
223
193
|
};
|
|
194
|
+
readonly pbl: {
|
|
195
|
+
readonly property: "padding";
|
|
196
|
+
readonly properties: readonly ["paddingBlockStart", "paddingBlockEnd"];
|
|
197
|
+
readonly scale: "spacing";
|
|
198
|
+
};
|
|
199
|
+
readonly pbls: {
|
|
200
|
+
readonly property: "paddingBlockStart";
|
|
201
|
+
readonly scale: "spacing";
|
|
202
|
+
};
|
|
203
|
+
readonly pble: {
|
|
204
|
+
readonly property: "paddingBlockEnd";
|
|
205
|
+
readonly scale: "spacing";
|
|
206
|
+
};
|
|
207
|
+
readonly pi: {
|
|
208
|
+
readonly property: "padding";
|
|
209
|
+
readonly properties: readonly ["paddingInlineStart", "paddingInlineEnd"];
|
|
210
|
+
readonly scale: "spacing";
|
|
211
|
+
};
|
|
212
|
+
readonly pis: {
|
|
213
|
+
readonly property: "paddingInlineStart";
|
|
214
|
+
readonly scale: "spacing";
|
|
215
|
+
};
|
|
216
|
+
readonly pie: {
|
|
217
|
+
readonly property: "paddingInlineEnd";
|
|
218
|
+
readonly scale: "spacing";
|
|
219
|
+
};
|
|
224
220
|
readonly m: {
|
|
225
221
|
readonly property: "margin";
|
|
226
222
|
readonly scale: "spacing";
|
|
@@ -251,6 +247,32 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
251
247
|
readonly property: "marginLeft";
|
|
252
248
|
readonly scale: "spacing";
|
|
253
249
|
};
|
|
250
|
+
readonly mbl: {
|
|
251
|
+
readonly property: "margin";
|
|
252
|
+
readonly properties: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
253
|
+
readonly scale: "spacing";
|
|
254
|
+
};
|
|
255
|
+
readonly mbls: {
|
|
256
|
+
readonly property: "marginBlockStart";
|
|
257
|
+
readonly scale: "spacing";
|
|
258
|
+
};
|
|
259
|
+
readonly mble: {
|
|
260
|
+
readonly property: "marginBlockEnd";
|
|
261
|
+
readonly scale: "spacing";
|
|
262
|
+
};
|
|
263
|
+
readonly mi: {
|
|
264
|
+
readonly property: "margin";
|
|
265
|
+
readonly properties: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
266
|
+
readonly scale: "spacing";
|
|
267
|
+
};
|
|
268
|
+
readonly mis: {
|
|
269
|
+
readonly property: "marginInlineStart";
|
|
270
|
+
readonly scale: "spacing";
|
|
271
|
+
};
|
|
272
|
+
readonly mie: {
|
|
273
|
+
readonly property: "marginInlineEnd";
|
|
274
|
+
readonly scale: "spacing";
|
|
275
|
+
};
|
|
254
276
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
255
277
|
readonly position: {
|
|
256
278
|
readonly property: "position";
|
|
@@ -475,18 +497,6 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
475
497
|
readonly property: "maxWidth";
|
|
476
498
|
readonly transform: (value: string | number) => string | 0;
|
|
477
499
|
}>;
|
|
478
|
-
inlineSize?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
479
|
-
readonly property: "inlineSize";
|
|
480
|
-
readonly transform: (value: string | number) => string | 0;
|
|
481
|
-
}>;
|
|
482
|
-
minInlineSize?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
483
|
-
readonly property: "minInlineSize";
|
|
484
|
-
readonly transform: (value: string | number) => string | 0;
|
|
485
|
-
}>;
|
|
486
|
-
maxInlineSize?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
487
|
-
readonly property: "maxInlineSize";
|
|
488
|
-
readonly transform: (value: string | number) => string | 0;
|
|
489
|
-
}>;
|
|
490
500
|
height?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
491
501
|
readonly property: "height";
|
|
492
502
|
readonly transform: (value: string | number) => string | 0;
|
|
@@ -499,27 +509,9 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
499
509
|
readonly property: "maxHeight";
|
|
500
510
|
readonly transform: (value: string | number) => string | 0;
|
|
501
511
|
}>;
|
|
502
|
-
blockSize?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
503
|
-
readonly property: "blockSize";
|
|
504
|
-
readonly transform: (value: string | number) => string | 0;
|
|
505
|
-
}>;
|
|
506
|
-
minBlockSize?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
507
|
-
readonly property: "minBlockSize";
|
|
508
|
-
readonly transform: (value: string | number) => string | 0;
|
|
509
|
-
}>;
|
|
510
|
-
maxBlockSize?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
511
|
-
readonly property: "maxBlockSize";
|
|
512
|
-
readonly transform: (value: string | number) => string | 0;
|
|
513
|
-
}>;
|
|
514
512
|
verticalAlign?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
515
513
|
readonly property: "verticalAlign";
|
|
516
514
|
}>;
|
|
517
|
-
writingMode?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
518
|
-
readonly property: "writingMode";
|
|
519
|
-
}>;
|
|
520
|
-
direction?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
521
|
-
readonly property: "direction";
|
|
522
|
-
}>;
|
|
523
515
|
color?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
524
516
|
readonly property: "color";
|
|
525
517
|
readonly scale: "colors";
|
|
@@ -592,6 +584,32 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
592
584
|
readonly property: "paddingLeft";
|
|
593
585
|
readonly scale: "spacing";
|
|
594
586
|
}>;
|
|
587
|
+
pbl?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
588
|
+
readonly property: "padding";
|
|
589
|
+
readonly properties: readonly ["paddingBlockStart", "paddingBlockEnd"];
|
|
590
|
+
readonly scale: "spacing";
|
|
591
|
+
}>;
|
|
592
|
+
pbls?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
593
|
+
readonly property: "paddingBlockStart";
|
|
594
|
+
readonly scale: "spacing";
|
|
595
|
+
}>;
|
|
596
|
+
pble?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
597
|
+
readonly property: "paddingBlockEnd";
|
|
598
|
+
readonly scale: "spacing";
|
|
599
|
+
}>;
|
|
600
|
+
pi?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
601
|
+
readonly property: "padding";
|
|
602
|
+
readonly properties: readonly ["paddingInlineStart", "paddingInlineEnd"];
|
|
603
|
+
readonly scale: "spacing";
|
|
604
|
+
}>;
|
|
605
|
+
pis?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
606
|
+
readonly property: "paddingInlineStart";
|
|
607
|
+
readonly scale: "spacing";
|
|
608
|
+
}>;
|
|
609
|
+
pie?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
610
|
+
readonly property: "paddingInlineEnd";
|
|
611
|
+
readonly scale: "spacing";
|
|
612
|
+
}>;
|
|
595
613
|
m?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
596
614
|
readonly property: "margin";
|
|
597
615
|
readonly scale: "spacing";
|
|
@@ -622,6 +640,32 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
622
640
|
readonly property: "marginLeft";
|
|
623
641
|
readonly scale: "spacing";
|
|
624
642
|
}>;
|
|
643
|
+
mbl?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
644
|
+
readonly property: "margin";
|
|
645
|
+
readonly properties: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
646
|
+
readonly scale: "spacing";
|
|
647
|
+
}>;
|
|
648
|
+
mbls?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
649
|
+
readonly property: "marginBlockStart";
|
|
650
|
+
readonly scale: "spacing";
|
|
651
|
+
}>;
|
|
652
|
+
mble?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
653
|
+
readonly property: "marginBlockEnd";
|
|
654
|
+
readonly scale: "spacing";
|
|
655
|
+
}>;
|
|
656
|
+
mi?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
657
|
+
readonly property: "margin";
|
|
658
|
+
readonly properties: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
659
|
+
readonly scale: "spacing";
|
|
660
|
+
}>;
|
|
661
|
+
mis?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
662
|
+
readonly property: "marginInlineStart";
|
|
663
|
+
readonly scale: "spacing";
|
|
664
|
+
}>;
|
|
665
|
+
mie?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
666
|
+
readonly property: "marginInlineEnd";
|
|
667
|
+
readonly scale: "spacing";
|
|
668
|
+
}>;
|
|
625
669
|
position?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
626
670
|
readonly property: "position";
|
|
627
671
|
}>;
|
|
@@ -770,5 +814,5 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
770
814
|
}>;
|
|
771
815
|
} & {
|
|
772
816
|
theme?: import("@emotion/react").Theme | undefined;
|
|
773
|
-
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "clipPath" | "cursor" | "fontSizeAdjust" | "fontStretch" | "fontVariant" | "imageRendering" | "paintOrder" | "pointerEvents" | "rotate" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "wordSpacing" | "mask" | "offset" | "min" | "max" | "end" | "clip" | "suppressHydrationWarning" | "className" | "id" | "lang" | "media" | "method" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "fillOpacity" | "fillRule" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "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" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "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" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "shapeRendering" | "slope" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "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" | "onResize" | "onResizeCapture" | "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">, {}>;
|
|
817
|
+
}, Pick<import("react").SVGProps<SVGSVGElement>, "string" | "scale" | "filter" | "fill" | "values" | "spacing" | "name" | "clipPath" | "cursor" | "direction" | "fontSizeAdjust" | "fontStretch" | "fontVariant" | "imageRendering" | "paintOrder" | "pointerEvents" | "rotate" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "wordSpacing" | "writingMode" | "mask" | "offset" | "min" | "max" | "end" | "clip" | "suppressHydrationWarning" | "className" | "id" | "lang" | "media" | "method" | "style" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "fillOpacity" | "fillRule" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "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" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "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" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "shapeRendering" | "slope" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "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" | "onResize" | "onResizeCapture" | "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">, {}>;
|
|
774
818
|
export {};
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-icons",
|
|
3
3
|
"description": "Icon library for codecademy.com",
|
|
4
|
-
"version": "9.52.2-alpha.
|
|
4
|
+
"version": "9.52.2-alpha.79f45d.0",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "17.11.1-alpha.
|
|
7
|
+
"@codecademy/gamut-styles": "17.11.1-alpha.79f45d.0",
|
|
8
8
|
"@codecademy/variance": "0.25.0"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"types": "dist/index.d.ts",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "1ff003274740ada9ded0654d07b773588f82b037"
|
|
33
33
|
}
|