@designbasekorea/wordpress-ui 0.1.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.
Binary file
Binary file
package/dist/index.cjs ADDED
@@ -0,0 +1 @@
1
+ "use strict";exports.WORDPRESS_UI_VERSION="0.1.0";
@@ -0,0 +1,34 @@
1
+ interface AdminNavItem {
2
+ id: string;
3
+ label: string;
4
+ href?: string;
5
+ icon?: string;
6
+ active?: boolean;
7
+ disabled?: boolean;
8
+ badge?: string | number;
9
+ }
10
+ interface AdminBreadcrumb {
11
+ label: string;
12
+ href?: string;
13
+ }
14
+ interface AdminTab {
15
+ id: string;
16
+ label: string;
17
+ disabled?: boolean;
18
+ }
19
+ interface AdminTableSort {
20
+ column: string;
21
+ direction: 'asc' | 'desc';
22
+ }
23
+ interface AdminTableColumn<Row> {
24
+ id: string;
25
+ header: string;
26
+ key?: keyof Row;
27
+ sortable?: boolean;
28
+ width?: string;
29
+ }
30
+
31
+ declare const WORDPRESS_UI_VERSION = "0.1.0";
32
+
33
+ export { WORDPRESS_UI_VERSION };
34
+ export type { AdminBreadcrumb, AdminNavItem, AdminTab, AdminTableColumn, AdminTableSort };
@@ -0,0 +1 @@
1
+ const o="0.1.0";export{o as WORDPRESS_UI_VERSION};