indicator-ui 0.0.40 → 0.0.42
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/index.css +14 -8
- package/dist/index.css.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/scss/ui/InputFields/FlexField/styles/mixins/flexField.scss +2 -1
- package/dist/scss/ui/InputFields/TextareaField/styles/mixin/textareaField.scss +2 -1
- package/dist/types/src/ui/FormBuilder/lib/formBuilder.d.ts +1 -1
- package/dist/types/src/ui/SlideTransition/types/AnimateDropTypes.d.ts +1 -0
- package/dist/types/src/ui/SlideTransition/ui/SlideTransition.d.ts +1 -1
- package/package.json +1 -1
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
border-radius: 8px;
|
|
13
13
|
gap: 12px;
|
|
14
14
|
background-color: var(--base-white);
|
|
15
|
-
|
|
15
|
+
border: 1px solid var(--gray-300);
|
|
16
|
+
box-shadow: 0 1px 2px 0 #1018280D;
|
|
16
17
|
box-sizing: border-box;
|
|
17
18
|
|
|
18
19
|
.inputField {
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
padding: 10px 12px;
|
|
12
12
|
|
|
13
13
|
background-color: var(--base-white);
|
|
14
|
-
|
|
14
|
+
border: 1px solid var(--gray-300);
|
|
15
|
+
box-shadow: 0 1px 2px 0 #1018280D;
|
|
15
16
|
|
|
16
17
|
@include fnt($size: 16, $line-height: 24, $weight: 400, $color: var(--gray-900));
|
|
17
18
|
|
|
@@ -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;
|
|
@@ -16,4 +16,4 @@ import { SlideTransitionPropsType } from '../types';
|
|
|
16
16
|
* Учтите, что анимации **"снизу"** сужают компонент, поэтому он будет деформироваться.
|
|
17
17
|
* При высокой (автор проводил тесты на 300ms) скорости анимации это незаметно (если вы не Флеш).
|
|
18
18
|
* */
|
|
19
|
-
export declare function SlideTransition({ children, animation, animationOptions }: SlideTransitionPropsType): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export declare function SlideTransition({ children, animation, additionStyles, animationOptions }: SlideTransitionPropsType): import("react/jsx-runtime").JSX.Element;
|