indicator-ui 0.0.57 → 0.0.59

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.
@@ -24,7 +24,7 @@
24
24
  font-weight: $weight;
25
25
  }
26
26
  @if ($color != null) {
27
- color: $color !important;
27
+ color: $color;
28
28
  }
29
29
 
30
30
  font-family: $family;
@@ -14,7 +14,7 @@
14
14
  & {
15
15
  font-size: #{$size}px;
16
16
  line-height: #{$line-height}px;
17
- color: $color !important;
17
+ color: $color;
18
18
  font-weight: $weight;
19
19
  font-family: $family;
20
20
  font-stretch: $stretch;
@@ -23,7 +23,7 @@
23
23
  }
24
24
  }
25
25
 
26
- &:disabled {
26
+ &:disabled, &.disabled {
27
27
  opacity: 0.5;
28
28
  }
29
29
  }
@@ -23,7 +23,7 @@
23
23
  }
24
24
  }
25
25
 
26
- &:disabled {
26
+ &:disabled, &.disabled {
27
27
  opacity: 0.5;
28
28
  }
29
29
  }
@@ -23,7 +23,7 @@
23
23
  }
24
24
  }
25
25
 
26
- &:disabled {
26
+ &:disabled, &.disabled {
27
27
  opacity: 0.5;
28
28
  }
29
29
  }
@@ -22,7 +22,7 @@
22
22
  box-shadow: 0 0 0 4px var(--gray-100), 0 1px 2px 0 #1018280D;
23
23
  }
24
24
 
25
- &:disabled {
25
+ &:disabled, &.disabled {
26
26
  opacity: 0.3;
27
27
  }
28
28
  }
@@ -22,7 +22,7 @@
22
22
  box-shadow: 0 0 0 4px var(--gray-100), 0 1px 2px 0 #1018280D, 0 0 0 1px var(--blue-dark-300);
23
23
  }
24
24
 
25
- &:disabled {
25
+ &:disabled, &.disabled {
26
26
  opacity: 0.5;
27
27
  }
28
28
  }
@@ -26,7 +26,7 @@
26
26
  box-shadow: 0 0 0 4px var(--gray-100), 0 1px 2px 0 #1018280D, 0 0 0 1px var(--gray-300);
27
27
  }
28
28
 
29
- &:disabled {
29
+ &:disabled, &.disabled {
30
30
  opacity: 0.5;
31
31
  }
32
32
  }
@@ -23,7 +23,7 @@
23
23
  }
24
24
  }
25
25
 
26
- &:disabled {
26
+ &:disabled, &.disabled {
27
27
  opacity: 0.5;
28
28
  }
29
29
  }
@@ -25,7 +25,7 @@
25
25
  }
26
26
  }
27
27
 
28
- &:disabled {
28
+ &:disabled, &.disabled {
29
29
  opacity: 0.5;
30
30
  }
31
31
  }
@@ -19,7 +19,7 @@
19
19
  }
20
20
  }
21
21
 
22
- &:disabled {
22
+ &:disabled, &.disabled {
23
23
  opacity: 0.5;
24
24
  }
25
25
  }
@@ -20,7 +20,7 @@
20
20
  }
21
21
  }
22
22
 
23
- &:disabled {
23
+ &:disabled, &.disabled {
24
24
  opacity: 0.5;
25
25
  }
26
26
  }
@@ -19,7 +19,7 @@
19
19
  }
20
20
  }
21
21
 
22
- &:disabled {
22
+ &:disabled, &.disabled {
23
23
  opacity: 0.5;
24
24
  }
25
25
  }
@@ -13,7 +13,7 @@
13
13
  background-color: var(--error-500);
14
14
  }
15
15
 
16
- &:disabled {
16
+ &:disabled, &.disabled {
17
17
  opacity: 0.3;
18
18
  }
19
19
  }
@@ -20,7 +20,7 @@
20
20
  box-shadow: 0 0 0 4px var(--gray-100), 0 1px 2px 0 #1018280D, 0 0 0 1px var(--error-200);
21
21
  }
22
22
 
23
- &:disabled {
23
+ &:disabled, &.disabled {
24
24
  opacity: 0.5;
25
25
  }
26
26
  }
@@ -1,2 +1,2 @@
1
1
  import { ButtonPropsType } from '../types';
2
- export declare function Button({ children, text, iconLeft, iconRight, hierarchy, warning, size, width, height, additionStyles, customComponent, className, ...props }: ButtonPropsType): import("react/jsx-runtime").JSX.Element;
2
+ export declare function Button({ children, text, iconLeft, iconRight, hierarchy, warning, size, width, height, additionStyles, customComponent, className, disabled, ...props }: ButtonPropsType): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,4 @@
1
1
  import { FORM_BUILDER_SCHEMA } from "../schemes";
2
2
  import { AdditionPropsType } from "../types";
3
- declare const formBuilder: (schema: FORM_BUILDER_SCHEMA, additionProps: AdditionPropsType) => (string | number | bigint | boolean | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode>>)[];
3
+ declare const formBuilder: (schema: FORM_BUILDER_SCHEMA, additionProps: AdditionPropsType) => import("react").ReactNode[];
4
4
  export default formBuilder;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indicator-ui",
3
- "version": "0.0.57",
3
+ "version": "0.0.59",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/src/index.d.ts",
6
6
  "style": "dist/index.css",