indicator-ui 0.0.25 → 0.0.27

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.
@@ -42,6 +42,11 @@
42
42
  @include properties.red-fill();
43
43
  }
44
44
 
45
+
46
+ &.blueLight {
47
+ @include properties.blue-light();
48
+ }
49
+
45
50
  &.size14 {
46
51
  @include properties.size-14();
47
52
  }
@@ -0,0 +1,10 @@
1
+ @use '../../../../../styles' as *;
2
+
3
+ @mixin blue-light() {
4
+ background: none;
5
+ @include modify-svg($stroke: var(--blue-dark-50));
6
+
7
+ &:hover {
8
+ @include modify-svg($stroke: var(--blue-dark-200));
9
+ }
10
+ }
@@ -7,6 +7,7 @@
7
7
  @forward "gray-fill";
8
8
  @forward "red-fill";
9
9
  @forward "red-hover";
10
+ @forward "blue-light";
10
11
 
11
12
  @forward "size-14";
12
13
  @forward "size-16";
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  export type MicroButtonSizeType = '14' | '16' | '20' | '24' | '28';
3
- export type MicroButtonColorsType = 'light' | 'dark' | 'gray' | 'color' | 'color-hover' | 'red-hover' | 'color-fill' | 'gray-fill' | 'red-fill';
3
+ export type MicroButtonColorsType = 'light' | 'dark' | 'gray' | 'color' | 'color-hover' | 'red-hover' | 'color-fill' | 'gray-fill' | 'red-fill' | 'blue-light';
4
4
  export type MicroButtonClassNameType = {
5
5
  button?: string;
6
6
  light?: string;
@@ -12,6 +12,7 @@ export type MicroButtonClassNameType = {
12
12
  colorFill?: string;
13
13
  grayFill?: string;
14
14
  redFill?: string;
15
+ blueLight?: string;
15
16
  size14?: string;
16
17
  size16?: string;
17
18
  size20?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indicator-ui",
3
- "version": "0.0.25",
3
+ "version": "0.0.27",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/src/index.d.ts",
6
6
  "style": "dist/index.css",