-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
261 changed files
with
2,686 additions
and
1,187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# @wpmudev/sui-react | ||
|
||
## 0.0.1 | ||
|
||
### Patch Changes | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# `@wpmudev/compound-elements` | ||
# `@wpmudev/sui-advanced` | ||
|
||
> TODO: description | ||
## Usage | ||
|
||
``` | ||
const compoundElements = require('@wpmudev/compound-elements'); | ||
const advanced = require('@wpmudev/sui-advanced'); | ||
// TODO: DEMONSTRATE API | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
"use strict" | ||
|
||
const compoundElements = require("../src") | ||
|
||
describe("@wpmudev/sui-advanced", () => { | ||
it("needs tests") | ||
}) | ||
describe("@wpmudev/sui-advanced", () => {}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"name": "@wpmudev/sui-advanced", | ||
"version": "0.0.0", | ||
"description": "WPMU DEV Shared UI React sub-package for compound elements", | ||
"version": "0.0.1", | ||
"description": "WPMU DEV Shared UI React sub-package for advanced elements", | ||
"keywords": [], | ||
"author": "WPMU DEV (https://wpmudev.com)", | ||
"contributors": [ | ||
{ | ||
"name": "Leighton Sapir", | ||
"email": "[email protected].com", | ||
"url": "https://iamleigh.com" | ||
"name": "Govind Kumar", | ||
"email": "gkprmr@gmail.com", | ||
"url": "https://govind.js.org/" | ||
} | ||
], | ||
"license": "GPL-2.0", | ||
|
@@ -29,8 +29,8 @@ | |
"directory": "packages/compound-elements" | ||
}, | ||
"scripts": { | ||
"clean" : "rm -rf dist && rm -rf lib", | ||
"build" : "npx tsup", | ||
"clean": "rm -rf dist && rm -rf lib", | ||
"build": "npx tsup", | ||
"build:fast": "npx tsup src", | ||
"dev": "npm build:fast -- --watch", | ||
"prepack": "clean-package", | ||
|
@@ -41,7 +41,32 @@ | |
}, | ||
"homepage": "https://github.com/wpmudev/sui-react#readme", | ||
"dependencies": { | ||
"@wpmudev/sui-dropdown": "^0.0.0", | ||
"@wpmudev/sui-notification": "^0.0.0" | ||
"@wpmudev/sui-accordion": "*", | ||
"@wpmudev/sui-code-editor": "*", | ||
"@wpmudev/sui-code-snippet": "*", | ||
"@wpmudev/sui-color-picker": "*", | ||
"@wpmudev/sui-date-picker": "*", | ||
"@wpmudev/sui-dropdown": "*", | ||
"@wpmudev/sui-empty-state": "*", | ||
"@wpmudev/sui-field-password": "*", | ||
"@wpmudev/sui-modal": "*", | ||
"@wpmudev/sui-notification": "*", | ||
"@wpmudev/sui-progress-bar": "*", | ||
"@wpmudev/sui-select": "*", | ||
"@wpmudev/sui-sidebar": "*", | ||
"@wpmudev/sui-summary-box": "*", | ||
"@wpmudev/sui-tabs": "*", | ||
"@wpmudev/sui-tree-view": "*", | ||
"@wpmudev/sui-uploader": "*", | ||
"@wpmudev/sui-field-list": "*", | ||
"@wpmudev/sui-recipient": "*", | ||
"@wpmudev/sui-rich-text-editor": "*", | ||
"@wpmudev/sui-advanced-banner": "*", | ||
"@wpmudev/sui-builder": "*", | ||
"@wpmudev/sui-editor-toolbar": "*", | ||
"@wpmudev/sui-pagination": "*", | ||
"@wpmudev/sui-search": "*", | ||
"@wpmudev/sui-basic-box": "*", | ||
"@wpmudev/sui-setting-block": "*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,57 @@ | ||
// Import compound modules | ||
export { Dropdown } from "@wpmudev/sui-dropdown" | ||
export { Notification } from "@wpmudev/sui-notification" | ||
import * as Accordion from "@wpmudev/sui-accordion" | ||
import * as CodeEditor from "@wpmudev/sui-code-editor" | ||
import * as CodeSnippet from "@wpmudev/sui-code-snippet" | ||
import * as ColorPicker from "@wpmudev/sui-color-picker" | ||
import * as DatePicker from "@wpmudev/sui-date-picker" | ||
import * as Dropdown from "@wpmudev/sui-dropdown" | ||
import * as EmptyState from "@wpmudev/sui-empty-state" | ||
import * as FieldPassword from "@wpmudev/sui-field-password" | ||
import * as Modal from "@wpmudev/sui-modal" | ||
import * as Notification from "@wpmudev/sui-notification" | ||
import * as ProgressBar from "@wpmudev/sui-progress-bar" | ||
import * as Select from "@wpmudev/sui-select" | ||
import * as Sidebar from "@wpmudev/sui-sidebar" | ||
import * as SummaryBox from "@wpmudev/sui-summary-box" | ||
import * as Tabs from "@wpmudev/sui-tabs" | ||
import * as TreeView from "@wpmudev/sui-tree-view" | ||
import * as Uploader from "@wpmudev/sui-uploader" | ||
import * as FieldList from "@wpmudev/sui-field-list" | ||
import * as Recipient from "@wpmudev/sui-recipient" | ||
import * as RichTextEditor from "@wpmudev/sui-rich-text-editor" | ||
import * as AdvancedBanner from "@wpmudev/sui-advanced-banner" | ||
import * as Builder from "@wpmudev/sui-builder" | ||
import * as EditorToolbar from "@wpmudev/sui-editor-toolbar" | ||
import * as Pagination from "@wpmudev/sui-pagination" | ||
import * as Search from "@wpmudev/sui-search" | ||
import * as BasicBox from "@wpmudev/sui-basic-box" | ||
import * as SettingBlock from "@wpmudev/sui-setting-block" | ||
|
||
export { | ||
Accordion, | ||
CodeEditor, | ||
CodeSnippet, | ||
ColorPicker, | ||
DatePicker, | ||
Dropdown, | ||
EmptyState, | ||
FieldPassword, | ||
Modal, | ||
Notification, | ||
ProgressBar, | ||
Select, | ||
Sidebar, | ||
SummaryBox, | ||
Tabs, | ||
TreeView, | ||
Uploader, | ||
FieldList, | ||
Recipient, | ||
RichTextEditor, | ||
AdvancedBanner, | ||
Builder, | ||
EditorToolbar, | ||
Pagination, | ||
Search, | ||
BasicBox, | ||
SettingBlock, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# `@wpmudev/simple-elements` | ||
# `@wpmudev/sui-collections` | ||
|
||
> TODO: description | ||
## Usage | ||
|
||
``` | ||
const simpleElements = require('@wpmudev/simple-elements'); | ||
const collections = require('@wpmudev/sui-collections'); | ||
// TODO: DEMONSTRATE API | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
"use strict" | ||
|
||
const simpleElements = require("../lib/simple-elements") | ||
|
||
describe("@wpmudev/simple-elements", () => { | ||
it("needs tests") | ||
}) | ||
describe("@wpmudev/simple-elements", () => {}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"name": "@wpmudev/sui-collections", | ||
"version": "0.0.0", | ||
"description": "WPMU DEV Shared UI React sub-package for simple elements", | ||
"version": "0.0.1", | ||
"description": "WPMU DEV Shared UI React sub-package for collections components", | ||
"keywords": [], | ||
"author": "WPMU DEV (https://wpmudev.com)", | ||
"contributors": [ | ||
{ | ||
"name": "Leighton Sapir", | ||
"email": "[email protected].com", | ||
"url": "https://iamleigh.com" | ||
"name": "Govind Kumar", | ||
"email": "gkprmr@gmail.com", | ||
"url": "https://govind.js.org/" | ||
} | ||
], | ||
"license": "GPL-2.0", | ||
|
@@ -29,8 +29,8 @@ | |
"directory": "packages/simple-elements" | ||
}, | ||
"scripts": { | ||
"clean" : "rm -rf dist && rm -rf lib", | ||
"build" : "npx tsup", | ||
"clean": "rm -rf dist && rm -rf lib", | ||
"build": "npx tsup", | ||
"build:fast": "npx tsup src", | ||
"dev": "npm build:fast -- --watch", | ||
"prepack": "clean-package", | ||
|
@@ -41,8 +41,10 @@ | |
}, | ||
"homepage": "https://github.com/wpmudev/sui-react#readme", | ||
"dependencies": { | ||
"@wpmudev/sui-avatar": "^0.0.0", | ||
"@wpmudev/sui-button": "^0.0.0", | ||
"@wpmudev/sui-tag": "^0.0.0" | ||
"@wpmudev/sui-footer": "*", | ||
"@wpmudev/sui-config-table": "*", | ||
"@wpmudev/sui-setup-banner": "*", | ||
"@wpmudev/sui-upsell": "*", | ||
"@wpmudev/sui-upsell-notice": "*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,7 @@ | ||
// Import core modules | ||
import { Button, LoadingButton, ToggleButton } from "@wpmudev/sui-button" | ||
// import { IconButton, LoadingIconButton } from "@wpmudev/sui-icon-button" | ||
import { Avatar } from "@wpmudev/sui-avatar" | ||
import { Tag } from "@wpmudev/sui-tag" | ||
import * as Footer from "@wpmudev/sui-footer" | ||
import * as ConfigTable from "@wpmudev/sui-config-table" | ||
import * as SetupBanner from "@wpmudev/sui-setup-banner" | ||
import * as Upsell from "@wpmudev/sui-upsell" | ||
import * as UpsellNotice from "@wpmudev/sui-upsell-notice" | ||
|
||
// Publish core modules | ||
export { | ||
Button, | ||
LoadingButton, | ||
ToggleButton, | ||
// IconButton, | ||
// LoadingIconButton, | ||
Avatar, | ||
Tag, | ||
} | ||
export { Footer, ConfigTable, SetupBanner, Upsell, UpsellNotice } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# `@wpmudev/core-elements` | ||
# `@wpmudev/sui-core` | ||
|
||
> TODO: description | ||
## Usage | ||
|
||
``` | ||
const coreElements = require('@wpmudev/core-elements'); | ||
const core = require('@wpmudev/sui-core'); | ||
// TODO: DEMONSTRATE API | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
"use strict" | ||
|
||
const coreElements = require("../lib/core-elements") | ||
|
||
describe("@wpmudev/core-elements", () => { | ||
it("needs tests") | ||
}) | ||
describe("@wpmudev/core-elements", () => {}) |
Oops, something went wrong.