@croquiscom/pds 4.1.5 → 4.2.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 +12 -0
- package/assets/icons/CircleWarningFillBold.svg +5 -0
- package/dist/components/button/Button.stories.d.ts +2 -0
- package/dist/components/checkbox/CheckboxGroup.stories.d.ts +1 -0
- package/dist/components/icons/generated/CircleWarningFillBold.d.ts +4 -0
- package/dist/components/icons/generated/index.d.ts +1 -0
- package/dist/foundation/shapes.d.ts +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,7 +8,9 @@ export declare const Secondary: any;
|
|
|
8
8
|
export declare const Black: any;
|
|
9
9
|
export declare const Negative: any;
|
|
10
10
|
export declare const StartIcon: any;
|
|
11
|
+
export declare const StartIconWithColor: any;
|
|
11
12
|
export declare const EndIcon: any;
|
|
13
|
+
export declare const EndIconWithColor: any;
|
|
12
14
|
export declare const Loading: any;
|
|
13
15
|
export declare const FullWidth: any;
|
|
14
16
|
export declare const Focus: ComponentStory<typeof Button>;
|
|
@@ -80,6 +80,7 @@ export { default as IconCircleQuestion } from './CircleQuestion';
|
|
|
80
80
|
export { default as IconCircleTikTok } from './CircleTikTok';
|
|
81
81
|
export { default as IconCircleWarning } from './CircleWarning';
|
|
82
82
|
export { default as IconCircleWarningFill } from './CircleWarningFill';
|
|
83
|
+
export { default as IconCircleWarningFillBold } from './CircleWarningFillBold';
|
|
83
84
|
export { default as IconCircleWon } from './CircleWon';
|
|
84
85
|
export { default as IconCircleXFill } from './CircleXFill';
|
|
85
86
|
export { default as IconCircleYouTube } from './CircleYouTube';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type CornerRadiusSize = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
|
|
1
|
+
export type CornerRadiusSize = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'full';
|
|
2
2
|
export type ShadowScale = 'low' | 'medium' | 'high';
|
|
3
3
|
interface Shapes {
|
|
4
4
|
border_radius: Record<CornerRadiusSize, string>;
|