├── .vscode
└── settings.json
├── pnpm-workspace.yaml
├── .gitattributes
├── .gitignore
├── packages
├── react-device-frameset-example
│ ├── .gitignore
│ ├── declaration.d.ts
│ ├── pages
│ │ ├── $.mdx
│ │ ├── legal$.mdx
│ │ ├── _theme.tsx
│ │ ├── device$.mdx
│ │ ├── emulator$.mdx
│ │ └── zommable$.tsx
│ ├── index.html
│ ├── vite.config.ts
│ └── package.json
└── react-device-frameset
│ ├── src
│ ├── index.ts
│ ├── helper.ts
│ ├── DeviceFrameset.tsx
│ ├── DeviceOptions.ts
│ ├── Zoomable.tsx
│ ├── DeviceEmulator.tsx
│ └── DeviceSelector.tsx
│ ├── scss
│ ├── device-emulator.scss
│ ├── device-selector.scss
│ └── marvel-devices.scss
│ ├── package.json
│ ├── gulpfile.js
│ └── README.md
├── .github
├── workflows
│ ├── build.yml
│ ├── publish.yml
│ ├── pages.yml
│ └── codeql-analysis.yml
└── actions
│ └── build
│ └── action.yml
├── tsconfig.json
├── LICENSE
├── .eslintrc.js
├── package.json
└── README.md
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | }
--------------------------------------------------------------------------------
/pnpm-workspace.yaml:
--------------------------------------------------------------------------------
1 | packages:
2 | - packages/*
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.scss linguist-detectable=false
2 | *.css linguist-detectable=false
3 |
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_Store
3 | dist
4 | lib
5 | *.local
6 | *.tgz
7 | .yarn-error.log
--------------------------------------------------------------------------------
/packages/react-device-frameset-example/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_Store
3 | dist
4 | *.local
--------------------------------------------------------------------------------
/packages/react-device-frameset-example/declaration.d.ts:
--------------------------------------------------------------------------------
1 | ///
The Chosen: {selectedDeviceName}
78 | setShowMenu(is => !is)} 81 | > 82 | show all devices 83 | 84 |