create-sitecore-jss 22.2.0-canary.81 → 22.2.0-canary.84
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 +19 -35
- package/dist/common/index.js +3 -5
- package/dist/common/processes/install.js +2 -9
- package/dist/common/processes/next.js +3 -6
- package/dist/common/processes/transform.js +13 -18
- package/dist/common/prompts/base.js +25 -0
- package/dist/common/utils/helpers.js +19 -29
- 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 -4
- package/dist/templates/angular/.eslintrc +0 -1
- package/dist/templates/angular/README.md +45 -5
- package/dist/templates/angular/angular.json +6 -1
- package/dist/templates/angular/gitignore +0 -5
- package/dist/templates/angular/package.json +18 -6
- package/dist/templates/angular/proxy.conf.js +23 -5
- package/dist/templates/angular/scripts/bootstrap.ts +24 -5
- package/dist/templates/angular/scripts/generate-component-factory.ts +166 -0
- package/dist/templates/angular/scripts/generate-config.ts +72 -71
- package/dist/templates/angular/scripts/update-graphql-fragment-data.ts +28 -21
- package/dist/templates/angular/server.bundle.ts +5 -3
- package/dist/templates/angular/src/app/JssState.ts +9 -2
- package/dist/templates/angular/src/app/app.module.ts +6 -5
- package/dist/templates/angular/src/app/app.server.module.ts +6 -9
- package/dist/templates/angular/src/app/components/app-components.shared.module.ts +19 -4
- package/dist/templates/angular/src/app/components/gitignore +1 -1
- package/dist/templates/{angular-sxp → angular}/src/app/components/graph-ql-layout/graph-ql-layout.component.ts +1 -1
- package/dist/templates/angular/src/app/i18n/jss-translation-client-loader.service.ts +7 -15
- package/dist/templates/angular/src/app/i18n/jss-translation-server-loader.service.ts +2 -14
- package/dist/templates/angular/src/app/jss-context.server-side.service.ts +4 -4
- package/dist/templates/angular/src/app/jss-context.service.ts +11 -14
- package/dist/templates/{angular-sxp → angular}/src/app/jss-data-fetcher.service.ts +1 -3
- package/dist/templates/angular/src/app/jss-graphql.service.ts +7 -7
- package/dist/templates/angular/src/app/layout/jss-layout.service.ts +2 -2
- package/dist/templates/angular/src/app/lib/client-factory.ts +28 -0
- package/dist/templates/angular/src/app/lib/dictionary-service-factory.ts +13 -24
- 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 +11 -11
- 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/environments/gitignore +1 -2
- package/dist/templates/angular/src/graphql-fragment-types.ts +95 -0
- package/dist/templates/angular/tsconfig.json +2 -7
- package/dist/templates/nextjs/scripts/config/plugins/fallback.ts +1 -0
- package/dist/templates/nextjs/scripts/generate-config.ts +1 -8
- package/dist/templates/nextjs-styleguide/scripts/config/plugins/disconnected.ts +0 -1
- package/dist/templates/nextjs-sxa/src/assets/sass/components/common/_alignment.scss +7 -34
- package/dist/templates/nextjs-xmcloud/src/lib/middleware/plugins/personalize.ts +0 -1
- package/dist/templates/node-headless-ssr-proxy/src/config.ts +3 -3
- package/dist/templates/node-headless-ssr-proxy/src/httpAgents.ts +2 -2
- package/dist/templates/node-headless-ssr-proxy/src/index.ts +2 -9
- package/dist/templates/react/scripts/generate-config.js +3 -10
- package/dist/templates/vue/scripts/generate-config.js +0 -5
- package/package.json +2 -2
- package/dist/common/prompts/proxy.js +0 -35
- package/dist/common/prompts/sxp.js +0 -34
- package/dist/initializers/angular-sxp/index.js +0 -62
- package/dist/initializers/angular-xmcloud/index.js +0 -80
- package/dist/initializers/node-xmcloud-proxy/index.js +0 -33
- 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 -22
- 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-component-factory/index.ts +0 -45
- package/dist/templates/angular/scripts/generate-component-factory/plugins/component-factory.ts +0 -147
- package/dist/templates/angular/scripts/generate-component-factory/plugins/components.ts +0 -19
- package/dist/templates/angular/scripts/generate-component-factory/plugins/packages.ts +0 -29
- package/dist/templates/angular/scripts/generate-component-factory/template.ts +0 -46
- package/dist/templates/angular/scripts/generate-plugins.ts +0 -33
- package/dist/templates/angular/scripts/temp/gitignore +0 -2
- package/dist/templates/angular/server.exports.ts +0 -13
- package/dist/templates/angular/src/app/lib/config.ts +0 -16
- package/dist/templates/angular/src/app/lib/graphql-client-factory/config.ts +0 -21
- package/dist/templates/angular/src/app/lib/graphql-client-factory/index.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/.env +0 -2
- 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 -29
- 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 -21
- package/dist/templates/angular-xmcloud/angular.json +0 -33
- package/dist/templates/angular-xmcloud/package.json +0 -17
- package/dist/templates/angular-xmcloud/scripts/bootstrap.ts +0 -28
- package/dist/templates/angular-xmcloud/scripts/config/plugins/xmcloud.ts +0 -39
- package/dist/templates/angular-xmcloud/scripts/generate-component-factory/plugins/packages.ts +0 -34
- package/dist/templates/angular-xmcloud/scripts/generate-component-factory/template.ts +0 -57
- package/dist/templates/angular-xmcloud/scripts/generate-metadata.ts +0 -25
- package/dist/templates/angular-xmcloud/scripts/proxy-build.ts +0 -15
- package/dist/templates/angular-xmcloud/server.exports.ts +0 -24
- package/dist/templates/angular-xmcloud/src/app/components/app-components.shared.module.ts +0 -21
- package/dist/templates/angular-xmcloud/src/app/components/column-splitter/column-splitter.component.html +0 -5
- package/dist/templates/angular-xmcloud/src/app/components/column-splitter/column-splitter.component.ts +0 -40
- package/dist/templates/angular-xmcloud/src/app/components/container/container.component.html +0 -14
- package/dist/templates/angular-xmcloud/src/app/components/container/container.component.ts +0 -30
- package/dist/templates/angular-xmcloud/src/app/components/image/image.component.html +0 -36
- package/dist/templates/angular-xmcloud/src/app/components/image/image.component.ts +0 -67
- package/dist/templates/angular-xmcloud/src/app/components/link-list/link-list.component.html +0 -15
- package/dist/templates/angular-xmcloud/src/app/components/link-list/link-list.component.ts +0 -41
- package/dist/templates/angular-xmcloud/src/app/components/navigation/navigation-item.component.html +0 -23
- package/dist/templates/angular-xmcloud/src/app/components/navigation/navigation-item.component.ts +0 -65
- package/dist/templates/angular-xmcloud/src/app/components/navigation/navigation.component.html +0 -21
- package/dist/templates/angular-xmcloud/src/app/components/navigation/navigation.component.ts +0 -49
- package/dist/templates/angular-xmcloud/src/app/components/page-content/page-content.component.html +0 -5
- package/dist/templates/angular-xmcloud/src/app/components/page-content/page-content.component.ts +0 -39
- package/dist/templates/angular-xmcloud/src/app/components/partial-design-dynamic-placeholder/partial-design-dynamic-placeholder.component.html +0 -1
- package/dist/templates/angular-xmcloud/src/app/components/partial-design-dynamic-placeholder/partial-design-dynamic-placeholder.component.ts +0 -15
- package/dist/templates/angular-xmcloud/src/app/components/promo/promo.component.html +0 -21
- package/dist/templates/angular-xmcloud/src/app/components/promo/promo.component.ts +0 -13
- package/dist/templates/angular-xmcloud/src/app/components/richtext/richtext.component.html +0 -8
- package/dist/templates/angular-xmcloud/src/app/components/richtext/richtext.component.ts +0 -21
- package/dist/templates/angular-xmcloud/src/app/components/row-splitter/row-splitter.component.html +0 -11
- package/dist/templates/angular-xmcloud/src/app/components/row-splitter/row-splitter.component.ts +0 -35
- package/dist/templates/angular-xmcloud/src/app/components/sxa.component.ts +0 -15
- package/dist/templates/angular-xmcloud/src/app/components/title/title.component.html +0 -10
- package/dist/templates/angular-xmcloud/src/app/components/title/title.component.ts +0 -56
- package/dist/templates/angular-xmcloud/src/app/jss-link.service.ts +0 -55
- package/dist/templates/angular-xmcloud/src/app/lib/config.ts +0 -17
- package/dist/templates/angular-xmcloud/src/app/lib/graphql-client-factory/config.ts +0 -58
- package/dist/templates/angular-xmcloud/src/app/routing/layout/layout.component.html +0 -38
- package/dist/templates/angular-xmcloud/src/app/routing/layout/layout.component.ts +0 -104
- package/dist/templates/angular-xmcloud/src/app/routing/scripts/cdp-page-view.component.ts +0 -77
- package/dist/templates/angular-xmcloud/src/app/routing/scripts/cloud-sdk-init.component.ts +0 -48
- package/dist/templates/angular-xmcloud/src/app/routing/scripts/scripts.component.html +0 -5
- package/dist/templates/angular-xmcloud/src/app/routing/scripts/scripts.module.ts +0 -12
- 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 -51
- 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 -14
- 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/node-headless-ssr-experience-edge/gitignore +0 -19
- package/dist/templates/node-headless-ssr-proxy/gitignore +0 -19
- package/dist/templates/node-xmcloud-proxy/.env +0 -14
- package/dist/templates/node-xmcloud-proxy/README.md +0 -36
- package/dist/templates/node-xmcloud-proxy/gitignore +0 -33
- package/dist/templates/node-xmcloud-proxy/package.json +0 -26
- package/dist/templates/node-xmcloud-proxy/src/config.ts +0 -25
- package/dist/templates/node-xmcloud-proxy/src/index.ts +0 -210
- package/dist/templates/node-xmcloud-proxy/src/types.ts +0 -27
- 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/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
|
@@ -1,283 +0,0 @@
|
|
|
1
|
-
//Backgrounds colors
|
|
2
|
-
$bg-transparent:transparent !default;
|
|
3
|
-
$bg-basic-color:#FFFFFF !default;
|
|
4
|
-
$bg-basic-color-active: #cccccc !default;
|
|
5
|
-
$bg-light-gray: #f7f7f7 !default;
|
|
6
|
-
$bg-light-gray-active: #dadada !default;
|
|
7
|
-
$bg-blue:#89C6CC;
|
|
8
|
-
$bg-blue-active: #15909c !default;
|
|
9
|
-
$bg-submenu:#edebeb !default;
|
|
10
|
-
$bg-submenu-active:#f6f6f6 !default;
|
|
11
|
-
$bg-black:#000;
|
|
12
|
-
$bg-black-active:#3d3d3d;
|
|
13
|
-
$bg-dark-gray: #262626;
|
|
14
|
-
//Text colors
|
|
15
|
-
$text-white:#fff !default;
|
|
16
|
-
$text-heading-color: #222 !default;
|
|
17
|
-
$text-basic:#747474 !default;
|
|
18
|
-
$text-basic-active:#878787 !default;
|
|
19
|
-
$text-blue:#89C6CC !default;
|
|
20
|
-
$text-blue-active:#15909c !default;
|
|
21
|
-
$text-submenu-active: #222 !default;
|
|
22
|
-
$text-disabled: #aaa !default;
|
|
23
|
-
$text-black: #000 !default;
|
|
24
|
-
$text-red:#de232f;
|
|
25
|
-
$text-gray: #262626;
|
|
26
|
-
//Border colors
|
|
27
|
-
$border-gray: #d2d2d2 !default;
|
|
28
|
-
$border-white: #ffffff !default;
|
|
29
|
-
$border-basic-color: #89C6CC !default;
|
|
30
|
-
$border-basic-active:#15909c !default;
|
|
31
|
-
$border-nav-submenu:#e1e1e1;
|
|
32
|
-
//Styles for each component separately
|
|
33
|
-
//Accordion
|
|
34
|
-
$accordion-header-bg: transparent;
|
|
35
|
-
$accordion-header-bg-active: transparent;
|
|
36
|
-
$accordion-toggled-bg: transparent;
|
|
37
|
-
$accordion-header-border: $border-gray;
|
|
38
|
-
//Breadcrumb
|
|
39
|
-
$breadcrumb-dropdown-bg:$bg-basic-color;
|
|
40
|
-
$breadcrumb-dropdown-bg-active:$bg-blue;
|
|
41
|
-
$breadcrumb-dropdown-text-active:$text-white;
|
|
42
|
-
$breadcrumb-bg:transparent;
|
|
43
|
-
$breadcrumb-color:$text-basic;
|
|
44
|
-
$breadcrumb-color-active:$text-blue-active;
|
|
45
|
-
//Buttons colors
|
|
46
|
-
$btn-green-light: #a0ce4e;
|
|
47
|
-
$btn-green: #92be43;
|
|
48
|
-
$btn-red-active: #c34e30;
|
|
49
|
-
$btn-red: #bc4526;
|
|
50
|
-
//Carousel
|
|
51
|
-
$carousel-bg:$bg-basic-color;
|
|
52
|
-
$carousel-nav:$text-black;
|
|
53
|
-
$carousel-nav-active:$text-basic-active;
|
|
54
|
-
$carousel-nav-border:$border-basic-color;
|
|
55
|
-
//Container component
|
|
56
|
-
$container-title-row-bg: $bg-light-gray;
|
|
57
|
-
//Event List
|
|
58
|
-
$event-list-bg:transparent;
|
|
59
|
-
$event-list-item-bg:$bg-basic-color;
|
|
60
|
-
$event-list-item-color:$text-basic;
|
|
61
|
-
$event-list-title-border:$border-basic-color;
|
|
62
|
-
//Calendar
|
|
63
|
-
$calendar-bg:$bg-basic-color;
|
|
64
|
-
$calendar-header-bg:$bg-basic-color-active;
|
|
65
|
-
$calendar-day-color-active:$text-white;
|
|
66
|
-
$calendar-title-color:$text-white;
|
|
67
|
-
//Feed
|
|
68
|
-
$feed-bg:transparent;
|
|
69
|
-
$feed-item-bg:transparent;
|
|
70
|
-
//Field Editor
|
|
71
|
-
$field-editor-bg:transparent;
|
|
72
|
-
$field-editor-table-border:$bg-light-gray;
|
|
73
|
-
$field-editor-text-header:$text-black;
|
|
74
|
-
$field-editor-text-header-active:$text-red;
|
|
75
|
-
$field-editor-text:$text-basic;
|
|
76
|
-
//File List
|
|
77
|
-
$file-list-bg:transparent;
|
|
78
|
-
$file-list-item-bg:transparent;
|
|
79
|
-
$file-list-title-color:$text-basic;
|
|
80
|
-
$file-list-title-border:transparent;
|
|
81
|
-
$file-list-item-color:$text-basic;
|
|
82
|
-
$file-list-item-color-active:$text-basic-active;
|
|
83
|
-
$file-list-item-size:$text-basic;
|
|
84
|
-
$file-list-item-borer:$border-basic-color;
|
|
85
|
-
$file-list-link-btn-color-active:$text-white;
|
|
86
|
-
$file-list-link-btn-color:$text-basic;
|
|
87
|
-
$file-list-link-btn-bg:$bg-blue-active;
|
|
88
|
-
$file-list-link-btn-bg-active:$bg-blue;
|
|
89
|
-
//Flip
|
|
90
|
-
$flip-bg:transparent;
|
|
91
|
-
$flip-slides-bg:$bg-basic-color;
|
|
92
|
-
$flip-slides0-bg:#f6f6f6;
|
|
93
|
-
$flip-slides1-bg:$bg-blue-active;
|
|
94
|
-
$flip-slides1-color:$text-white;
|
|
95
|
-
$flip-border:$border-gray;
|
|
96
|
-
//Gallery
|
|
97
|
-
$galleria-container-bg:transparent;
|
|
98
|
-
$gallery-info-bg:$bg-basic-color;
|
|
99
|
-
$gallery-info-border:$border-gray;
|
|
100
|
-
$gallery-info-text:$text-basic;
|
|
101
|
-
$gallery-nav-active:$text-white;
|
|
102
|
-
$gallery-nav:$text-basic;
|
|
103
|
-
$gallery-counter-color:$text-white;
|
|
104
|
-
//Language selector
|
|
105
|
-
$lang-selector-bg:$bg-basic-color;
|
|
106
|
-
$lang-selector-border:$border-basic-color;
|
|
107
|
-
$lang-selector-item-bg-active:$bg-basic-color;
|
|
108
|
-
$lang-selector-item-border:$border-white;
|
|
109
|
-
$lang-selector-item-border-active:$border-basic-active;
|
|
110
|
-
//Site selector
|
|
111
|
-
$site-selector-color:$text-basic;
|
|
112
|
-
//Link List
|
|
113
|
-
$link-list-bg:transparent;
|
|
114
|
-
$link-list-header-border:$border-basic-color;
|
|
115
|
-
$link-list-items-bg:transparent;
|
|
116
|
-
$link-list-item-bg:transparent;
|
|
117
|
-
$link-list-item-color:$text-basic;
|
|
118
|
-
$link-list-item-color-active:$text-basic-active;
|
|
119
|
-
$link-list-item-border-active:$border-basic-color;
|
|
120
|
-
//Login
|
|
121
|
-
$login-bg:transparent;
|
|
122
|
-
//Logout
|
|
123
|
-
$logout-bg:transparent;
|
|
124
|
-
$logout-link-text-color:$text-basic;
|
|
125
|
-
$logout-link-text-color-active:$text-basic-active;
|
|
126
|
-
$logout-link-border:$border-basic-color;
|
|
127
|
-
//Map
|
|
128
|
-
$map-bg:transparent;
|
|
129
|
-
$map-border:none;
|
|
130
|
-
//Page List
|
|
131
|
-
$page-list-bg:$bg-transparent;
|
|
132
|
-
$page-list-item-bg:$bg-transparent;
|
|
133
|
-
$page-list-item-title-text:$text-black;
|
|
134
|
-
$page-list-item-border:$border-basic-color;
|
|
135
|
-
//Pagination
|
|
136
|
-
$list-pagination-bg:transparent;
|
|
137
|
-
$list-pagination-active-bg:$bg-blue;
|
|
138
|
-
$list-pagination-active-color:$text-white;
|
|
139
|
-
$list-pagination-active-color:$text-blue;
|
|
140
|
-
$list-pagination-active-bg:$bg-submenu-active;
|
|
141
|
-
$list-pagination-active-border:$border-basic-active;
|
|
142
|
-
//Play list
|
|
143
|
-
$play-list-bg:transparent;
|
|
144
|
-
$play-list-item-bg:transparent;
|
|
145
|
-
$play-list-item-color:$text-basic;
|
|
146
|
-
$play-list-item-color-active:$text-white;
|
|
147
|
-
$play-list-nav-active:$text-blue;
|
|
148
|
-
$play-list-item-bg:$bg-light-gray;
|
|
149
|
-
$play-list-item-active-bg:$bg-blue;
|
|
150
|
-
$play-list-border:$border-basic-color;
|
|
151
|
-
$play-list-title-border:$border-basic-color;
|
|
152
|
-
//Promo
|
|
153
|
-
$promo-bg:$bg-basic-color;
|
|
154
|
-
$promo-bg-hero:rgba(0, 0, 0, 0.5);
|
|
155
|
-
$promo-border:$border-gray;
|
|
156
|
-
$promo-hero-text-color:$text-white;
|
|
157
|
-
$promo-shadow-border:$border-basic-color;
|
|
158
|
-
//Rich Text Content
|
|
159
|
-
$rich-content-bg:transparent;
|
|
160
|
-
$rich-content-color:$text-basic;
|
|
161
|
-
$rich-content-border:transparent;
|
|
162
|
-
$rich-content-link-color:$text-red;
|
|
163
|
-
$rich-content-link-color-active:$text-basic-active;
|
|
164
|
-
//Search
|
|
165
|
-
$search-filter:$text-basic;
|
|
166
|
-
$search-filter-border:$border-basic-color;
|
|
167
|
-
//Menu colors
|
|
168
|
-
$menu-hover-color:#1b809e;
|
|
169
|
-
$menu-active-color:#176f89;
|
|
170
|
-
//Navigation
|
|
171
|
-
$nav-bg:transparent;
|
|
172
|
-
$nav-color-root:$text-basic;
|
|
173
|
-
$nav-color-root-active:$text-basic;
|
|
174
|
-
$nav-border-root:$border-basic-color;
|
|
175
|
-
$nav-border-root-active:$border-basic-color;
|
|
176
|
-
$nav-color-submenu:$text-submenu-active;
|
|
177
|
-
$nav-color-submenu-active:$text-submenu-active;
|
|
178
|
-
$nav-bg-root:$bg-submenu-active;
|
|
179
|
-
$nav-bg-submenu:$bg-submenu-active;
|
|
180
|
-
$nav-bg-submenu-active:$bg-submenu-active;
|
|
181
|
-
$nav-border-submenu:$border-basic-color;
|
|
182
|
-
$nav-submenu-item-border:$border-gray;
|
|
183
|
-
$nav-submenu-border-active:$border-basic-color;
|
|
184
|
-
//Social Media Share
|
|
185
|
-
$social-media-share-bg:transparent;
|
|
186
|
-
//Tabs
|
|
187
|
-
$tab-heading-bg:$bg-light-gray;
|
|
188
|
-
$tab-heading-active-bg:$bg-basic-color;
|
|
189
|
-
$tab-heading-color:$text-heading-color;
|
|
190
|
-
$tab-heading-active-color:$text-black;
|
|
191
|
-
$tab-container-bg:transparent;
|
|
192
|
-
$tab-container-border:$border-basic-color;
|
|
193
|
-
//Title
|
|
194
|
-
$title-bg:transparent;
|
|
195
|
-
$title-color:$text-basic;
|
|
196
|
-
$title-color-active:$text-basic-active;
|
|
197
|
-
//Toggle
|
|
198
|
-
$toggle-header-bg:$bg-basic-color;
|
|
199
|
-
$toggle-content-bg:$bg-basic-color;
|
|
200
|
-
$toggle-show-color:$text-basic-active;
|
|
201
|
-
//Search Components
|
|
202
|
-
$search-btn-bg:transparent;
|
|
203
|
-
$search-btn-active-bg:#e0e0e0;
|
|
204
|
-
$search-btn-active-border:#adadad;
|
|
205
|
-
//Image component
|
|
206
|
-
$image-caption-color:$text-basic;
|
|
207
|
-
//Media Link Component
|
|
208
|
-
$media-link-bg:transparent;
|
|
209
|
-
$media-link-border:$border-basic-color;
|
|
210
|
-
$media-link-color:$text-basic;
|
|
211
|
-
$media-link-color-active:$text-basic-active;
|
|
212
|
-
//Tag Component
|
|
213
|
-
$tag-color:$text-basic;
|
|
214
|
-
$tag-color-active:$text-basic-active;
|
|
215
|
-
$tag-border-active:$border-basic-active;
|
|
216
|
-
$tag-link-bg :$bg-blue;
|
|
217
|
-
$tag-link-bg-active :$bg-blue-active;
|
|
218
|
-
$tag-link-color :$text-white;
|
|
219
|
-
//Link Component
|
|
220
|
-
$link-bg:transparent;
|
|
221
|
-
$link-text-color:$text-basic;
|
|
222
|
-
$link-text-color-active:$text-basic-active;
|
|
223
|
-
$link-border:$border-basic-color;
|
|
224
|
-
//Overlay
|
|
225
|
-
$overlay-bg:$bg-light-gray;
|
|
226
|
-
//Search Components
|
|
227
|
-
$search-title-border:$border-basic-color;
|
|
228
|
-
$search-title-color:$text-basic;
|
|
229
|
-
$search-item-color:$text-basic;
|
|
230
|
-
$search-item-color-active:$text-basic;
|
|
231
|
-
$search-item-border:$border-basic-color;
|
|
232
|
-
$search-item-border-active:$border-basic-active;
|
|
233
|
-
//
|
|
234
|
-
//Search Facet Summary
|
|
235
|
-
$search-facet-summary-border:transparent;
|
|
236
|
-
$search-facet-summary-background:transparent;
|
|
237
|
-
$search-facet-summary-item-color:$text-basic;
|
|
238
|
-
$search-facet-summary-item-color-horizontal:$text-basic;
|
|
239
|
-
$search-facet-summary-item-border:$border-gray;
|
|
240
|
-
$search-facet-summary-item-border-horizontal:$border-basic-color;
|
|
241
|
-
$search-facet-summary-item-shadow:$border-gray;
|
|
242
|
-
$search-facet-summary-clear-border-horizontal:$btn-red;
|
|
243
|
-
$search-facet-summary-clear-color:$text-red;
|
|
244
|
-
$search-facet-summary-clear-color-horizontal:$text-blue;
|
|
245
|
-
//
|
|
246
|
-
$search-filter-radius-active:$text-blue;
|
|
247
|
-
$search-filter-radius-border:$border-gray;
|
|
248
|
-
$search-filter-radius-bg:$border-gray;
|
|
249
|
-
//
|
|
250
|
-
$search-filter-slider-border-active:$border-basic-color;
|
|
251
|
-
$search-filter-slider-bg-active:$bg-blue;
|
|
252
|
-
$search-filter-slider-btn-border:$border-gray;
|
|
253
|
-
$search-filter-slider-btn-bg:$bg-light-gray;
|
|
254
|
-
$search-filter-slider-btn-bg-active:$bg-light-gray-active;
|
|
255
|
-
//Serach Pagination
|
|
256
|
-
$search-pagination-bg:transparent;
|
|
257
|
-
$search-pagination-active-bg:$bg-blue;
|
|
258
|
-
$search-pagination-active-color:$text-white;
|
|
259
|
-
$search-pagination-hover-color:$text-blue;
|
|
260
|
-
$search-pagination-hover-bg:$bg-submenu-active;
|
|
261
|
-
$search-pagination-hover-border:$border-basic-active;
|
|
262
|
-
//Search selector
|
|
263
|
-
$serach-selector-variant-color-active: $text-blue-active;
|
|
264
|
-
//Typehead
|
|
265
|
-
$tt-color:$text-basic;
|
|
266
|
-
$tt-color-active:$text-blue;
|
|
267
|
-
$tt-price-color:$text-blue;
|
|
268
|
-
$tt-dropdown-bg:$bg-light-gray;
|
|
269
|
-
$tt-suggestion-bg-active:$bg-light-gray-active;
|
|
270
|
-
$tt-dropdown-border:$border-gray;
|
|
271
|
-
//Video
|
|
272
|
-
$video-control-bg:$bg-basic-color;
|
|
273
|
-
$video-time-color:$text-basic;
|
|
274
|
-
$video-time-total-bg:$bg-black;
|
|
275
|
-
$video-time-handle-border:$border-gray;
|
|
276
|
-
$video-time-handle-bg:$bg-black;
|
|
277
|
-
//Form component
|
|
278
|
-
$form-bg: transparent;
|
|
279
|
-
$form-border: transparent;
|
|
280
|
-
$form-color: $text-basic;
|
|
281
|
-
//Main
|
|
282
|
-
$page-bg: $bg-basic-color;
|
|
283
|
-
$page-bg-editor:none;
|
package/dist/templates/angular-xmcloud/src/assets/styles/sass/abstracts/vars/_fontSizes.scss
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
$font-small:11px;
|
|
2
|
-
$font-normal:13px;
|
|
3
|
-
$font-medium:16px;
|
|
4
|
-
$font-big:20px;
|
|
5
|
-
$font-extrabig:24px;
|
|
6
|
-
//Navigation
|
|
7
|
-
$navigation-font-basic:18px;
|
|
8
|
-
$navigation-font-basic-submenu:14px;
|
|
9
|
-
//Tabs
|
|
10
|
-
$tab-font-header:16px;
|
|
11
|
-
//Accordion
|
|
12
|
-
$accordion-header:16px;
|
|
13
|
-
//Breadcrumb
|
|
14
|
-
$breadcrumb-font:15px;
|
|
15
|
-
// Link List
|
|
16
|
-
$link-list-title-font:15px;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese');
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import "fonts";
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/vars/colors";
|
|
2
|
-
@import "sass/abstracts/mixins";
|
|
3
|
-
|
|
4
|
-
.button-default, .default {
|
|
5
|
-
@include default-link-button();
|
|
6
|
-
background: #f6f6f6;
|
|
7
|
-
color: $text-basic;
|
|
8
|
-
}
|
|
9
|
-
.button-success, .success {
|
|
10
|
-
@include default-link-button();
|
|
11
|
-
background: $btn-green-light;
|
|
12
|
-
color: $text-white;
|
|
13
|
-
&:hover {
|
|
14
|
-
color: $text-white;
|
|
15
|
-
background: $btn-green;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
.button-warning, .warning {
|
|
19
|
-
@include default-link-button();
|
|
20
|
-
background: $btn-red;
|
|
21
|
-
color: $text-white;
|
|
22
|
-
&:hover {
|
|
23
|
-
color: $text-white;
|
|
24
|
-
background: $btn-red-active;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import "link-button";
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/mixins";
|
|
2
|
-
@import "sass/abstracts/vars";
|
|
3
|
-
|
|
4
|
-
label {
|
|
5
|
-
background: transparent;
|
|
6
|
-
color: $text-basic;
|
|
7
|
-
}
|
|
8
|
-
input, button {
|
|
9
|
-
display: inline-block;
|
|
10
|
-
box-sizing: border-box;
|
|
11
|
-
background: $bg-basic-color !important;
|
|
12
|
-
border: 1px solid $border-gray;
|
|
13
|
-
border-radius: 0 !important;
|
|
14
|
-
color: $text-basic;
|
|
15
|
-
font-weight: normal;
|
|
16
|
-
padding: 8px 2%;
|
|
17
|
-
clear: both;
|
|
18
|
-
height: auto;
|
|
19
|
-
font-size: $font-normal;
|
|
20
|
-
}
|
|
21
|
-
input:focus {
|
|
22
|
-
border: 1px solid $border-gray;
|
|
23
|
-
}
|
|
24
|
-
input[type="submit"], input[type="reset"], input[type="button"], button {
|
|
25
|
-
border: 1px solid $border-basic-color;
|
|
26
|
-
padding: 5px 20px;
|
|
27
|
-
&:hover {
|
|
28
|
-
background: $bg-light-gray !important;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
input::-moz-focus-inner, button::-moz-focus-inner {
|
|
32
|
-
border: 0;
|
|
33
|
-
padding: 0;
|
|
34
|
-
}
|
|
35
|
-
input[type="text"] {
|
|
36
|
-
font-size: 13px;
|
|
37
|
-
}
|
|
38
|
-
input[type="text"], input[type="email"], input[type="password"], textarea, select {
|
|
39
|
-
box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
|
|
40
|
-
color: $text-basic;
|
|
41
|
-
width: 100%;
|
|
42
|
-
background: #fff;
|
|
43
|
-
border: 1px solid $border-gray;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
select {
|
|
47
|
-
display: inline-block;
|
|
48
|
-
vertical-align: middle;
|
|
49
|
-
*vertical-align: auto;
|
|
50
|
-
*zoom: 1;
|
|
51
|
-
*display: inline;
|
|
52
|
-
-moz-box-sizing: border-box;
|
|
53
|
-
-webkit-box-sizing: border-box;
|
|
54
|
-
box-sizing: border-box;
|
|
55
|
-
outline: none;
|
|
56
|
-
cursor: pointer;
|
|
57
|
-
padding: 5px;
|
|
58
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
@import "sass/abstracts/mixins";
|
|
2
|
-
@import "sass/abstracts/vars";
|
|
3
|
-
|
|
4
|
-
a {
|
|
5
|
-
background-color: transparent;
|
|
6
|
-
text-decoration: none;
|
|
7
|
-
font-size: 1em;
|
|
8
|
-
color: $text-basic;
|
|
9
|
-
border-bottom: 1px solid $border-basic-color;
|
|
10
|
-
&:hover {
|
|
11
|
-
color: $text-basic-active;
|
|
12
|
-
text-decoration: none;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
@import 'font-awesome/scss/mixins';
|
|
2
|
-
@import 'font-awesome/scss/variables';
|
|
3
|
-
@import "sass/abstracts/mixins";
|
|
4
|
-
|
|
5
|
-
//files icons
|
|
6
|
-
.field-filetypeicon>a>span, .pdf, .xls, .xlsx, .pptx, .ppt, .docx, .doc, .bmp, .png, .jpg, .jpeg, .psd, .gif, .avi, .mp4, .wmv, .mov, .mp3, .wma, .txt, .zip {
|
|
7
|
-
display: inline-block;
|
|
8
|
-
box-sizing: border-box;
|
|
9
|
-
font-weight: normal;
|
|
10
|
-
width: 15px;
|
|
11
|
-
height: 21px;
|
|
12
|
-
margin: 0;
|
|
13
|
-
padding: 0;
|
|
14
|
-
position: relative;
|
|
15
|
-
&:before {
|
|
16
|
-
@include fa-icon();
|
|
17
|
-
font-size: 16px !important;
|
|
18
|
-
position: absolute;
|
|
19
|
-
display: block;
|
|
20
|
-
top: 50%;
|
|
21
|
-
margin: 0;
|
|
22
|
-
padding: 0;
|
|
23
|
-
transform: translateY(-50%);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
.field-filetypeicon span:before {
|
|
27
|
-
content: $fa-var-file-o;
|
|
28
|
-
}
|
|
29
|
-
.field-filetypeicon {
|
|
30
|
-
.pdf:before {
|
|
31
|
-
content: $fa-var-file-pdf-o;
|
|
32
|
-
}
|
|
33
|
-
.xlsx, .xls {
|
|
34
|
-
&:before {
|
|
35
|
-
content: $fa-var-file-excel-o;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
.pptx, .ppt {
|
|
39
|
-
&:before {
|
|
40
|
-
content: $fa-var-file-powerpoint-o;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
.docx, .doc {
|
|
44
|
-
&:before {
|
|
45
|
-
content: $fa-var-file-word-o;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
.bmp, .png, .jpg, .jpeg, .psd, .gif, .tif {
|
|
49
|
-
&:before {
|
|
50
|
-
content: $fa-var-file-image-o;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
.avi, .mp4, .wmv, .mov, .mpg, .mkv, .vp6, .vid, .rv, .webm, .swf, .flv, .m4v, .h264, .mk3d, .gifv, .oggv, .movie, .divx {
|
|
54
|
-
&:before {
|
|
55
|
-
content: $fa-var-file-video-o;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
.mp3, .wma, .wav, .fla, .flac, .ra, .rma, .aif, .aiff, .aa, .aac, .mid, .midi, .aax, .ac3, .au, .ogg, .avr, .m4a, .mp4a, .amz, .mka, .asx, .pcm, .m3u, .xwma {
|
|
59
|
-
&:before {
|
|
60
|
-
content: $fa-var-file-audio-o;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
.txt:before {
|
|
64
|
-
content: $fa-var-file-text-o;
|
|
65
|
-
}
|
|
66
|
-
.zip, .zipx, .rar, .tar, .gz, .dmg, .iso {
|
|
67
|
-
&:before {
|
|
68
|
-
content: $fa-var-file-archive-o;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
.css, .js, .py, .git, .py, .cpp, .h, .ini, .config {
|
|
72
|
-
&:before {
|
|
73
|
-
content: $fa-var-file-code-o;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
.exe, .jar, .dll, .bat, .pl, .scr, .msi, .app, .deb, .apk, .jar, .vb, .prg, .sh {
|
|
77
|
-
&:before {
|
|
78
|
-
content: $fa-var-cogs;
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
.com, .net, .org, .edu, .gov, .mil, .html, .htm, .xhtml, .jhtml, .php, .php3, .php4, .php5, .phtmle, .asp, .aspx, .cfm {
|
|
82
|
-
&:before {
|
|
83
|
-
content: $fa-var-link;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
h1,
|
|
2
|
-
h2,
|
|
3
|
-
h3,
|
|
4
|
-
h4,
|
|
5
|
-
h5,
|
|
6
|
-
h6 {
|
|
7
|
-
color: $text-heading-color;
|
|
8
|
-
}
|
|
9
|
-
h1,
|
|
10
|
-
h2 {
|
|
11
|
-
margin: $small-margin 0;
|
|
12
|
-
}
|
|
13
|
-
h3,
|
|
14
|
-
h4,
|
|
15
|
-
p {
|
|
16
|
-
margin: $extrasmall-margin 0;
|
|
17
|
-
}
|
|
18
|
-
h5,
|
|
19
|
-
h6 {
|
|
20
|
-
margin: $extrasmall-margin 0 0;
|
|
21
|
-
}
|
|
22
|
-
strong {
|
|
23
|
-
font-weight: 700;
|
|
24
|
-
}
|
|
25
|
-
ul,
|
|
26
|
-
ol {
|
|
27
|
-
padding-bottom: $extrasmall-margin;
|
|
28
|
-
padding-top: $extrasmall-margin;
|
|
29
|
-
margin-left: $small-margin;
|
|
30
|
-
}
|
|
31
|
-
li {
|
|
32
|
-
font-size: $font-normal;
|
|
33
|
-
margin-left: 15px;
|
|
34
|
-
}
|
|
35
|
-
ul {
|
|
36
|
-
li {
|
|
37
|
-
list-style: disc;
|
|
38
|
-
list-style-position: inside;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
ol {
|
|
42
|
-
li {
|
|
43
|
-
list-style: decimal;
|
|
44
|
-
list-style-position: inside;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
a {
|
|
48
|
-
color: $rich-content-link-color;
|
|
49
|
-
text-decoration: underline;
|
|
50
|
-
font-size: 1em;
|
|
51
|
-
&:hover {
|
|
52
|
-
color: $rich-content-link-color-active;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
table {
|
|
56
|
-
height: auto !important;
|
|
57
|
-
border: 2px solid $border-gray;
|
|
58
|
-
&,
|
|
59
|
-
tr,
|
|
60
|
-
th,
|
|
61
|
-
td {
|
|
62
|
-
border: solid 2px $border-gray;
|
|
63
|
-
background: $bg-basic-color;
|
|
64
|
-
border-collapse: collapse;
|
|
65
|
-
vertical-align: middle;
|
|
66
|
-
}
|
|
67
|
-
tr,
|
|
68
|
-
th,
|
|
69
|
-
td {
|
|
70
|
-
padding: 5px;
|
|
71
|
-
}
|
|
72
|
-
caption {
|
|
73
|
-
background-color: $bg-light-gray;
|
|
74
|
-
overflow: hidden;
|
|
75
|
-
padding: 10px;
|
|
76
|
-
font-size: $font-big;
|
|
77
|
-
font-weight: bold;
|
|
78
|
-
margin-left: 0;
|
|
79
|
-
}
|
|
80
|
-
tr {
|
|
81
|
-
border: none;
|
|
82
|
-
}
|
|
83
|
-
th,
|
|
84
|
-
td {
|
|
85
|
-
border-width: 2px 0 0 2px;
|
|
86
|
-
}
|
|
87
|
-
th {
|
|
88
|
-
background-color: lighten($bg-light-gray, 5%);
|
|
89
|
-
font-size: $font-normal;
|
|
90
|
-
font-weight: bold;
|
|
91
|
-
padding: 7px;
|
|
92
|
-
&:first-child {
|
|
93
|
-
border-left: 0;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
td {
|
|
97
|
-
&:first-child {
|
|
98
|
-
border-left: 0;
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
}
|