Merged in feat/sw-2781-partner-sas-site-setup (pull request #2432)

feat(SW-2781): Setup SAS partner site

* Add boilerplate for SAS partner site

* Fonts

* netlify.toml


Approved-by: Linus Flood
This commit is contained in:
Anton Gunnarsson
2025-06-26 13:45:15 +00:00
parent e572d9e7e9
commit 133f7b3d75
92 changed files with 72046 additions and 2 deletions

49
apps/partner-sas/.gitignore vendored Normal file
View File

@@ -0,0 +1,49 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# env files (can opt-in for committing if needed)
.env*
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts
# Yarn
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.yarn/releases

View File

@@ -0,0 +1,3 @@
body {
background: rebeccapurple;
}

View File

@@ -0,0 +1,29 @@
import "@scandic-hotels/design-system/style.css"
import "@scandic-hotels/design-system/fonts.css"
import "@/public/_static/css/design-system-new-deprecated.css"
import "./globals.css"
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en">
<head>
{/* eslint-disable-next-line @next/next/no-css-tags */}
<link rel="stylesheet" href="/_static/css/core.css" />
{/* eslint-disable-next-line @next/next/no-css-tags */}
<link rel="stylesheet" href="/_static/css/scandic.css" />
</head>
<body className="scandic">{children}</body>
</html>
)
}

View File

@@ -0,0 +1,3 @@
.page {
color: white;
}

View File

@@ -0,0 +1,16 @@
import { Typography } from "@scandic-hotels/design-system/Typography"
import styles from "./page.module.css"
export default function Home() {
return (
<div className={styles.page}>
<main>
<Typography variant="Title/Decorative/lg">
{/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */}
<p>hello world</p>
</Typography>
</main>
</div>
)
}

View File

@@ -0,0 +1,106 @@
import { FlatCompat } from "@eslint/eslintrc"
import js from "@eslint/js"
import typescriptEslint from "@typescript-eslint/eslint-plugin"
import tsParser from "@typescript-eslint/parser"
import { defineConfig } from "eslint/config"
import formatjs from "eslint-plugin-formatjs"
import simpleImportSort from "eslint-plugin-simple-import-sort"
const compat = new FlatCompat({
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
})
export default defineConfig([
{
extends: compat.extends("next/core-web-vitals", "plugin:import/typescript"),
plugins: {
"simple-import-sort": simpleImportSort,
"@typescript-eslint": typescriptEslint,
formatjs,
},
languageOptions: {
parser: tsParser,
},
rules: {
"no-unused-vars": "off",
"react/function-component-definition": "error",
"import/no-relative-packages": "error",
"simple-import-sort/imports": [
"error",
{
groups: [
["^\\u0000"],
["^node:"],
["^@?\\w"],
["^@scandic-hotels/(?!.*\\u0000$).*$"],
[
"^@/constants/?(?!.*\\u0000$).*$",
"^@/env/?(?!.*\\u0000$).*$",
"^@/lib/?(?!.*\\u0000$).*$",
"^@/server/?(?!.*\\u0000$).*$",
"^@/stores/?(?!.*\\u0000$).*$",
],
["^@/(?!(types|.*\\u0000$)).*$"],
[
"^\\.\\.(?!/?$)",
"^\\.\\./?$",
"^\\./(?=.*/)(?!/?$)",
"^\\.(?!/?$)",
"^\\./?$",
],
["^(?!\\u0000).+\\.s?css$"],
["^node:.*\\u0000$", "^@?\\w.*\\u0000$"],
[
"^@scandichotels/.*\\u0000$",
"^@/types/.*",
"^@/.*\\u0000$",
"^[^.].*\\u0000$",
"^\\..*\\u0000$",
],
],
},
],
"simple-import-sort/exports": "error",
"import/first": "error",
"import/newline-after-import": "error",
"import/no-duplicates": [
"error",
{
"prefer-inline": true,
},
],
"@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{
args: "all",
argsIgnorePattern: "^_",
caughtErrors: "all",
caughtErrorsIgnorePattern: "^_",
destructuredArrayIgnorePattern: "^_",
varsIgnorePattern: "^_",
ignoreRestSiblings: true,
},
],
"formatjs/enforce-default-message": ["error", "literal"],
"formatjs/enforce-placeholders": ["error"],
"formatjs/enforce-plural-rules": ["error"],
"formatjs/no-literal-string-in-jsx": ["error"],
"formatjs/no-multiple-whitespaces": ["error"],
"formatjs/no-multiple-plurals": ["error"],
"formatjs/no-invalid-icu": ["error"],
"formatjs/no-id": ["error"],
"formatjs/no-complex-selectors": ["error"],
"formatjs/no-useless-message": ["error"],
"formatjs/prefer-pound-in-plural": ["error"],
},
},
])

View File

@@ -0,0 +1,21 @@
import path from "node:path"
const WEB_ROOT = path.join(process.cwd(), "apps/partner-sas/")
// https://nextjs.org/docs/app/building-your-application/configuring/eslint#lint-staged
const buildEslintCommand = (filenames) => {
const cmd = `next lint --fix --max-warnings 0 --file ${filenames
.map((f) => `'${path.relative(WEB_ROOT, f)}'`)
.join(" --file ")}`
return cmd
}
const config = {
"*.{js,jsx,ts,tsx}": [buildEslintCommand],
"*.{ts,tsx}": () => "tsc -p tsconfig.json --noEmit",
"*.{js,jsx,ts,tsx,json,css}": "prettier --write",
"i18n/dictionaries/*.json": "jsonsort",
}
export default config

View File

@@ -0,0 +1,27 @@
[build]
command = "yarn build"
publish = "apps/partner-sas/.next"
[context.branch-deploy]
command = "yarn build"
[context.deploy-preview]
command = "yarn build"
[build.environment]
# set TERM variable for terminal output
TERM = "xterm"
[[plugins]]
package = "@netlify/plugin-nextjs"
# [images]
# remote_images = [
# "https://imagevault-stage.scandichotels.com.*",
# "https://imagevault.scandichotels.com.*",
# ]
[[headers]]
for = "/_next/static/*"
[headers.values]
cache-control = "public, max-age=31536000, immutable"

View File

@@ -0,0 +1,26 @@
import type { NextConfig } from "next"
const nextConfig: NextConfig = {
poweredByHeader: false,
trailingSlash: false,
transpilePackages: ["@scandic-hotels/common", "@scandic-hotels/trpc"],
output: "standalone",
webpack: function (config: any) {
config.module.rules.push(
{
test: /\.(graphql|gql)/,
exclude: /node_modules/,
loader: "graphql-tag/loader",
},
{
test: /\.svg$/,
use: ["@svgr/webpack"],
}
)
return config
},
}
export default nextConfig

View File

@@ -0,0 +1,42 @@
{
"name": "@scandic-hotels/partner-sas",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "PORT=3001 NEXT_PUBLIC_PORT=3001 next dev",
"build": "next build",
"start": "node .next/standalone/server.js",
"lint": "next lint --max-warnings 0 && tsc --noEmit",
"lint:fix": "next lint --fix && tsc --noEmit",
"check-types": "tsc --noEmit"
},
"dependencies": {
"@netlify/plugin-nextjs": "^5.11.2",
"@scandic-hotels/design-system": "workspace:*",
"next": "15.3.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.26.0",
"@scandic-hotels/common": "workspace:*",
"@scandic-hotels/typescript-config": "workspace:*",
"@types/node": "^20",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.0",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"eslint-plugin-formatjs": "^5.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"typescript": "5.8.3",
"typescript-plugin-css-modules": "^5.1.0"
},
"engines": {
"node": "22"
}
}

View File

@@ -0,0 +1,8 @@
module.exports = {
semi: false,
trailingComma: "es5",
singleQuote: false,
printWidth: 80,
tabWidth: 2,
endOfLine: "lf",
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,870 @@
:root {
--typography-Body-Bold-Desktop-fontSize: 16px;
--typography-Body-Bold-fontFamily: "fira sans";
--typography-Body-Bold-fontSize: 16px;
--typography-Body-Bold-fontWeight: "medium";
--typography-Body-Bold-letterSpacing: 1.2000000476837158%;
--typography-Body-Bold-lineHeight: 150%;
--typography-Body-Bold-Mobile-fontSize: 16px;
--typography-Body-Bold-Tablet-estimate-fontSize: 16px;
--typography-Body-Bold-textCase: "original";
--typography-Body-Bold-textDecoration: "none";
--typography-Body-Inline-Desktop-fontSize: 16px;
--typography-Body-Inline-fontFamily: "fira sans";
--typography-Body-Inline-fontSize: 16px;
--typography-Body-Inline-fontWeight: "regular";
--typography-Body-Inline-letterSpacing: 1.2000000476837158%;
--typography-Body-Inline-lineHeight: 150%;
--typography-Body-Inline-Mobile-fontSize: 16px;
--typography-Body-Inline-Tablet-estimate-fontSize: 16px;
--typography-Body-Inline-textCase: "original";
--typography-Body-Inline-textDecoration: "underline";
--typography-Body-Link-Desktop-fontSize: 16px;
--typography-Body-Link-Mobile-fontSize: 16px;
--typography-Body-Link-Tablet-estimate-fontSize: 16px;
--typography-Body-Regular-Desktop-fontSize: 16px;
--typography-Body-Regular-fontFamily: "fira sans";
--typography-Body-Regular-fontSize: 16px;
--typography-Body-Regular-fontWeight: "regular";
--typography-Body-Regular-letterSpacing: 1.2000000476837158%;
--typography-Body-Regular-lineHeight: 150%;
--typography-Body-Regular-Mobile-fontSize: 16px;
--typography-Body-Regular-Tablet-estimate-fontSize: 16px;
--typography-Body-Regular-textCase: "original";
--typography-Body-Regular-textDecoration: "none";
--typography-Body-Underline-fontFamily: "fira sans";
--typography-Body-Underline-fontSize: 16px;
--typography-Body-Underline-fontWeight: "medium";
--typography-Body-Underline-letterSpacing: 1.2000000476837158%;
--typography-Body-Underline-lineHeight: 150%;
--typography-Body-Underline-textCase: "original";
--typography-Body-Underline-textDecoration: "underline";
--typography-Caption-Bold-Desktop-fontSize: 14px;
--typography-Caption-Bold-fontFamily: "fira sans";
--typography-Caption-Bold-fontSize: 14px;
--typography-Caption-Bold-fontWeight: "medium";
--typography-Caption-Bold-letterSpacing: 1.399999976158142%;
--typography-Caption-Bold-lineHeight: 139.9999976158142%;
--typography-Caption-Bold-Mobile-fontSize: 14px;
--typography-Caption-Bold-Tablet-estimate-fontSize: 14px;
--typography-Caption-Bold-textCase: "original";
--typography-Caption-Bold-textDecoration: "none";
--typography-Caption-Inline-Desktop-fontSize: 14px;
--typography-Caption-Inline-fontFamily: "fira sans";
--typography-Caption-Inline-fontSize: 14px;
--typography-Caption-Inline-fontWeight: "regular";
--typography-Caption-Inline-letterSpacing: 1.399999976158142%;
--typography-Caption-Inline-lineHeight: 139.9999976158142%;
--typography-Caption-Inline-Mobile-fontSize: 14px;
--typography-Caption-Inline-Tablet-estimate-fontSize: 14px;
--typography-Caption-Inline-textCase: "original";
--typography-Caption-Inline-textDecoration: "underline";
--typography-Caption-Labels-fontFamily: "brandon text";
--typography-Caption-Labels-fontSize: 14px;
--typography-Caption-Labels-fontWeight: "bold";
--typography-Caption-Labels-letterSpacing: 1.399999976158142%;
--typography-Caption-Labels-lineHeight: 150%;
--typography-Caption-Labels-textCase: "upper";
--typography-Caption-Labels-textDecoration: "none";
--typography-Caption-Link-Desktop-fontSize: 14px;
--typography-Caption-Link-Mobile-fontSize: 14px;
--typography-Caption-Link-Tablet-estimate-fontSize: 14px;
--typography-Caption-Regular-Desktop-fontSize: 14px;
--typography-Caption-Regular-fontFamily: "fira sans";
--typography-Caption-Regular-fontSize: 14px;
--typography-Caption-Regular-fontWeight: "regular";
--typography-Caption-Regular-letterSpacing: 1.399999976158142%;
--typography-Caption-Regular-lineHeight: 139.9999976158142%;
--typography-Caption-Regular-Mobile-fontSize: 14px;
--typography-Caption-Regular-Tablet-estimate-fontSize: 14px;
--typography-Caption-Regular-textCase: "original";
--typography-Caption-Regular-textDecoration: "none";
--typography-Caption-Underline-fontFamily: "fira sans";
--typography-Caption-Underline-fontSize: 14px;
--typography-Caption-Underline-fontWeight: "medium";
--typography-Caption-Underline-letterSpacing: 1.399999976158142%;
--typography-Caption-Underline-lineHeight: 139.9999976158142%;
--typography-Caption-Underline-textCase: "original";
--typography-Caption-Underline-textDecoration: "underline";
--typography-Foot-note-Bold-Desktop-fontSize: 12px;
--typography-Foot-note-Bold-Mobile-fontSize: 12px;
--typography-Foot-note-Bold-Tablet-estimate-fontSize: 12px;
--typography-Foot-note-Regular-Desktop-fontSize: 12px;
--typography-Foot-note-Regular-Mobile-fontSize: 12px;
--typography-Foot-note-Regular-Tablet-estimate-fontSize: 12px;
--typography-Footnote-Bold-fontFamily: "fira sans";
--typography-Footnote-Bold-fontSize: 12px;
--typography-Footnote-Bold-fontWeight: "medium";
--typography-Footnote-Bold-letterSpacing: 1.399999976158142%;
--typography-Footnote-Bold-lineHeight: 150%;
--typography-Footnote-Bold-textCase: "original";
--typography-Footnote-Bold-textDecoration: "none";
--typography-Footnote-Labels-fontFamily: "brandon text";
--typography-Footnote-Labels-fontSize: 12px;
--typography-Footnote-Labels-fontWeight: "bold";
--typography-Footnote-Labels-letterSpacing: 1.399999976158142%;
--typography-Footnote-Labels-lineHeight: 150%;
--typography-Footnote-Labels-textCase: "upper";
--typography-Footnote-Labels-textDecoration: "none";
--typography-Footnote-Regular-fontFamily: "fira sans";
--typography-Footnote-Regular-fontSize: 12px;
--typography-Footnote-Regular-fontWeight: "regular";
--typography-Footnote-Regular-letterSpacing: 1.399999976158142%;
--typography-Footnote-Regular-lineHeight: 150%;
--typography-Footnote-Regular-textCase: "original";
--typography-Footnote-Regular-textDecoration: "none";
--typography-Preamble-Desktop-fontSize: 20px;
--typography-Preamble-fontFamily: "fira sans";
--typography-Preamble-fontSize: 20px;
--typography-Preamble-fontWeight: "regular";
--typography-Preamble-letterSpacing: 1%;
--typography-Preamble-lineHeight: 139.9999976158142%;
--typography-Preamble-Mobile-fontSize: 18px;
--typography-Preamble-Tablet-estimate-fontSize: 19px;
--typography-Preamble-textCase: "original";
--typography-Preamble-textDecoration: "none";
--typography-Script-1-Desktop-fontSize: 32px;
--typography-Script-1-fontFamily: "biro script plus";
--typography-Script-1-fontSize: 32px;
--typography-Script-1-fontWeight: "regular";
--typography-Script-1-letterSpacing: 2%;
--typography-Script-1-lineHeight: 110.00000238418579%;
--typography-Script-1-Mobile-fontSize: 24px;
--typography-Script-1-Tablet-estimate-fontSize: 29px;
--typography-Script-1-textCase: "original";
--typography-Script-1-textDecoration: "none";
--typography-Script-2-Desktop-fontSize: 24px;
--typography-Script-2-fontFamily: "biro script plus";
--typography-Script-2-fontSize: 24px;
--typography-Script-2-fontWeight: "regular";
--typography-Script-2-letterSpacing: 2%;
--typography-Script-2-lineHeight: 110.00000238418579%;
--typography-Script-2-Mobile-fontSize: 20px;
--typography-Script-2-Tablet-estimate-fontSize: 22px;
--typography-Script-2-textCase: "original";
--typography-Script-2-textDecoration: "none";
--typography-Subtitle-1-Desktop-fontSize: 24px;
--typography-Subtitle-1-fontFamily: "fira sans";
--typography-Subtitle-1-fontSize: 24px;
--typography-Subtitle-1-fontWeight: "medium";
--typography-Subtitle-1-letterSpacing: 1%;
--typography-Subtitle-1-lineHeight: 120.00000476837158%;
--typography-Subtitle-1-Mobile-fontSize: 20px;
--typography-Subtitle-1-Tablet-estimate-fontSize: 22px;
--typography-Subtitle-1-textCase: "original";
--typography-Subtitle-1-textDecoration: "none";
--typography-Subtitle-2-Desktop-fontSize: 20px;
--typography-Subtitle-2-fontFamily: "fira sans";
--typography-Subtitle-2-fontSize: 20px;
--typography-Subtitle-2-fontWeight: "medium";
--typography-Subtitle-2-letterSpacing: 1%;
--typography-Subtitle-2-lineHeight: 120.00000476837158%;
--typography-Subtitle-2-Mobile-fontSize: 18px;
--typography-Subtitle-2-Tablet-estimate-fontSize: 19px;
--typography-Subtitle-2-textCase: "original";
--typography-Subtitle-2-textDecoration: "none";
--typography-Title-1-Desktop-fontSize: 64px;
--typography-Title-1-fontFamily: "brandon text";
--typography-Title-1-fontSize: 64px;
--typography-Title-1-fontWeight: "black";
--typography-Title-1-letterSpacing: 0.25%;
--typography-Title-1-lineHeight: 110.00000238418579%;
--typography-Title-1-Mobile-fontSize: 48px;
--typography-Title-1-Tablet-estimate-fontSize: 60px;
--typography-Title-1-textCase: "upper";
--typography-Title-1-textDecoration: "none";
--typography-Title-2-Desktop-fontSize: 48px;
--typography-Title-2-fontFamily: "brandon text";
--typography-Title-2-fontSize: 48px;
--typography-Title-2-fontWeight: "black";
--typography-Title-2-letterSpacing: 0.25%;
--typography-Title-2-lineHeight: 110.00000238418579%;
--typography-Title-2-Mobile-fontSize: 36px;
--typography-Title-2-Tablet-estimate-fontSize: 44px;
--typography-Title-2-textCase: "upper";
--typography-Title-2-textDecoration: "none";
--typography-Title-3-Desktop-fontSize: 36px;
--typography-Title-3-fontFamily: "brandon text";
--typography-Title-3-fontSize: 36px;
--typography-Title-3-fontWeight: "black";
--typography-Title-3-letterSpacing: 0.25%;
--typography-Title-3-lineHeight: 110.00000238418579%;
--typography-Title-3-Mobile-fontSize: 30px;
--typography-Title-3-Tablet-estimate-fontSize: 34px;
--typography-Title-3-textCase: "upper";
--typography-Title-3-textDecoration: "none";
--typography-Title-4-Desktop-fontSize: 28px;
--typography-Title-4-fontFamily: "brandon text";
--typography-Title-4-fontSize: 28px;
--typography-Title-4-fontWeight: "bold";
--typography-Title-4-letterSpacing: 0.25%;
--typography-Title-4-lineHeight: 110.00000238418579%;
--typography-Title-4-Mobile-fontSize: 24px;
--typography-Title-4-Tablet-estimate-fontSize: 26px;
--typography-Title-4-textCase: "original";
--typography-Title-4-textDecoration: "none";
--typography-Title-5-Desktop-fontSize: 24px;
--typography-Title-5-fontFamily: "brandon text";
--typography-Title-5-fontSize: 24px;
--typography-Title-5-fontWeight: "black";
--typography-Title-5-letterSpacing: 0.25%;
--typography-Title-5-lineHeight: 110.00000238418579%;
--typography-Title-5-Mobile-fontSize: 20px;
--typography-Title-5-Tablet-estimate-fontSize: 21px;
--typography-Title-5-textCase: "upper";
--typography-Title-5-textDecoration: "none";
}
:root {
--Base-Background-Primary-Elevated: var(--Scandic-Beige-00);
--Base-Background-Primary-Normal: var(--Scandic-Beige-00);
--Base-Border-Hover: var(--Scandic-Peach-80);
--Base-Border-Inverted: var(--UI-Opacity-White-100);
--Base-Border-Normal: var(--Scandic-Beige-40);
--Base-Border-Subtle: var(--Scandic-Beige-20);
--Base-Button-Inverted-Border-Disabled: var(--UI-Opacity-White-0);
--Base-Button-Inverted-Border-Hover: var(--UI-Opacity-White-0);
--Base-Button-Inverted-Border-Normal: var(--UI-Opacity-White-0);
--Base-Button-Inverted-Fill-Disabled: var(--UI-Grey-20);
--Base-Button-Inverted-Fill-Hover: var(--Scandic-Beige-10);
--Base-Button-Inverted-Fill-Hover-alt: var(--Scandic-Peach-10);
--Base-Button-Inverted-Fill-Normal: var(--UI-Opacity-White-100);
--Base-Button-Inverted-On-Fill-Disabled: var(--UI-Grey-40);
--Base-Button-Inverted-On-Fill-Hover: var(--Scandic-Red-90);
--Base-Button-Inverted-On-Fill-Normal: var(--Scandic-Red-100);
--Base-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0);
--Base-Button-Primary-Border-Hover: var(--UI-Opacity-White-0);
--Base-Button-Primary-Border-Normal: var(--UI-Opacity-White-0);
--Base-Button-Primary-Fill-Disabled: var(--UI-Grey-20);
--Base-Button-Primary-Fill-Hover: var(--Scandic-Red-70);
--Base-Button-Primary-Fill-Normal: var(--Scandic-Red-60);
--Base-Button-Primary-On-Fill-Disabled: var(--UI-Grey-40);
--Base-Button-Primary-On-Fill-Hover: var(--UI-Opacity-White-100);
--Base-Button-Primary-On-Fill-Normal: var(--UI-Opacity-White-100);
--Base-Button-Secondary-Border-Disabled: var(--UI-Grey-30);
--Base-Button-Secondary-Border-Hover: var(--Scandic-Peach-80);
--Base-Button-Secondary-Border-Normal: var(--Scandic-Red-100);
--Base-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0);
--Base-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0);
--Base-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0);
--Base-Button-Secondary-On-Fill-Disabled: var(--UI-Grey-40);
--Base-Button-Secondary-On-Fill-Hover: var(--Scandic-Peach-80);
--Base-Button-Secondary-On-Fill-Normal: var(--Scandic-Red-100);
--Base-Button-Tertiary-Border-Disabled: var(--UI-Opacity-White-0);
--Base-Button-Tertiary-Border-Hover: var(--UI-Opacity-White-0);
--Base-Button-Tertiary-Border-Normal: var(--UI-Opacity-White-0);
--Base-Button-Tertiary-Fill-Disabled: var(--UI-Grey-20);
--Base-Button-Tertiary-Fill-Hover: var(--Scandic-Red-90);
--Base-Button-Tertiary-Fill-Normal: var(--Scandic-Red-100);
--Base-Button-Tertiary-On-Fill-Disabled: var(--UI-Grey-40);
--Base-Button-Tertiary-On-Fill-Hover: var(--UI-Opacity-White-100);
--Base-Button-Tertiary-On-Fill-Normal: var(--UI-Opacity-White-100);
--Base-Button-Text-Border-Disabled: var(--UI-Opacity-White-0);
--Base-Button-Text-Border-Hover: var(--UI-Opacity-White-0);
--Base-Button-Text-Border-Normal: var(--UI-Opacity-White-0);
--Base-Button-Text-Fill-Disabled: var(--UI-Opacity-White-0);
--Base-Button-Text-Fill-Hover: var(--UI-Opacity-White-0);
--Base-Button-Text-Fill-Normal: var(--UI-Opacity-White-0);
--Base-Button-Text-On-Fill-Disabled: var(--UI-Grey-40);
--Base-Button-Text-On-Fill-Hover: var(--Scandic-Peach-80);
--Base-Button-Text-On-Fill-Normal: var(--Scandic-Red-100);
--Base-Icon-Low-contrast: var(--Scandic-Peach-70);
--Base-Interactive-Surface-Primary-normal: var(--Scandic-Red-80);
--Base-Interactive-Surface-Secondary-normal: var(--Scandic-Green-70);
--Base-Interactive-Surface-Tertiary-normal: var(--Scandic-Blue-60);
--Base-Surface-Primary-dark-Hover: var(--Scandic-Peach-20);
--Base-Surface-Primary-dark-Normal: var(--Scandic-Peach-10);
--Base-Surface-Primary-light-Hover: var(--UI-Grey-00);
--Base-Surface-Primary-light-Hover-alt: var(--Scandic-Beige-10);
--Base-Surface-Primary-light-Normal: var(--UI-Opacity-White-100);
--Base-Surface-Secondary-light-Hover: var(--Scandic-Peach-10);
--Base-Surface-Secondary-light-Hover-alt: var(--Scandic-Peach-20);
--Base-Surface-Secondary-light-Normal: var(--Scandic-Beige-00);
--Base-Surface-Subtle-Hover: var(--Scandic-Beige-20);
--Base-Surface-Subtle-Normal: var(--Scandic-Beige-10);
--Base-Text-Accent: var(--Scandic-Red-60);
--Base-Text-Disabled: var(--UI-Grey-40);
--Base-Text-High-contrast: var(--Scandic-Red-100);
--Base-Text-Inverted: var(--UI-Opacity-White-100);
--Base-Text-Medium-contrast: var(--Scandic-Peach-80);
--Primary-Dark-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0);
--Primary-Dark-Button-Primary-Border-Hover: var(--UI-Opacity-White-0);
--Primary-Dark-Button-Primary-Border-Normal: var(--UI-Opacity-White-0);
--Primary-Dark-Button-Primary-Fill-Disabled: var(--UI-Opacity-White-20);
--Primary-Dark-Button-Primary-Fill-Hover: var(--Scandic-Peach-20);
--Primary-Dark-Button-Primary-Fill-Normal: var(--Scandic-Peach-10);
--Primary-Dark-Button-Primary-On-Fill-Disabled: var(--UI-Opacity-White-30);
--Primary-Dark-Button-Primary-On-Fill-Hover: var(--Scandic-Red-80);
--Primary-Dark-Button-Primary-On-Fill-Normal: var(--Scandic-Red-100);
--Primary-Dark-Button-Secondary-Border-Disabled: var(--UI-Opacity-White-20);
--Primary-Dark-Button-Secondary-Border-Hover: var(--Scandic-Peach-30);
--Primary-Dark-Button-Secondary-Border-Normal: var(--Scandic-Peach-10);
--Primary-Dark-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0);
--Primary-Dark-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0);
--Primary-Dark-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0);
--Primary-Dark-Button-Secondary-On-Fill-Disabled: var(--UI-Opacity-White-30);
--Primary-Dark-Button-Secondary-On-Fill-Hover: var(--Scandic-Peach-30);
--Primary-Dark-Button-Secondary-On-Fill-Normal: var(--Scandic-Peach-10);
--Primary-Dark-On-Surface-Accent: var(--Scandic-Peach-50);
--Primary-Dark-On-Surface-Divider: var(--Scandic-Peach-80);
--Primary-Dark-On-Surface-Text: var(--Scandic-Peach-10);
--Primary-Dark-Surface-Hover: var(--Scandic-Red-90);
--Primary-Dark-Surface-Normal: var(--Scandic-Red-100);
--Primary-Dim-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0);
--Primary-Dim-Button-Primary-Border-Hover: var(--UI-Opacity-White-0);
--Primary-Dim-Button-Primary-Border-Normal: var(--UI-Opacity-White-0);
--Primary-Dim-Button-Primary-Fill-Disabled: var(--UI-Opacity-Almost-Black-10);
--Primary-Dim-Button-Primary-Fill-Hover: var(--Scandic-Red-80);
--Primary-Dim-Button-Primary-Fill-Normal: var(--Scandic-Red-100);
--Primary-Dim-Button-Primary-On-Fill-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Primary-Dim-Button-Primary-On-Fill-Hover: var(--Scandic-Peach-30);
--Primary-Dim-Button-Primary-On-Fill-Normal: var(--Scandic-Peach-10);
--Primary-Dim-Button-Secondary-Border-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Primary-Dim-Button-Secondary-Border-Hover: var(--Scandic-Red-80);
--Primary-Dim-Button-Secondary-Border-Normal: var(--Scandic-Red-100);
--Primary-Dim-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0);
--Primary-Dim-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0);
--Primary-Dim-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0);
--Primary-Dim-Button-Secondary-On-Fill-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Primary-Dim-Button-Secondary-On-Fill-Hover: var(--Scandic-Red-80);
--Primary-Dim-Button-Secondary-On-Fill-Normal: var(--Scandic-Red-100);
--Primary-Dim-On-Surface-Accent: var(--Scandic-Peach-80);
--Primary-Dim-On-Surface-Divider: var(--Scandic-Peach-40);
--Primary-Dim-On-Surface-Text: var(--Scandic-Red-100);
--Primary-Dim-Surface-Hover: var(--Scandic-Peach-40);
--Primary-Dim-Surface-Normal: var(--Scandic-Peach-30);
--Primary-Light-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0);
--Primary-Light-Button-Primary-Border-Hover: var(--UI-Opacity-White-0);
--Primary-Light-Button-Primary-Border-Normal: var(--UI-Opacity-White-0);
--Primary-Light-Button-Primary-Fill-Disabled: var(
--UI-Opacity-Almost-Black-10
);
--Primary-Light-Button-Primary-Fill-Hover: var(--Scandic-Red-80);
--Primary-Light-Button-Primary-Fill-Normal: var(--Scandic-Red-100);
--Primary-Light-Button-Primary-On-Fill-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Primary-Light-Button-Primary-On-Fill-Hover: var(--Scandic-Peach-30);
--Primary-Light-Button-Primary-On-Fill-Normal: var(--Scandic-Peach-10);
--Primary-Light-Button-Secondary-Border-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Primary-Light-Button-Secondary-Border-Hover: var(--Scandic-Red-80);
--Primary-Light-Button-Secondary-Border-Normal: var(--Scandic-Red-100);
--Primary-Light-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0);
--Primary-Light-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0);
--Primary-Light-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0);
--Primary-Light-Button-Secondary-On-Fill-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Primary-Light-Button-Secondary-On-Fill-Hover: var(--Scandic-Red-80);
--Primary-Light-Button-Secondary-On-Fill-Normal: var(--Scandic-Red-100);
--Primary-Light-On-Surface-Accent: var(--Scandic-Red-60);
--Primary-Light-On-Surface-Divider: var(--Scandic-Peach-30);
--Primary-Light-On-Surface-Divider-subtle: var(--Scandic-Beige-10);
--Primary-Light-On-Surface-Text: var(--Scandic-Red-100);
--Primary-Light-Surface-Hover: var(--Scandic-Peach-20);
--Primary-Light-Surface-Normal: var(--Scandic-Peach-10);
--Primary-Strong-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0);
--Primary-Strong-Button-Primary-Border-Hover: var(--UI-Opacity-White-0);
--Primary-Strong-Button-Primary-Border-Normal: var(--UI-Opacity-White-0);
--Primary-Strong-Button-Primary-Fill-Disabled: var(--UI-Opacity-White-20);
--Primary-Strong-Button-Primary-Fill-Hover: var(--Scandic-Red-00);
--Primary-Strong-Button-Primary-Fill-Normal: var(--UI-Opacity-White-100);
--Primary-Strong-Button-Primary-On-Fill-Disabled: var(--UI-Opacity-White-20);
--Primary-Strong-Button-Primary-On-Fill-Hover: var(--Scandic-Red-70);
--Primary-Strong-Button-Primary-On-Fill-Normal: var(--Scandic-Red-70);
--Primary-Strong-Button-Secondary-Border-Disabled: var(--UI-Opacity-White-20);
--Primary-Strong-Button-Secondary-Border-Hover: var(--Scandic-Peach-00);
--Primary-Strong-Button-Secondary-Border-Normal: var(--UI-Opacity-White-100);
--Primary-Strong-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0);
--Primary-Strong-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0);
--Primary-Strong-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0);
--Primary-Strong-Button-Secondary-On-Fill-Disabled: var(
--UI-Opacity-White-20
);
--Primary-Strong-Button-Secondary-On-Fill-Hover: var(--Scandic-Red-00);
--Primary-Strong-Button-Secondary-On-Fill-Normal: var(--UI-Opacity-White-100);
--Primary-Strong-On-Surface-Accent: var(--Scandic-Peach-10);
--Primary-Strong-On-Surface-Divider: var(--Scandic-Red-70);
--Primary-Strong-On-Surface-Text: var(--UI-Opacity-White-100);
--Primary-Strong-Surface-Hover: var(--Scandic-Red-70);
--Primary-Strong-Surface-Normal: var(--Scandic-Red-60);
--Secondary-Dark-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0);
--Secondary-Dark-Button-Primary-Border-Hover: var(--UI-Opacity-White-0);
--Secondary-Dark-Button-Primary-Border-Normal: var(--UI-Opacity-White-0);
--Secondary-Dark-Button-Primary-Fill-Disabled: var(--UI-Opacity-White-10);
--Secondary-Dark-Button-Primary-Fill-Hover: var(--Scandic-Green-30);
--Secondary-Dark-Button-Primary-Fill-Normal: var(--Scandic-Green-20);
--Secondary-Dark-Button-Primary-On-Fill-Disabled: var(--UI-Opacity-White-20);
--Secondary-Dark-Button-Primary-On-Fill-Hover: var(--Scandic-Green-80);
--Secondary-Dark-Button-Primary-On-Fill-Normal: var(--Scandic-Green-90);
--Secondary-Dark-Button-Secondary-Border-Disabled: var(--UI-Opacity-White-20);
--Secondary-Dark-Button-Secondary-Border-Hover: var(--Scandic-Green-30);
--Secondary-Dark-Button-Secondary-Border-Normal: var(--Scandic-Green-20);
--Secondary-Dark-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0);
--Secondary-Dark-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0);
--Secondary-Dark-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0);
--Secondary-Dark-Button-Secondary-On-Fill-Disabled: var(
--UI-Opacity-White-20
);
--Secondary-Dark-Button-Secondary-On-Fill-Hover: var(--Scandic-Green-30);
--Secondary-Dark-Button-Secondary-On-Fill-Normal: var(--Scandic-Green-20);
--Secondary-Dark-On-Surface-Accent: var(--Scandic-Green-40);
--Secondary-Dark-On-Surface-Divider: var(--Scandic-Green-80);
--Secondary-Dark-On-Surface-Text: var(--Scandic-Green-20);
--Secondary-Dark-Surface-Hover: var(--Scandic-Green-80);
--Secondary-Dark-Surface-Normal: var(--Scandic-Green-90);
--Secondary-Light-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0);
--Secondary-Light-Button-Primary-Border-Hover: var(--UI-Opacity-White-0);
--Secondary-Light-Button-Primary-Border-Normal: var(--UI-Opacity-White-0);
--Secondary-Light-Button-Primary-Fill-Disabled: var(
--UI-Opacity-Almost-Black-10
);
--Secondary-Light-Button-Primary-Fill-Hover: var(--Scandic-Green-80);
--Secondary-Light-Button-Primary-Fill-Normal: var(--Scandic-Green-90);
--Secondary-Light-Button-Primary-On-Fill-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Secondary-Light-Button-Primary-On-Fill-Hover: var(--Scandic-Green-30);
--Secondary-Light-Button-Primary-On-Fill-Normal: var(--Scandic-Green-20);
--Secondary-Light-Button-Secondary-Border-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Secondary-Light-Button-Secondary-Border-Hover: var(--Scandic-Green-80);
--Secondary-Light-Button-Secondary-Border-Normal: var(--Scandic-Green-90);
--Secondary-Light-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0);
--Secondary-Light-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0);
--Secondary-Light-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0);
--Secondary-Light-Button-Secondary-On-Fill-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Secondary-Light-Button-Secondary-On-Fill-Hover: var(--Scandic-Green-80);
--Secondary-Light-Button-Secondary-On-Fill-Normal: var(--Scandic-Green-90);
--Secondary-Light-On-Surface-Accent: var(--Scandic-Green-50);
--Secondary-Light-On-Surface-Divider: var(--Scandic-Green-30);
--Secondary-Light-On-Surface-Text: var(--Scandic-Green-90);
--Secondary-Light-Surface-Hover: var(--Scandic-Green-20);
--Secondary-Light-Surface-Normal: var(--Scandic-Green-20);
--Tertiary-Dark-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0);
--Tertiary-Dark-Button-Primary-Border-Hover: var(--UI-Opacity-White-0);
--Tertiary-Dark-Button-Primary-Border-Normal: var(--UI-Opacity-White-0);
--Tertiary-Dark-Button-Primary-Fill-Disabled: var(--UI-Opacity-White-10);
--Tertiary-Dark-Button-Primary-Fill-Hover: var(--Scandic-Yellow-20);
--Tertiary-Dark-Button-Primary-Fill-Normal: var(--Scandic-Yellow-10);
--Tertiary-Dark-Button-Primary-On-Fill-Disabled: var(--UI-Opacity-White-20);
--Tertiary-Dark-Button-Primary-On-Fill-Hover: var(--Scandic-Blue-80);
--Tertiary-Dark-Button-Primary-On-Fill-Normal: var(--Scandic-Blue-100);
--Tertiary-Dark-Button-Secondary-Border-Disabled: var(--UI-Opacity-White-20);
--Tertiary-Dark-Button-Secondary-Border-Hover: var(--Scandic-Yellow-20);
--Tertiary-Dark-Button-Secondary-Border-Normal: var(--Scandic-Yellow-10);
--Tertiary-Dark-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0);
--Tertiary-Dark-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0);
--Tertiary-Dark-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0);
--Tertiary-Dark-Button-Secondary-On-Fill-Disabled: var(--UI-Opacity-White-20);
--Tertiary-Dark-Button-Secondary-On-Fill-Hover: var(--Scandic-Yellow-20);
--Tertiary-Dark-Button-Secondary-On-Fill-Normal: var(--Scandic-Yellow-10);
--Tertiary-Dark-On-Surface-Accent: var(--Scandic-Blue-40);
--Tertiary-Dark-On-Surface-Divider: var(--Scandic-Blue-80);
--Tertiary-Dark-On-Surface-Text: var(--Scandic-Yellow-10);
--Tertiary-Dark-Surface-Hover: var(--Scandic-Blue-90);
--Tertiary-Dark-Surface-Normal: var(--Scandic-Blue-100);
--Tertiary-Light-Button-Primary-Border-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Tertiary-Light-Button-Primary-Border-Hover: var(--Scandic-Yellow-00);
--Tertiary-Light-Button-Primary-Border-Normal: var(--Scandic-Yellow-10);
--Tertiary-Light-Button-Primary-Fill-Disabled: var(
--UI-Opacity-Almost-Black-10
);
--Tertiary-Light-Button-Primary-Fill-Hover: var(--Scandic-Blue-90);
--Tertiary-Light-Button-Primary-Fill-Normal: var(--Scandic-Blue-100);
--Tertiary-Light-Button-Primary-On-Fill-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Tertiary-Light-Button-Primary-On-Fill-Hover: var(--Scandic-Yellow-00);
--Tertiary-Light-Button-Primary-On-Fill-Normal: var(--Scandic-Yellow-10);
--Tertiary-Light-Button-Secondary-Border-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Tertiary-Light-Button-Secondary-Border-Hover: var(--Scandic-Blue-90);
--Tertiary-Light-Button-Secondary-Border-Normal: var(--Scandic-Blue-100);
--Tertiary-Light-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0);
--Tertiary-Light-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0);
--Tertiary-Light-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0);
--Tertiary-Light-Button-Secondary-On-Fill-Disabled: var(
--UI-Opacity-Almost-Black-20
);
--Tertiary-Light-Button-Secondary-On-Fill-Hover: var(--Scandic-Blue-90);
--Tertiary-Light-Button-Secondary-On-Fill-Normal: var(--Scandic-Blue-100);
--Tertiary-Light-On-Surface-Accent: var(--Scandic-Yellow-50);
--Tertiary-Light-On-Surface-Divider: var(--Scandic-Yellow-20);
--Tertiary-Light-On-Surface-Text: var(--Scandic-Blue-100);
--Tertiary-Light-Surface-Hover: var(--Scandic-Yellow-00);
--Tertiary-Light-Surface-Normal: var(--Scandic-Yellow-10);
--UI-Input-Controls-Border-Disabled: var(--UI-Grey-40);
--UI-Input-Controls-Border-Error: var(--Scandic-Red-70);
--UI-Input-Controls-Border-Focus: var(--Scandic-Blue-80);
--UI-Input-Controls-Border-Hover: var(--Scandic-Beige-70);
--UI-Input-Controls-Border-KeyboardFocus: var(--Scandic-Blue-50);
--UI-Input-Controls-Border-Normal: var(--Scandic-Beige-50);
--UI-Input-Controls-Fill-Disabled: var(--UI-Grey-60);
--UI-Input-Controls-Fill-Normal: var(--UI-Opacity-White-100);
--UI-Input-Controls-Fill-Selected: var(--Scandic-Blue-80);
--UI-Input-Controls-Fill-Selected-hover: var(--Scandic-Blue-70);
--UI-Input-Controls-On-Fill-Normal: var(--UI-Opacity-White-100);
--UI-Input-Controls-Surface-Disabled: var(--UI-Grey-10);
--UI-Input-Controls-Surface-Hover: var(--Scandic-Beige-10);
--UI-Input-Controls-Surface-Normal: var(--UI-Opacity-White-100);
--UI-Semantic-Error: var(--Scandic-Red-70);
--UI-Semantic-Information: var(--Scandic-Blue-70);
--UI-Semantic-Success: var(--Scandic-Green-60);
--UI-Semantic-Warning: var(--Scandic-Yellow-60);
--UI-Text-Active: var(--Scandic-Blue-90);
--UI-Text-Error: var(--Scandic-Red-70);
--UI-Text-High-contrast: var(--UI-Grey-100);
--UI-Text-Medium-contrast: var(--UI-Grey-80);
--UI-Text-Placeholder: var(--UI-Grey-60);
}
:root {
--Corner-radius-Large: 12px;
--Corner-radius-Medium: 8px;
--Corner-radius-Rounded: 250px;
--Corner-radius-Small: 4px;
--Corner-radius-xLarge: 16px;
--Layout-Desktop-Breakpoints-max-width: 1920px;
--Layout-Desktop-Breakpoints-min-width: 1367px;
--Layout-Desktop-Columns-Column: 12px;
--Layout-Desktop-Gutter-max-width: 24px;
--Layout-Desktop-Gutter-min-width: 16px;
--Layout-Desktop-Margin-Margin-max: 72px;
--Layout-Desktop-Margin-Margin-min: 40px;
--Layout-Mobile-Breakpoints-max-width: 767px;
--Layout-Mobile-Breakpoints-min-width: 320px;
--Layout-Mobile-Columns-Column: 4px;
--Layout-Mobile-Gutter-max-width: 16px;
--Layout-Mobile-Gutter-min-width: 16px;
--Layout-Mobile-Margin-Margin-max: 16px;
--Layout-Mobile-Margin-Margin-min: 16px;
--Layout-Tablet-Breakpoints-max-width: 1366px;
--Layout-Tablet-Breakpoints-min-width: 768px;
--Layout-Tablet-Columns-Column: 8px;
--Layout-Tablet-Gutter-max-width: 16px;
--Layout-Tablet-Gutter-min-width: 16px;
--Layout-Tablet-Margin-Margin-max: 32px;
--Layout-Tablet-Margin-Margin-min: 24px;
--Spacing-x0: 0px;
--Spacing-x1: 8px;
--Spacing-x2: 16px;
--Spacing-x3: 24px;
--Spacing-x4: 32px;
--Spacing-x5: 40px;
--Spacing-x6: 48px;
--Spacing-x7: 56px;
--Spacing-x9: 72px;
--Spacing-x-half: 4px;
--Spacing-x-one-and-half: 12px;
--Spacing-x-quarter: 2px;
}
:root {
--Go-Beige-00: #faf8f2;
--Go-Beige-10: #f0ede4;
--Go-Beige-20: #e0dcce;
--Go-Beige-30: #c8c4b6;
--Go-Beige-40: #b0aca0;
--Go-Beige-50: #918f83;
--Go-Beige-60: #78766d;
--Go-Beige-70: #63615a;
--Go-Beige-80: #4f4d49;
--Go-Beige-90: #373633;
--Go-Beige-100: #1f1e1d;
--Go-Brand-Aqua: #73fcee;
--Go-Brand-Chartreuse: #85ff52;
--Go-Brand-Coral: #fa3737;
--Go-Brand-Lavender: #dcd7ff;
--Go-Brand-Lemon: #f5ff73;
--Go-Brand-Linen: #e0dcce;
--Go-Brand-Obsidian: #2d163a;
--Go-Brand-Pine: #21331f;
--Go-Brand-Powder-rose: #ecc8c9;
--Go-Green-00: #edffe5;
--Go-Green-10: #cdffb8;
--Go-Green-20: #a7ff82;
--Go-Green-30: #85ff52;
--Go-Green-40: #66e03a;
--Go-Green-50: #45b222;
--Go-Green-60: #2e7f18;
--Go-Green-70: #2a601e;
--Go-Green-80: #26461f;
--Go-Green-90: #21331f;
--Go-Green-100: #162115;
--Go-Purple-00: #f4f2ff;
--Go-Purple-10: #dcd7ff;
--Go-Purple-20: #cabffc;
--Go-Purple-30: #baa7f7;
--Go-Purple-40: #ab8ef0;
--Go-Purple-50: #9c75e6;
--Go-Purple-60: #8c5bd5;
--Go-Purple-70: #733cb2;
--Go-Purple-80: #5e2a8c;
--Go-Purple-90: #451f61;
--Go-Purple-100: #2d163a;
--Go-Yellow-00: #fdffe8;
--Go-Yellow-10: #faffc4;
--Go-Yellow-20: #f8ff9c;
--Go-Yellow-30: #f5ff73;
--Go-Yellow-40: #edea39;
--Go-Yellow-50: #dec614;
--Go-Yellow-60: #ba8d07;
--Go-Yellow-70: #966400;
--Go-Yellow-80: #754403;
--Go-Yellow-90: #572701;
--Go-Yellow-100: #3b1300;
--Scandic-Beige-00: #faf6f2;
--Scandic-Beige-10: #f2ece6;
--Scandic-Beige-20: #e3d9d1;
--Scandic-Beige-30: #d1c4ba;
--Scandic-Beige-40: #b8a79a;
--Scandic-Beige-50: #9c8a7e;
--Scandic-Beige-60: #806e63;
--Scandic-Beige-70: #6b584d;
--Scandic-Beige-80: #533f35;
--Scandic-Beige-90: #3e2b23;
--Scandic-Beige-100: #291710;
--Scandic-Blue-00: #e8f6ff;
--Scandic-Blue-10: #cfebff;
--Scandic-Blue-20: #b5e0ff;
--Scandic-Blue-30: #93c9f5;
--Scandic-Blue-40: #79aee7;
--Scandic-Blue-50: #5b8fd4;
--Scandic-Blue-60: #3f6dbd;
--Scandic-Blue-70: #284ea0;
--Scandic-Blue-80: #18347f;
--Scandic-Blue-90: #0d1f5f;
--Scandic-Blue-100: #0d1440;
--Scandic-Brand-Burgundy: #4d001b;
--Scandic-Brand-Dark-Blue: #0d1440;
--Scandic-Brand-Dark-Green: #093021;
--Scandic-Brand-Dark-Grey: #291710;
--Scandic-Brand-Light-Blue: #b5e0ff;
--Scandic-Brand-Light-Green: #d2edaf;
--Scandic-Brand-Pale-Peach: #f7e1d5;
--Scandic-Brand-Pale-Yellow: #fff0c2;
--Scandic-Brand-Scandic-Red: #cd0921;
--Scandic-Brand-Warm-White: #faf6f2;
--Scandic-Green-00: #f3fce8;
--Scandic-Green-10: #e1f3ca;
--Scandic-Green-20: #d2edaf;
--Scandic-Green-30: #acdb8a;
--Scandic-Green-40: #7cb865;
--Scandic-Green-50: #539e49;
--Scandic-Green-60: #348337;
--Scandic-Green-70: #256931;
--Scandic-Green-80: #164e29;
--Scandic-Green-90: #093021;
--Scandic-Green-100: #091f16;
--Scandic-Peach-00: #fff3ed;
--Scandic-Peach-10: #f7e1d5;
--Scandic-Peach-20: #f4d5c8;
--Scandic-Peach-30: #f0c1b6;
--Scandic-Peach-40: #e9aba3;
--Scandic-Peach-50: #de9490;
--Scandic-Peach-60: #cd797c;
--Scandic-Peach-70: #b05b65;
--Scandic-Peach-80: #8f4350;
--Scandic-Peach-90: #642636;
--Scandic-Peach-100: #4d0f25;
--Scandic-Red-00: #ffebeb;
--Scandic-Red-10: #f7c1c2;
--Scandic-Red-20: #f79499;
--Scandic-Red-30: #f26b74;
--Scandic-Red-40: #ed4251;
--Scandic-Red-50: #e32034;
--Scandic-Red-60: #cd0921;
--Scandic-Red-70: #ad0015;
--Scandic-Red-80: #8d0011;
--Scandic-Red-90: #6d000d;
--Scandic-Red-100: #4d001b;
--Scandic-Yellow-00: #fff8e3;
--Scandic-Yellow-10: #fff0c2;
--Scandic-Yellow-20: #fade89;
--Scandic-Yellow-30: #f7ce52;
--Scandic-Yellow-40: #edb532;
--Scandic-Yellow-50: #e59515;
--Scandic-Yellow-60: #d17308;
--Scandic-Yellow-70: #a85211;
--Scandic-Yellow-80: #7d370f;
--Scandic-Yellow-90: #4f2313;
--Scandic-Yellow-100: #301508;
--UI-Grey-00: #f9f6f4;
--UI-Grey-10: #ebe8e6;
--UI-Grey-20: #d6d2d0;
--UI-Grey-30: #c2bdba;
--UI-Grey-40: #a8a4a2;
--UI-Grey-50: #8c8987;
--UI-Grey-60: #787472;
--UI-Grey-70: #635f5d;
--UI-Grey-80: #57514e;
--UI-Grey-90: #403937;
--UI-Grey-100: #26201e;
--UI-Opacity-Almost-Black-0: #1f1c1b00;
--UI-Opacity-Almost-Black-10: #1f1c1b1a;
--UI-Opacity-Almost-Black-20: #1f1c1b33;
--UI-Opacity-Almost-Black-30: #1f1c1b4d;
--UI-Opacity-Almost-Black-40: #1f1c1b66;
--UI-Opacity-Almost-Black-50: #1f1c1b80;
--UI-Opacity-Almost-Black-60: #1f1c1b99;
--UI-Opacity-Almost-Black-70: #1f1c1bb3;
--UI-Opacity-Almost-Black-80: #1f1c1bcc;
--UI-Opacity-Almost-Black-90: #1f1c1be6;
--UI-Opacity-Almost-Black-100: #1f1c1b;
--UI-Opacity-White-0: #ffffff00;
--UI-Opacity-White-10: #ffffff1a;
--UI-Opacity-White-20: #ffffff33;
--UI-Opacity-White-30: #ffffff4d;
--UI-Opacity-White-40: #ffffff66;
--UI-Opacity-White-50: #ffffff80;
--UI-Opacity-White-60: #ffffff99;
--UI-Opacity-White-70: #ffffffb3;
--UI-Opacity-White-80: #ffffffcc;
--UI-Opacity-White-90: #ffffffe6;
--UI-Opacity-White-100: #ffffff;
}
:root {
--Go-Beige-00: #faf8f2;
--Go-Beige-10: #f0ede4;
--Go-Beige-20: #e0dcce;
--Go-Beige-30: #c8c4b6;
--Go-Beige-40: #b0aca0;
--Go-Beige-50: #918f83;
--Go-Beige-60: #78766d;
--Go-Beige-70: #63615a;
--Go-Beige-80: #4f4d49;
--Go-Beige-90: #373633;
--Go-Beige-100: #1f1e1d;
--Go-Brand-Aqua: #73fcee;
--Go-Brand-Chartreuse: #85ff52;
--Go-Brand-Coral: #fa3737;
--Go-Brand-Lavender: #dcd7ff;
--Go-Brand-Lemon: #f5ff73;
--Go-Brand-Linen: #e0dcce;
--Go-Brand-Obsidian: #2d163a;
--Go-Brand-Pine: #21331f;
--Go-Brand-Powderrose: #ecc8c9;
--Go-Green-00: #edffe5;
--Go-Green-10: #cdffb8;
--Go-Green-20: #a7ff82;
--Go-Green-30: #85ff52;
--Go-Green-40: #66e03a;
--Go-Green-50: #45b222;
--Go-Green-60: #2e7f18;
--Go-Green-70: #2a601e;
--Go-Green-80: #26461f;
--Go-Green-90: #21331f;
--Go-Green-100: #162115;
--Go-Purple-00: #f4f2ff;
--Go-Purple-10: #dcd7ff;
--Go-Purple-20: #cabffc;
--Go-Purple-30: #baa7f7;
--Go-Purple-40: #ab8ef0;
--Go-Purple-50: #9c75e6;
--Go-Purple-60: #8c5bd5;
--Go-Purple-70: #733cb2;
--Go-Purple-80: #5e2a8c;
--Go-Purple-90: #451f61;
--Go-Purple-100: #2d163a;
--Go-Yellow-00: #fdffe8;
--Go-Yellow-10: #faffc4;
--Go-Yellow-20: #f8ff9c;
--Go-Yellow-30: #f5ff73;
--Go-Yellow-40: #edea39;
--Go-Yellow-50: #dec614;
--Go-Yellow-60: #ba8d07;
--Go-Yellow-70: #966400;
--Go-Yellow-80: #754403;
--Go-Yellow-90: #572701;
--Go-Yellow-100: #3b1300;
--Main-Blue-00: #eaf2fc;
--Main-Blue-10: #c7d9f5;
--Main-Blue-20: #a5c2ee;
--Main-Blue-30: #84ace7;
--Main-Blue-40: #6697df;
--Main-Blue-50: #4983d8;
--Main-Blue-60: #2e70d1;
--Main-Blue-70: #1555b4;
--Main-Blue-80: #023d96;
--Main-Blue-90: #002a69;
--Main-Blue-100: #001b42;
--Main-Brand-Burgundy: #4d001b;
--Main-Brand-DarkBlue: #0d1440;
--Main-Brand-DarkGreen: #093021;
--Main-Brand-DarkGrey: #291710;
--Main-Brand-LightBlue: #b5e0ff;
--Main-Brand-LightGreen: #d2edaf;
--Main-Brand-PalePeach: #f7e1d5;
--Main-Brand-PaleYellow: #fff0c2;
--Main-Brand-ScandicRed: #cd0921;
--Main-Brand-WarmWhite: #faf6f2;
--Main-Green-00: #e7f5e1;
--Main-Green-10: #badda8;
--Main-Green-20: #99ca7e;
--Main-Green-30: #7ab859;
--Main-Green-40: #5fa53a;
--Main-Green-50: #47931f;
--Main-Green-60: #33800a;
--Main-Green-70: #286806;
--Main-Green-80: #1e4f03;
--Main-Green-90: #143701;
--Main-Green-100: #0e2600;
--Main-Grey-00: #f9f6f4;
--Main-Grey-10: #ebe8e6;
--Main-Grey-20: #d6d2d0;
--Main-Grey-30: #c2bdba;
--Main-Grey-40: #a8a4a2;
--Main-Grey-50: #8c8987;
--Main-Grey-60: #787472;
--Main-Grey-70: #635f5d;
--Main-Grey-80: #57514e;
--Main-Grey-90: #403937;
--Main-Grey-100: #26201e;
--Main-Grey-Almostblack: #1f1c1b;
--Main-Grey-White: #ffffff;
--Main-Red-00: #ffebeb;
--Main-Red-10: #f7c1c2;
--Main-Red-20: #f79499;
--Main-Red-30: #f26b74;
--Main-Red-40: #ed4251;
--Main-Red-50: #e32034;
--Main-Red-60: #cd0921;
--Main-Red-70: #ad0015;
--Main-Red-80: #8d0011;
--Main-Red-90: #6d000d;
--Main-Red-100: #4d001b;
--Main-Scandic-00: #ffebeb;
--Main-Scandic-10: #f7c1c2;
--Main-Scandic-20: #f79499;
--Main-Scandic-30: #f26b74;
--Main-Scandic-40: #ed4251;
--Main-Scandic-50: #e32034;
--Main-Scandic-60: #cd0921;
--Main-Scandic-70: #ad0015;
--Main-Scandic-80: #8d0011;
--Main-Scandic-90: #6d000d;
--Main-Scandic-100: #4d001b;
--Main-Yellow-00: #fff8e3;
--Main-Yellow-10: #fff0c2;
--Main-Yellow-20: #fade89;
--Main-Yellow-30: #f7ce52;
--Main-Yellow-40: #edb532;
--Main-Yellow-50: #e59515;
--Main-Yellow-60: #d17308;
--Main-Yellow-70: #a85211;
--Main-Yellow-80: #7d370f;
--Main-Yellow-90: #4f2313;
--Main-Yellow-100: #301508;
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,93 @@
Copyright (c) 2012-2013, The Mozilla Corporation and Telefonica S.A.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.

View File

@@ -0,0 +1,93 @@
Copyright (c) 2012-2015, The Mozilla Foundation and Telefonica S.A.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://openfontlicense.org
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.

View File

@@ -0,0 +1,16 @@
{
"extends": "@scandic-hotels/typescript-config/nextjs.json",
"compilerOptions": {
"plugins": [
{
"name": "next"
},
{ "name": "typescript-plugin-css-modules" }
],
"paths": {
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}

View File

@@ -0,0 +1,17 @@
{
"extends": ["//"],
"tasks": {
"dev": {
"dependsOn": ["@scandic-hotels/design-system#build"]
},
"build": {
"dependsOn": ["@scandic-hotels/design-system#build"]
},
"test": {
"dependsOn": ["@scandic-hotels/design-system#build"]
},
"lint": {
"dependsOn": ["@scandic-hotels/design-system#build"]
}
}
}

View File

@@ -7,6 +7,7 @@
"dev": "turbo run dev --output-logs new-only", "dev": "turbo run dev --output-logs new-only",
"dev:web": "turbo run dev --filter=@scandic-hotels/scandic-web --output-logs new-only", "dev:web": "turbo run dev --filter=@scandic-hotels/scandic-web --output-logs new-only",
"dev:ds": "turbo run dev --filter=@scandic-hotels/design-system --output-logs new-only", "dev:ds": "turbo run dev --filter=@scandic-hotels/design-system --output-logs new-only",
"dev:sas": "turbo run dev --filter=@scandic-hotels/partner-sas --output-logs new-only",
"test": "turbo run test", "test": "turbo run test",
"postinstall": "husky", "postinstall": "husky",
"icons:update": "node scripts/material-symbols-update.mjs", "icons:update": "node scripts/material-symbols-update.mjs",

156
yarn.lock
View File

@@ -3448,6 +3448,13 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@next/env@npm:15.3.4":
version: 15.3.4
resolution: "@next/env@npm:15.3.4"
checksum: 10c0/43d37896e1422c9c353d9ded1d1b01545aa30b2bb125bcc40ffd4474dbc6e0ba603a77fc2a598616964a925379bb5a39eb1a242f0c49fc933e39e099fb2f7d75
languageName: node
linkType: hard
"@next/eslint-plugin-next@npm:15.3.2": "@next/eslint-plugin-next@npm:15.3.2":
version: 15.3.2 version: 15.3.2
resolution: "@next/eslint-plugin-next@npm:15.3.2" resolution: "@next/eslint-plugin-next@npm:15.3.2"
@@ -3471,6 +3478,13 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@next/swc-darwin-arm64@npm:15.3.4":
version: 15.3.4
resolution: "@next/swc-darwin-arm64@npm:15.3.4"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@next/swc-darwin-x64@npm:15.2.1": "@next/swc-darwin-x64@npm:15.2.1":
version: 15.2.1 version: 15.2.1
resolution: "@next/swc-darwin-x64@npm:15.2.1" resolution: "@next/swc-darwin-x64@npm:15.2.1"
@@ -3485,6 +3499,13 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@next/swc-darwin-x64@npm:15.3.4":
version: 15.3.4
resolution: "@next/swc-darwin-x64@npm:15.3.4"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@next/swc-linux-arm64-gnu@npm:15.2.1": "@next/swc-linux-arm64-gnu@npm:15.2.1":
version: 15.2.1 version: 15.2.1
resolution: "@next/swc-linux-arm64-gnu@npm:15.2.1" resolution: "@next/swc-linux-arm64-gnu@npm:15.2.1"
@@ -3499,6 +3520,13 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@next/swc-linux-arm64-gnu@npm:15.3.4":
version: 15.3.4
resolution: "@next/swc-linux-arm64-gnu@npm:15.3.4"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@next/swc-linux-arm64-musl@npm:15.2.1": "@next/swc-linux-arm64-musl@npm:15.2.1":
version: 15.2.1 version: 15.2.1
resolution: "@next/swc-linux-arm64-musl@npm:15.2.1" resolution: "@next/swc-linux-arm64-musl@npm:15.2.1"
@@ -3513,6 +3541,13 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@next/swc-linux-arm64-musl@npm:15.3.4":
version: 15.3.4
resolution: "@next/swc-linux-arm64-musl@npm:15.3.4"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@next/swc-linux-x64-gnu@npm:15.2.1": "@next/swc-linux-x64-gnu@npm:15.2.1":
version: 15.2.1 version: 15.2.1
resolution: "@next/swc-linux-x64-gnu@npm:15.2.1" resolution: "@next/swc-linux-x64-gnu@npm:15.2.1"
@@ -3527,6 +3562,13 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@next/swc-linux-x64-gnu@npm:15.3.4":
version: 15.3.4
resolution: "@next/swc-linux-x64-gnu@npm:15.3.4"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@next/swc-linux-x64-musl@npm:15.2.1": "@next/swc-linux-x64-musl@npm:15.2.1":
version: 15.2.1 version: 15.2.1
resolution: "@next/swc-linux-x64-musl@npm:15.2.1" resolution: "@next/swc-linux-x64-musl@npm:15.2.1"
@@ -3541,6 +3583,13 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@next/swc-linux-x64-musl@npm:15.3.4":
version: 15.3.4
resolution: "@next/swc-linux-x64-musl@npm:15.3.4"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@next/swc-win32-arm64-msvc@npm:15.2.1": "@next/swc-win32-arm64-msvc@npm:15.2.1":
version: 15.2.1 version: 15.2.1
resolution: "@next/swc-win32-arm64-msvc@npm:15.2.1" resolution: "@next/swc-win32-arm64-msvc@npm:15.2.1"
@@ -3555,6 +3604,13 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@next/swc-win32-arm64-msvc@npm:15.3.4":
version: 15.3.4
resolution: "@next/swc-win32-arm64-msvc@npm:15.3.4"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@next/swc-win32-x64-msvc@npm:15.2.1": "@next/swc-win32-x64-msvc@npm:15.2.1":
version: 15.2.1 version: 15.2.1
resolution: "@next/swc-win32-x64-msvc@npm:15.2.1" resolution: "@next/swc-win32-x64-msvc@npm:15.2.1"
@@ -3569,6 +3625,13 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@next/swc-win32-x64-msvc@npm:15.3.4":
version: 15.3.4
resolution: "@next/swc-win32-x64-msvc@npm:15.3.4"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5": "@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5 version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5" resolution: "@nodelib/fs.scandir@npm:2.1.5"
@@ -7069,6 +7132,34 @@ __metadata:
languageName: unknown languageName: unknown
linkType: soft linkType: soft
"@scandic-hotels/partner-sas@workspace:apps/partner-sas":
version: 0.0.0-use.local
resolution: "@scandic-hotels/partner-sas@workspace:apps/partner-sas"
dependencies:
"@eslint/eslintrc": "npm:^3.3.1"
"@eslint/js": "npm:^9.26.0"
"@netlify/plugin-nextjs": "npm:^5.11.2"
"@scandic-hotels/common": "workspace:*"
"@scandic-hotels/design-system": "workspace:*"
"@scandic-hotels/typescript-config": "workspace:*"
"@types/node": "npm:^20"
"@types/react": "npm:19.1.0"
"@types/react-dom": "npm:19.1.0"
"@typescript-eslint/eslint-plugin": "npm:^8.32.0"
"@typescript-eslint/parser": "npm:^8.32.0"
eslint: "npm:^9"
eslint-config-next: "npm:15.3.2"
eslint-plugin-formatjs: "npm:^5.3.1"
eslint-plugin-import: "npm:^2.31.0"
eslint-plugin-simple-import-sort: "npm:^12.1.1"
next: "npm:15.3.4"
react: "npm:^19.0.0"
react-dom: "npm:^19.0.0"
typescript: "npm:5.8.3"
typescript-plugin-css-modules: "npm:^5.1.0"
languageName: unknown
linkType: soft
"@scandic-hotels/redis-api@workspace:apps/redis-api": "@scandic-hotels/redis-api@workspace:apps/redis-api":
version: 0.0.0-use.local version: 0.0.0-use.local
resolution: "@scandic-hotels/redis-api@workspace:apps/redis-api" resolution: "@scandic-hotels/redis-api@workspace:apps/redis-api"
@@ -18526,6 +18617,67 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"next@npm:15.3.4":
version: 15.3.4
resolution: "next@npm:15.3.4"
dependencies:
"@next/env": "npm:15.3.4"
"@next/swc-darwin-arm64": "npm:15.3.4"
"@next/swc-darwin-x64": "npm:15.3.4"
"@next/swc-linux-arm64-gnu": "npm:15.3.4"
"@next/swc-linux-arm64-musl": "npm:15.3.4"
"@next/swc-linux-x64-gnu": "npm:15.3.4"
"@next/swc-linux-x64-musl": "npm:15.3.4"
"@next/swc-win32-arm64-msvc": "npm:15.3.4"
"@next/swc-win32-x64-msvc": "npm:15.3.4"
"@swc/counter": "npm:0.1.3"
"@swc/helpers": "npm:0.5.15"
busboy: "npm:1.6.0"
caniuse-lite: "npm:^1.0.30001579"
postcss: "npm:8.4.31"
sharp: "npm:^0.34.1"
styled-jsx: "npm:5.1.6"
peerDependencies:
"@opentelemetry/api": ^1.1.0
"@playwright/test": ^1.41.2
babel-plugin-react-compiler: "*"
react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
sass: ^1.3.0
dependenciesMeta:
"@next/swc-darwin-arm64":
optional: true
"@next/swc-darwin-x64":
optional: true
"@next/swc-linux-arm64-gnu":
optional: true
"@next/swc-linux-arm64-musl":
optional: true
"@next/swc-linux-x64-gnu":
optional: true
"@next/swc-linux-x64-musl":
optional: true
"@next/swc-win32-arm64-msvc":
optional: true
"@next/swc-win32-x64-msvc":
optional: true
sharp:
optional: true
peerDependenciesMeta:
"@opentelemetry/api":
optional: true
"@playwright/test":
optional: true
babel-plugin-react-compiler:
optional: true
sass:
optional: true
bin:
next: dist/bin/next
checksum: 10c0/52d3fba6f53d5d2a339cbde433ab360301e9a0a0d9b95a656bf29ce1af43f02e9cc32571d5d4095bcb8ab7a795207d6e75c64b33fc1f90d21f2f9b157cc9a503
languageName: node
linkType: hard
"no-case@npm:^3.0.4": "no-case@npm:^3.0.4":
version: 3.0.4 version: 3.0.4
resolution: "no-case@npm:3.0.4" resolution: "no-case@npm:3.0.4"
@@ -20118,7 +20270,7 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"react-dom@npm:19.1.0, react-dom@npm:^19.1.0": "react-dom@npm:19.1.0, react-dom@npm:^19.0.0, react-dom@npm:^19.1.0":
version: 19.1.0 version: 19.1.0
resolution: "react-dom@npm:19.1.0" resolution: "react-dom@npm:19.1.0"
dependencies: dependencies:
@@ -20298,7 +20450,7 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"react@npm:19.1.0, react@npm:^19.1.0": "react@npm:19.1.0, react@npm:^19.0.0, react@npm:^19.1.0":
version: 19.1.0 version: 19.1.0
resolution: "react@npm:19.1.0" resolution: "react@npm:19.1.0"
checksum: 10c0/530fb9a62237d54137a13d2cfb67a7db6a2156faed43eecc423f4713d9b20c6f2728b026b45e28fcd72e8eadb9e9ed4b089e99f5e295d2f0ad3134251bdd3698 checksum: 10c0/530fb9a62237d54137a13d2cfb67a7db6a2156faed43eecc423f4713d9b20c6f2728b026b45e28fcd72e8eadb9e9ed4b089e99f5e295d2f0ad3134251bdd3698