├── .config └── dotnet-tools.json ├── .dockerignore ├── .gitignore ├── .sitecore └── schemas │ ├── ModuleFile.schema.json │ ├── RootConfigurationFile.schema.json │ └── UserConfiguration.schema.json ├── .vscode └── settings.json ├── README.md ├── authoring ├── Directory.Build.targets ├── Packages.props ├── XmCloudAuthoring.sln ├── items │ ├── nextjs-starter.module.json │ └── nextjs-starter │ │ └── DefaultRenderingHost │ │ └── Default.yml └── platform │ ├── Platform.csproj │ ├── Platform.wpp.targets │ ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── Local.pubxml │ ├── README.md │ └── web.config ├── headapps ├── nextjs-starter │ ├── .env │ ├── .eslintrc │ ├── .gitattributes │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── .vscode │ │ ├── extensions.json │ │ └── launch.json │ ├── LICENSE.txt │ ├── README.md │ ├── next-env.d.ts │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ └── sc_logo.svg │ ├── scripts │ │ ├── bootstrap.ts │ │ ├── config │ │ │ ├── index.ts │ │ │ └── plugins │ │ │ │ ├── computed.ts │ │ │ │ ├── edge-platform.ts │ │ │ │ ├── fallback.ts │ │ │ │ ├── multisite.ts │ │ │ │ ├── package-json.ts │ │ │ │ ├── scjssconfig.ts │ │ │ │ └── sxa.ts │ │ ├── generate-component-builder │ │ │ ├── index.ts │ │ │ └── plugins │ │ │ │ ├── component-builder.ts │ │ │ │ ├── components.ts │ │ │ │ ├── feaas.ts │ │ │ │ ├── form.ts │ │ │ │ └── packages.ts │ │ ├── generate-config.ts │ │ ├── generate-metadata.ts │ │ ├── generate-plugins.ts │ │ ├── install-pre-push-hook.ts │ │ ├── scaffold-component │ │ │ ├── index.ts │ │ │ └── plugins │ │ │ │ ├── byoc.ts │ │ │ │ ├── component.ts │ │ │ │ ├── next-steps-byoc.ts │ │ │ │ └── next-steps.ts │ │ ├── temp │ │ │ └── .gitignore │ │ ├── templates │ │ │ ├── byoc-component-src.ts │ │ │ └── component-src.ts │ │ └── utils.ts │ ├── src │ │ ├── Bootstrap.tsx │ │ ├── Layout.tsx │ │ ├── Navigation.tsx │ │ ├── NotFound.tsx │ │ ├── Scripts.tsx │ │ ├── assets │ │ │ ├── app.css │ │ │ ├── basic │ │ │ │ ├── _component.scss │ │ │ │ ├── _container.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _navigation.scss │ │ │ │ ├── _promo.scss │ │ │ │ ├── _rich-text.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── main.scss │ │ │ ├── main.scss │ │ │ └── sass │ │ │ │ ├── _app.scss │ │ │ │ ├── abstracts │ │ │ │ ├── _functions.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _vars.scss │ │ │ │ └── vars │ │ │ │ │ ├── _colors.scss │ │ │ │ │ ├── _fontSizes.scss │ │ │ │ │ └── _margins.scss │ │ │ │ ├── base │ │ │ │ ├── fonts │ │ │ │ │ ├── _fonts.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── index.scss │ │ │ │ ├── links │ │ │ │ │ ├── _link-button.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── reset │ │ │ │ │ ├── _inputs.scss │ │ │ │ │ ├── _links.scss │ │ │ │ │ └── _ui-datepicker.scss │ │ │ │ ├── richtext │ │ │ │ │ ├── _richtext-files-icons.scss │ │ │ │ │ ├── _richtext.scss │ │ │ │ │ └── index.scss │ │ │ │ └── typehead │ │ │ │ │ ├── _typehead.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── components │ │ │ │ ├── _component-column-splitter.scss │ │ │ │ ├── _component-container.scss │ │ │ │ ├── _component-image.scss │ │ │ │ ├── _component-navigation.scss │ │ │ │ ├── _component-promo.scss │ │ │ │ ├── _component-richtext-content.scss │ │ │ │ ├── common │ │ │ │ │ ├── _alignment.scss │ │ │ │ │ ├── _boxed.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _highlighted.scss │ │ │ │ │ ├── _link-button.scss │ │ │ │ │ ├── _promoted-box.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── container │ │ │ │ │ ├── _bordered.scss │ │ │ │ │ ├── _title-row-box.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── image-alignment │ │ │ │ │ ├── _image-left.scss │ │ │ │ │ └── _image-right.scss │ │ │ │ ├── image │ │ │ │ │ ├── _image-default-size.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── index.scss │ │ │ │ ├── layout │ │ │ │ │ ├── _acaindent.scss │ │ │ │ │ ├── _background.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── link-list │ │ │ │ │ ├── _component-link-list.scss │ │ │ │ │ ├── _list-vertical.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── navigation │ │ │ │ │ ├── _navigation-fat.scss │ │ │ │ │ ├── _navigation-main-horizontal-vertical.scss │ │ │ │ │ ├── _navigation-mobile.scss │ │ │ │ │ ├── _navigation-sidebar.scss │ │ │ │ │ ├── _sitemap-navigation.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── promo │ │ │ │ │ ├── _absolute-bottom-link.scss │ │ │ │ │ ├── _promo-hero.scss │ │ │ │ │ ├── _promo-shadow.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── rich-text │ │ │ │ │ ├── _rich-text-lists.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── spacing │ │ │ │ │ ├── _background-colors.scss │ │ │ │ │ ├── _indent.scss │ │ │ │ │ └── index.scss │ │ │ │ └── title │ │ │ │ │ ├── _component-title.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── main.scss │ │ │ │ └── variants │ │ │ │ ├── index.scss │ │ │ │ ├── link-list │ │ │ │ └── index.scss │ │ │ │ ├── navigation │ │ │ │ └── index.scss │ │ │ │ ├── page-content │ │ │ │ └── index.scss │ │ │ │ ├── promo │ │ │ │ └── index.scss │ │ │ │ ├── rich-text │ │ │ │ └── index.scss │ │ │ │ └── title │ │ │ │ └── index.scss │ │ ├── byoc │ │ │ ├── index.client.tsx │ │ │ ├── index.hybrid.ts │ │ │ └── index.tsx │ │ ├── components │ │ │ ├── CdpPageView.tsx │ │ │ ├── ColumnSplitter.tsx │ │ │ ├── Container.tsx │ │ │ ├── ContentBlock.tsx │ │ │ ├── FEAASScripts.tsx │ │ │ ├── Image.tsx │ │ │ ├── LinkList.tsx │ │ │ ├── Navigation.tsx │ │ │ ├── PageContent.tsx │ │ │ ├── PartialDesignDynamicPlaceholder.tsx │ │ │ ├── Promo.tsx │ │ │ ├── RichText.tsx │ │ │ ├── RowSplitter.tsx │ │ │ └── Title.tsx │ │ ├── lib │ │ │ ├── component-props │ │ │ │ └── index.ts │ │ │ ├── config.ts │ │ │ ├── dictionary-service-factory.ts │ │ │ ├── extract-path │ │ │ │ ├── index.ts │ │ │ │ └── plugins │ │ │ │ │ ├── multisite.ts │ │ │ │ │ └── personalize.ts │ │ │ ├── graphql-client-factory │ │ │ │ ├── create.ts │ │ │ │ └── index.ts │ │ │ ├── graphql-editing-service.ts │ │ │ ├── layout-service-factory.ts │ │ │ ├── middleware │ │ │ │ ├── index.ts │ │ │ │ └── plugins │ │ │ │ │ ├── multisite.ts │ │ │ │ │ ├── personalize.ts │ │ │ │ │ └── redirects.ts │ │ │ ├── next-config │ │ │ │ └── plugins │ │ │ │ │ ├── component-props.js │ │ │ │ │ ├── cors-header.js │ │ │ │ │ ├── feaas.js │ │ │ │ │ ├── robots.js │ │ │ │ │ ├── sass.js │ │ │ │ │ └── sitemap.js │ │ │ ├── page-props-factory │ │ │ │ ├── index.ts │ │ │ │ └── plugins │ │ │ │ │ ├── component-props.ts │ │ │ │ │ ├── component-themes.ts │ │ │ │ │ ├── content-styles.ts │ │ │ │ │ ├── normal-mode.ts │ │ │ │ │ ├── personalize.ts │ │ │ │ │ ├── preview-mode.ts │ │ │ │ │ └── site.ts │ │ │ ├── page-props.ts │ │ │ ├── site-resolver │ │ │ │ ├── index.ts │ │ │ │ └── plugins │ │ │ │ │ ├── default.ts │ │ │ │ │ └── multisite.ts │ │ │ └── sitemap-fetcher │ │ │ │ ├── index.ts │ │ │ │ └── plugins │ │ │ │ └── graphql-sitemap-service.ts │ │ ├── middleware.ts │ │ ├── pages │ │ │ ├── 404.tsx │ │ │ ├── 500.tsx │ │ │ ├── [[...path]].tsx │ │ │ ├── _app.tsx │ │ │ ├── _error.tsx │ │ │ ├── api │ │ │ │ ├── editing │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── data │ │ │ │ │ │ └── [key].ts │ │ │ │ │ ├── feaas │ │ │ │ │ │ └── render.ts │ │ │ │ │ └── render.ts │ │ │ │ ├── healthz.ts │ │ │ │ ├── robots.ts │ │ │ │ └── sitemap.ts │ │ │ └── feaas │ │ │ │ └── render.tsx │ │ └── temp │ │ │ └── .gitignore │ ├── tsconfig.json │ └── tsconfig.scripts.json └── spa-starters │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── angular │ ├── .env │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── LICENSE.txt │ ├── README.md │ ├── angular.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── proxy.conf.js │ ├── scripts │ │ ├── bootstrap.ts │ │ ├── config │ │ │ ├── index.ts │ │ │ └── plugins │ │ │ │ ├── computed.ts │ │ │ │ ├── fallback.ts │ │ │ │ ├── package-json.ts │ │ │ │ ├── scjssconfig.ts │ │ │ │ └── xmcloud.ts │ │ ├── generate-component-factory │ │ │ ├── index.ts │ │ │ ├── plugins │ │ │ │ ├── component-factory.ts │ │ │ │ ├── components.ts │ │ │ │ └── packages.ts │ │ │ └── template.ts │ │ ├── generate-config.ts │ │ ├── generate-metadata.ts │ │ ├── generate-plugins.ts │ │ ├── install-pre-push-hook.ts │ │ ├── proxy-build.ts │ │ ├── temp │ │ │ └── .gitignore │ │ └── update-graphql-fragment-data.ts │ ├── server.bundle.ts │ ├── server.exports.ts │ ├── src │ │ ├── app │ │ │ ├── JssState.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── app.server.module.ts │ │ │ ├── components │ │ │ │ ├── .gitignore │ │ │ │ ├── app-components.shared.module.ts │ │ │ │ ├── column-splitter │ │ │ │ │ ├── column-splitter.component.html │ │ │ │ │ └── column-splitter.component.ts │ │ │ │ ├── container │ │ │ │ │ ├── container.component.html │ │ │ │ │ └── container.component.ts │ │ │ │ ├── content-block │ │ │ │ │ ├── content-block.component.html │ │ │ │ │ └── content-block.component.ts │ │ │ │ ├── image │ │ │ │ │ ├── image.component.html │ │ │ │ │ └── image.component.ts │ │ │ │ ├── link-list │ │ │ │ │ ├── link-list.component.html │ │ │ │ │ └── link-list.component.ts │ │ │ │ ├── navigation │ │ │ │ │ ├── navigation-item.component.html │ │ │ │ │ ├── navigation-item.component.ts │ │ │ │ │ ├── navigation.component.html │ │ │ │ │ └── navigation.component.ts │ │ │ │ ├── page-content │ │ │ │ │ ├── page-content.component.html │ │ │ │ │ └── page-content.component.ts │ │ │ │ ├── partial-design-dynamic-placeholder │ │ │ │ │ ├── partial-design-dynamic-placeholder.component.html │ │ │ │ │ └── partial-design-dynamic-placeholder.component.ts │ │ │ │ ├── promo │ │ │ │ │ ├── promo.component.html │ │ │ │ │ └── promo.component.ts │ │ │ │ ├── richtext │ │ │ │ │ ├── richtext.component.html │ │ │ │ │ └── richtext.component.ts │ │ │ │ ├── row-splitter │ │ │ │ │ ├── row-splitter.component.html │ │ │ │ │ └── row-splitter.component.ts │ │ │ │ ├── sxa.component.ts │ │ │ │ └── title │ │ │ │ │ ├── title.component.html │ │ │ │ │ └── title.component.ts │ │ │ ├── i18n │ │ │ │ ├── jss-translation-client-loader.service.ts │ │ │ │ ├── jss-translation-loader.service.ts │ │ │ │ └── jss-translation-server-loader.service.ts │ │ │ ├── jss-context.server-side.service.ts │ │ │ ├── jss-context.service.ts │ │ │ ├── jss-graphql.module.ts │ │ │ ├── jss-graphql.service.ts │ │ │ ├── jss-link.service.ts │ │ │ ├── jss-meta.service.ts │ │ │ ├── layout │ │ │ │ └── jss-layout.service.ts │ │ │ ├── lib │ │ │ │ ├── config.ts │ │ │ │ ├── dictionary-service-factory.ts │ │ │ │ ├── graphql-client-factory │ │ │ │ │ ├── config.ts │ │ │ │ │ └── index.ts │ │ │ │ └── layout-service-factory.ts │ │ │ └── routing │ │ │ │ ├── jss-route-builder.service.ts │ │ │ │ ├── jss-route-resolver.service.ts │ │ │ │ ├── layout │ │ │ │ ├── layout.component.html │ │ │ │ └── layout.component.ts │ │ │ │ ├── navigation │ │ │ │ ├── navigation.component.html │ │ │ │ └── navigation.component.ts │ │ │ │ ├── not-found │ │ │ │ ├── not-found.component.html │ │ │ │ └── not-found.component.ts │ │ │ │ ├── routing.module.ts │ │ │ │ ├── scripts │ │ │ │ ├── cdp-page-view.component.ts │ │ │ │ ├── cloud-sdk-init.component.ts │ │ │ │ ├── scripts.component.html │ │ │ │ ├── scripts.component.ts │ │ │ │ └── scripts.module.ts │ │ │ │ └── server-error │ │ │ │ ├── server-error.component.html │ │ │ │ └── server-error.component.ts │ │ ├── assets │ │ │ ├── images │ │ │ │ └── sc_logo.svg │ │ │ └── styles │ │ │ │ ├── basic │ │ │ │ ├── _component.scss │ │ │ │ ├── _container.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _navigation.scss │ │ │ │ ├── _promo.scss │ │ │ │ ├── _rich-text.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── main.scss │ │ │ │ ├── main.scss │ │ │ │ └── sass │ │ │ │ ├── _app.scss │ │ │ │ ├── abstracts │ │ │ │ ├── _functions.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _vars.scss │ │ │ │ └── vars │ │ │ │ │ ├── _colors.scss │ │ │ │ │ ├── _fontSizes.scss │ │ │ │ │ └── _margins.scss │ │ │ │ ├── base │ │ │ │ ├── fonts │ │ │ │ │ ├── _fonts.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── index.scss │ │ │ │ ├── links │ │ │ │ │ ├── _link-button.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── reset │ │ │ │ │ ├── _inputs.scss │ │ │ │ │ ├── _links.scss │ │ │ │ │ └── _ui-datepicker.scss │ │ │ │ ├── richtext │ │ │ │ │ ├── _richtext-files-icons.scss │ │ │ │ │ ├── _richtext.scss │ │ │ │ │ └── index.scss │ │ │ │ └── typehead │ │ │ │ │ ├── _typehead.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── components │ │ │ │ ├── _component-column-splitter.scss │ │ │ │ ├── _component-container.scss │ │ │ │ ├── _component-image.scss │ │ │ │ ├── _component-navigation.scss │ │ │ │ ├── _component-promo.scss │ │ │ │ ├── _component-richtext-content.scss │ │ │ │ ├── common │ │ │ │ │ ├── _alignment.scss │ │ │ │ │ ├── _boxed.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _highlighted.scss │ │ │ │ │ ├── _link-button.scss │ │ │ │ │ ├── _promoted-box.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── container │ │ │ │ │ ├── _bordered.scss │ │ │ │ │ ├── _title-row-box.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── image-alignment │ │ │ │ │ ├── _image-left.scss │ │ │ │ │ └── _image-right.scss │ │ │ │ ├── image │ │ │ │ │ ├── _image-default-size.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── index.scss │ │ │ │ ├── layout │ │ │ │ │ ├── _acaindent.scss │ │ │ │ │ ├── _background.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── link-list │ │ │ │ │ ├── _component-link-list.scss │ │ │ │ │ ├── _list-vertical.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── navigation │ │ │ │ │ ├── _navigation-fat.scss │ │ │ │ │ ├── _navigation-main-horizontal-vertical.scss │ │ │ │ │ ├── _navigation-mobile.scss │ │ │ │ │ ├── _navigation-sidebar.scss │ │ │ │ │ ├── _sitemap-navigation.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── promo │ │ │ │ │ ├── _absolute-bottom-link.scss │ │ │ │ │ ├── _promo-hero.scss │ │ │ │ │ ├── _promo-shadow.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── rich-text │ │ │ │ │ ├── _rich-text-lists.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── spacing │ │ │ │ │ ├── _background-colors.scss │ │ │ │ │ ├── _indent.scss │ │ │ │ │ └── index.scss │ │ │ │ └── title │ │ │ │ │ ├── _component-title.scss │ │ │ │ │ └── index.scss │ │ │ │ ├── main.scss │ │ │ │ └── variants │ │ │ │ ├── index.scss │ │ │ │ ├── link-list │ │ │ │ └── index.scss │ │ │ │ ├── navigation │ │ │ │ └── index.scss │ │ │ │ ├── page-content │ │ │ │ └── index.scss │ │ │ │ ├── promo │ │ │ │ └── index.scss │ │ │ │ ├── rich-text │ │ │ │ └── index.scss │ │ │ │ └── title │ │ │ │ └── index.scss │ │ ├── environments │ │ │ └── .gitignore │ │ ├── graphql-fragment-types.ts │ │ ├── index.html │ │ ├── main.server.ts │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.server.json │ │ ├── tsconfig.spec.json │ │ ├── tsconfig.webpack-server.json │ │ └── typings.d.ts │ ├── tsconfig.json │ └── webpack.config.js │ ├── package.json │ ├── pnpm-lock.yaml │ ├── pnpm-workspace.yaml │ └── proxy │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── config.ts │ ├── index.ts │ ├── personalize.ts │ └── types.ts │ └── tsconfig.json ├── local-containers ├── .env ├── README.md ├── docker-compose.override.yml ├── docker-compose.yml ├── docker │ ├── .gitignore │ ├── README.md │ ├── build │ │ ├── README.md │ │ ├── cm │ │ │ ├── Dockerfile │ │ │ ├── readme.md │ │ │ └── templates │ │ │ │ ├── .gitignore │ │ │ │ ├── import-templates.ps1 │ │ │ │ └── modules_template │ │ │ │ ├── ApiKey.module.json │ │ │ │ └── items │ │ │ │ └── api-key │ │ │ │ └── template.yml │ │ ├── nodejs │ │ │ └── Dockerfile │ │ └── rendering-nextjs │ │ │ └── Dockerfile │ ├── clean.ps1 │ ├── data │ │ ├── cm │ │ │ └── .gitkeep │ │ ├── solr │ │ │ └── .gitkeep │ │ └── sql │ │ │ └── .gitkeep │ ├── deploy │ │ └── platform │ │ │ └── .gitkeep │ └── traefik │ │ ├── README.md │ │ ├── certs │ │ └── .gitignore │ │ └── config │ │ └── dynamic │ │ └── certs_config.yaml └── scripts │ ├── New-EdgeToken.ps1 │ ├── down.ps1 │ ├── init.ps1 │ ├── up.ps1 │ └── upFunctions.ps1 ├── nuget.config ├── sitecore.json └── xmcloud.build.json /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /.sitecore/schemas/ModuleFile.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/.sitecore/schemas/ModuleFile.schema.json -------------------------------------------------------------------------------- /.sitecore/schemas/RootConfigurationFile.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/.sitecore/schemas/RootConfigurationFile.schema.json -------------------------------------------------------------------------------- /.sitecore/schemas/UserConfiguration.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/.sitecore/schemas/UserConfiguration.schema.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/README.md -------------------------------------------------------------------------------- /authoring/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/authoring/Directory.Build.targets -------------------------------------------------------------------------------- /authoring/Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/authoring/Packages.props -------------------------------------------------------------------------------- /authoring/XmCloudAuthoring.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/authoring/XmCloudAuthoring.sln -------------------------------------------------------------------------------- /authoring/items/nextjs-starter.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/authoring/items/nextjs-starter.module.json -------------------------------------------------------------------------------- /authoring/items/nextjs-starter/DefaultRenderingHost/Default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/authoring/items/nextjs-starter/DefaultRenderingHost/Default.yml -------------------------------------------------------------------------------- /authoring/platform/Platform.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/authoring/platform/Platform.csproj -------------------------------------------------------------------------------- /authoring/platform/Platform.wpp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/authoring/platform/Platform.wpp.targets -------------------------------------------------------------------------------- /authoring/platform/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/authoring/platform/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /authoring/platform/Properties/PublishProfiles/Local.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/authoring/platform/Properties/PublishProfiles/Local.pubxml -------------------------------------------------------------------------------- /authoring/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/authoring/platform/README.md -------------------------------------------------------------------------------- /authoring/platform/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/authoring/platform/web.config -------------------------------------------------------------------------------- /headapps/nextjs-starter/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/.env -------------------------------------------------------------------------------- /headapps/nextjs-starter/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/.eslintrc -------------------------------------------------------------------------------- /headapps/nextjs-starter/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/.gitattributes -------------------------------------------------------------------------------- /headapps/nextjs-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/.gitignore -------------------------------------------------------------------------------- /headapps/nextjs-starter/.prettierignore: -------------------------------------------------------------------------------- 1 | package.json -------------------------------------------------------------------------------- /headapps/nextjs-starter/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/.prettierrc -------------------------------------------------------------------------------- /headapps/nextjs-starter/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/.vscode/extensions.json -------------------------------------------------------------------------------- /headapps/nextjs-starter/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/.vscode/launch.json -------------------------------------------------------------------------------- /headapps/nextjs-starter/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/LICENSE.txt -------------------------------------------------------------------------------- /headapps/nextjs-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/README.md -------------------------------------------------------------------------------- /headapps/nextjs-starter/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/next-env.d.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/next.config.js -------------------------------------------------------------------------------- /headapps/nextjs-starter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/package-lock.json -------------------------------------------------------------------------------- /headapps/nextjs-starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/package.json -------------------------------------------------------------------------------- /headapps/nextjs-starter/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/public/favicon.ico -------------------------------------------------------------------------------- /headapps/nextjs-starter/public/sc_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/public/sc_logo.svg -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/bootstrap.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/config/index.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/config/plugins/computed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/config/plugins/computed.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/config/plugins/edge-platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/config/plugins/edge-platform.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/config/plugins/fallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/config/plugins/fallback.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/config/plugins/multisite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/config/plugins/multisite.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/config/plugins/package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/config/plugins/package-json.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/config/plugins/scjssconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/config/plugins/scjssconfig.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/config/plugins/sxa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/config/plugins/sxa.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/generate-component-builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/generate-component-builder/index.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/generate-component-builder/plugins/component-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/generate-component-builder/plugins/component-builder.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/generate-component-builder/plugins/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/generate-component-builder/plugins/components.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/generate-component-builder/plugins/feaas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/generate-component-builder/plugins/feaas.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/generate-component-builder/plugins/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/generate-component-builder/plugins/form.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/generate-component-builder/plugins/packages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/generate-component-builder/plugins/packages.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/generate-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/generate-config.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/generate-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/generate-metadata.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/generate-plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/generate-plugins.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/install-pre-push-hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/install-pre-push-hook.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/scaffold-component/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/scaffold-component/index.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/scaffold-component/plugins/byoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/scaffold-component/plugins/byoc.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/scaffold-component/plugins/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/scaffold-component/plugins/component.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/scaffold-component/plugins/next-steps-byoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/scaffold-component/plugins/next-steps-byoc.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/scaffold-component/plugins/next-steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/scaffold-component/plugins/next-steps.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/temp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/templates/byoc-component-src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/templates/byoc-component-src.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/templates/component-src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/templates/component-src.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/scripts/utils.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/Bootstrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/Bootstrap.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/Layout.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/Navigation.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/NotFound.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/Scripts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/Scripts.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/app.css -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/basic/_component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/basic/_component.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/basic/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/basic/_container.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/basic/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/basic/_fonts.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/basic/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/basic/_footer.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/basic/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/basic/_header.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/basic/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/basic/_navigation.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/basic/_promo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/basic/_promo.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/basic/_rich-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/basic/_rich-text.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/basic/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/basic/_variables.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/basic/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/basic/main.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/main.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/_app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/_app.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/abstracts/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/abstracts/_functions.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/abstracts/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/abstracts/_mixins.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/abstracts/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/abstracts/_vars.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/abstracts/vars/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/abstracts/vars/_colors.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/abstracts/vars/_fontSizes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/abstracts/vars/_fontSizes.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/abstracts/vars/_margins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/abstracts/vars/_margins.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/fonts/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/base/fonts/_fonts.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/fonts/index.scss: -------------------------------------------------------------------------------- 1 | @import "fonts"; 2 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/base/index.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/links/_link-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/base/links/_link-button.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/links/index.scss: -------------------------------------------------------------------------------- 1 | @import "link-button"; 2 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/reset/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/base/reset/_inputs.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/reset/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/base/reset/_links.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/reset/_ui-datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/base/reset/_ui-datepicker.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/richtext/_richtext-files-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/base/richtext/_richtext-files-icons.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/richtext/_richtext.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/base/richtext/_richtext.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/richtext/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/base/richtext/index.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/typehead/_typehead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/base/typehead/_typehead.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/base/typehead/index.scss: -------------------------------------------------------------------------------- 1 | @import "typehead"; 2 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/_component-column-splitter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/_component-column-splitter.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/_component-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/_component-container.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/_component-image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/_component-image.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/_component-navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/_component-navigation.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/_component-promo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/_component-promo.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/_component-richtext-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/_component-richtext-content.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/common/_alignment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/common/_alignment.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/common/_boxed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/common/_boxed.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/common/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/common/_clearfix.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/common/_highlighted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/common/_highlighted.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/common/_link-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/common/_link-button.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/common/_promoted-box.scss: -------------------------------------------------------------------------------- 1 | .promoted-box { 2 | border: none !important; 3 | } 4 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/common/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/common/index.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/container/_bordered.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/container/_bordered.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/container/_title-row-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/container/_title-row-box.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/container/index.scss: -------------------------------------------------------------------------------- 1 | @import "bordered"; 2 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/image-alignment/_image-left.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/image-alignment/_image-left.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/image-alignment/_image-right.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/image-alignment/_image-right.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/image/_image-default-size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/image/_image-default-size.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/image/index.scss: -------------------------------------------------------------------------------- 1 | @import "image-default-size"; 2 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/index.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/layout/_acaindent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/layout/_acaindent.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/layout/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/layout/_background.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/layout/index.scss: -------------------------------------------------------------------------------- 1 | @import "background"; 2 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/link-list/_component-link-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/link-list/_component-link-list.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/link-list/_list-vertical.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/link-list/_list-vertical.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/link-list/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/link-list/index.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/navigation/_navigation-fat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/navigation/_navigation-fat.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/navigation/_navigation-main-horizontal-vertical.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/navigation/_navigation-main-horizontal-vertical.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/navigation/_navigation-mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/navigation/_navigation-mobile.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/navigation/_navigation-sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/navigation/_navigation-sidebar.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/navigation/_sitemap-navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/navigation/_sitemap-navigation.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/navigation/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/navigation/index.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/promo/_absolute-bottom-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/promo/_absolute-bottom-link.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/promo/_promo-hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/promo/_promo-hero.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/promo/_promo-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/promo/_promo-shadow.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/promo/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/promo/index.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/rich-text/_rich-text-lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/rich-text/_rich-text-lists.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/rich-text/index.scss: -------------------------------------------------------------------------------- 1 | @import "rich-text-lists"; 2 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/spacing/_background-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/spacing/_background-colors.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/spacing/_indent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/spacing/_indent.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/spacing/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/spacing/index.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/title/_component-title.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/components/title/_component-title.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/components/title/index.scss: -------------------------------------------------------------------------------- 1 | @import "component-title"; 2 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/main.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/variants/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/assets/sass/variants/index.scss -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/variants/link-list/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/variants/navigation/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/variants/page-content/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/variants/promo/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/variants/rich-text/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/assets/sass/variants/title/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/byoc/index.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/byoc/index.client.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/byoc/index.hybrid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/byoc/index.hybrid.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/byoc/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/byoc/index.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/CdpPageView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/CdpPageView.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/ColumnSplitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/ColumnSplitter.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/Container.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/ContentBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/ContentBlock.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/FEAASScripts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/FEAASScripts.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/Image.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/LinkList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/LinkList.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/Navigation.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/PageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/PageContent.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/PartialDesignDynamicPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/PartialDesignDynamicPlaceholder.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/Promo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/Promo.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/RichText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/RichText.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/RowSplitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/RowSplitter.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/components/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/components/Title.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/component-props/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/component-props/index.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/config.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/dictionary-service-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/dictionary-service-factory.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/extract-path/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/extract-path/index.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/extract-path/plugins/multisite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/extract-path/plugins/multisite.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/extract-path/plugins/personalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/extract-path/plugins/personalize.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/graphql-client-factory/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/graphql-client-factory/create.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/graphql-client-factory/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/graphql-client-factory/index.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/graphql-editing-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/graphql-editing-service.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/layout-service-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/layout-service-factory.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/middleware/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/middleware/index.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/middleware/plugins/multisite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/middleware/plugins/multisite.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/middleware/plugins/personalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/middleware/plugins/personalize.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/middleware/plugins/redirects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/middleware/plugins/redirects.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/next-config/plugins/component-props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/next-config/plugins/component-props.js -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/next-config/plugins/cors-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/next-config/plugins/cors-header.js -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/next-config/plugins/feaas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/next-config/plugins/feaas.js -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/next-config/plugins/robots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/next-config/plugins/robots.js -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/next-config/plugins/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/next-config/plugins/sass.js -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/next-config/plugins/sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/next-config/plugins/sitemap.js -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/page-props-factory/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/page-props-factory/index.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/page-props-factory/plugins/component-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/page-props-factory/plugins/component-props.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/page-props-factory/plugins/component-themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/page-props-factory/plugins/component-themes.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/page-props-factory/plugins/content-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/page-props-factory/plugins/content-styles.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/page-props-factory/plugins/normal-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/page-props-factory/plugins/normal-mode.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/page-props-factory/plugins/personalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/page-props-factory/plugins/personalize.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/page-props-factory/plugins/preview-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/page-props-factory/plugins/preview-mode.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/page-props-factory/plugins/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/page-props-factory/plugins/site.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/page-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/page-props.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/site-resolver/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/site-resolver/index.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/site-resolver/plugins/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/site-resolver/plugins/default.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/site-resolver/plugins/multisite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/site-resolver/plugins/multisite.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/sitemap-fetcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/sitemap-fetcher/index.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/lib/sitemap-fetcher/plugins/graphql-sitemap-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/lib/sitemap-fetcher/plugins/graphql-sitemap-service.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/middleware.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/404.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/500.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/[[...path]].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/[[...path]].tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/_app.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/_error.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/api/editing/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/api/editing/config.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/api/editing/data/[key].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/api/editing/data/[key].ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/api/editing/feaas/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/api/editing/feaas/render.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/api/editing/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/api/editing/render.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/api/healthz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/api/healthz.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/api/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/api/robots.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/api/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/api/sitemap.ts -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/pages/feaas/render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/src/pages/feaas/render.tsx -------------------------------------------------------------------------------- /headapps/nextjs-starter/src/temp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /headapps/nextjs-starter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/tsconfig.json -------------------------------------------------------------------------------- /headapps/nextjs-starter/tsconfig.scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/nextjs-starter/tsconfig.scripts.json -------------------------------------------------------------------------------- /headapps/spa-starters/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/.gitignore -------------------------------------------------------------------------------- /headapps/spa-starters/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/.npmrc -------------------------------------------------------------------------------- /headapps/spa-starters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/README.md -------------------------------------------------------------------------------- /headapps/spa-starters/angular/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/.env -------------------------------------------------------------------------------- /headapps/spa-starters/angular/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/.eslintignore -------------------------------------------------------------------------------- /headapps/spa-starters/angular/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/.eslintrc -------------------------------------------------------------------------------- /headapps/spa-starters/angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/.gitignore -------------------------------------------------------------------------------- /headapps/spa-starters/angular/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/.vscode/extensions.json -------------------------------------------------------------------------------- /headapps/spa-starters/angular/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/LICENSE.txt -------------------------------------------------------------------------------- /headapps/spa-starters/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/README.md -------------------------------------------------------------------------------- /headapps/spa-starters/angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/angular.json -------------------------------------------------------------------------------- /headapps/spa-starters/angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/karma.conf.js -------------------------------------------------------------------------------- /headapps/spa-starters/angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/package-lock.json -------------------------------------------------------------------------------- /headapps/spa-starters/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/package.json -------------------------------------------------------------------------------- /headapps/spa-starters/angular/proxy.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/proxy.conf.js -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/bootstrap.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/config/index.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/config/plugins/computed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/config/plugins/computed.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/config/plugins/fallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/config/plugins/fallback.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/config/plugins/package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/config/plugins/package-json.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/config/plugins/scjssconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/config/plugins/scjssconfig.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/config/plugins/xmcloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/config/plugins/xmcloud.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/generate-component-factory/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/generate-component-factory/index.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/generate-component-factory/plugins/component-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/generate-component-factory/plugins/component-factory.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/generate-component-factory/plugins/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/generate-component-factory/plugins/components.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/generate-component-factory/plugins/packages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/generate-component-factory/plugins/packages.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/generate-component-factory/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/generate-component-factory/template.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/generate-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/generate-config.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/generate-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/generate-metadata.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/generate-plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/generate-plugins.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/install-pre-push-hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/install-pre-push-hook.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/proxy-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/proxy-build.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/temp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/scripts/update-graphql-fragment-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/scripts/update-graphql-fragment-data.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/server.bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/server.bundle.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/server.exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/server.exports.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/JssState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/JssState.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/app.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/app.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/app.module.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/app.server.module.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/.gitignore -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/app-components.shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/app-components.shared.module.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/column-splitter/column-splitter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/column-splitter/column-splitter.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/column-splitter/column-splitter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/column-splitter/column-splitter.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/container/container.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/container/container.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/container/container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/container/container.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/content-block/content-block.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/content-block/content-block.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/content-block/content-block.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/content-block/content-block.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/image/image.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/image/image.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/image/image.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/image/image.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/link-list/link-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/link-list/link-list.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/link-list/link-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/link-list/link-list.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/navigation/navigation-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/navigation/navigation-item.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/navigation/navigation-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/navigation/navigation-item.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/navigation/navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/navigation/navigation.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/navigation/navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/navigation/navigation.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/page-content/page-content.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/page-content/page-content.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/page-content/page-content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/page-content/page-content.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/partial-design-dynamic-placeholder/partial-design-dynamic-placeholder.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/partial-design-dynamic-placeholder/partial-design-dynamic-placeholder.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/partial-design-dynamic-placeholder/partial-design-dynamic-placeholder.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/partial-design-dynamic-placeholder/partial-design-dynamic-placeholder.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/promo/promo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/promo/promo.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/promo/promo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/promo/promo.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/richtext/richtext.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/richtext/richtext.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/richtext/richtext.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/richtext/richtext.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/row-splitter/row-splitter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/row-splitter/row-splitter.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/row-splitter/row-splitter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/row-splitter/row-splitter.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/sxa.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/sxa.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/title/title.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/title/title.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/components/title/title.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/components/title/title.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/i18n/jss-translation-client-loader.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/i18n/jss-translation-client-loader.service.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/i18n/jss-translation-loader.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/i18n/jss-translation-loader.service.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/i18n/jss-translation-server-loader.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/i18n/jss-translation-server-loader.service.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/jss-context.server-side.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/jss-context.server-side.service.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/jss-context.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/jss-context.service.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/jss-graphql.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/jss-graphql.module.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/jss-graphql.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/jss-graphql.service.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/jss-link.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/jss-link.service.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/jss-meta.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/jss-meta.service.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/layout/jss-layout.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/layout/jss-layout.service.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/lib/config.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/lib/dictionary-service-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/lib/dictionary-service-factory.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/lib/graphql-client-factory/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/lib/graphql-client-factory/config.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/lib/graphql-client-factory/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/lib/graphql-client-factory/index.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/lib/layout-service-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/lib/layout-service-factory.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/jss-route-builder.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/jss-route-builder.service.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/jss-route-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/jss-route-resolver.service.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/layout/layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/layout/layout.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/layout/layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/layout/layout.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/navigation/navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/navigation/navigation.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/navigation/navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/navigation/navigation.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/not-found/not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/not-found/not-found.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/not-found/not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/not-found/not-found.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/routing.module.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/scripts/cdp-page-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/scripts/cdp-page-view.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/scripts/cloud-sdk-init.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/scripts/cloud-sdk-init.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/scripts/scripts.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/scripts/scripts.component.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/scripts/scripts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/scripts/scripts.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/scripts/scripts.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/scripts/scripts.module.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/server-error/server-error.component.html: -------------------------------------------------------------------------------- 1 |

2 | 500: Internal Server Error 3 |

4 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/app/routing/server-error/server-error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/app/routing/server-error/server-error.component.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/images/sc_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/images/sc_logo.svg -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/basic/_component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/basic/_component.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/basic/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/basic/_container.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/basic/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/basic/_fonts.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/basic/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/basic/_footer.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/basic/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/basic/_header.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/basic/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/basic/_navigation.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/basic/_promo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/basic/_promo.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/basic/_rich-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/basic/_rich-text.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/basic/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/basic/_variables.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/basic/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/basic/main.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/main.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/_app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/_app.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/abstracts/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/abstracts/_functions.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/abstracts/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/abstracts/_mixins.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/abstracts/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/abstracts/_vars.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/abstracts/vars/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/abstracts/vars/_colors.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/abstracts/vars/_fontSizes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/abstracts/vars/_fontSizes.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/abstracts/vars/_margins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/abstracts/vars/_margins.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/fonts/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/base/fonts/_fonts.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/fonts/index.scss: -------------------------------------------------------------------------------- 1 | @import "fonts"; 2 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/base/index.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/links/_link-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/base/links/_link-button.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/links/index.scss: -------------------------------------------------------------------------------- 1 | @import "link-button"; 2 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/reset/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/base/reset/_inputs.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/reset/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/base/reset/_links.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/reset/_ui-datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/base/reset/_ui-datepicker.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/richtext/_richtext-files-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/base/richtext/_richtext-files-icons.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/richtext/_richtext.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/base/richtext/_richtext.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/richtext/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/base/richtext/index.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/typehead/_typehead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/base/typehead/_typehead.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/base/typehead/index.scss: -------------------------------------------------------------------------------- 1 | @import "typehead"; 2 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/_component-column-splitter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/_component-column-splitter.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/_component-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/_component-container.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/_component-image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/_component-image.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/_component-navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/_component-navigation.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/_component-promo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/_component-promo.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/_component-richtext-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/_component-richtext-content.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/common/_alignment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/common/_alignment.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/common/_boxed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/common/_boxed.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/common/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/common/_clearfix.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/common/_highlighted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/common/_highlighted.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/common/_link-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/common/_link-button.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/common/_promoted-box.scss: -------------------------------------------------------------------------------- 1 | .promoted-box { 2 | border: none !important; 3 | } 4 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/common/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/common/index.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/container/_bordered.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/container/_bordered.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/container/_title-row-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/container/_title-row-box.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/container/index.scss: -------------------------------------------------------------------------------- 1 | @import "bordered"; 2 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/image-alignment/_image-left.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/image-alignment/_image-left.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/image-alignment/_image-right.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/image-alignment/_image-right.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/image/_image-default-size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/image/_image-default-size.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/image/index.scss: -------------------------------------------------------------------------------- 1 | @import "image-default-size"; 2 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/index.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/layout/_acaindent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/layout/_acaindent.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/layout/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/layout/_background.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/layout/index.scss: -------------------------------------------------------------------------------- 1 | @import "background"; 2 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/link-list/_component-link-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/link-list/_component-link-list.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/link-list/_list-vertical.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/link-list/_list-vertical.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/link-list/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/link-list/index.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/navigation/_navigation-fat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/navigation/_navigation-fat.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/navigation/_navigation-main-horizontal-vertical.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/navigation/_navigation-main-horizontal-vertical.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/navigation/_navigation-mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/navigation/_navigation-mobile.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/navigation/_navigation-sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/navigation/_navigation-sidebar.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/navigation/_sitemap-navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/navigation/_sitemap-navigation.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/navigation/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/navigation/index.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/promo/_absolute-bottom-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/promo/_absolute-bottom-link.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/promo/_promo-hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/promo/_promo-hero.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/promo/_promo-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/promo/_promo-shadow.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/promo/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/promo/index.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/rich-text/_rich-text-lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/rich-text/_rich-text-lists.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/rich-text/index.scss: -------------------------------------------------------------------------------- 1 | @import "rich-text-lists"; 2 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/spacing/_background-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/spacing/_background-colors.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/spacing/_indent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/spacing/_indent.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/spacing/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/spacing/index.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/title/_component-title.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/components/title/_component-title.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/components/title/index.scss: -------------------------------------------------------------------------------- 1 | @import "component-title"; 2 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/main.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/variants/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/assets/styles/sass/variants/index.scss -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/variants/link-list/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/variants/navigation/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/variants/page-content/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/variants/promo/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/variants/rich-text/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/assets/styles/sass/variants/title/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/environments/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/graphql-fragment-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/graphql-fragment-types.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/index.html -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/main.server.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/main.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/polyfills.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/styles.css -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/test.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/tsconfig.app.json -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/tsconfig.server.json -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/tsconfig.spec.json -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/tsconfig.webpack-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/tsconfig.webpack-server.json -------------------------------------------------------------------------------- /headapps/spa-starters/angular/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/src/typings.d.ts -------------------------------------------------------------------------------- /headapps/spa-starters/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/tsconfig.json -------------------------------------------------------------------------------- /headapps/spa-starters/angular/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/angular/webpack.config.js -------------------------------------------------------------------------------- /headapps/spa-starters/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/package.json -------------------------------------------------------------------------------- /headapps/spa-starters/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/pnpm-lock.yaml -------------------------------------------------------------------------------- /headapps/spa-starters/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/pnpm-workspace.yaml -------------------------------------------------------------------------------- /headapps/spa-starters/proxy/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/proxy/.env -------------------------------------------------------------------------------- /headapps/spa-starters/proxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/proxy/.gitignore -------------------------------------------------------------------------------- /headapps/spa-starters/proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/proxy/README.md -------------------------------------------------------------------------------- /headapps/spa-starters/proxy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/proxy/package-lock.json -------------------------------------------------------------------------------- /headapps/spa-starters/proxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/proxy/package.json -------------------------------------------------------------------------------- /headapps/spa-starters/proxy/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/proxy/src/config.ts -------------------------------------------------------------------------------- /headapps/spa-starters/proxy/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/proxy/src/index.ts -------------------------------------------------------------------------------- /headapps/spa-starters/proxy/src/personalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/proxy/src/personalize.ts -------------------------------------------------------------------------------- /headapps/spa-starters/proxy/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/proxy/src/types.ts -------------------------------------------------------------------------------- /headapps/spa-starters/proxy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/headapps/spa-starters/proxy/tsconfig.json -------------------------------------------------------------------------------- /local-containers/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/.env -------------------------------------------------------------------------------- /local-containers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/README.md -------------------------------------------------------------------------------- /local-containers/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker-compose.override.yml -------------------------------------------------------------------------------- /local-containers/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker-compose.yml -------------------------------------------------------------------------------- /local-containers/docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/.gitignore -------------------------------------------------------------------------------- /local-containers/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/README.md -------------------------------------------------------------------------------- /local-containers/docker/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/build/README.md -------------------------------------------------------------------------------- /local-containers/docker/build/cm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/build/cm/Dockerfile -------------------------------------------------------------------------------- /local-containers/docker/build/cm/readme.md: -------------------------------------------------------------------------------- 1 | # Placeholder for copy optional files 2 | -------------------------------------------------------------------------------- /local-containers/docker/build/cm/templates/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/build/cm/templates/.gitignore -------------------------------------------------------------------------------- /local-containers/docker/build/cm/templates/import-templates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/build/cm/templates/import-templates.ps1 -------------------------------------------------------------------------------- /local-containers/docker/build/cm/templates/modules_template/ApiKey.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/build/cm/templates/modules_template/ApiKey.module.json -------------------------------------------------------------------------------- /local-containers/docker/build/cm/templates/modules_template/items/api-key/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/build/cm/templates/modules_template/items/api-key/template.yml -------------------------------------------------------------------------------- /local-containers/docker/build/nodejs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/build/nodejs/Dockerfile -------------------------------------------------------------------------------- /local-containers/docker/build/rendering-nextjs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/build/rendering-nextjs/Dockerfile -------------------------------------------------------------------------------- /local-containers/docker/clean.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/clean.ps1 -------------------------------------------------------------------------------- /local-containers/docker/data/cm/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /local-containers/docker/data/solr/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /local-containers/docker/data/sql/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /local-containers/docker/deploy/platform/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /local-containers/docker/traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/traefik/README.md -------------------------------------------------------------------------------- /local-containers/docker/traefik/certs/.gitignore: -------------------------------------------------------------------------------- 1 | *.pem -------------------------------------------------------------------------------- /local-containers/docker/traefik/config/dynamic/certs_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/docker/traefik/config/dynamic/certs_config.yaml -------------------------------------------------------------------------------- /local-containers/scripts/New-EdgeToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/scripts/New-EdgeToken.ps1 -------------------------------------------------------------------------------- /local-containers/scripts/down.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/scripts/down.ps1 -------------------------------------------------------------------------------- /local-containers/scripts/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/scripts/init.ps1 -------------------------------------------------------------------------------- /local-containers/scripts/up.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/scripts/up.ps1 -------------------------------------------------------------------------------- /local-containers/scripts/upFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/local-containers/scripts/upFunctions.ps1 -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/nuget.config -------------------------------------------------------------------------------- /sitecore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/sitecore.json -------------------------------------------------------------------------------- /xmcloud.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitecorelabs/xmcloud-foundation-head-dev/HEAD/xmcloud.build.json --------------------------------------------------------------------------------