@croquiscom/pds 0.7.1 → 0.8.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/CircleMinus14.svg +11 -0
- package/dist/icons/generated/CircleMinus14.d.ts +3 -0
- package/dist/icons/generated/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/textarea/Textarea.d.ts +9 -0
- package/dist/textarea/Textarea.stories.d.ts +10 -0
- package/dist/textarea/index.d.ts +1 -0
- package/dist/textarea/styles.d.ts +20 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_10054_24163)">
|
|
3
|
+
<rect x="0.5" y="0.5" width="13" height="13" rx="6.5" stroke="#363644"/>
|
|
4
|
+
<rect x="3.73355" y="6.53333" width="6.53333" height="0.933333" fill="#363644"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_10054_24163">
|
|
8
|
+
<rect width="14" height="14" fill="white"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -45,6 +45,7 @@ export { default as IconCheck24 } from './Check24';
|
|
|
45
45
|
export { default as IconCircleCard24 } from './CircleCard24';
|
|
46
46
|
export { default as IconCircleCheckFill16 } from './CircleCheckFill16';
|
|
47
47
|
export { default as IconCircleCheckLine16 } from './CircleCheckLine16';
|
|
48
|
+
export { default as IconCircleMinus14 } from './CircleMinus14';
|
|
48
49
|
export { default as IconCirclePlus14 } from './CirclePlus14';
|
|
49
50
|
export { default as IconCircleWon18 } from './CircleWon18';
|
|
50
51
|
export { default as IconCircleWon24 } from './CircleWon24';
|
package/dist/index.d.ts
CHANGED