create-sitecore-jss 22.2.0-canary.9 → 22.2.1-canary.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin.js +28 -70
- package/dist/common/index.js +3 -5
- package/dist/common/processes/install.js +2 -9
- package/dist/common/processes/next.js +3 -3
- package/dist/common/processes/transform.js +14 -29
- package/dist/common/prompts/base.js +12 -0
- package/dist/common/utils/helpers.js +43 -28
- package/dist/init-runner.js +11 -16
- package/dist/initializers/angular/index.js +0 -13
- package/dist/initializers/angular/prompts.js +1 -22
- package/dist/initializers/nextjs/index.js +2 -2
- package/dist/initializers/nextjs/prompts.js +0 -2
- package/dist/initializers/nextjs/remove-dev-dependencies.js +2 -2
- package/dist/initializers/nextjs-multisite/index.js +1 -1
- package/dist/initializers/nextjs-styleguide/index.js +1 -1
- package/dist/initializers/nextjs-styleguide-tracking/index.js +1 -1
- package/dist/initializers/nextjs-sxa/index.js +1 -1
- package/dist/initializers/nextjs-xmcloud/index.js +1 -1
- package/dist/initializers/react/index.js +3 -3
- package/dist/initializers/react/prompts.js +1 -1
- package/dist/initializers/react-native/prompts.js +0 -1
- package/dist/initializers/vue/prompts.js +1 -1
- package/dist/templates/angular/.env +3 -5
- package/dist/templates/angular/README.md +45 -5
- package/dist/templates/angular/angular.json +6 -1
- package/dist/templates/angular/package.json +20 -10
- package/dist/templates/angular/proxy.conf.js +23 -5
- package/dist/templates/angular/scripts/bootstrap.ts +24 -5
- package/dist/templates/angular/scripts/generate-config.ts +73 -53
- package/dist/templates/angular/scripts/update-graphql-fragment-data.ts +2 -4
- package/dist/templates/angular/server.bundle.ts +1 -19
- package/dist/templates/angular/src/app/app.module.ts +2 -0
- package/dist/templates/angular/src/app/components/app-components.shared.module.ts +19 -4
- package/dist/templates/angular/src/app/jss-context.server-side.service.ts +2 -0
- package/dist/templates/{angular-sxp → angular}/src/app/jss-data-fetcher.service.ts +1 -3
- package/dist/templates/angular/src/app/lib/dictionary-service-factory.ts +13 -21
- package/dist/templates/angular/src/app/lib/layout-service-factory.ts +12 -20
- package/dist/templates/angular/src/app/routing/layout/layout.component.html +1 -1
- package/dist/templates/angular/src/app/routing/layout/layout.component.ts +2 -1
- package/dist/templates/angular/src/app/routing/navigation/navigation.component.html +6 -5
- package/dist/templates/angular/src/app/routing/navigation/navigation.component.ts +2 -1
- package/dist/templates/angular/src/app/routing/routing.module.ts +21 -14
- package/dist/templates/{angular-sxp/src/app/routing/scripts → angular/src/app/routing}/visitor-identification/visitor-identification.component.ts +3 -9
- package/dist/templates/angular/src/graphql-fragment-types.ts +95 -0
- package/dist/templates/angular/tsconfig.json +2 -7
- package/dist/templates/nextjs/package.json +5 -5
- package/dist/templates/nextjs/src/lib/page-props-factory/plugins/component-props.ts +2 -1
- package/dist/templates/nextjs-styleguide/package.json +1 -1
- package/dist/templates/nextjs-sxa/src/components/Container.tsx +6 -14
- package/dist/templates/nextjs-xmcloud/package.json +3 -2
- package/dist/templates/nextjs-xmcloud/src/Bootstrap.tsx +25 -10
- package/dist/templates/nextjs-xmcloud/src/byoc/{index.ts → index.tsx} +25 -8
- package/dist/templates/nextjs-xmcloud/src/components/CdpPageView.tsx +9 -14
- package/dist/templates/nextjs-xmcloud/src/lib/middleware/plugins/personalize.ts +0 -1
- package/dist/templates/nextjs-xmcloud/src/lib/page-props-factory/plugins/component-themes.ts +2 -1
- package/dist/templates/nextjs-xmcloud/src/lib/page-props-factory/plugins/preview-mode.ts +2 -1
- package/dist/templates/node-headless-ssr-experience-edge/package.json +2 -2
- package/dist/templates/node-headless-ssr-proxy/package.json +3 -3
- package/dist/templates/react/package.json +5 -5
- package/dist/templates/react-native/package.json +4 -4
- package/dist/templates/vue/package.json +4 -4
- package/package.json +2 -2
- package/dist/common/prompts/sxp.js +0 -20
- package/dist/initializers/angular-sxp/index.js +0 -62
- package/dist/initializers/angular-xmcloud/index.js +0 -66
- package/dist/initializers/node-xmcloud-proxy/index.js +0 -32
- package/dist/templates/angular/scripts/config/index.ts +0 -28
- package/dist/templates/angular/scripts/config/plugins/computed.ts +0 -21
- package/dist/templates/angular/scripts/config/plugins/fallback.ts +0 -23
- package/dist/templates/angular/scripts/config/plugins/package-json.ts +0 -22
- package/dist/templates/angular/scripts/config/plugins/scjssconfig.ts +0 -29
- package/dist/templates/angular/scripts/generate-plugins.ts +0 -28
- package/dist/templates/angular/scripts/temp/gitignore +0 -2
- package/dist/templates/angular/src/app/lib/config.ts +0 -16
- package/dist/templates/angular/src/app/routing/scripts/scripts.component.html +0 -1
- package/dist/templates/angular/src/app/routing/scripts/scripts.component.ts +0 -7
- package/dist/templates/angular/src/app/routing/scripts/scripts.module.ts +0 -8
- package/dist/templates/angular-sxp/package.json +0 -12
- package/dist/templates/angular-sxp/proxy.conf.js +0 -43
- package/dist/templates/angular-sxp/scripts/config/plugins/disconnected.ts +0 -27
- package/dist/templates/angular-sxp/src/app/components/app-components.shared.module.ts +0 -35
- package/dist/templates/angular-sxp/src/app/routing/navigation/navigation.component.html +0 -23
- package/dist/templates/angular-sxp/src/app/routing/scripts/scripts.component.html +0 -3
- package/dist/templates/angular-sxp/src/app/routing/scripts/scripts.module.ts +0 -9
- package/dist/templates/angular-sxp/src/graphql-fragment-types.ts +0 -219
- package/dist/templates/angular-xmcloud/.env +0 -8
- package/dist/templates/angular-xmcloud/angular.json +0 -34
- package/dist/templates/angular-xmcloud/package.json +0 -15
- package/dist/templates/angular-xmcloud/scripts/config/plugins/xmcloud.ts +0 -23
- package/dist/templates/angular-xmcloud/scripts/proxy-build.ts +0 -15
- package/dist/templates/angular-xmcloud/src/app/components/container/container.component.html +0 -15
- package/dist/templates/angular-xmcloud/src/app/components/container/container.component.ts +0 -30
- package/dist/templates/angular-xmcloud/src/app/components/richtext/richtext.component.html +0 -13
- package/dist/templates/angular-xmcloud/src/app/components/richtext/richtext.component.ts +0 -16
- package/dist/templates/angular-xmcloud/src/app/components/sxa.component.ts +0 -15
- package/dist/templates/angular-xmcloud/src/app/lib/config.ts +0 -15
- package/dist/templates/angular-xmcloud/src/app/lib/graphql-client-factory.ts +0 -44
- package/dist/templates/angular-xmcloud/src/assets/styles/basic/_component.scss +0 -48
- package/dist/templates/angular-xmcloud/src/assets/styles/basic/_container.scss +0 -64
- package/dist/templates/angular-xmcloud/src/assets/styles/basic/_fonts.scss +0 -3
- package/dist/templates/angular-xmcloud/src/assets/styles/basic/_footer.scss +0 -31
- package/dist/templates/angular-xmcloud/src/assets/styles/basic/_header.scss +0 -49
- package/dist/templates/angular-xmcloud/src/assets/styles/basic/_navigation.scss +0 -150
- package/dist/templates/angular-xmcloud/src/assets/styles/basic/_promo.scss +0 -58
- package/dist/templates/angular-xmcloud/src/assets/styles/basic/_rich-text.scss +0 -11
- package/dist/templates/angular-xmcloud/src/assets/styles/basic/_variables.scss +0 -10
- package/dist/templates/angular-xmcloud/src/assets/styles/basic/main.scss +0 -8
- package/dist/templates/angular-xmcloud/src/assets/styles/main.scss +0 -4
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/_app.scss +0 -103
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/_functions.scss +0 -8
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/_mixins.scss +0 -121
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/_vars.scss +0 -3
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/vars/_colors.scss +0 -283
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/vars/_fontSizes.scss +0 -16
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/vars/_margins.scss +0 -11
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/fonts/_fonts.scss +0 -1
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/fonts/index.scss +0 -1
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/index.scss +0 -3
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/links/_link-button.scss +0 -26
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/links/index.scss +0 -1
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/reset/_inputs.scss +0 -58
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/reset/_links.scss +0 -14
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/reset/_ui-datepicker.scss +0 -7
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/richtext/_richtext-files-icons.scss +0 -86
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/richtext/_richtext.scss +0 -101
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/richtext/index.scss +0 -2
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/typehead/_typehead.scss +0 -95
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/base/typehead/index.scss +0 -1
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-column-splitter.scss +0 -14
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-container.scss +0 -27
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-image.scss +0 -18
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-navigation.scss +0 -51
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-promo.scss +0 -42
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-richtext-content.scss +0 -19
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_alignment.scss +0 -26
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_boxed.scss +0 -16
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_clearfix.scss +0 -11
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_highlighted.scss +0 -63
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_link-button.scss +0 -16
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_promoted-box.scss +0 -3
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/index.scss +0 -6
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/container/_bordered.scss +0 -24
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/container/_title-row-box.scss +0 -66
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/container/index.scss +0 -1
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/image/_image-default-size.scss +0 -6
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/image/index.scss +0 -1
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/image-alignment/_image-left.scss +0 -3
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/image-alignment/_image-right.scss +0 -3
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/index.scss +0 -17
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/layout/_acaindent.scss +0 -5
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/layout/_background.scss +0 -27
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/layout/index.scss +0 -1
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/link-list/_component-link-list.scss +0 -45
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/link-list/_list-vertical.scss +0 -20
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/link-list/index.scss +0 -2
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/navigation/_navigation-fat.scss +0 -58
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/navigation/_navigation-main-horizontal-vertical.scss +0 -176
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/navigation/_navigation-mobile.scss +0 -85
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/navigation/_navigation-sidebar.scss +0 -29
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/navigation/_sitemap-navigation.scss +0 -20
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/navigation/index.scss +0 -5
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/promo/_absolute-bottom-link.scss +0 -8
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/promo/_promo-hero.scss +0 -40
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/promo/_promo-shadow.scss +0 -42
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/promo/index.scss +0 -3
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/rich-text/_rich-text-lists.scss +0 -63
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/rich-text/index.scss +0 -1
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/spacing/_background-colors.scss +0 -14
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/spacing/_indent.scss +0 -13
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/spacing/index.scss +0 -2
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/title/_component-title.scss +0 -30
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/title/index.scss +0 -1
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/main.scss +0 -4
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/index.scss +0 -6
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/link-list/index.scss +0 -0
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/navigation/index.scss +0 -0
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/page-content/index.scss +0 -0
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/promo/index.scss +0 -0
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/rich-text/index.scss +0 -0
- package/dist/templates/angular-xmcloud/src/assets/styles/sass/variants/title/index.scss +0 -0
- package/dist/templates/nextjs-xmcloud/src/lib/context/index.ts +0 -22
- package/dist/templates/nextjs-xmcloud/src/lib/context/sdk/events.ts +0 -26
- package/dist/templates/node-xmcloud-proxy/.env +0 -8
- package/dist/templates/node-xmcloud-proxy/README.md +0 -36
- package/dist/templates/node-xmcloud-proxy/package.json +0 -25
- package/dist/templates/node-xmcloud-proxy/src/config.ts +0 -19
- package/dist/templates/node-xmcloud-proxy/src/index.ts +0 -161
- package/dist/templates/node-xmcloud-proxy/src/types.ts +0 -59
- package/dist/templates/node-xmcloud-proxy/tsconfig.json +0 -22
- /package/dist/templates/{angular-sxp → angular}/data/component-content/Styleguide/ContentReuse/LoremIpsumContentBlock/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/component-content/gitignore +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/content/Styleguide/ContentListField/Item1/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/content/Styleguide/ContentListField/Item2/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/content/Styleguide/EditFrameDemo/Item1/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/content/Styleguide/EditFrameDemo/Item2/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/content/Styleguide/ItemLinkField/Item1/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/content/Styleguide/ItemLinkField/Item2/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/content/gitignore +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/dictionary/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/dictionary/{{language}}.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/media/files/jss.pdf +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/media/img/jss_logo.png +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/media/img/sc_logo.png +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/routes/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/routes/graphql/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/routes/graphql/sample-1/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/routes/graphql/sample-2/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/routes/styleguide/custom-route-type/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/routes/styleguide/en.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/routes/styleguide/{{language}}.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/data/routes/{{language}}.yml +0 -0
- /package/dist/templates/{angular-sxp → angular}/scripts/disconnected-mode-proxy.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/scripts/lint-yml.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/config/{{appName}}.config +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/component-content.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/Styleguide-Layout-Reuse.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/Styleguide-Layout-Tabs-Tab.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/Styleguide-Layout-Tabs.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/Styleguide-Layout.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/Styleguide-Multilingual.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/Styleguide-Section.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/content-block.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/graph-ql-connected-demo.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/graph-ql-integrated-demo.sitecore.graphql +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/graph-ql-integrated-demo.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/graph-ql-layout.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-angular-lazy-loading.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-component-params.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-custom-route-type.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-edit-frame.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-field-usage-checkbox.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-field-usage-content-list.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-field-usage-custom.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-field-usage-date.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-field-usage-file.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-field-usage-image.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-field-usage-item-link.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-field-usage-link.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-field-usage-number.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-field-usage-rich-text.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-field-usage-text.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-route-fields.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-sitecore-context.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/components/styleguide-tracking.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/config.js +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/content.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/dictionary.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/placeholders.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/routes.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/templates/Styleguide-Explanatory-Component.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/templates/styleguide-content-list-template.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/templates/styleguide-edit-frame-list-item-template.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/definitions/templates/styleguide-item-link-template.sitecore.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/gitignore +0 -0
- /package/dist/templates/{angular-sxp → angular}/sitecore/pipelines/example.patch.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/graph-ql-connected-demo/graph-ql-connected-demo.component.graphql +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/graph-ql-connected-demo/graph-ql-connected-demo.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/graph-ql-connected-demo/graph-ql-connected-demo.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/graph-ql-integrated-demo/graph-ql-integrated-demo.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/graph-ql-integrated-demo/graph-ql-integrated-demo.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/graph-ql-layout/graph-ql-layout.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/graph-ql-layout/graph-ql-layout.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/shared/styleguide-specimen/styleguide-specimen.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-angular-lazy-loading/styleguide-angular-lazy-loading.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-angular-lazy-loading/styleguide-angular-lazy-loading.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-angular-lazy-loading/styleguide-angular-lazy-loading.module.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-component-params/styleguide-component-params.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-component-params/styleguide-component-params.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-custom-route-type/styleguide-custom-route-type.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-custom-route-type/styleguide-custom-route-type.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-edit-frame/styleguide-edit-frame.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-edit-frame/styleguide-edit-frame.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-checkbox/styleguide-field-usage-checkbox.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-checkbox/styleguide-field-usage-checkbox.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-content-list/styleguide-field-usage-content-list.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-content-list/styleguide-field-usage-content-list.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-custom/styleguide-field-usage-custom.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-custom/styleguide-field-usage-custom.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-date/styleguide-field-usage-date.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-date/styleguide-field-usage-date.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-file/styleguide-field-usage-file.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-file/styleguide-field-usage-file.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-image/styleguide-field-usage-image.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-image/styleguide-field-usage-image.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-item-link/styleguide-field-usage-item-link.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-item-link/styleguide-field-usage-item-link.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-link/styleguide-field-usage-link.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-link/styleguide-field-usage-link.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-number/styleguide-field-usage-number.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-number/styleguide-field-usage-number.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-rich-text/styleguide-field-usage-rich-text.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-rich-text/styleguide-field-usage-rich-text.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-text/styleguide-field-usage-text.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-field-usage-text/styleguide-field-usage-text.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-layout/styleguide-layout.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-layout/styleguide-layout.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-layout-reuse/styleguide-layout-reuse.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-layout-reuse/styleguide-layout-reuse.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-layout-tabs/styleguide-layout-tabs.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-layout-tabs/styleguide-layout-tabs.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-layout-tabs-tab/styleguide-layout-tabs-tab.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-layout-tabs-tab/styleguide-layout-tabs-tab.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-multilingual/styleguide-multilingual.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-multilingual/styleguide-multilingual.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-route-fields/styleguide-route-fields.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-route-fields/styleguide-route-fields.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-section/styleguide-section.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-section/styleguide-section.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-sitecore-context/styleguide-sitecore-context.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-sitecore-context/styleguide-sitecore-context.component.ts +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-tracking/styleguide-tracking.component.html +0 -0
- /package/dist/templates/{angular-sxp → angular}/src/app/components/styleguide-tracking/styleguide-tracking.component.ts +0 -0
- /package/dist/templates/angular/src/app/lib/{graphql-client-factory.ts → client-factory.ts} +0 -0
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
@import 'sass/abstracts/vars';
|
|
2
|
-
@import 'sass/abstracts/mixins';
|
|
3
|
-
|
|
4
|
-
.twitter-typeahead {
|
|
5
|
-
display: inline-block;
|
|
6
|
-
vertical-align: middle;
|
|
7
|
-
max-width: 100%;
|
|
8
|
-
width: 100%;
|
|
9
|
-
}
|
|
10
|
-
.tt-menu {
|
|
11
|
-
background: $bg-basic-color;
|
|
12
|
-
width: 100%;
|
|
13
|
-
border: 1px solid $border-gray;
|
|
14
|
-
}
|
|
15
|
-
.tt-hint {
|
|
16
|
-
color: $tt-color;
|
|
17
|
-
}
|
|
18
|
-
.tt-dropdown-menu {
|
|
19
|
-
width: 250px;
|
|
20
|
-
margin-top: 5px;
|
|
21
|
-
background-color: $tt-dropdown-bg;
|
|
22
|
-
border: 1px solid $tt-dropdown-border;
|
|
23
|
-
max-height: 300px;
|
|
24
|
-
overflow-y: auto;
|
|
25
|
-
box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.08);
|
|
26
|
-
}
|
|
27
|
-
.tt-suggestion {
|
|
28
|
-
padding: 4px 10px;
|
|
29
|
-
color: $tt-color;
|
|
30
|
-
overflow: hidden;
|
|
31
|
-
a {
|
|
32
|
-
text-decoration: none;
|
|
33
|
-
}
|
|
34
|
-
&:last-child {
|
|
35
|
-
border: none;
|
|
36
|
-
}
|
|
37
|
-
.field-image {
|
|
38
|
-
width: 100px;
|
|
39
|
-
float: left;
|
|
40
|
-
margin-right: 10px;
|
|
41
|
-
}
|
|
42
|
-
.field-make {
|
|
43
|
-
font-size: 15px;
|
|
44
|
-
float: left;
|
|
45
|
-
margin-right: 5px;
|
|
46
|
-
}
|
|
47
|
-
.field-model {
|
|
48
|
-
margin-left: 4px;
|
|
49
|
-
font-size: 15px;
|
|
50
|
-
font-weight: bold;
|
|
51
|
-
width: 100%;
|
|
52
|
-
}
|
|
53
|
-
.field-priceformatted {
|
|
54
|
-
float: right;
|
|
55
|
-
font-size: 15px;
|
|
56
|
-
color: $tt-price-color;
|
|
57
|
-
margin-top: -20px;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
.tt-suggestion.tt-cursor {
|
|
61
|
-
color: $tt-color-active;
|
|
62
|
-
background-color: $tt-suggestion-bg-active;
|
|
63
|
-
cursor: pointer;
|
|
64
|
-
}
|
|
65
|
-
.loading-in-progress {
|
|
66
|
-
.tt-dropdown-menu {
|
|
67
|
-
display: block !important;
|
|
68
|
-
min-height: 50px;
|
|
69
|
-
position: relative;
|
|
70
|
-
&:after {
|
|
71
|
-
content: '';
|
|
72
|
-
position: absolute;
|
|
73
|
-
top: 50%;
|
|
74
|
-
left: 50%;
|
|
75
|
-
margin-top: -20px;
|
|
76
|
-
margin-left: -20px;
|
|
77
|
-
height: 40px;
|
|
78
|
-
width: 50px;
|
|
79
|
-
display: block;
|
|
80
|
-
@include loading-gif();
|
|
81
|
-
z-index: 11;
|
|
82
|
-
}
|
|
83
|
-
&:before {
|
|
84
|
-
content: '';
|
|
85
|
-
position: absolute;
|
|
86
|
-
top: 0;
|
|
87
|
-
left: 0;
|
|
88
|
-
width: 100%;
|
|
89
|
-
height: 100%;
|
|
90
|
-
background-color: $tt-dropdown-bg;
|
|
91
|
-
opacity: 0.8;
|
|
92
|
-
z-index: 10;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import "typehead";
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
@import 'sass/abstracts/vars';
|
|
2
|
-
|
|
3
|
-
.row.column-splitter {
|
|
4
|
-
margin-left: 0;
|
|
5
|
-
margin-right: 0;
|
|
6
|
-
padding-left: calc($default-padding / 2);
|
|
7
|
-
padding-right: calc($default-padding / 2);
|
|
8
|
-
max-width: none;
|
|
9
|
-
|
|
10
|
-
> div {
|
|
11
|
-
padding-left: $default-padding;
|
|
12
|
-
padding-right: $default-padding;
|
|
13
|
-
}
|
|
14
|
-
}
|
package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-container.scss
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
@import 'sass/abstracts/mixins';
|
|
2
|
-
|
|
3
|
-
$size-padding: 8px;
|
|
4
|
-
.container-wrapper {
|
|
5
|
-
width: 100%;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.component {
|
|
9
|
-
position: relative;
|
|
10
|
-
padding: 0 $size-padding;
|
|
11
|
-
|
|
12
|
-
@include respond-to(all-mobile) {
|
|
13
|
-
padding: 0;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.container {
|
|
18
|
-
padding: 0;
|
|
19
|
-
|
|
20
|
-
&.fullwidth-container {
|
|
21
|
-
max-width: unset;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.component-content {
|
|
25
|
-
@include clearfix();
|
|
26
|
-
}
|
|
27
|
-
}
|
package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-image.scss
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/vars";
|
|
2
|
-
|
|
3
|
-
.image {
|
|
4
|
-
img {
|
|
5
|
-
max-width: 100%;
|
|
6
|
-
height: auto;
|
|
7
|
-
}
|
|
8
|
-
a {
|
|
9
|
-
display: inline-block;
|
|
10
|
-
max-width: 100%;
|
|
11
|
-
}
|
|
12
|
-
span {
|
|
13
|
-
display: block;
|
|
14
|
-
font-style: italic;
|
|
15
|
-
font-size: $font-small;
|
|
16
|
-
color: $image-caption-color;
|
|
17
|
-
}
|
|
18
|
-
}
|
package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-navigation.scss
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/mixins";
|
|
2
|
-
@import "sass/abstracts/vars";
|
|
3
|
-
|
|
4
|
-
.navigation {
|
|
5
|
-
background: $nav-bg;
|
|
6
|
-
ul {
|
|
7
|
-
padding-left: 0;
|
|
8
|
-
}
|
|
9
|
-
.level0, .level1 {
|
|
10
|
-
>.navigation-title>a {
|
|
11
|
-
font-size: $navigation-font-basic;
|
|
12
|
-
border-color: $nav-border-root;
|
|
13
|
-
border-style: solid;
|
|
14
|
-
border-width: 0 0 2px 0;
|
|
15
|
-
padding-right: 10px;
|
|
16
|
-
margin-right: 5px;
|
|
17
|
-
&:hover {
|
|
18
|
-
text-decoration: none;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
a {
|
|
23
|
-
color: $nav-color-root;
|
|
24
|
-
.lt-ie9 &, .lt-ie9 & span {
|
|
25
|
-
color: $nav-color-root;
|
|
26
|
-
}
|
|
27
|
-
&:focus, &:hover {
|
|
28
|
-
color: $nav-color-root-active;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
li {
|
|
32
|
-
&.submenu {
|
|
33
|
-
margin-bottom: 0;
|
|
34
|
-
}
|
|
35
|
-
>.navigation-title {
|
|
36
|
-
>a {
|
|
37
|
-
padding: 3px 5px 3px 0;
|
|
38
|
-
display: block;
|
|
39
|
-
color: $nav-color-root;
|
|
40
|
-
text-decoration: none;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
>ul a {
|
|
44
|
-
font-size: $navigation-font-basic-submenu;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
.submenu>ul {
|
|
48
|
-
padding-left: 10px;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
@import "sass/components/navigation/";
|
package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/_component-promo.scss
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/vars";
|
|
2
|
-
@import "sass/abstracts/mixins";
|
|
3
|
-
|
|
4
|
-
.promo {
|
|
5
|
-
background: $promo-bg;
|
|
6
|
-
padding: 15px;
|
|
7
|
-
overflow: hidden;
|
|
8
|
-
box-sizing: border-box;
|
|
9
|
-
>.component-content {
|
|
10
|
-
position: relative;
|
|
11
|
-
@include clearfix();
|
|
12
|
-
@include border-basic(all, $promo-border);
|
|
13
|
-
|
|
14
|
-
>div {
|
|
15
|
-
padding: 5px;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
.zg-height-fix {
|
|
19
|
-
.field-promoicon {
|
|
20
|
-
margin-top: 100px;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
.field-promoicon {
|
|
24
|
-
overflow: hidden;
|
|
25
|
-
width: 100%;
|
|
26
|
-
img {
|
|
27
|
-
width: 100%;
|
|
28
|
-
height: auto;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
.field-promolink {
|
|
32
|
-
margin-top: 5px;
|
|
33
|
-
padding-bottom: 10px;
|
|
34
|
-
}
|
|
35
|
-
&.image-full-size {
|
|
36
|
-
img {
|
|
37
|
-
margin-bottom: 10px;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
@import "sass/variants/promo";
|
|
41
|
-
@import "sass/base/richtext/richtext";
|
|
42
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/vars";
|
|
2
|
-
@import "sass/abstracts/mixins";
|
|
3
|
-
|
|
4
|
-
.content, .rich-text {
|
|
5
|
-
border: $rich-content-border;
|
|
6
|
-
line-height: 1.5;
|
|
7
|
-
font-size: 12px;
|
|
8
|
-
overflow: hidden;
|
|
9
|
-
* {
|
|
10
|
-
max-width: 100%;
|
|
11
|
-
}
|
|
12
|
-
@import "sass/base/richtext";
|
|
13
|
-
}
|
|
14
|
-
.rich-text {
|
|
15
|
-
@import "sass/variants/rich-text";
|
|
16
|
-
}
|
|
17
|
-
.content {
|
|
18
|
-
@import "sass/variants/page-content";
|
|
19
|
-
}
|
package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_alignment.scss
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
.position-left,
|
|
2
|
-
.position-left * {
|
|
3
|
-
text-align: left !important;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.position-right,
|
|
7
|
-
.position-right * {
|
|
8
|
-
text-align: right !important;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.position-center,
|
|
12
|
-
.position-center * {
|
|
13
|
-
text-align: center !important;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.position-left select {
|
|
17
|
-
direction: ltr !important;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.position-right select {
|
|
21
|
-
direction: rtl !important;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.position-center select {
|
|
25
|
-
text-align-last: center !important;
|
|
26
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/vars";
|
|
2
|
-
@import "sass/abstracts/mixins";
|
|
3
|
-
|
|
4
|
-
.boxed {
|
|
5
|
-
box-sizing: border-box;
|
|
6
|
-
margin: 20px 0;
|
|
7
|
-
@include respond-to(tablet) {
|
|
8
|
-
padding: 10px;
|
|
9
|
-
}
|
|
10
|
-
@include respond-to(mobile) {
|
|
11
|
-
padding: 10px;
|
|
12
|
-
}
|
|
13
|
-
>div {
|
|
14
|
-
@include wrapper();
|
|
15
|
-
}
|
|
16
|
-
}
|
package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_highlighted.scss
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
.highlighted-top {
|
|
2
|
-
background: #ffffff;
|
|
3
|
-
border-top-width: 3px;
|
|
4
|
-
border-top-color: #15909c;
|
|
5
|
-
border-style: solid;
|
|
6
|
-
padding: 25px;
|
|
7
|
-
margin: 0;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.highlighted-top h1,
|
|
11
|
-
.highlighted-top h2,
|
|
12
|
-
.highlighted-top h3,
|
|
13
|
-
.highlighted-top h4 {
|
|
14
|
-
margin: 0 0 10px 0;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.highlighted-bottom {
|
|
18
|
-
background: #ffffff;
|
|
19
|
-
border-bottom-width: 3px;
|
|
20
|
-
border-bottom-color: #15909c;
|
|
21
|
-
border-style: solid;
|
|
22
|
-
padding: 25px;
|
|
23
|
-
margin: 0;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.highlighted-bottom h1,
|
|
27
|
-
.highlighted-bottom h2,
|
|
28
|
-
.highlighted-bottom h3,
|
|
29
|
-
.highlighted-bottom h4 {
|
|
30
|
-
margin: 0 0 10px 0;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.highlighted-left {
|
|
34
|
-
background: #ffffff;
|
|
35
|
-
border-left-width: 3px;
|
|
36
|
-
border-left-color: #15909c;
|
|
37
|
-
border-style: solid;
|
|
38
|
-
padding: 25px;
|
|
39
|
-
margin: 0;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.highlighted-left h1,
|
|
43
|
-
.highlighted-left h2,
|
|
44
|
-
.highlighted-left h3,
|
|
45
|
-
.highlighted-left h4 {
|
|
46
|
-
margin: 0 0 10px 0;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.highlighted-right {
|
|
50
|
-
background: #ffffff;
|
|
51
|
-
border-right-width: 3px;
|
|
52
|
-
border-right-color: #15909c;
|
|
53
|
-
border-style: solid;
|
|
54
|
-
padding: 25px;
|
|
55
|
-
margin: 0;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.highlighted-right h1,
|
|
59
|
-
.highlighted-right h2,
|
|
60
|
-
.highlighted-right h3,
|
|
61
|
-
.highlighted-right h4 {
|
|
62
|
-
margin: 0 0 10px 0;
|
|
63
|
-
}
|
package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/common/_link-button.scss
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/mixins";
|
|
2
|
-
|
|
3
|
-
.link-button {
|
|
4
|
-
@import "sass/base/links/";
|
|
5
|
-
}
|
|
6
|
-
// Promo button
|
|
7
|
-
.promo.link-button {
|
|
8
|
-
a {
|
|
9
|
-
@extend .button-default;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
.link.link-button {
|
|
13
|
-
.is-empty-hint, .field-link span, a {
|
|
14
|
-
@include default-link-button();
|
|
15
|
-
}
|
|
16
|
-
}
|
package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/container/_bordered.scss
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/vars";
|
|
2
|
-
@import "sass/abstracts/mixins";
|
|
3
|
-
|
|
4
|
-
.sxa-bordered {
|
|
5
|
-
box-sizing: border-box;
|
|
6
|
-
>.component-content {
|
|
7
|
-
padding: 0;
|
|
8
|
-
@include border-basic();
|
|
9
|
-
border-radius: 5px;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.column-splitter,
|
|
14
|
-
.row-splitter {
|
|
15
|
-
box-sizing: border-box;
|
|
16
|
-
.sxa-bordered {
|
|
17
|
-
padding: $default-padding !important;
|
|
18
|
-
>.component,
|
|
19
|
-
.scEmptyPlaceholder {
|
|
20
|
-
@include border-basic();
|
|
21
|
-
border-radius: 5px;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/vars";
|
|
2
|
-
@import "sass/abstracts/mixins";
|
|
3
|
-
|
|
4
|
-
.title-row-box {
|
|
5
|
-
@include border-basic();
|
|
6
|
-
box-sizing: border-box;
|
|
7
|
-
width: 100%;
|
|
8
|
-
height: 87px;
|
|
9
|
-
margin: 0;
|
|
10
|
-
padding: 0;
|
|
11
|
-
background: $container-title-row-bg;
|
|
12
|
-
>.component-content {
|
|
13
|
-
@include wrapper();
|
|
14
|
-
.title {
|
|
15
|
-
display: inline-block;
|
|
16
|
-
vertical-align: middle;
|
|
17
|
-
box-sizing: border-box;
|
|
18
|
-
margin: 23px 0 0 0;
|
|
19
|
-
padding: 0;
|
|
20
|
-
h1 {
|
|
21
|
-
@include font-size(2.2);
|
|
22
|
-
border: none;
|
|
23
|
-
}
|
|
24
|
-
@include respond-to(all-mobile) {
|
|
25
|
-
margin: 23px 0 0 20px;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
.rich-text {
|
|
29
|
-
margin: 0;
|
|
30
|
-
h1, h2, h3, h4 {
|
|
31
|
-
margin: 0;
|
|
32
|
-
padding: 0;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
.breadcrumb {
|
|
36
|
-
display: inline-block;
|
|
37
|
-
vertical-align: middle;
|
|
38
|
-
box-sizing: border-box;
|
|
39
|
-
@include font-size(1.4);
|
|
40
|
-
margin: 23px 0 0 0;
|
|
41
|
-
padding: 0;
|
|
42
|
-
float: right;
|
|
43
|
-
clear: both;
|
|
44
|
-
@include respond-to(tablet) {
|
|
45
|
-
margin: 23px 20px 0 0;
|
|
46
|
-
}
|
|
47
|
-
@include respond-to(mobile) {
|
|
48
|
-
display: none;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
@include respond-to(all-mobile) {
|
|
53
|
-
.alpha {
|
|
54
|
-
vertical-align: middle;
|
|
55
|
-
box-sizing: border-box;
|
|
56
|
-
width: auto !important; //overrides grid
|
|
57
|
-
float: left;
|
|
58
|
-
}
|
|
59
|
-
.omega {
|
|
60
|
-
vertical-align: middle;
|
|
61
|
-
box-sizing: border-box;
|
|
62
|
-
width: auto !important; //overrides grid
|
|
63
|
-
float: right;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/container/index.scss
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import "bordered";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import "image-default-size";
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
@import "component-column-splitter";
|
|
2
|
-
@import "component-container";
|
|
3
|
-
@import "component-image";
|
|
4
|
-
@import "component-navigation";
|
|
5
|
-
@import "component-promo";
|
|
6
|
-
@import "_component-richtext-content";
|
|
7
|
-
|
|
8
|
-
@import "common";
|
|
9
|
-
@import "container";
|
|
10
|
-
@import "layout";
|
|
11
|
-
@import "spacing";
|
|
12
|
-
@import "promo";
|
|
13
|
-
@import "spacing";
|
|
14
|
-
@import "title";
|
|
15
|
-
@import "image";
|
|
16
|
-
@import "link-list";
|
|
17
|
-
@import "rich-text";
|
package/dist/templates/angular-xmcloud/src/assets/styles/sass/components/layout/_background.scss
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/vars";
|
|
2
|
-
@import "sass/abstracts/mixins";
|
|
3
|
-
|
|
4
|
-
%cover-bg {
|
|
5
|
-
background-repeat: no-repeat;
|
|
6
|
-
background-size: cover;
|
|
7
|
-
}
|
|
8
|
-
.cover-background {
|
|
9
|
-
>.component-content {
|
|
10
|
-
@extend %cover-bg;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
.fix-background {
|
|
14
|
-
>.component-content {
|
|
15
|
-
@extend %cover-bg;
|
|
16
|
-
@include fixed-bg(left top);
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
.parallax-background {
|
|
20
|
-
>.component-content {
|
|
21
|
-
@extend %cover-bg;
|
|
22
|
-
@include fixed-bg(50% 0);
|
|
23
|
-
@include respond-to(mobile-large) {
|
|
24
|
-
background-attachment: scroll;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import "background";
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/mixins";
|
|
2
|
-
@import "sass/abstracts/vars";
|
|
3
|
-
@import 'font-awesome/scss/mixins';
|
|
4
|
-
@import "font-awesome/scss/variables";
|
|
5
|
-
|
|
6
|
-
.link-list {
|
|
7
|
-
background: $link-list-bg;
|
|
8
|
-
h1, h2, h3, h4, h5, h6 {
|
|
9
|
-
@include border-basic(bottom, $link-list-header-border);
|
|
10
|
-
}
|
|
11
|
-
>.component-content {
|
|
12
|
-
ul {
|
|
13
|
-
background: $link-list-items-bg;
|
|
14
|
-
}
|
|
15
|
-
li {
|
|
16
|
-
background: $link-list-item-bg;
|
|
17
|
-
display: block;
|
|
18
|
-
font-size: $font-normal;
|
|
19
|
-
a {
|
|
20
|
-
display: inline;
|
|
21
|
-
color: $link-list-item-color;
|
|
22
|
-
position: relative;
|
|
23
|
-
padding-left: 10px;
|
|
24
|
-
font-size: 1em;
|
|
25
|
-
text-decoration: none;
|
|
26
|
-
&:before {
|
|
27
|
-
@include fa-icon();
|
|
28
|
-
content: $fa-var-chevron-right;
|
|
29
|
-
position: absolute;
|
|
30
|
-
left: 0;
|
|
31
|
-
top: 50%;
|
|
32
|
-
transform: translateY(-50%);
|
|
33
|
-
font-size: 10px;
|
|
34
|
-
}
|
|
35
|
-
&:hover {
|
|
36
|
-
color: $link-list-item-color-active;
|
|
37
|
-
text-decoration: none;
|
|
38
|
-
border-bottom: 1px solid $link-list-item-border-active;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
@import "../../base/links";
|
|
44
|
-
@import "../../variants/link-list";
|
|
45
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
@import 'sass/abstracts/vars';
|
|
2
|
-
@import 'sass/abstracts/mixins';
|
|
3
|
-
|
|
4
|
-
.link-list.list-vertical {
|
|
5
|
-
h3 {
|
|
6
|
-
background: $bg-basic-color;
|
|
7
|
-
width: 100%;
|
|
8
|
-
display: inline-block;
|
|
9
|
-
padding: 3px 5px;
|
|
10
|
-
@include border-basic();
|
|
11
|
-
}
|
|
12
|
-
a {
|
|
13
|
-
border: none;
|
|
14
|
-
}
|
|
15
|
-
li {
|
|
16
|
-
display: block;
|
|
17
|
-
margin-left: $middle-margin;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|