@common-origin/design-system 1.8.2 → 1.8.4

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": "@common-origin/design-system",
3
- "version": "1.8.2",
3
+ "version": "1.8.4",
4
4
  "description": "Common Origin Design System - Atomic design components with comprehensive WCAG 2.2 AA testing",
5
5
  "private": false,
6
6
  "type": "module",
@@ -1,26 +0,0 @@
1
- import React from 'react';
2
- export interface SectionSeparatorProps {
3
- /** Variant style of the separator */
4
- variant?: 'default' | 'strong' | 'minimal';
5
- /** Size variation affecting spacing */
6
- size?: 'small' | 'medium' | 'large' | 'xlarge';
7
- /** Data test id for testing */
8
- 'data-testid'?: string;
9
- }
10
- /**
11
- * SectionSeparator is an atomic component that provides visual separation between content sections.
12
- *
13
- * Features:
14
- * - Multiple variants (default, strong, minimal)
15
- * - Size variations for different spacing needs
16
- * - Semantic token usage for consistent styling
17
- * - Full accessibility support
18
- *
19
- * @example
20
- * ```tsx
21
- * <SectionSeparator />
22
- * <SectionSeparator variant="strong" size="xlarge" />
23
- * <SectionSeparator variant="minimal" />
24
- * ```
25
- */
26
- export declare const SectionSeparator: React.FC<SectionSeparatorProps>;
@@ -1 +0,0 @@
1
- export * from './SectionSeparator';