├── .gitignore ├── .node-version ├── README.md ├── app.html ├── dist └── js │ ├── content-panel.js │ ├── details-panel.js │ └── index.js ├── global.d.ts ├── index.html ├── netlify.toml ├── package.json ├── readme-img ├── 001.import_from_library.gif ├── 002.Start_drag_and_drop_new.gif ├── 003.Standard_Miro_shapes_fully_editable.gif └── 004-get-useful-info.gif ├── src ├── app.tsx ├── assets │ ├── details-styles.css │ ├── images │ │ ├── arrow.svg │ │ ├── link.svg │ │ ├── play.svg │ │ ├── ti │ │ │ ├── collaboration.svg │ │ │ ├── facilitating.svg │ │ │ └── xaas.svg │ │ ├── tt │ │ │ ├── complicated-subsystem.svg │ │ │ ├── enabling.svg │ │ │ ├── flowofchange.svg │ │ │ ├── icon-complicated-subsystem.svg │ │ │ ├── icon-enabling.svg │ │ │ ├── icon-platform.svg │ │ │ ├── icon-stream-aligned.svg │ │ │ ├── icon-undefined.svg │ │ │ ├── platform.svg │ │ │ ├── stream-aligned.svg │ │ │ └── undefined.svg │ │ ├── tt_icon.svg │ │ ├── tt_logo.svg │ │ └── tt_logo_bw.svg │ └── style.css ├── components │ ├── DetailsSection │ │ └── index.tsx │ └── TeamElement │ │ └── index.tsx ├── config.ts ├── helpers │ └── ShapeTypes.ts ├── index.ts ├── team-logic │ ├── team-factory.ts │ ├── team-interaction.ts │ ├── team-other.ts │ ├── team-static.ts │ ├── team-supplementary.ts │ └── team-type.ts └── team-text │ ├── generic.ts │ └── team-info.ts ├── tsconfig.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16.14.2 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/README.md -------------------------------------------------------------------------------- /app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/app.html -------------------------------------------------------------------------------- /dist/js/content-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/dist/js/content-panel.js -------------------------------------------------------------------------------- /dist/js/details-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/dist/js/details-panel.js -------------------------------------------------------------------------------- /dist/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/dist/js/index.js -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/global.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/index.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/package.json -------------------------------------------------------------------------------- /readme-img/001.import_from_library.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/readme-img/001.import_from_library.gif -------------------------------------------------------------------------------- /readme-img/002.Start_drag_and_drop_new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/readme-img/002.Start_drag_and_drop_new.gif -------------------------------------------------------------------------------- /readme-img/003.Standard_Miro_shapes_fully_editable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/readme-img/003.Standard_Miro_shapes_fully_editable.gif -------------------------------------------------------------------------------- /readme-img/004-get-useful-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/readme-img/004-get-useful-info.gif -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/assets/details-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/details-styles.css -------------------------------------------------------------------------------- /src/assets/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/arrow.svg -------------------------------------------------------------------------------- /src/assets/images/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/link.svg -------------------------------------------------------------------------------- /src/assets/images/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/play.svg -------------------------------------------------------------------------------- /src/assets/images/ti/collaboration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/ti/collaboration.svg -------------------------------------------------------------------------------- /src/assets/images/ti/facilitating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/ti/facilitating.svg -------------------------------------------------------------------------------- /src/assets/images/ti/xaas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/ti/xaas.svg -------------------------------------------------------------------------------- /src/assets/images/tt/complicated-subsystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt/complicated-subsystem.svg -------------------------------------------------------------------------------- /src/assets/images/tt/enabling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt/enabling.svg -------------------------------------------------------------------------------- /src/assets/images/tt/flowofchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt/flowofchange.svg -------------------------------------------------------------------------------- /src/assets/images/tt/icon-complicated-subsystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt/icon-complicated-subsystem.svg -------------------------------------------------------------------------------- /src/assets/images/tt/icon-enabling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt/icon-enabling.svg -------------------------------------------------------------------------------- /src/assets/images/tt/icon-platform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt/icon-platform.svg -------------------------------------------------------------------------------- /src/assets/images/tt/icon-stream-aligned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt/icon-stream-aligned.svg -------------------------------------------------------------------------------- /src/assets/images/tt/icon-undefined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt/icon-undefined.svg -------------------------------------------------------------------------------- /src/assets/images/tt/platform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt/platform.svg -------------------------------------------------------------------------------- /src/assets/images/tt/stream-aligned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt/stream-aligned.svg -------------------------------------------------------------------------------- /src/assets/images/tt/undefined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt/undefined.svg -------------------------------------------------------------------------------- /src/assets/images/tt_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt_icon.svg -------------------------------------------------------------------------------- /src/assets/images/tt_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt_logo.svg -------------------------------------------------------------------------------- /src/assets/images/tt_logo_bw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/images/tt_logo_bw.svg -------------------------------------------------------------------------------- /src/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/assets/style.css -------------------------------------------------------------------------------- /src/components/DetailsSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/components/DetailsSection/index.tsx -------------------------------------------------------------------------------- /src/components/TeamElement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/components/TeamElement/index.tsx -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/helpers/ShapeTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/helpers/ShapeTypes.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/team-logic/team-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/team-logic/team-factory.ts -------------------------------------------------------------------------------- /src/team-logic/team-interaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/team-logic/team-interaction.ts -------------------------------------------------------------------------------- /src/team-logic/team-other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/team-logic/team-other.ts -------------------------------------------------------------------------------- /src/team-logic/team-static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/team-logic/team-static.ts -------------------------------------------------------------------------------- /src/team-logic/team-supplementary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/team-logic/team-supplementary.ts -------------------------------------------------------------------------------- /src/team-logic/team-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/team-logic/team-type.ts -------------------------------------------------------------------------------- /src/team-text/generic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/team-text/generic.ts -------------------------------------------------------------------------------- /src/team-text/team-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/src/team-text/team-info.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamTopologies/miro-team-topologies/HEAD/vite.config.js --------------------------------------------------------------------------------