@designbasekorea/wordpress-ui 0.1.5 → 0.1.6
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 +158 -128
- package/dist/browser.cjs +1 -1
- package/dist/browser.d.ts +7 -1
- package/dist/browser.esm.js +1 -1
- package/dist/browser.iife.js +1 -1
- package/dist/components.cjs +1 -1
- package/dist/components.d.ts +6 -0
- package/dist/components.esm.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.esm.js +1 -1
- package/dist/react/index.cjs +1 -1
- package/dist/react/index.d.ts +24 -1
- package/dist/react/index.esm.js +1 -1
- package/dist/styles/controls.css +1 -1
- package/dist/styles/shell.css +1 -1
- package/dist/styles.css +1 -1
- package/docs/WORDPRESS-ADMIN-GUIDE.md +94 -95
- package/examples/vanilla.html +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -117,8 +117,14 @@ declare class DbAdminShell extends HTMLElement {
|
|
|
117
117
|
attributeChangedCallback(): void;
|
|
118
118
|
private captureOriginalChildren;
|
|
119
119
|
private getOriginalElements;
|
|
120
|
+
private getBrandLabel;
|
|
120
121
|
private getSidebarItems;
|
|
121
122
|
private getSidebarSections;
|
|
123
|
+
/**
|
|
124
|
+
* 플러그인명은 사이드바 로고 슬롯에 둡니다. `sections`가 브랜드명과 같은
|
|
125
|
+
* 단일 그룹만 감싸고 있으면 섹션 제목 없이 `items`로 펼칩니다.
|
|
126
|
+
*/
|
|
127
|
+
private resolveSidebarNav;
|
|
122
128
|
private createBrand;
|
|
123
129
|
private createSidebar;
|
|
124
130
|
private createPageHeader;
|
|
@@ -145,7 +151,7 @@ declare global {
|
|
|
145
151
|
/** Components registered by the React-free browser entry. */
|
|
146
152
|
declare const REGISTERED_COMPONENTS: (typeof DbAccordion | typeof DbAdminShell | typeof DbAnimationBackground | typeof DbAlert | typeof DbAvatar | typeof DbBadge | typeof DbBanner | typeof DbBreadcrumbs | typeof DbButton | typeof DbCheckbox | typeof DbChip | typeof DbDrawer | typeof DbDropdown | typeof DbContainer | typeof DbEmptyState | typeof DbInput | typeof DbLogo | typeof DbMenuItem | typeof DbModal | typeof DbPageHeader | typeof DbPagination | typeof DbRadio | typeof DbSearchBar | typeof DbSection | typeof DbSegmentControl | typeof DbSelect | typeof DbSidebar | typeof DbSkeleton | typeof DbSpinner | typeof DbTable | typeof DbTabs | typeof DbTextarea | typeof DbToast | typeof DbToggle)[];
|
|
147
153
|
|
|
148
|
-
declare const WORDPRESS_UI_VERSION = "0.1.
|
|
154
|
+
declare const WORDPRESS_UI_VERSION = "0.1.6";
|
|
149
155
|
|
|
150
156
|
export { DbAdminShell, REGISTERED_COMPONENTS, WORDPRESS_UI_VERSION };
|
|
151
157
|
export type { AdminBreadcrumb, AdminNavItem, AdminTab, AdminTableColumn, AdminTableSort };
|