indicator-ui 0.0.93 → 0.0.94

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.
@@ -5,6 +5,26 @@
5
5
  .button {
6
6
  @include base-button.base-micro-button();
7
7
 
8
+ &.size14 {
9
+ @include properties.size-14();
10
+ }
11
+
12
+ &.size16 {
13
+ @include properties.size-16();
14
+ }
15
+
16
+ &.size20 {
17
+ @include properties.size-20();
18
+ }
19
+
20
+ &.size24 {
21
+ @include properties.size-24();
22
+ }
23
+
24
+ &.size28 {
25
+ @include properties.size-28();
26
+ }
27
+
8
28
  &.light {
9
29
  @include properties.light();
10
30
  }
@@ -45,25 +65,5 @@
45
65
  &.blueLight {
46
66
  @include properties.blue-light();
47
67
  }
48
-
49
- &.size14 {
50
- @include properties.size-14();
51
- }
52
-
53
- &.size16 {
54
- @include properties.size-16();
55
- }
56
-
57
- &.size20 {
58
- @include properties.size-20();
59
- }
60
-
61
- &.size24 {
62
- @include properties.size-24();
63
- }
64
-
65
- &.size28 {
66
- @include properties.size-28();
67
- }
68
68
  }
69
69
  }
@@ -2,7 +2,7 @@
2
2
 
3
3
  @mixin color-fill() {
4
4
  background: var(--base-white);
5
- box-shadow: 0 0 0 1px var(--blue-dark-200);
5
+ border: 1px solid var(--blue-dark-200);
6
6
  @include modify-svg($stroke: var(--blue-dark-500));
7
7
 
8
8
  &:hover {
@@ -2,7 +2,7 @@
2
2
 
3
3
  @mixin gray-fill() {
4
4
  background: var(--base-white);
5
- box-shadow: 0 0 0 1px var(--gray-300);
5
+ border: 1px solid var(--gray-300);
6
6
  @include modify-svg($stroke: var(--gray-700));
7
7
 
8
8
  &:hover {
@@ -8,4 +8,5 @@
8
8
  background-color: var(--gray-200);
9
9
  @include modify-svg($stroke: var(--gray-600));
10
10
  }
11
+
11
12
  }
@@ -2,7 +2,7 @@
2
2
 
3
3
  @mixin red-fill() {
4
4
  background: var(--base-white);
5
- box-shadow: 0 0 0 1px var(--error-300);
5
+ border: 1px solid var(--error-300);
6
6
  @include modify-svg($stroke: var(--error-500));
7
7
 
8
8
  &:hover {
@@ -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) => import("react").ReactNode[];
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>>)[];
4
4
  export default formBuilder;
@@ -11,4 +11,5 @@ export type SlideTransitionPropsType = {
11
11
  animation?: SlideTransitionAnimationType;
12
12
  animationOptions?: SlideTransitionAnimationOptionsType;
13
13
  additionStyles?: string | string[];
14
+ additionStylesContent?: string | string[];
14
15
  };
@@ -20,4 +20,4 @@ import { SlideTransitionPropsType } from '../types';
20
20
  * Учтите, что анимации **"снизу"** сужают компонент, поэтому он будет деформироваться.
21
21
  * При высокой (автор проводил тесты на 300ms) скорости анимации это незаметно (если вы не Флеш).
22
22
  * */
23
- export declare function SlideTransition({ children, animation, additionStyles, animationOptions }: SlideTransitionPropsType): import("react/jsx-runtime").JSX.Element;
23
+ export declare function SlideTransition({ children, animation, additionStyles, additionStylesContent, animationOptions }: SlideTransitionPropsType): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indicator-ui",
3
- "version": "0.0.93",
3
+ "version": "0.0.94",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/src/index.d.ts",
6
6
  "style": "dist/index.css",