@croquiscom/pds 2.8.1 → 3.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@croquiscom/pds",
3
- "version": "2.8.1",
3
+ "version": "3.0.1",
4
4
  "description": "Design system for Zigzag's Partner Center",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.es.js",
@@ -1,12 +0,0 @@
1
- import React, { ButtonHTMLAttributes } from 'react';
2
- export interface DrawerCloseButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
3
- /**
4
- * @default 24
5
- */
6
- size?: number;
7
- /**
8
- * @default semantic_colors.content.tertiary
9
- */
10
- color?: string;
11
- }
12
- export declare const DrawerCloseButton: React.ForwardRefExoticComponent<DrawerCloseButtonProps & React.RefAttributes<HTMLButtonElement>>;