@proprioo/salatim 35.13.1 → 36.0.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/CHANGELOG.md +15 -1
- package/lib/energy/src/Energy.styles.d.ts +3 -3
- package/lib/forms/src/errorForm/ErrorFormLayout.d.ts +3 -2
- package/lib/index.js +969 -975
- package/lib/index.js.map +1 -1
- package/lib/ui/src/card/Card.interfaces.d.ts +2 -1
- package/lib/ui/src/gmapsGeocode/GmapsGeocode.d.ts +0 -1
- package/lib/ui/src/loader/Loader.styles.d.ts +2 -2
- package/lib/ui/src/paragraph/Paragraph.d.ts +7 -0
- package/lib/utils/src/test-utils.d.ts +1 -1
- package/package.json +35 -30
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
**36.0.0**
|
|
2
|
+
|
|
3
|
+
**BREAKING CHANGE** bumping of most of the major packages
|
|
4
|
+
* Storybook to v8 + new stories format
|
|
5
|
+
* React to v19
|
|
6
|
+
|
|
7
|
+
**35.13.2**
|
|
8
|
+
|
|
9
|
+
* Feat(Phone): add Oman
|
|
2
10
|
|
|
3
11
|
**35.13.1**
|
|
4
12
|
|
|
@@ -2615,3 +2623,9 @@
|
|
|
2615
2623
|
**1.1.0**
|
|
2616
2624
|
|
|
2617
2625
|
* Release with Button, Checkbox, Input, Radio and Title components.
|
|
2626
|
+
|
|
2627
|
+
## [Unreleased]
|
|
2628
|
+
|
|
2629
|
+
### Changed
|
|
2630
|
+
|
|
2631
|
+
- Updated Storybook PostCSS configuration to use @storybook/addon-postcss with explicit plugins (postcss-flexbugs-fixes and autoprefixer) to address deprecation warning
|
|
@@ -5,9 +5,9 @@ export declare const BlankEPC: import("styled-components").StyledComponent<"span
|
|
|
5
5
|
export declare const EPCBackground: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
6
|
export declare const LetterWrapper: import("styled-components").StyledComponent<"span", any, {
|
|
7
7
|
background: string;
|
|
8
|
-
isMainScore?: boolean
|
|
9
|
-
letterSize?: number
|
|
10
|
-
pos?: number
|
|
8
|
+
isMainScore?: boolean;
|
|
9
|
+
letterSize?: number;
|
|
10
|
+
pos?: number;
|
|
11
11
|
}, never>;
|
|
12
12
|
export declare const DetailTitle: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
13
13
|
export declare const ValueWrapper: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { FC,
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
2
|
type ErrorFormLayoutProps = {
|
|
3
3
|
dataTest: string;
|
|
4
|
+
children: ReactNode;
|
|
4
5
|
};
|
|
5
|
-
export declare const ErrorFormLayout: FC<
|
|
6
|
+
export declare const ErrorFormLayout: FC<ErrorFormLayoutProps>;
|
|
6
7
|
export {};
|