├── .gitattributes ├── .github └── workflows │ ├── codeql-analysis.yml │ └── test.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── mocha.js ├── package.json ├── specs ├── index.ts ├── layoutService.spec.ts ├── mediaUtils.spec.ts ├── mocks │ ├── mockBlockService.ts │ ├── mockLocaleService.ts │ └── mockObjectStorage.ts ├── objects.spec.ts ├── offlineObjectStorage.spec.ts ├── pageService.spec.ts └── styleMigrations.spec.ts ├── src ├── arrays.ts ├── bag.ts ├── behaviors │ ├── behavior.activate.ts │ ├── behavior.align.ts │ ├── behavior.angle.ts │ ├── behavior.attr2way.ts │ ├── behavior.background.ts │ ├── behavior.collapse.ts │ ├── behavior.focus.ts │ ├── behavior.hyperlink.ts │ ├── behavior.lightbox.ts │ ├── behavior.listbox.ts │ ├── behavior.liveArea.ts │ ├── behavior.markdown.ts │ ├── behavior.resizable.ts │ ├── behavior.roleBasedSecured.ts │ ├── behavior.selectable.ts │ ├── behavior.stickTo.ts │ ├── behavior.ts │ ├── behavior.view.ts │ ├── behavior.whenInView.ts │ └── index.ts ├── blocks │ ├── IBlockService.ts │ ├── blockContract.ts │ ├── blockService.ts │ └── index.ts ├── blogs │ ├── IBlogService.ts │ ├── blogHyperlinkProvider.ts │ ├── blogPostContract.ts │ ├── blogPostPermalinkResolver.ts │ ├── blogService.ts │ └── index.ts ├── bootstrap.ts ├── caching │ ├── ILocalCache.ts │ ├── cachingStrategy.ts │ ├── index.ts │ ├── localStorageCache.ts │ ├── lruCache.ts │ └── memoryCache.ts ├── components │ ├── componentBinder.ts │ ├── componentFlow.ts │ └── index.ts ├── configuration │ ├── ISettingsProvider.ts │ ├── defaultSettingsProvider.ts │ ├── index.ts │ └── localStorageSettingsProvider.ts ├── constants.ts ├── contentModel │ ├── contentItemContract.ts │ ├── contentType.ts │ └── index.ts ├── contract.ts ├── editing │ ├── IContentDescriptor.ts │ ├── IContentDropHandler.ts │ ├── IDataTransfer.ts │ ├── IHtmlEditor.ts │ ├── IModelBinder.ts │ ├── IWidgetBinding.ts │ ├── IWidgetFactoryResult.ts │ ├── IWidgetHandler.ts │ ├── IWidgetOrder.ts │ ├── box.ts │ ├── collectionModelBinder.ts │ ├── gridHelper.ts │ ├── gridItem.ts │ ├── htmlEditorEvents.ts │ ├── htmlEditorProvider.ts │ ├── hyperlinkContract.ts │ ├── index.ts │ ├── mediaHandlers.ts │ ├── selectionState.ts │ ├── widgetBinding.ts │ ├── widgetContext.ts │ ├── widgetDefinition.ts │ └── widgetEditorDefinition.ts ├── errors │ ├── index.ts │ ├── unhandledErrorHandler.ts │ └── userError.ts ├── events │ ├── commonEvents.ts │ ├── defaultEventManager.ts │ ├── eventManager.ts │ ├── globalEventHandler.ts │ └── index.ts ├── extensions.ts ├── geocoding │ ├── geocodingService.ts │ ├── geolocation.ts │ ├── googleGeocodingService.ts │ └── index.ts ├── html.ts ├── http │ ├── httpClient.ts │ ├── httpHeader.ts │ ├── httpHeaders.ts │ ├── httpMethod.ts │ ├── httpRequest.ts │ ├── httpResponse.ts │ ├── index.ts │ ├── nodeHttpClient.ts │ └── xmlHttpRequestClient.ts ├── index.ts ├── injection │ ├── IInjector.ts │ ├── IInjectorModule.ts │ ├── constants.ts │ ├── index.ts │ └── inversifyInjector.ts ├── keyboard.ts ├── ko │ ├── consts.ts │ ├── decorators │ │ ├── component.decorator.ts │ │ ├── event.decorator.ts │ │ ├── index.ts │ │ ├── onDestroyed.decorator.ts │ │ ├── onMounted.decorator.ts │ │ ├── param.decorator.ts │ │ └── runtimeComponent.decorator.ts │ ├── knockoutComponentBinder.ts │ ├── templateEngines │ │ └── stringTemplateEngine.ts │ └── utils.ts ├── layouts │ ├── ILayoutService.ts │ ├── index.ts │ ├── layoutContract.ts │ ├── layoutLocalizedContract.ts │ ├── layoutMetadata.ts │ ├── layoutService.ts │ └── layoutTemplate.ts ├── localization │ ├── ILocaleService.ts │ ├── index.ts │ ├── localeContract.ts │ ├── localeModel.ts │ └── localeService.ts ├── logging │ ├── consoleLogger.ts │ ├── index.ts │ └── logger.ts ├── media │ ├── IMediaService.ts │ ├── constants.ts │ ├── index.ts │ ├── mediaContract.ts │ ├── mediaHyperlinkProvider.ts │ ├── mediaPermalinkResolver.design.ts │ ├── mediaPermalinkResolver.publish.ts │ ├── mediaService.ts │ ├── mediaUtils.ts │ └── mediaVariantContract.ts ├── meta │ ├── index.ts │ └── metaDataSetter.ts ├── migrations │ ├── contentMigration.ts │ └── wigdetMigration.ts ├── mimeTypes.ts ├── mouse.ts ├── navigation │ ├── INavigationService.ts │ ├── index.ts │ ├── navigationEvents.ts │ ├── navigationItemContract.ts │ ├── navigationItemModel.ts │ └── navigationService.ts ├── objects.ts ├── pages │ ├── IPageService.ts │ ├── constants.ts │ ├── index.ts │ ├── pageContract.ts │ ├── pageHyperlinkProvider.ts │ ├── pageLocalizedContract.ts │ ├── pageMetadata.ts │ ├── pagePermalinkResolver.ts │ ├── pageService.ts │ └── socialShareData.ts ├── permalinks │ ├── IPermalinkResolver.ts │ ├── defaultPermalinkService.ts │ ├── hyperlinkModel.ts │ ├── index.ts │ ├── permalinkContract.ts │ ├── permalinkResolver.ts │ ├── permalinkService.ts │ └── utils.ts ├── persistence │ ├── IBlobStorage.ts │ ├── IBlobStorageStream.ts │ ├── IObjectStorage.ts │ ├── IObjectStorageMiddleware.ts │ ├── anchorMiddleware.ts │ ├── changeCommitter.ts │ ├── defaultChangeCommitter.ts │ ├── defaultSessionManager.ts │ ├── index.ts │ ├── loadingHandler.ts │ ├── offline.module.ts │ ├── offlineObjectStorage.ts │ ├── offlineOptions.ts │ ├── query.ts │ ├── redoToolButton.ts │ ├── saveChangesToolbutton.ts │ ├── savingHandler.ts │ ├── sessionManager.ts │ └── undoToolButton.ts ├── popups │ ├── IPopupService.ts │ ├── index.ts │ ├── popupContract.ts │ ├── popupHyperlinkProvider.ts │ ├── popupLocalizedContract.ts │ ├── popupMetadata.ts │ ├── popupPermalinkResolver.ts │ └── popupService.ts ├── publishing │ ├── IPublisher.ts │ ├── cacheStorageModule.ts │ ├── cachedObjectStorage.ts │ ├── defaultHtmlDocumentProvider.ts │ ├── htmlDocumentProvider.ts │ ├── htmlPage.ts │ ├── htmlPageOptimizer.ts │ ├── htmlPagePublisher.ts │ ├── htmlPagePublisherPlugin.ts │ ├── index.ts │ ├── jsdomHtmlDocumentProvider.ts │ ├── linkedDataHtmlPagePublisherPlugin.ts │ ├── openGraph.ts │ ├── openGraphHtmlPagePublisherPlugin.ts │ ├── pageLinkedData.ts │ ├── sitemapBuilder.ts │ ├── socialShareDataHtmlPagePublisherPlugin.ts │ └── sourceLink.ts ├── regexps.ts ├── routing │ ├── anchorRouteHandler.ts │ ├── defaultRouteGuard.ts │ ├── defaultRouter.ts │ ├── historyRouteHandler.ts │ ├── index.ts │ ├── javascriptRouteGuard.ts │ ├── locationRouteHandler.ts │ ├── mailtoRouteGuard.ts │ ├── route.ts │ ├── routeGuard.ts │ ├── router.ts │ └── routerEvents.ts ├── search │ ├── index.ts │ ├── searchIndexBuilder.ts │ ├── searchResult.ts │ ├── searchResultsBuilder.ts │ ├── searchableDocument.ts │ ├── staticSearchService.ts │ └── webPageSearchResultsBuilder.ts ├── security │ ├── index.ts │ ├── roleBasedSecurityContract.ts │ ├── roleBasedSecurityModel.ts │ ├── roleBasedSecurityModelBinder.ts │ ├── securityContract.ts │ ├── securityModel.ts │ └── securityModelBinder.ts ├── sites │ ├── ISiteService.ts │ ├── index.ts │ ├── siteService.ts │ └── siteSettingsContract.ts ├── styles │ ├── IStyleGroup.ts │ ├── IStyleSnippetService.ts │ ├── breakpoints.ts │ ├── componentBagContract.ts │ ├── fontFace.ts │ ├── index.ts │ ├── localStyles.ts │ ├── pluginBagContract.ts │ ├── primitiveContract.ts │ ├── stateBagContract.ts │ ├── styleCompiler.ts │ ├── styleDefinition.ts │ ├── styleHandler.ts │ ├── styleManager.ts │ ├── styleMediaQuery.ts │ ├── styleModel.ts │ ├── stylePluginConfig.ts │ ├── styleRule.ts │ ├── styleSheet.ts │ ├── styles.ts │ ├── variationBagContract.ts │ └── variationContract.ts ├── text │ ├── contracts │ │ ├── BreakContract.ts │ │ ├── FormattedContract.ts │ │ ├── Heading1Contract.ts │ │ ├── Heading2Contract.ts │ │ ├── Heading3Contract.ts │ │ ├── Heading4Contract.ts │ │ ├── Heading5Contract.ts │ │ ├── Heading6Contract.ts │ │ ├── ParagraphContract.ts │ │ ├── QuoteContract.ts │ │ ├── blockContract.ts │ │ ├── index.ts │ │ ├── inlineContract.ts │ │ ├── listContract.ts │ │ ├── listItemContract.ts │ │ └── markContract.ts │ └── models │ │ ├── blockModel.ts │ │ ├── breakModel.ts │ │ ├── colorModel.ts │ │ ├── formattedModel.ts │ │ ├── heading1.ts │ │ ├── heading2.ts │ │ ├── heading3.ts │ │ ├── heading4.ts │ │ ├── heading5.ts │ │ ├── heading6.ts │ │ ├── index.ts │ │ ├── inlineModel.ts │ │ ├── listItemModel.ts │ │ ├── listModel.ts │ │ ├── markModel.ts │ │ ├── paragraphModel.ts │ │ └── quoteModel.ts ├── tutorials │ ├── defaultHelpService.ts │ ├── helpService.ts │ ├── hint.ts │ └── hinter.ts ├── typings │ ├── constructor.d.ts │ ├── document.d.ts │ └── webkit.d.ts ├── ui │ ├── IBackground.ts │ ├── ICommand.ts │ ├── IComponent.ts │ ├── IContextCommandSet.ts │ ├── IHighlightConfig.ts │ ├── IHyperlinkProvider.ts │ ├── ILightbox.ts │ ├── IResourceSelector.ts │ ├── ITemplate.ts │ ├── activeElement.ts │ ├── background.ts │ ├── balloons │ │ ├── balloonActivationMethod.ts │ │ ├── balloonHandle.ts │ │ ├── balloonOptions.ts │ │ ├── balloonState.ts │ │ └── index.ts │ ├── commands.ts │ ├── draggables │ │ ├── dragManager.ts │ │ ├── dragSession.ts │ │ ├── dragSource.ts │ │ ├── dragSourceConfig.ts │ │ ├── dragTarget.ts │ │ ├── dragTargetConfig.ts │ │ └── index.ts │ ├── icons.ts │ ├── index.ts │ ├── pointerPosition.ts │ ├── positioningOptions.ts │ ├── quadrant.ts │ ├── resizableOptions.ts │ ├── selectOption.ts │ ├── toast.ts │ ├── toolButton.ts │ ├── view.ts │ ├── viewManager.ts │ └── viewStack.ts ├── urls │ ├── IUrlService.ts │ ├── index.ts │ ├── urlContract.ts │ ├── urlHyperlinkProvider.ts │ ├── urlPermalinkResolver.ts │ └── urlService.ts ├── user │ ├── accessToken.ts │ ├── authenticator.ts │ ├── builtInRoles.ts │ ├── index.ts │ ├── roleModel.ts │ ├── roleService.ts │ ├── userService.ts │ └── visibilityGuard.ts ├── utils.ts └── widgets │ ├── IViewModelBinder.ts │ ├── IWidgetService.ts │ ├── background │ ├── backgroundModel.ts │ ├── backgroundModelBinder.ts │ └── index.ts │ ├── contentPart │ ├── contentPartModel.ts │ └── index.ts │ ├── index.ts │ ├── modelBinderSelector.ts │ ├── placeholder │ ├── index.ts │ └── placeholderModel.ts │ ├── widgetEditor.ts │ ├── widgetModel.ts │ ├── widgetService.ts │ └── widgetState.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .idea/ 4 | package-lock.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/README.md -------------------------------------------------------------------------------- /mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/mocha.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/package.json -------------------------------------------------------------------------------- /specs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './objects.spec'; 2 | -------------------------------------------------------------------------------- /specs/layoutService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/specs/layoutService.spec.ts -------------------------------------------------------------------------------- /specs/mediaUtils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/specs/mediaUtils.spec.ts -------------------------------------------------------------------------------- /specs/mocks/mockBlockService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/specs/mocks/mockBlockService.ts -------------------------------------------------------------------------------- /specs/mocks/mockLocaleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/specs/mocks/mockLocaleService.ts -------------------------------------------------------------------------------- /specs/mocks/mockObjectStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/specs/mocks/mockObjectStorage.ts -------------------------------------------------------------------------------- /specs/objects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/specs/objects.spec.ts -------------------------------------------------------------------------------- /specs/offlineObjectStorage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/specs/offlineObjectStorage.spec.ts -------------------------------------------------------------------------------- /specs/pageService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/specs/pageService.spec.ts -------------------------------------------------------------------------------- /specs/styleMigrations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/specs/styleMigrations.spec.ts -------------------------------------------------------------------------------- /src/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/arrays.ts -------------------------------------------------------------------------------- /src/bag.ts: -------------------------------------------------------------------------------- 1 | export interface Bag { 2 | [key: string]: T; 3 | } -------------------------------------------------------------------------------- /src/behaviors/behavior.activate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.activate.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.align.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.align.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.angle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.angle.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.attr2way.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.attr2way.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.background.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.collapse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.collapse.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.focus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.focus.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.hyperlink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.hyperlink.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.lightbox.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/behaviors/behavior.listbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.listbox.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.liveArea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.liveArea.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.markdown.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.resizable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.resizable.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.roleBasedSecured.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.roleBasedSecured.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.selectable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.selectable.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.stickTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.stickTo.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.view.ts -------------------------------------------------------------------------------- /src/behaviors/behavior.whenInView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/behavior.whenInView.ts -------------------------------------------------------------------------------- /src/behaviors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/behaviors/index.ts -------------------------------------------------------------------------------- /src/blocks/IBlockService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/blocks/IBlockService.ts -------------------------------------------------------------------------------- /src/blocks/blockContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/blocks/blockContract.ts -------------------------------------------------------------------------------- /src/blocks/blockService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/blocks/blockService.ts -------------------------------------------------------------------------------- /src/blocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/blocks/index.ts -------------------------------------------------------------------------------- /src/blogs/IBlogService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/blogs/IBlogService.ts -------------------------------------------------------------------------------- /src/blogs/blogHyperlinkProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/blogs/blogHyperlinkProvider.ts -------------------------------------------------------------------------------- /src/blogs/blogPostContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/blogs/blogPostContract.ts -------------------------------------------------------------------------------- /src/blogs/blogPostPermalinkResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/blogs/blogPostPermalinkResolver.ts -------------------------------------------------------------------------------- /src/blogs/blogService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/blogs/blogService.ts -------------------------------------------------------------------------------- /src/blogs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/blogs/index.ts -------------------------------------------------------------------------------- /src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/bootstrap.ts -------------------------------------------------------------------------------- /src/caching/ILocalCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/caching/ILocalCache.ts -------------------------------------------------------------------------------- /src/caching/cachingStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/caching/cachingStrategy.ts -------------------------------------------------------------------------------- /src/caching/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/caching/index.ts -------------------------------------------------------------------------------- /src/caching/localStorageCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/caching/localStorageCache.ts -------------------------------------------------------------------------------- /src/caching/lruCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/caching/lruCache.ts -------------------------------------------------------------------------------- /src/caching/memoryCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/caching/memoryCache.ts -------------------------------------------------------------------------------- /src/components/componentBinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/components/componentBinder.ts -------------------------------------------------------------------------------- /src/components/componentFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/components/componentFlow.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/configuration/ISettingsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/configuration/ISettingsProvider.ts -------------------------------------------------------------------------------- /src/configuration/defaultSettingsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/configuration/defaultSettingsProvider.ts -------------------------------------------------------------------------------- /src/configuration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/configuration/index.ts -------------------------------------------------------------------------------- /src/configuration/localStorageSettingsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/configuration/localStorageSettingsProvider.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/contentModel/contentItemContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/contentModel/contentItemContract.ts -------------------------------------------------------------------------------- /src/contentModel/contentType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/contentModel/contentType.ts -------------------------------------------------------------------------------- /src/contentModel/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./contentItemContract"; -------------------------------------------------------------------------------- /src/contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/contract.ts -------------------------------------------------------------------------------- /src/editing/IContentDescriptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/IContentDescriptor.ts -------------------------------------------------------------------------------- /src/editing/IContentDropHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/IContentDropHandler.ts -------------------------------------------------------------------------------- /src/editing/IDataTransfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/IDataTransfer.ts -------------------------------------------------------------------------------- /src/editing/IHtmlEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/IHtmlEditor.ts -------------------------------------------------------------------------------- /src/editing/IModelBinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/IModelBinder.ts -------------------------------------------------------------------------------- /src/editing/IWidgetBinding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/IWidgetBinding.ts -------------------------------------------------------------------------------- /src/editing/IWidgetFactoryResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/IWidgetFactoryResult.ts -------------------------------------------------------------------------------- /src/editing/IWidgetHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/IWidgetHandler.ts -------------------------------------------------------------------------------- /src/editing/IWidgetOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/IWidgetOrder.ts -------------------------------------------------------------------------------- /src/editing/box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/box.ts -------------------------------------------------------------------------------- /src/editing/collectionModelBinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/collectionModelBinder.ts -------------------------------------------------------------------------------- /src/editing/gridHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/gridHelper.ts -------------------------------------------------------------------------------- /src/editing/gridItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/gridItem.ts -------------------------------------------------------------------------------- /src/editing/htmlEditorEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/htmlEditorEvents.ts -------------------------------------------------------------------------------- /src/editing/htmlEditorProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/htmlEditorProvider.ts -------------------------------------------------------------------------------- /src/editing/hyperlinkContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/hyperlinkContract.ts -------------------------------------------------------------------------------- /src/editing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/index.ts -------------------------------------------------------------------------------- /src/editing/mediaHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/mediaHandlers.ts -------------------------------------------------------------------------------- /src/editing/selectionState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/selectionState.ts -------------------------------------------------------------------------------- /src/editing/widgetBinding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/widgetBinding.ts -------------------------------------------------------------------------------- /src/editing/widgetContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/widgetContext.ts -------------------------------------------------------------------------------- /src/editing/widgetDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/widgetDefinition.ts -------------------------------------------------------------------------------- /src/editing/widgetEditorDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/editing/widgetEditorDefinition.ts -------------------------------------------------------------------------------- /src/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/errors/index.ts -------------------------------------------------------------------------------- /src/errors/unhandledErrorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/errors/unhandledErrorHandler.ts -------------------------------------------------------------------------------- /src/errors/userError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/errors/userError.ts -------------------------------------------------------------------------------- /src/events/commonEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/events/commonEvents.ts -------------------------------------------------------------------------------- /src/events/defaultEventManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/events/defaultEventManager.ts -------------------------------------------------------------------------------- /src/events/eventManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/events/eventManager.ts -------------------------------------------------------------------------------- /src/events/globalEventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/events/globalEventHandler.ts -------------------------------------------------------------------------------- /src/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/events/index.ts -------------------------------------------------------------------------------- /src/extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/extensions.ts -------------------------------------------------------------------------------- /src/geocoding/geocodingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/geocoding/geocodingService.ts -------------------------------------------------------------------------------- /src/geocoding/geolocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/geocoding/geolocation.ts -------------------------------------------------------------------------------- /src/geocoding/googleGeocodingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/geocoding/googleGeocodingService.ts -------------------------------------------------------------------------------- /src/geocoding/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/geocoding/index.ts -------------------------------------------------------------------------------- /src/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/html.ts -------------------------------------------------------------------------------- /src/http/httpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/http/httpClient.ts -------------------------------------------------------------------------------- /src/http/httpHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/http/httpHeader.ts -------------------------------------------------------------------------------- /src/http/httpHeaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/http/httpHeaders.ts -------------------------------------------------------------------------------- /src/http/httpMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/http/httpMethod.ts -------------------------------------------------------------------------------- /src/http/httpRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/http/httpRequest.ts -------------------------------------------------------------------------------- /src/http/httpResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/http/httpResponse.ts -------------------------------------------------------------------------------- /src/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/http/index.ts -------------------------------------------------------------------------------- /src/http/nodeHttpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/http/nodeHttpClient.ts -------------------------------------------------------------------------------- /src/http/xmlHttpRequestClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/http/xmlHttpRequestClient.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/injection/IInjector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/injection/IInjector.ts -------------------------------------------------------------------------------- /src/injection/IInjectorModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/injection/IInjectorModule.ts -------------------------------------------------------------------------------- /src/injection/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/injection/constants.ts -------------------------------------------------------------------------------- /src/injection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/injection/index.ts -------------------------------------------------------------------------------- /src/injection/inversifyInjector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/injection/inversifyInjector.ts -------------------------------------------------------------------------------- /src/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/keyboard.ts -------------------------------------------------------------------------------- /src/ko/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ko/consts.ts -------------------------------------------------------------------------------- /src/ko/decorators/component.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ko/decorators/component.decorator.ts -------------------------------------------------------------------------------- /src/ko/decorators/event.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ko/decorators/event.decorator.ts -------------------------------------------------------------------------------- /src/ko/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ko/decorators/index.ts -------------------------------------------------------------------------------- /src/ko/decorators/onDestroyed.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ko/decorators/onDestroyed.decorator.ts -------------------------------------------------------------------------------- /src/ko/decorators/onMounted.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ko/decorators/onMounted.decorator.ts -------------------------------------------------------------------------------- /src/ko/decorators/param.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ko/decorators/param.decorator.ts -------------------------------------------------------------------------------- /src/ko/decorators/runtimeComponent.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ko/decorators/runtimeComponent.decorator.ts -------------------------------------------------------------------------------- /src/ko/knockoutComponentBinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ko/knockoutComponentBinder.ts -------------------------------------------------------------------------------- /src/ko/templateEngines/stringTemplateEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ko/templateEngines/stringTemplateEngine.ts -------------------------------------------------------------------------------- /src/ko/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ko/utils.ts -------------------------------------------------------------------------------- /src/layouts/ILayoutService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/layouts/ILayoutService.ts -------------------------------------------------------------------------------- /src/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/layouts/index.ts -------------------------------------------------------------------------------- /src/layouts/layoutContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/layouts/layoutContract.ts -------------------------------------------------------------------------------- /src/layouts/layoutLocalizedContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/layouts/layoutLocalizedContract.ts -------------------------------------------------------------------------------- /src/layouts/layoutMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/layouts/layoutMetadata.ts -------------------------------------------------------------------------------- /src/layouts/layoutService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/layouts/layoutService.ts -------------------------------------------------------------------------------- /src/layouts/layoutTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/layouts/layoutTemplate.ts -------------------------------------------------------------------------------- /src/localization/ILocaleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/localization/ILocaleService.ts -------------------------------------------------------------------------------- /src/localization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/localization/index.ts -------------------------------------------------------------------------------- /src/localization/localeContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/localization/localeContract.ts -------------------------------------------------------------------------------- /src/localization/localeModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/localization/localeModel.ts -------------------------------------------------------------------------------- /src/localization/localeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/localization/localeService.ts -------------------------------------------------------------------------------- /src/logging/consoleLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/logging/consoleLogger.ts -------------------------------------------------------------------------------- /src/logging/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/logging/index.ts -------------------------------------------------------------------------------- /src/logging/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/logging/logger.ts -------------------------------------------------------------------------------- /src/media/IMediaService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/media/IMediaService.ts -------------------------------------------------------------------------------- /src/media/constants.ts: -------------------------------------------------------------------------------- 1 | export const mediaRoot = "uploads"; -------------------------------------------------------------------------------- /src/media/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/media/index.ts -------------------------------------------------------------------------------- /src/media/mediaContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/media/mediaContract.ts -------------------------------------------------------------------------------- /src/media/mediaHyperlinkProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/media/mediaHyperlinkProvider.ts -------------------------------------------------------------------------------- /src/media/mediaPermalinkResolver.design.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/media/mediaPermalinkResolver.design.ts -------------------------------------------------------------------------------- /src/media/mediaPermalinkResolver.publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/media/mediaPermalinkResolver.publish.ts -------------------------------------------------------------------------------- /src/media/mediaService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/media/mediaService.ts -------------------------------------------------------------------------------- /src/media/mediaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/media/mediaUtils.ts -------------------------------------------------------------------------------- /src/media/mediaVariantContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/media/mediaVariantContract.ts -------------------------------------------------------------------------------- /src/meta/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./metaDataSetter"; 2 | -------------------------------------------------------------------------------- /src/meta/metaDataSetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/meta/metaDataSetter.ts -------------------------------------------------------------------------------- /src/migrations/contentMigration.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/migrations/wigdetMigration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/migrations/wigdetMigration.ts -------------------------------------------------------------------------------- /src/mimeTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/mimeTypes.ts -------------------------------------------------------------------------------- /src/mouse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/mouse.ts -------------------------------------------------------------------------------- /src/navigation/INavigationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/navigation/INavigationService.ts -------------------------------------------------------------------------------- /src/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/navigation/index.ts -------------------------------------------------------------------------------- /src/navigation/navigationEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/navigation/navigationEvents.ts -------------------------------------------------------------------------------- /src/navigation/navigationItemContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/navigation/navigationItemContract.ts -------------------------------------------------------------------------------- /src/navigation/navigationItemModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/navigation/navigationItemModel.ts -------------------------------------------------------------------------------- /src/navigation/navigationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/navigation/navigationService.ts -------------------------------------------------------------------------------- /src/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/objects.ts -------------------------------------------------------------------------------- /src/pages/IPageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/pages/IPageService.ts -------------------------------------------------------------------------------- /src/pages/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/pages/constants.ts -------------------------------------------------------------------------------- /src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/pages/index.ts -------------------------------------------------------------------------------- /src/pages/pageContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/pages/pageContract.ts -------------------------------------------------------------------------------- /src/pages/pageHyperlinkProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/pages/pageHyperlinkProvider.ts -------------------------------------------------------------------------------- /src/pages/pageLocalizedContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/pages/pageLocalizedContract.ts -------------------------------------------------------------------------------- /src/pages/pageMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/pages/pageMetadata.ts -------------------------------------------------------------------------------- /src/pages/pagePermalinkResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/pages/pagePermalinkResolver.ts -------------------------------------------------------------------------------- /src/pages/pageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/pages/pageService.ts -------------------------------------------------------------------------------- /src/pages/socialShareData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/pages/socialShareData.ts -------------------------------------------------------------------------------- /src/permalinks/IPermalinkResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/permalinks/IPermalinkResolver.ts -------------------------------------------------------------------------------- /src/permalinks/defaultPermalinkService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/permalinks/defaultPermalinkService.ts -------------------------------------------------------------------------------- /src/permalinks/hyperlinkModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/permalinks/hyperlinkModel.ts -------------------------------------------------------------------------------- /src/permalinks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/permalinks/index.ts -------------------------------------------------------------------------------- /src/permalinks/permalinkContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/permalinks/permalinkContract.ts -------------------------------------------------------------------------------- /src/permalinks/permalinkResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/permalinks/permalinkResolver.ts -------------------------------------------------------------------------------- /src/permalinks/permalinkService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/permalinks/permalinkService.ts -------------------------------------------------------------------------------- /src/permalinks/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/permalinks/utils.ts -------------------------------------------------------------------------------- /src/persistence/IBlobStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/IBlobStorage.ts -------------------------------------------------------------------------------- /src/persistence/IBlobStorageStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/IBlobStorageStream.ts -------------------------------------------------------------------------------- /src/persistence/IObjectStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/IObjectStorage.ts -------------------------------------------------------------------------------- /src/persistence/IObjectStorageMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/IObjectStorageMiddleware.ts -------------------------------------------------------------------------------- /src/persistence/anchorMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/anchorMiddleware.ts -------------------------------------------------------------------------------- /src/persistence/changeCommitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/changeCommitter.ts -------------------------------------------------------------------------------- /src/persistence/defaultChangeCommitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/defaultChangeCommitter.ts -------------------------------------------------------------------------------- /src/persistence/defaultSessionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/defaultSessionManager.ts -------------------------------------------------------------------------------- /src/persistence/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/index.ts -------------------------------------------------------------------------------- /src/persistence/loadingHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/loadingHandler.ts -------------------------------------------------------------------------------- /src/persistence/offline.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/offline.module.ts -------------------------------------------------------------------------------- /src/persistence/offlineObjectStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/offlineObjectStorage.ts -------------------------------------------------------------------------------- /src/persistence/offlineOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/offlineOptions.ts -------------------------------------------------------------------------------- /src/persistence/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/query.ts -------------------------------------------------------------------------------- /src/persistence/redoToolButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/redoToolButton.ts -------------------------------------------------------------------------------- /src/persistence/saveChangesToolbutton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/saveChangesToolbutton.ts -------------------------------------------------------------------------------- /src/persistence/savingHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/savingHandler.ts -------------------------------------------------------------------------------- /src/persistence/sessionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/sessionManager.ts -------------------------------------------------------------------------------- /src/persistence/undoToolButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/persistence/undoToolButton.ts -------------------------------------------------------------------------------- /src/popups/IPopupService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/popups/IPopupService.ts -------------------------------------------------------------------------------- /src/popups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/popups/index.ts -------------------------------------------------------------------------------- /src/popups/popupContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/popups/popupContract.ts -------------------------------------------------------------------------------- /src/popups/popupHyperlinkProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/popups/popupHyperlinkProvider.ts -------------------------------------------------------------------------------- /src/popups/popupLocalizedContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/popups/popupLocalizedContract.ts -------------------------------------------------------------------------------- /src/popups/popupMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/popups/popupMetadata.ts -------------------------------------------------------------------------------- /src/popups/popupPermalinkResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/popups/popupPermalinkResolver.ts -------------------------------------------------------------------------------- /src/popups/popupService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/popups/popupService.ts -------------------------------------------------------------------------------- /src/publishing/IPublisher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/IPublisher.ts -------------------------------------------------------------------------------- /src/publishing/cacheStorageModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/cacheStorageModule.ts -------------------------------------------------------------------------------- /src/publishing/cachedObjectStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/cachedObjectStorage.ts -------------------------------------------------------------------------------- /src/publishing/defaultHtmlDocumentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/defaultHtmlDocumentProvider.ts -------------------------------------------------------------------------------- /src/publishing/htmlDocumentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/htmlDocumentProvider.ts -------------------------------------------------------------------------------- /src/publishing/htmlPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/htmlPage.ts -------------------------------------------------------------------------------- /src/publishing/htmlPageOptimizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/htmlPageOptimizer.ts -------------------------------------------------------------------------------- /src/publishing/htmlPagePublisher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/htmlPagePublisher.ts -------------------------------------------------------------------------------- /src/publishing/htmlPagePublisherPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/htmlPagePublisherPlugin.ts -------------------------------------------------------------------------------- /src/publishing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/index.ts -------------------------------------------------------------------------------- /src/publishing/jsdomHtmlDocumentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/jsdomHtmlDocumentProvider.ts -------------------------------------------------------------------------------- /src/publishing/linkedDataHtmlPagePublisherPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/linkedDataHtmlPagePublisherPlugin.ts -------------------------------------------------------------------------------- /src/publishing/openGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/openGraph.ts -------------------------------------------------------------------------------- /src/publishing/openGraphHtmlPagePublisherPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/openGraphHtmlPagePublisherPlugin.ts -------------------------------------------------------------------------------- /src/publishing/pageLinkedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/pageLinkedData.ts -------------------------------------------------------------------------------- /src/publishing/sitemapBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/sitemapBuilder.ts -------------------------------------------------------------------------------- /src/publishing/socialShareDataHtmlPagePublisherPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/socialShareDataHtmlPagePublisherPlugin.ts -------------------------------------------------------------------------------- /src/publishing/sourceLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/publishing/sourceLink.ts -------------------------------------------------------------------------------- /src/regexps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/regexps.ts -------------------------------------------------------------------------------- /src/routing/anchorRouteHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/routing/anchorRouteHandler.ts -------------------------------------------------------------------------------- /src/routing/defaultRouteGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/routing/defaultRouteGuard.ts -------------------------------------------------------------------------------- /src/routing/defaultRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/routing/defaultRouter.ts -------------------------------------------------------------------------------- /src/routing/historyRouteHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/routing/historyRouteHandler.ts -------------------------------------------------------------------------------- /src/routing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/routing/index.ts -------------------------------------------------------------------------------- /src/routing/javascriptRouteGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/routing/javascriptRouteGuard.ts -------------------------------------------------------------------------------- /src/routing/locationRouteHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/routing/locationRouteHandler.ts -------------------------------------------------------------------------------- /src/routing/mailtoRouteGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/routing/mailtoRouteGuard.ts -------------------------------------------------------------------------------- /src/routing/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/routing/route.ts -------------------------------------------------------------------------------- /src/routing/routeGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/routing/routeGuard.ts -------------------------------------------------------------------------------- /src/routing/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/routing/router.ts -------------------------------------------------------------------------------- /src/routing/routerEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/routing/routerEvents.ts -------------------------------------------------------------------------------- /src/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/search/index.ts -------------------------------------------------------------------------------- /src/search/searchIndexBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/search/searchIndexBuilder.ts -------------------------------------------------------------------------------- /src/search/searchResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/search/searchResult.ts -------------------------------------------------------------------------------- /src/search/searchResultsBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/search/searchResultsBuilder.ts -------------------------------------------------------------------------------- /src/search/searchableDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/search/searchableDocument.ts -------------------------------------------------------------------------------- /src/search/staticSearchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/search/staticSearchService.ts -------------------------------------------------------------------------------- /src/search/webPageSearchResultsBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/search/webPageSearchResultsBuilder.ts -------------------------------------------------------------------------------- /src/security/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/security/index.ts -------------------------------------------------------------------------------- /src/security/roleBasedSecurityContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/security/roleBasedSecurityContract.ts -------------------------------------------------------------------------------- /src/security/roleBasedSecurityModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/security/roleBasedSecurityModel.ts -------------------------------------------------------------------------------- /src/security/roleBasedSecurityModelBinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/security/roleBasedSecurityModelBinder.ts -------------------------------------------------------------------------------- /src/security/securityContract.ts: -------------------------------------------------------------------------------- 1 | export interface SecurityContract { } -------------------------------------------------------------------------------- /src/security/securityModel.ts: -------------------------------------------------------------------------------- 1 | export interface SecurityModel { } -------------------------------------------------------------------------------- /src/security/securityModelBinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/security/securityModelBinder.ts -------------------------------------------------------------------------------- /src/sites/ISiteService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/sites/ISiteService.ts -------------------------------------------------------------------------------- /src/sites/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/sites/index.ts -------------------------------------------------------------------------------- /src/sites/siteService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/sites/siteService.ts -------------------------------------------------------------------------------- /src/sites/siteSettingsContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/sites/siteSettingsContract.ts -------------------------------------------------------------------------------- /src/styles/IStyleGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/IStyleGroup.ts -------------------------------------------------------------------------------- /src/styles/IStyleSnippetService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/IStyleSnippetService.ts -------------------------------------------------------------------------------- /src/styles/breakpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/breakpoints.ts -------------------------------------------------------------------------------- /src/styles/componentBagContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/componentBagContract.ts -------------------------------------------------------------------------------- /src/styles/fontFace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/fontFace.ts -------------------------------------------------------------------------------- /src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/index.ts -------------------------------------------------------------------------------- /src/styles/localStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/localStyles.ts -------------------------------------------------------------------------------- /src/styles/pluginBagContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/pluginBagContract.ts -------------------------------------------------------------------------------- /src/styles/primitiveContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/primitiveContract.ts -------------------------------------------------------------------------------- /src/styles/stateBagContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/stateBagContract.ts -------------------------------------------------------------------------------- /src/styles/styleCompiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/styleCompiler.ts -------------------------------------------------------------------------------- /src/styles/styleDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/styleDefinition.ts -------------------------------------------------------------------------------- /src/styles/styleHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/styleHandler.ts -------------------------------------------------------------------------------- /src/styles/styleManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/styleManager.ts -------------------------------------------------------------------------------- /src/styles/styleMediaQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/styleMediaQuery.ts -------------------------------------------------------------------------------- /src/styles/styleModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/styleModel.ts -------------------------------------------------------------------------------- /src/styles/stylePluginConfig.ts: -------------------------------------------------------------------------------- 1 | export interface StylePluginConfig { 2 | 3 | } -------------------------------------------------------------------------------- /src/styles/styleRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/styleRule.ts -------------------------------------------------------------------------------- /src/styles/styleSheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/styleSheet.ts -------------------------------------------------------------------------------- /src/styles/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/styles.ts -------------------------------------------------------------------------------- /src/styles/variationBagContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/variationBagContract.ts -------------------------------------------------------------------------------- /src/styles/variationContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/styles/variationContract.ts -------------------------------------------------------------------------------- /src/text/contracts/BreakContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/BreakContract.ts -------------------------------------------------------------------------------- /src/text/contracts/FormattedContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/FormattedContract.ts -------------------------------------------------------------------------------- /src/text/contracts/Heading1Contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/Heading1Contract.ts -------------------------------------------------------------------------------- /src/text/contracts/Heading2Contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/Heading2Contract.ts -------------------------------------------------------------------------------- /src/text/contracts/Heading3Contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/Heading3Contract.ts -------------------------------------------------------------------------------- /src/text/contracts/Heading4Contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/Heading4Contract.ts -------------------------------------------------------------------------------- /src/text/contracts/Heading5Contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/Heading5Contract.ts -------------------------------------------------------------------------------- /src/text/contracts/Heading6Contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/Heading6Contract.ts -------------------------------------------------------------------------------- /src/text/contracts/ParagraphContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/ParagraphContract.ts -------------------------------------------------------------------------------- /src/text/contracts/QuoteContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/QuoteContract.ts -------------------------------------------------------------------------------- /src/text/contracts/blockContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/blockContract.ts -------------------------------------------------------------------------------- /src/text/contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/index.ts -------------------------------------------------------------------------------- /src/text/contracts/inlineContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/inlineContract.ts -------------------------------------------------------------------------------- /src/text/contracts/listContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/listContract.ts -------------------------------------------------------------------------------- /src/text/contracts/listItemContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/listItemContract.ts -------------------------------------------------------------------------------- /src/text/contracts/markContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/contracts/markContract.ts -------------------------------------------------------------------------------- /src/text/models/blockModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/blockModel.ts -------------------------------------------------------------------------------- /src/text/models/breakModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/breakModel.ts -------------------------------------------------------------------------------- /src/text/models/colorModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/colorModel.ts -------------------------------------------------------------------------------- /src/text/models/formattedModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/formattedModel.ts -------------------------------------------------------------------------------- /src/text/models/heading1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/heading1.ts -------------------------------------------------------------------------------- /src/text/models/heading2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/heading2.ts -------------------------------------------------------------------------------- /src/text/models/heading3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/heading3.ts -------------------------------------------------------------------------------- /src/text/models/heading4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/heading4.ts -------------------------------------------------------------------------------- /src/text/models/heading5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/heading5.ts -------------------------------------------------------------------------------- /src/text/models/heading6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/heading6.ts -------------------------------------------------------------------------------- /src/text/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/index.ts -------------------------------------------------------------------------------- /src/text/models/inlineModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/inlineModel.ts -------------------------------------------------------------------------------- /src/text/models/listItemModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/listItemModel.ts -------------------------------------------------------------------------------- /src/text/models/listModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/listModel.ts -------------------------------------------------------------------------------- /src/text/models/markModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/markModel.ts -------------------------------------------------------------------------------- /src/text/models/paragraphModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/paragraphModel.ts -------------------------------------------------------------------------------- /src/text/models/quoteModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/text/models/quoteModel.ts -------------------------------------------------------------------------------- /src/tutorials/defaultHelpService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/tutorials/defaultHelpService.ts -------------------------------------------------------------------------------- /src/tutorials/helpService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/tutorials/helpService.ts -------------------------------------------------------------------------------- /src/tutorials/hint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/tutorials/hint.ts -------------------------------------------------------------------------------- /src/tutorials/hinter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/tutorials/hinter.ts -------------------------------------------------------------------------------- /src/typings/constructor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/typings/constructor.d.ts -------------------------------------------------------------------------------- /src/typings/document.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/typings/document.d.ts -------------------------------------------------------------------------------- /src/typings/webkit.d.ts: -------------------------------------------------------------------------------- 1 | declare let webkitSpeechRecognition: any; 2 | -------------------------------------------------------------------------------- /src/ui/IBackground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/IBackground.ts -------------------------------------------------------------------------------- /src/ui/ICommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/ICommand.ts -------------------------------------------------------------------------------- /src/ui/IComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/IComponent.ts -------------------------------------------------------------------------------- /src/ui/IContextCommandSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/IContextCommandSet.ts -------------------------------------------------------------------------------- /src/ui/IHighlightConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/IHighlightConfig.ts -------------------------------------------------------------------------------- /src/ui/IHyperlinkProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/IHyperlinkProvider.ts -------------------------------------------------------------------------------- /src/ui/ILightbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/ILightbox.ts -------------------------------------------------------------------------------- /src/ui/IResourceSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/IResourceSelector.ts -------------------------------------------------------------------------------- /src/ui/ITemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/ITemplate.ts -------------------------------------------------------------------------------- /src/ui/activeElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/activeElement.ts -------------------------------------------------------------------------------- /src/ui/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/background.ts -------------------------------------------------------------------------------- /src/ui/balloons/balloonActivationMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/balloons/balloonActivationMethod.ts -------------------------------------------------------------------------------- /src/ui/balloons/balloonHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/balloons/balloonHandle.ts -------------------------------------------------------------------------------- /src/ui/balloons/balloonOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/balloons/balloonOptions.ts -------------------------------------------------------------------------------- /src/ui/balloons/balloonState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/balloons/balloonState.ts -------------------------------------------------------------------------------- /src/ui/balloons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/balloons/index.ts -------------------------------------------------------------------------------- /src/ui/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/commands.ts -------------------------------------------------------------------------------- /src/ui/draggables/dragManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/draggables/dragManager.ts -------------------------------------------------------------------------------- /src/ui/draggables/dragSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/draggables/dragSession.ts -------------------------------------------------------------------------------- /src/ui/draggables/dragSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/draggables/dragSource.ts -------------------------------------------------------------------------------- /src/ui/draggables/dragSourceConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/draggables/dragSourceConfig.ts -------------------------------------------------------------------------------- /src/ui/draggables/dragTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/draggables/dragTarget.ts -------------------------------------------------------------------------------- /src/ui/draggables/dragTargetConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/draggables/dragTargetConfig.ts -------------------------------------------------------------------------------- /src/ui/draggables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/draggables/index.ts -------------------------------------------------------------------------------- /src/ui/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/icons.ts -------------------------------------------------------------------------------- /src/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/index.ts -------------------------------------------------------------------------------- /src/ui/pointerPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/pointerPosition.ts -------------------------------------------------------------------------------- /src/ui/positioningOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/positioningOptions.ts -------------------------------------------------------------------------------- /src/ui/quadrant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/quadrant.ts -------------------------------------------------------------------------------- /src/ui/resizableOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/resizableOptions.ts -------------------------------------------------------------------------------- /src/ui/selectOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/selectOption.ts -------------------------------------------------------------------------------- /src/ui/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/toast.ts -------------------------------------------------------------------------------- /src/ui/toolButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/toolButton.ts -------------------------------------------------------------------------------- /src/ui/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/view.ts -------------------------------------------------------------------------------- /src/ui/viewManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/viewManager.ts -------------------------------------------------------------------------------- /src/ui/viewStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/ui/viewStack.ts -------------------------------------------------------------------------------- /src/urls/IUrlService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/urls/IUrlService.ts -------------------------------------------------------------------------------- /src/urls/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/urls/index.ts -------------------------------------------------------------------------------- /src/urls/urlContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/urls/urlContract.ts -------------------------------------------------------------------------------- /src/urls/urlHyperlinkProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/urls/urlHyperlinkProvider.ts -------------------------------------------------------------------------------- /src/urls/urlPermalinkResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/urls/urlPermalinkResolver.ts -------------------------------------------------------------------------------- /src/urls/urlService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/urls/urlService.ts -------------------------------------------------------------------------------- /src/user/accessToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/user/accessToken.ts -------------------------------------------------------------------------------- /src/user/authenticator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/user/authenticator.ts -------------------------------------------------------------------------------- /src/user/builtInRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/user/builtInRoles.ts -------------------------------------------------------------------------------- /src/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/user/index.ts -------------------------------------------------------------------------------- /src/user/roleModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/user/roleModel.ts -------------------------------------------------------------------------------- /src/user/roleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/user/roleService.ts -------------------------------------------------------------------------------- /src/user/userService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/user/userService.ts -------------------------------------------------------------------------------- /src/user/visibilityGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/user/visibilityGuard.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/widgets/IViewModelBinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/widgets/IViewModelBinder.ts -------------------------------------------------------------------------------- /src/widgets/IWidgetService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/widgets/IWidgetService.ts -------------------------------------------------------------------------------- /src/widgets/background/backgroundModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/widgets/background/backgroundModel.ts -------------------------------------------------------------------------------- /src/widgets/background/backgroundModelBinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/widgets/background/backgroundModelBinder.ts -------------------------------------------------------------------------------- /src/widgets/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/widgets/background/index.ts -------------------------------------------------------------------------------- /src/widgets/contentPart/contentPartModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/widgets/contentPart/contentPartModel.ts -------------------------------------------------------------------------------- /src/widgets/contentPart/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./contentPartModel"; 2 | -------------------------------------------------------------------------------- /src/widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/widgets/index.ts -------------------------------------------------------------------------------- /src/widgets/modelBinderSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/widgets/modelBinderSelector.ts -------------------------------------------------------------------------------- /src/widgets/placeholder/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./placeholderModel"; 2 | -------------------------------------------------------------------------------- /src/widgets/placeholder/placeholderModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/widgets/placeholder/placeholderModel.ts -------------------------------------------------------------------------------- /src/widgets/widgetEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/widgets/widgetEditor.ts -------------------------------------------------------------------------------- /src/widgets/widgetModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/widgets/widgetModel.ts -------------------------------------------------------------------------------- /src/widgets/widgetService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/src/widgets/widgetService.ts -------------------------------------------------------------------------------- /src/widgets/widgetState.ts: -------------------------------------------------------------------------------- 1 | export interface WidgetState { 2 | [propertyName: string]: any; 3 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paperbits/paperbits-common/HEAD/tsconfig.json --------------------------------------------------------------------------------