@sesamehr/react-design-system 2.0.0-beta.2 → 2.0.0-beta.3
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/README.md +34 -0
- package/dist/Data/Table/hooks/useDragToScroll/useDragToScroll.d.ts +12 -2
- package/dist/Display/Badge/Badge.d.ts +3 -2
- package/dist/Display/Badge/index.d.ts +10 -1
- package/dist/Display/ChatBubble/ChatBubble.d.ts +11 -0
- package/dist/Display/ChatBubble/ChatBubbleStatus/ChatBubbleStatus.d.ts +8 -0
- package/dist/Display/ChatBubble/ChatBubbleStatus/index.d.ts +10 -0
- package/dist/Display/ChatBubble/index.d.ts +13 -0
- package/dist/Display/Chip/Chip.d.ts +14 -4
- package/dist/Display/Chip/index.d.ts +14 -10
- package/dist/Forms/Field/Counter/Counter.d.ts +9 -0
- package/dist/Forms/Field/Counter/index.d.ts +13 -0
- package/dist/lib/cssModules.d.ts +13 -0
- package/dist/main.d.ts +3 -1
- package/dist/preflight.css +391 -0
- package/dist/react-design-system.css +1 -1
- package/dist/react-design-system.js +5450 -5236
- package/dist/react-design-system.umd.cjs +55 -45
- package/package.json +1 -1
- package/dist/Display/Tag/Tag.d.ts +0 -19
- package/dist/Display/Tag/index.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export interface TagProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'type'> {
|
|
2
|
-
/**
|
|
3
|
-
* Whether it is picked.
|
|
4
|
-
*
|
|
5
|
-
* Tags get used the way tabs are — press one and it stays down — so this is
|
|
6
|
-
* a state the caller owns and tells us about, not something the browser
|
|
7
|
-
* knows. It is also what `aria-pressed` reports.
|
|
8
|
-
*/
|
|
9
|
-
active?: boolean;
|
|
10
|
-
/**
|
|
11
|
-
* Whether it is being dragged.
|
|
12
|
-
*
|
|
13
|
-
* The only other state with nothing in CSS to hang it on.
|
|
14
|
-
*/
|
|
15
|
-
dragged?: boolean;
|
|
16
|
-
dataTestid: string;
|
|
17
|
-
}
|
|
18
|
-
/** Tag — mirrors `@sesame/orxata-core` Tag. */
|
|
19
|
-
export declare const Tag: import('react').ForwardRefExoticComponent<TagProps & import('react').RefAttributes<HTMLButtonElement>>;
|