@codecademy/gamut-icons 9.56.0-alpha.2d3aae.0 → 9.56.0-alpha.2f9b47.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.
Files changed (2) hide show
  1. package/dist/props.d.ts +83 -81
  2. package/package.json +4 -4
package/dist/props.d.ts CHANGED
@@ -80,10 +80,18 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
80
80
  readonly property: "overflow";
81
81
  };
82
82
  readonly overflowX: {
83
- readonly property: "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;
84
88
  };
85
89
  readonly overflowY: {
86
- readonly property: "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;
87
95
  };
88
96
  readonly dimensions: {
89
97
  readonly property: "width";
@@ -91,59 +99,32 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
91
99
  readonly transform: (value: string | number) => string | 0;
92
100
  };
93
101
  readonly width: {
94
- readonly property: {
95
- readonly physical: "width";
96
- readonly logical: "inlineSize";
97
- };
98
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
102
+ readonly property: "width";
99
103
  readonly transform: (value: string | number) => string | 0;
100
104
  };
101
105
  readonly minWidth: {
102
- readonly property: {
103
- readonly physical: "minWidth";
104
- readonly logical: "minInlineSize";
105
- };
106
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
106
+ readonly property: "minWidth";
107
107
  readonly transform: (value: string | number) => string | 0;
108
108
  };
109
109
  readonly maxWidth: {
110
- readonly property: {
111
- readonly physical: "maxWidth";
112
- readonly logical: "maxInlineSize";
113
- };
114
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
110
+ readonly property: "maxWidth";
115
111
  readonly transform: (value: string | number) => string | 0;
116
112
  };
117
113
  readonly height: {
118
- readonly property: {
119
- readonly physical: "height";
120
- readonly logical: "blockSize";
121
- };
122
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
114
+ readonly property: "height";
123
115
  readonly transform: (value: string | number) => string | 0;
124
116
  };
125
117
  readonly minHeight: {
126
- readonly property: {
127
- readonly physical: "minHeight";
128
- readonly logical: "minBlockSize";
129
- };
130
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
118
+ readonly property: "minHeight";
131
119
  readonly transform: (value: string | number) => string | 0;
132
120
  };
133
121
  readonly maxHeight: {
134
- readonly property: {
135
- readonly physical: "maxHeight";
136
- readonly logical: "maxBlockSize";
137
- };
138
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
122
+ readonly property: "maxHeight";
139
123
  readonly transform: (value: string | number) => string | 0;
140
124
  };
141
125
  readonly verticalAlign: {
142
126
  readonly property: "verticalAlign";
143
127
  };
144
- readonly direction: {
145
- readonly property: "direction";
146
- };
147
128
  }>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
148
129
  readonly color: {
149
130
  readonly property: "color";
@@ -314,23 +295,43 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
314
295
  };
315
296
  readonly inset: {
316
297
  readonly property: "inset";
317
- readonly properties: readonly ["top", "right", "bottom", "left"];
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;
318
303
  readonly transform: (value: string | number) => string | 0;
319
304
  };
320
305
  readonly top: {
321
- readonly property: "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;
322
311
  readonly transform: (value: string | number) => string | 0;
323
312
  };
324
313
  readonly right: {
325
- readonly property: "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;
326
319
  readonly transform: (value: string | number) => string | 0;
327
320
  };
328
321
  readonly bottom: {
329
- readonly property: "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;
330
327
  readonly transform: (value: string | number) => string | 0;
331
328
  };
332
329
  readonly left: {
333
- readonly property: "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;
334
335
  readonly transform: (value: string | number) => string | 0;
335
336
  };
336
337
  readonly zIndex: {
@@ -614,10 +615,18 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
614
615
  readonly property: "overflow";
615
616
  }>;
616
617
  overflowX?: import("@codecademy/variance/dist/types/config").Scale<{
617
- readonly property: "overflowX";
618
+ readonly property: {
619
+ readonly physical: "overflowX";
620
+ readonly logical: "overflowInline";
621
+ };
622
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
618
623
  }>;
619
624
  overflowY?: import("@codecademy/variance/dist/types/config").Scale<{
620
- readonly property: "overflowY";
625
+ readonly property: {
626
+ readonly physical: "overflowY";
627
+ readonly logical: "overflowBlock";
628
+ };
629
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
621
630
  }>;
622
631
  dimensions?: import("@codecademy/variance/dist/types/config").Scale<{
623
632
  readonly property: "width";
@@ -625,59 +634,32 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
625
634
  readonly transform: (value: string | number) => string | 0;
626
635
  }>;
627
636
  width?: import("@codecademy/variance/dist/types/config").Scale<{
628
- readonly property: {
629
- readonly physical: "width";
630
- readonly logical: "inlineSize";
631
- };
632
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
637
+ readonly property: "width";
633
638
  readonly transform: (value: string | number) => string | 0;
634
639
  }>;
635
640
  minWidth?: import("@codecademy/variance/dist/types/config").Scale<{
636
- readonly property: {
637
- readonly physical: "minWidth";
638
- readonly logical: "minInlineSize";
639
- };
640
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
641
+ readonly property: "minWidth";
641
642
  readonly transform: (value: string | number) => string | 0;
642
643
  }>;
643
644
  maxWidth?: import("@codecademy/variance/dist/types/config").Scale<{
644
- readonly property: {
645
- readonly physical: "maxWidth";
646
- readonly logical: "maxInlineSize";
647
- };
648
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
645
+ readonly property: "maxWidth";
649
646
  readonly transform: (value: string | number) => string | 0;
650
647
  }>;
651
648
  height?: import("@codecademy/variance/dist/types/config").Scale<{
652
- readonly property: {
653
- readonly physical: "height";
654
- readonly logical: "blockSize";
655
- };
656
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
649
+ readonly property: "height";
657
650
  readonly transform: (value: string | number) => string | 0;
658
651
  }>;
659
652
  minHeight?: import("@codecademy/variance/dist/types/config").Scale<{
660
- readonly property: {
661
- readonly physical: "minHeight";
662
- readonly logical: "minBlockSize";
663
- };
664
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
653
+ readonly property: "minHeight";
665
654
  readonly transform: (value: string | number) => string | 0;
666
655
  }>;
667
656
  maxHeight?: import("@codecademy/variance/dist/types/config").Scale<{
668
- readonly property: {
669
- readonly physical: "maxHeight";
670
- readonly logical: "maxBlockSize";
671
- };
672
- readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
657
+ readonly property: "maxHeight";
673
658
  readonly transform: (value: string | number) => string | 0;
674
659
  }>;
675
660
  verticalAlign?: import("@codecademy/variance/dist/types/config").Scale<{
676
661
  readonly property: "verticalAlign";
677
662
  }>;
678
- direction?: import("@codecademy/variance/dist/types/config").Scale<{
679
- readonly property: "direction";
680
- }>;
681
663
  color?: import("@codecademy/variance/dist/types/config").Scale<{
682
664
  readonly property: "color";
683
665
  readonly scale: "colors";
@@ -845,23 +827,43 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
845
827
  }>;
846
828
  inset?: import("@codecademy/variance/dist/types/config").Scale<{
847
829
  readonly property: "inset";
848
- readonly properties: readonly ["top", "right", "bottom", "left"];
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;
849
835
  readonly transform: (value: string | number) => string | 0;
850
836
  }>;
851
837
  top?: import("@codecademy/variance/dist/types/config").Scale<{
852
- readonly property: "top";
838
+ readonly property: {
839
+ readonly physical: "top";
840
+ readonly logical: "insetBlockStart";
841
+ };
842
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
853
843
  readonly transform: (value: string | number) => string | 0;
854
844
  }>;
855
845
  right?: import("@codecademy/variance/dist/types/config").Scale<{
856
- readonly property: "right";
846
+ readonly property: {
847
+ readonly physical: "right";
848
+ readonly logical: "insetInlineEnd";
849
+ };
850
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
857
851
  readonly transform: (value: string | number) => string | 0;
858
852
  }>;
859
853
  bottom?: import("@codecademy/variance/dist/types/config").Scale<{
860
- readonly property: "bottom";
854
+ readonly property: {
855
+ readonly physical: "bottom";
856
+ readonly logical: "insetBlockEnd";
857
+ };
858
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
861
859
  readonly transform: (value: string | number) => string | 0;
862
860
  }>;
863
861
  left?: import("@codecademy/variance/dist/types/config").Scale<{
864
- readonly property: "left";
862
+ readonly property: {
863
+ readonly physical: "left";
864
+ readonly logical: "insetInlineStart";
865
+ };
866
+ readonly resolveProperty: (useLogicalProperties: boolean) => import("@codecademy/variance/dist/types/properties").PropertyMode;
865
867
  readonly transform: (value: string | number) => string | 0;
866
868
  }>;
867
869
  zIndex?: import("@codecademy/variance/dist/types/config").Scale<{
@@ -1092,5 +1094,5 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
1092
1094
  }>;
1093
1095
  } & {
1094
1096
  theme?: import("@emotion/react").Theme | undefined;
1095
- }, 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" | "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">, {}>;
1097
+ }, 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">, {}>;
1096
1098
  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.56.0-alpha.2d3aae.0",
4
+ "version": "9.56.0-alpha.2f9b47.0",
5
5
  "author": "Codecademy <dev@codecademy.com>",
6
6
  "dependencies": {
7
- "@codecademy/gamut-styles": "17.12.0-alpha.2d3aae.0",
8
- "@codecademy/variance": "0.25.3-alpha.2d3aae.0"
7
+ "@codecademy/gamut-styles": "17.12.0-alpha.2f9b47.0",
8
+ "@codecademy/variance": "0.26.0-alpha.2f9b47.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": "bf1034f5df41d892ef8fd8c5ea2da396a9d2b5ae"
32
+ "gitHead": "4577f2565a67fc116b56c55ecca9c3e849a90be1"
33
33
  }