gitextract_mwlr0ef8/ ├── .gitignore ├── Plugin/ │ ├── Debug.xcconfig │ ├── LICENSE │ ├── README.md │ ├── Release.xcconfig │ ├── States/ │ │ ├── Info.plist │ │ ├── NSArray+HigherOrder.h │ │ ├── NSArray+HigherOrder.m │ │ ├── NSArray+Indexes.h │ │ ├── NSArray+Indexes.m │ │ ├── STArtboard.h │ │ ├── STColorFactory.h │ │ ├── STColorFactory.m │ │ ├── STCommand.h │ │ ├── STDocument.h │ │ ├── STHeaderView.h │ │ ├── STHeaderView.m │ │ ├── STLayer.h │ │ ├── STLayerState.h │ │ ├── STLayerState.m │ │ ├── STPage.h │ │ ├── STPlaceholderView.h │ │ ├── STPlaceholderView.m │ │ ├── STSketch.h │ │ ├── STSketch.m │ │ ├── STSketchPluginContext.h │ │ ├── STSketchPluginContext.m │ │ ├── STStateDescription.h │ │ ├── STStateDescription.m │ │ ├── STStatefulArtboard+Backend.h │ │ ├── STStatefulArtboard+Backend.m │ │ ├── STStatefulArtboard+Snapshots.h │ │ ├── STStatefulArtboard+Snapshots.m │ │ ├── STStatefulArtboard.h │ │ ├── STStatefulArtboard.m │ │ ├── STTableCellView.h │ │ ├── STTableCellView.m │ │ ├── STTableRowView.h │ │ ├── STTableRowView.m │ │ ├── STTableView.h │ │ ├── STTableView.m │ │ ├── STTextField.h │ │ ├── STTextField.m │ │ ├── STUpdateButton.h │ │ ├── STUpdateButton.m │ │ ├── STWindow.h │ │ ├── STWindow.m │ │ ├── StatesController+ContextMenu.h │ │ ├── StatesController+ContextMenu.m │ │ ├── StatesController+Decisions.h │ │ ├── StatesController+Decisions.m │ │ ├── StatesController+DragNDrop.h │ │ ├── StatesController+DragNDrop.m │ │ ├── StatesController+Naming.h │ │ ├── StatesController+Naming.m │ │ ├── StatesController.h │ │ ├── StatesController.m │ │ └── StatesWindow.xib │ ├── States.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── States for Beta.xcscheme │ │ └── States.xcscheme │ ├── Versioning.xcconfig │ ├── lib/ │ │ └── runtime.js │ ├── manifest.json │ ├── plugin.js │ └── vendor/ │ ├── Aspects.h │ └── Aspects.m ├── States.sketchplugin/ │ └── Contents/ │ ├── Resources/ │ │ └── States.bundle/ │ │ └── Contents/ │ │ ├── Info.plist │ │ ├── MacOS/ │ │ │ └── States │ │ ├── Resources/ │ │ │ ├── StatesWindow.nib │ │ │ └── dirty.tiff │ │ └── _CodeSignature/ │ │ └── CodeResources │ └── Sketch/ │ ├── lib/ │ │ └── runtime.js │ ├── manifest.json │ └── plugin.js ├── css/ │ ├── normalize.css │ ├── states.webflow.css │ └── webflow.css ├── index.html └── js/ └── webflow.js