@sellmate/design-system-react 1.0.0 → 1.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/dist/index.d.ts +1 -1
- package/lib/index.ts +32 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export * from './components/components.js';
|
|
2
2
|
export { defineCustomElements } from '@sellmate/design-system/loader';
|
|
3
|
-
export type { SdTableSortDir, SdTableColumn, Row as SdTableRow, } from '@sellmate/design-system';
|
|
3
|
+
export type { SdTableSortDir, SdTableColumn, Row as SdTableRow, SelectOption, SelectOptionGroup, SelectEvents, SelectMultipleEvents, SelectStyleProps, RadioValue, RadioOption, ButtonVariant, ButtonSize, Rule, ValidatableField, SdModalCardButtonProps, SdTooltipProps, TagColor, TagSize, ToastType, CheckedType, Type as DateBoxType, TabOption, } from '@sellmate/design-system';
|
package/lib/index.ts
CHANGED
|
@@ -3,9 +3,40 @@
|
|
|
3
3
|
export * from './components/components.js';
|
|
4
4
|
export { defineCustomElements } from '@sellmate/design-system/loader';
|
|
5
5
|
|
|
6
|
-
// Export
|
|
6
|
+
// Export commonly used types for React usage
|
|
7
7
|
export type {
|
|
8
|
+
// Table types
|
|
8
9
|
SdTableSortDir,
|
|
9
10
|
SdTableColumn,
|
|
10
11
|
Row as SdTableRow,
|
|
12
|
+
// Select types
|
|
13
|
+
SelectOption,
|
|
14
|
+
SelectOptionGroup,
|
|
15
|
+
SelectEvents,
|
|
16
|
+
SelectMultipleEvents,
|
|
17
|
+
SelectStyleProps,
|
|
18
|
+
// Radio types
|
|
19
|
+
RadioValue,
|
|
20
|
+
RadioOption,
|
|
21
|
+
// Button types
|
|
22
|
+
ButtonVariant,
|
|
23
|
+
ButtonSize,
|
|
24
|
+
// Form types
|
|
25
|
+
Rule,
|
|
26
|
+
ValidatableField,
|
|
27
|
+
// Modal types
|
|
28
|
+
SdModalCardButtonProps,
|
|
29
|
+
// Tooltip types
|
|
30
|
+
SdTooltipProps,
|
|
31
|
+
// Tag types
|
|
32
|
+
TagColor,
|
|
33
|
+
TagSize,
|
|
34
|
+
// Toast types
|
|
35
|
+
ToastType,
|
|
36
|
+
// Checkbox types
|
|
37
|
+
CheckedType,
|
|
38
|
+
// Date types
|
|
39
|
+
Type as DateBoxType,
|
|
40
|
+
// Tab types
|
|
41
|
+
TabOption,
|
|
11
42
|
} from '@sellmate/design-system';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellmate/design-system-react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Design System - React Component Wrappers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"rimraf": "^6.0.1",
|
|
69
69
|
"typescript": "^5.9.3"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "ae544f9699f123d0b3c2a2077018863ca9fb4af5"
|
|
72
72
|
}
|