@croquiscom/pds 0.15.0 → 0.16.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 +11 -0
- package/assets/icons/InfoFill20.svg +12 -0
- package/dist/divider/Divider.d.ts +1 -3
- package/dist/icons/generated/InfoFill20.d.ts +4 -0
- package/dist/icons/generated/index.d.ts +1 -0
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/menu/Menu.d.ts +4 -0
- package/dist/menu/Menu.stories.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_10575_29591)">
|
|
3
|
+
<circle cx="10" cy="10" r="10" fill="#363644"/>
|
|
4
|
+
<path d="M10.9999 15H8.99988V9H10.9999V15Z" fill="white"/>
|
|
5
|
+
<path d="M10.9999 7.00002H8.99988V5.00002H10.9999V7.00002Z" fill="white"/>
|
|
6
|
+
</g>
|
|
7
|
+
<defs>
|
|
8
|
+
<clipPath id="clip0_10575_29591">
|
|
9
|
+
<rect width="20" height="20" fill="white"/>
|
|
10
|
+
</clipPath>
|
|
11
|
+
</defs>
|
|
12
|
+
</svg>
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { SpaceProps } from '../styles';
|
|
3
3
|
import { CSSValueWithLength } from '../styles/buildCSSWithLength';
|
|
4
|
-
declare type orientation = 'horizontal' | 'vertical';
|
|
5
4
|
export interface DividerProps extends SpaceProps {
|
|
6
|
-
|
|
5
|
+
/** @default 'horizontal' */
|
|
7
6
|
spacing?: CSSValueWithLength;
|
|
8
7
|
}
|
|
9
8
|
export declare const Divider: import("@emotion/styled").StyledComponent<{
|
|
10
9
|
theme?: import("@emotion/react").Theme;
|
|
11
10
|
as?: import("react").ElementType<any>;
|
|
12
11
|
} & DividerProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>, {}>;
|
|
13
|
-
export {};
|
|
@@ -93,6 +93,7 @@ export { default as IconIndentArrow14 } from './IndentArrow14';
|
|
|
93
93
|
export { default as IconInfo14 } from './Info14';
|
|
94
94
|
export { default as IconInfo16 } from './Info16';
|
|
95
95
|
export { default as IconInfo24 } from './Info24';
|
|
96
|
+
export { default as IconInfoFill20 } from './InfoFill20';
|
|
96
97
|
export { default as IconInterest16 } from './Interest16';
|
|
97
98
|
export { default as IconLife72 } from './Life72';
|
|
98
99
|
export { default as IconLink16 } from './Link16';
|