@loomhq/lens 11.12.0 → 11.14.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/colors.d.ts +2 -1
- package/dist/components/icon/available-icons/index.d.ts +2 -0
- package/dist/components/icon/available-icons/thumbs-down.d.ts +2 -0
- package/dist/components/icon/available-icons/thumbs-up.d.ts +2 -0
- package/dist/icons/index.d.ts +2 -0
- package/dist/icons/index.js +267 -223
- package/dist/icons/thumbs-down.d.ts +2 -0
- package/dist/icons/thumbs-down.js +23 -0
- package/dist/icons/thumbs-up.d.ts +2 -0
- package/dist/icons/thumbs-up.js +23 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/colors.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ type HslaColor = {
|
|
|
4
4
|
l: number;
|
|
5
5
|
a: number;
|
|
6
6
|
};
|
|
7
|
-
declare const BaseColors: readonly ["red", "blurpleLight", "blurpleMedium", "blurple", "blurpleDark", "offWhite", "blueLight", "blue", "blueDark", "orangeLight", "orange", "orangeDark", "tealLight", "teal", "tealDark", "yellowLight", "yellow", "yellowDark"];
|
|
7
|
+
declare const BaseColors: readonly ["red", "blurpleLight", "blurpleMedium", "blurple", "blurpleDark", "blurpleStrong", "offWhite", "blueLight", "blue", "blueDark", "orangeLight", "orange", "orangeDark", "tealLight", "teal", "tealDark", "yellowLight", "yellow", "yellowDark"];
|
|
8
8
|
declare const GreyColors: readonly ["grey8", "grey7", "grey6", "grey5", "grey4", "grey3", "grey2", "grey1", "white"];
|
|
9
9
|
declare const SharedColors: readonly ["focusRing", "record", "recordHover", "recordActive", "info", "success", "warning", "danger", "dangerHover", "dangerActive", "backdrop", "backdropDark", "backdropTwilight", "disabledContent", "highlight"];
|
|
10
10
|
declare const SemanticColors: readonly ["primary", "primaryHover", "primaryActive", "body", "bodyDimmed", "background", "backgroundHover", "backgroundActive", "backgroundSecondary", "backgroundSecondary2", "overlay", "border", "disabledBackground", "formFieldBorder", "formFieldBackground", "buttonBorder", "upgrade", "upgradeHover", "upgradeActive", "tabBackground", "discoveryBackground", "discoveryLightBackground", "discoveryTitle", "discoveryHighlight"];
|
|
@@ -35,6 +35,7 @@ export declare const hslaColors: {
|
|
|
35
35
|
blurpleMedium: HslaColor;
|
|
36
36
|
blurple: HslaColor;
|
|
37
37
|
blurpleDark: HslaColor;
|
|
38
|
+
blurpleStrong: HslaColor;
|
|
38
39
|
offWhite: HslaColor;
|
|
39
40
|
blueLight: HslaColor;
|
|
40
41
|
blue: HslaColor;
|
|
@@ -188,6 +188,8 @@ export { SvgStarOutline } from './star-outline';
|
|
|
188
188
|
export { SvgStop } from './stop';
|
|
189
189
|
export { SvgTagFaces } from './tag-faces';
|
|
190
190
|
export { SvgTask } from './task';
|
|
191
|
+
export { SvgThumbsDown } from './thumbs-down';
|
|
192
|
+
export { SvgThumbsUp } from './thumbs-up';
|
|
191
193
|
export { SvgTimer } from './timer';
|
|
192
194
|
export { SvgTouchApp } from './touch-app';
|
|
193
195
|
export { SvgTrash } from './trash';
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -188,6 +188,8 @@ export { SvgStarOutline } from './star-outline';
|
|
|
188
188
|
export { SvgStop } from './stop';
|
|
189
189
|
export { SvgTagFaces } from './tag-faces';
|
|
190
190
|
export { SvgTask } from './task';
|
|
191
|
+
export { SvgThumbsDown } from './thumbs-down';
|
|
192
|
+
export { SvgThumbsUp } from './thumbs-up';
|
|
191
193
|
export { SvgTimer } from './timer';
|
|
192
194
|
export { SvgTouchApp } from './touch-app';
|
|
193
195
|
export { SvgTrash } from './trash';
|