Shuffle
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "cyberduck",
|
"name": "cyberduck",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "1.0.2",
|
"version": "1.1.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://git.maze.io/maze/cyberduck.git"
|
"url": "git+https://git.maze.io/maze/cyberduck.git"
|
||||||
@@ -84,11 +84,6 @@
|
|||||||
"lint-staged": "^16.3.2",
|
"lint-staged": "^16.3.2",
|
||||||
"postcss-scss": "^4.0.9",
|
"postcss-scss": "^4.0.9",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.1",
|
||||||
"react": "^19.2.4",
|
|
||||||
"react-bootstrap": "^2.10.10",
|
|
||||||
"react-dom": "^19.2.4",
|
|
||||||
"react-router": "^7.13.1",
|
|
||||||
"react-router-dom": "^7.13.1",
|
|
||||||
"sass": "^1.97.3",
|
"sass": "^1.97.3",
|
||||||
"stylelint": "^17.4.0",
|
"stylelint": "^17.4.0",
|
||||||
"stylelint-config-standard-scss": "^17.0.0",
|
"stylelint-config-standard-scss": "^17.0.0",
|
||||||
|
|||||||
18
src/index.ts
18
src/index.ts
@@ -1,8 +1,16 @@
|
|||||||
// Library entry: re-export key components and include styles
|
import Navbar from './components/Navbar'
|
||||||
export { default as Navbar } from './components/Layout/Navbar'
|
import Footer from './components/Footer'
|
||||||
export { default as Footer } from './components/Layout/Footer'
|
import Layout from './components/Layout'
|
||||||
export { default as Layout } from './components/Layout/Layout'
|
import Split from './components/Split'
|
||||||
export { default as Split } from './components/Layout/Split'
|
|
||||||
|
export const CyberDuck = {
|
||||||
|
Navbar,
|
||||||
|
Layout,
|
||||||
|
Split,
|
||||||
|
Footer
|
||||||
|
}
|
||||||
|
|
||||||
|
export default CyberDuck
|
||||||
|
|
||||||
// Styles are optional — consumers can import the CSS or SCSS themselves:
|
// Styles are optional — consumers can import the CSS or SCSS themselves:
|
||||||
// import 'cyberduck/css'
|
// import 'cyberduck/css'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import Layout from '../components/Layout/Layout'
|
import Layout from '../components/Layout'
|
||||||
import Split from '../components/Layout/Split'
|
import Split from '../components/Split'
|
||||||
|
|
||||||
export default function LayoutHorizontal() {
|
export default function LayoutHorizontal() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import Layout from '../components/Layout/Layout'
|
import Layout from '../components/Layout'
|
||||||
import Split from '../components/Layout/Split'
|
import Split from '../components/Split'
|
||||||
|
|
||||||
export default function LayoutShowcase() {
|
export default function LayoutShowcase() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import Layout from '../components/Layout/Layout'
|
import Layout from '../components/Layout'
|
||||||
import Split from '../components/Layout/Split'
|
import Split from '../components/Split'
|
||||||
|
|
||||||
export default function LayoutVertical() {
|
export default function LayoutVertical() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
Reference in New Issue
Block a user