tide-design-system 2.0.49 → 2.0.51
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/.eslintrc.cjs +29 -0
- package/.storybook/preview.ts +3 -3
- package/dist/css/realm/aero.css +6 -5
- package/dist/css/realm/atv.css +8 -7
- package/dist/css/realm/boatmart.css +2 -1
- package/dist/css/realm/cycle.css +25 -11
- package/dist/css/realm/equipment.css +12 -11
- package/dist/css/realm/pwc.css +2 -1
- package/dist/css/realm/rv.css +4 -4
- package/dist/css/realm/snow.css +12 -11
- package/dist/css/realm/truck.css +6 -5
- package/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +9 -1
- package/dist/tide-design-system.esm.js +174 -170
- package/dist/utilities/storybook.ts +4 -5
- package/dist/utilities/validation.ts +3 -4
- package/index.ts +18 -19
- package/package.json +5 -1
- package/src/assets/css/realm/aero.css +6 -5
- package/src/assets/css/realm/atv.css +8 -7
- package/src/assets/css/realm/boatmart.css +2 -1
- package/src/assets/css/realm/cycle.css +25 -11
- package/src/assets/css/realm/equipment.css +12 -11
- package/src/assets/css/realm/pwc.css +2 -1
- package/src/assets/css/realm/rv.css +4 -4
- package/src/assets/css/realm/snow.css +12 -11
- package/src/assets/css/realm/truck.css +6 -5
- package/src/components/TideAlert.vue +5 -5
- package/src/components/TideBackgroundImage.vue +2 -2
- package/src/components/TideBadgePremium.vue +2 -2
- package/src/components/TideBadgeTrustedPartner.vue +3 -3
- package/src/components/TideBreadCrumbs.vue +4 -5
- package/src/components/TideButton.vue +7 -6
- package/src/components/TideButtonIcon.vue +5 -5
- package/src/components/TideButtonPagination.vue +3 -3
- package/src/components/TideCard.vue +4 -4
- package/src/components/TideCarousel.vue +1 -1
- package/src/components/TideChipAction.vue +1 -1
- package/src/components/TideChipInput.vue +1 -1
- package/src/components/TideDivider.vue +3 -2
- package/src/components/TideIcon.vue +6 -6
- package/src/components/TideImage.vue +10 -4
- package/src/components/TideInputCheckbox.vue +1 -1
- package/src/components/TideInputSelect.vue +4 -4
- package/src/components/TideInputText.vue +6 -6
- package/src/components/TideInputTextarea.vue +3 -3
- package/src/components/TideLink.vue +4 -4
- package/src/components/TideModal.vue +1 -1
- package/src/components/TidePagination.vue +1 -1
- package/src/components/TideSeoLinks.vue +2 -2
- package/src/components/TideTabs.vue +2 -2
- package/src/components/TideToggle.vue +1 -1
- package/src/docs/integration.md +1 -1
- package/src/stories/DemoCssUtilities.stories.ts +3 -3
- package/src/stories/FoundationsBorder.stories.ts +2 -2
- package/src/stories/FoundationsGap.stories.ts +2 -2
- package/src/stories/FoundationsGrid.stories.ts +2 -2
- package/src/stories/FoundationsMargin.stories.ts +2 -2
- package/src/stories/FoundationsPadding.stories.ts +2 -2
- package/src/stories/FoundationsShadow.stories.ts +2 -2
- package/src/stories/FoundationsTransparency.stories.ts +2 -2
- package/src/stories/FoundationsTypography.stories.ts +2 -2
- package/src/stories/TideAlert.stories.ts +1 -1
- package/src/stories/TideBackgroundImage.stories.ts +3 -4
- package/src/stories/TideBadgeTrustedPartner.stories.ts +1 -1
- package/src/stories/TideBreadCrumbs.stories.ts +2 -2
- package/src/stories/TideButton.stories.ts +1 -1
- package/src/stories/TideButtonIcon.stories.ts +2 -2
- package/src/stories/TideButtonPagination.stories.ts +1 -1
- package/src/stories/TideCard.stories.ts +1 -1
- package/src/stories/TideCarousel.stories.ts +2 -2
- package/src/stories/TideColumns.stories.ts +2 -2
- package/src/stories/TideDivider.stories.ts +1 -1
- package/src/stories/TideIcon.stories.ts +1 -1
- package/src/stories/TideImage.stories.ts +23 -4
- package/src/stories/TideInputSelect.stories.ts +2 -2
- package/src/stories/TideInputText.stories.ts +1 -1
- package/src/stories/TideLink.stories.ts +3 -3
- package/src/stories/TideModal.stories.ts +2 -2
- package/src/stories/TidePagination.stories.ts +1 -1
- package/src/stories/TideSeoLinks.stories.ts +2 -3
- package/src/stories/TideTabs.stories.ts +2 -2
- package/src/types/Realm.ts +1 -1
- package/src/utilities/storybook.ts +4 -5
- package/src/utilities/validation.ts +3 -4
- package/vite.config.ts +4 -4
package/.eslintrc.cjs
CHANGED
|
@@ -8,6 +8,9 @@ module.exports = {
|
|
|
8
8
|
'@vue/eslint-config-typescript',
|
|
9
9
|
'@vue/eslint-config-prettier',
|
|
10
10
|
'plugin:storybook/recommended',
|
|
11
|
+
'plugin:import/errors',
|
|
12
|
+
'plugin:import/typescript',
|
|
13
|
+
'plugin:import/warnings',
|
|
11
14
|
],
|
|
12
15
|
ignorePatterns: ['storybook-static/'],
|
|
13
16
|
parserOptions: {
|
|
@@ -15,6 +18,19 @@ module.exports = {
|
|
|
15
18
|
},
|
|
16
19
|
root: true,
|
|
17
20
|
rules: {
|
|
21
|
+
'import/consistent-type-specifier-style': ['error', 'prefer-top-level'],
|
|
22
|
+
'import/order': [
|
|
23
|
+
'error',
|
|
24
|
+
{
|
|
25
|
+
'alphabetize': {
|
|
26
|
+
caseInsensitive: false,
|
|
27
|
+
order: 'asc',
|
|
28
|
+
orderImportKind: 'asc',
|
|
29
|
+
},
|
|
30
|
+
'groups': [['builtin', 'external'], 'internal', 'parent', 'sibling', 'index', 'type'],
|
|
31
|
+
'newlines-between': 'always',
|
|
32
|
+
},
|
|
33
|
+
],
|
|
18
34
|
'prettier/prettier': [
|
|
19
35
|
'warn',
|
|
20
36
|
{
|
|
@@ -28,6 +44,14 @@ module.exports = {
|
|
|
28
44
|
},
|
|
29
45
|
],
|
|
30
46
|
'quote-props': ['warn', 'consistent-as-needed'],
|
|
47
|
+
'sort-imports': [
|
|
48
|
+
'error',
|
|
49
|
+
{
|
|
50
|
+
allowSeparatedGroups: true,
|
|
51
|
+
ignoreDeclarationSort: true,
|
|
52
|
+
ignoreMemberSort: false,
|
|
53
|
+
},
|
|
54
|
+
],
|
|
31
55
|
'vue/attributes-order': [
|
|
32
56
|
'warn',
|
|
33
57
|
{
|
|
@@ -87,4 +111,9 @@ module.exports = {
|
|
|
87
111
|
],
|
|
88
112
|
'vue/sort-keys': ['warn', 'asc'],
|
|
89
113
|
},
|
|
114
|
+
settings: {
|
|
115
|
+
'import/resolver': {
|
|
116
|
+
typescript: {},
|
|
117
|
+
},
|
|
118
|
+
},
|
|
90
119
|
};
|
package/.storybook/preview.ts
CHANGED
|
@@ -12,7 +12,7 @@ import FoundationsGrid from '../src/stories/FoundationsGrid.stories';
|
|
|
12
12
|
import FoundationsMargin from '../src/stories/FoundationsMargin.stories';
|
|
13
13
|
import TideCarousel from '../src/stories/TideCarousel.stories';
|
|
14
14
|
|
|
15
|
-
const cssRoot = import.meta.env.PROD ? '/
|
|
15
|
+
const cssRoot = import.meta.env.PROD ? '/assets/css/realm' : '/src/assets/css/realm';
|
|
16
16
|
|
|
17
17
|
const replaceRealmStyles = (realm: string) => {
|
|
18
18
|
document.getElementById('realmStyles')?.remove();
|
|
@@ -47,7 +47,7 @@ const preview: Preview = {
|
|
|
47
47
|
};
|
|
48
48
|
},
|
|
49
49
|
(story, context) => {
|
|
50
|
-
const [
|
|
50
|
+
const [_args, updateArgs] = useArgs();
|
|
51
51
|
|
|
52
52
|
return story({ ...context, updateArgs });
|
|
53
53
|
},
|
|
@@ -77,7 +77,7 @@ const preview: Preview = {
|
|
|
77
77
|
},
|
|
78
78
|
{
|
|
79
79
|
title: 'Realm: Equipment',
|
|
80
|
-
value: '
|
|
80
|
+
value: 'equipment',
|
|
81
81
|
},
|
|
82
82
|
{
|
|
83
83
|
title: 'Realm: PWC',
|
package/dist/css/realm/aero.css
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
/* Aero Trader Realm Colors */
|
|
2
2
|
:root {
|
|
3
3
|
/* Realm-specific Tonal Palette: Only to be referenced in the assignment of Color Roles below. */
|
|
4
|
-
--tide-color1:
|
|
5
|
-
--tide-color2:
|
|
6
|
-
--tide-color3:
|
|
4
|
+
--tide-color1: #4e9ac8;
|
|
5
|
+
--tide-color2: #006C97;
|
|
6
|
+
--tide-color3: #83CBFB;
|
|
7
|
+
--tide-atmosphere: #E3E8F1;
|
|
7
8
|
|
|
8
|
-
--tide-
|
|
9
|
+
--tide-gradient: linear-gradient(
|
|
9
10
|
to bottom right,
|
|
10
11
|
var(--tide-color3) 50%,
|
|
11
12
|
var(--tide-color2) 150%
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
--tide-surface: var(--tide-white);
|
|
24
25
|
--tide-surface-variant: var(--tide-gray-200);
|
|
25
26
|
--tide-surface-brand: var(--tide-color1);
|
|
26
|
-
--tide-surface-accent: var(--tide-
|
|
27
|
+
--tide-surface-accent: var(--tide-atmosphere);
|
|
27
28
|
--tide-surface-accent-variant: var(--tide-color3);
|
|
28
29
|
--tide-surface-gradient: var(--tide-gradient);
|
|
29
30
|
--tide-surface-floating: var(--tide-floating);
|
package/dist/css/realm/atv.css
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/* ATV Trader Realm Colors */
|
|
2
2
|
:root {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
/* Realm-specific Tonal Palette: Only to be referenced in the assignment of Color Roles below. */
|
|
4
|
+
--tide-charcoal: #33383B;
|
|
5
|
+
--tide-maroon: #9B2702;
|
|
6
|
+
--tide-orange: #C7521A;
|
|
7
|
+
--tide-peach: #EFBA88;
|
|
8
|
+
--tide-sand: #F8EADD;
|
|
8
9
|
|
|
9
|
-
|
|
10
|
+
--tide-floating: rgba(0, 0, 0, 0);
|
|
10
11
|
|
|
11
12
|
/* Color Roles: Each realm will assign values to this same series of variables from a combination of the Global and Realm-specific Palettes. */
|
|
12
13
|
--tide-primary: var(--tide-orange);
|
|
@@ -18,7 +19,7 @@
|
|
|
18
19
|
--tide-surface: var(--tide-white);
|
|
19
20
|
--tide-surface-variant: var(--tide-gray-200);
|
|
20
21
|
--tide-surface-brand: var(--tide-charcoal);
|
|
21
|
-
--tide-surface-accent: var(--tide-
|
|
22
|
+
--tide-surface-accent: var(--tide-sand);
|
|
22
23
|
--tide-surface-accent-variant: var(--tide-maroon);
|
|
23
24
|
--tide-surface-floating: var(--tide-floating);
|
|
24
25
|
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
--tide-navy-dark: #143353;
|
|
6
6
|
--tide-mint: #46CFD1;
|
|
7
7
|
--tide-sand: #FFCF86;
|
|
8
|
+
--tide-mist: #DBEDFC;
|
|
8
9
|
|
|
9
10
|
--tide-floating: rgba(255, 255, 255, 0);
|
|
10
11
|
|
|
@@ -18,7 +19,7 @@
|
|
|
18
19
|
--tide-surface: var(--tide-gray-100);
|
|
19
20
|
--tide-surface-variant: var(--tide-gray-200);
|
|
20
21
|
--tide-surface-brand: var(--tide-navy);
|
|
21
|
-
--tide-surface-accent: var(--tide-
|
|
22
|
+
--tide-surface-accent: var(--tide-mist);
|
|
22
23
|
--tide-surface-accent-variant: var(--tide-mint);
|
|
23
24
|
--tide-surface-floating: var(--tide-floating);
|
|
24
25
|
|
package/dist/css/realm/cycle.css
CHANGED
|
@@ -1,15 +1,10 @@
|
|
|
1
1
|
/* Cycle Trader Realm Colors */
|
|
2
2
|
:root {
|
|
3
3
|
/* Realm-specific Tonal Palette: Only to be referenced in the assignment of Color Roles below. */
|
|
4
|
-
--tide-pure-black:
|
|
5
|
-
--tide-red:
|
|
6
|
-
--tide-steel-blue:
|
|
7
|
-
|
|
8
|
-
--tide-bg-gradient: linear-gradient(
|
|
9
|
-
to bottom right,
|
|
10
|
-
var(--tide-steel-blue) 50%,
|
|
11
|
-
var(--tide-red) 150%
|
|
12
|
-
);
|
|
4
|
+
--tide-pure-black: #000000;
|
|
5
|
+
--tide-red: #C50000;
|
|
6
|
+
--tide-steel-blue: #C9DDE5;
|
|
7
|
+
--tide-light-blue: #DFECF2;
|
|
13
8
|
|
|
14
9
|
--tide-floating: rgba(255, 255, 255, 0);
|
|
15
10
|
|
|
@@ -23,11 +18,30 @@
|
|
|
23
18
|
--tide-surface: var(--tide-white);
|
|
24
19
|
--tide-surface-variant: var(--tide-gray-200);
|
|
25
20
|
--tide-surface-brand: var(--tide-pure-black);
|
|
26
|
-
--tide-surface-accent: var(--tide-
|
|
21
|
+
--tide-surface-accent: var(--tide-light-blue);
|
|
27
22
|
--tide-surface-accent-variant: var(--tide-steel-blue);
|
|
28
|
-
--tide-surface-gradient: var(--tide-gradient);
|
|
29
23
|
--tide-surface-floating: var(--tide-floating);
|
|
30
24
|
|
|
25
|
+
--tide-surface-gradient:
|
|
26
|
+
/* top */
|
|
27
|
+
radial-gradient(
|
|
28
|
+
157.36% 151.94% at 19.69% -3.53%,
|
|
29
|
+
color-mix(in srgb, var(--tide-surface-accent-variant) 100%, transparent) 28.37%,
|
|
30
|
+
color-mix(in srgb, var(--tide-surface-accent-variant) 0%, transparent) 100%
|
|
31
|
+
),
|
|
32
|
+
/* bottom right */
|
|
33
|
+
radial-gradient(
|
|
34
|
+
57.27% 60.26% at 100% 103.53%,
|
|
35
|
+
color-mix(in srgb, var(--tide-surface-accent) 22%, transparent) 0%,
|
|
36
|
+
color-mix(in srgb, var(--tide-surface-accent) 0%, transparent) 100%
|
|
37
|
+
),
|
|
38
|
+
/* bottom left */
|
|
39
|
+
radial-gradient(
|
|
40
|
+
41.93% 63.48% at -2.12% 103.9%,
|
|
41
|
+
rgba(228, 228, 229, 0.72) 0%,
|
|
42
|
+
rgba(228, 228, 229, 0.00) 100%
|
|
43
|
+
);
|
|
44
|
+
|
|
31
45
|
--tide-on-surface: var(--tide-black);
|
|
32
46
|
--tide-on-surface-variant: var(--tide-gray-800);
|
|
33
47
|
--tide-on-surface-brand: var(--tide-pure-black);
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
/* Equipment Trader Realm Colors */
|
|
2
2
|
:root {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
)
|
|
3
|
+
/* Realm-specific Tonal Palette: Only to be referenced in the assignment of Color Roles below. */
|
|
4
|
+
--tide-evergreen: #468200;
|
|
5
|
+
--tide-steel: #494949;
|
|
6
|
+
--tide-yellow: #FFCE34;
|
|
7
|
+
--tide-moss: #EEF6D7;
|
|
8
|
+
|
|
9
|
+
--tide-gradient: linear-gradient(
|
|
10
|
+
to bottom right,
|
|
11
|
+
var(--tide-evergreen) 50%,
|
|
12
|
+
var(--tide-yellow) 150%
|
|
13
|
+
);
|
|
13
14
|
|
|
14
15
|
--tide-floating: rgba(255, 255, 255, 0);
|
|
15
16
|
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
--tide-surface: var(--tide-white);
|
|
24
25
|
--tide-surface-variant: var(--tide-gray-200);
|
|
25
26
|
--tide-surface-brand: var(--tide-steel);
|
|
26
|
-
--tide-surface-accent: var(--tide-
|
|
27
|
+
--tide-surface-accent: var(--tide-moss);
|
|
27
28
|
--tide-surface-accent-variant: var(--tide-evergreen);
|
|
28
29
|
--tide-surface-gradient: var(--tide-gradient);
|
|
29
30
|
--tide-surface-floating: var(--tide-floating);
|
package/dist/css/realm/pwc.css
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
--tide-color1: #0B72B8;
|
|
5
5
|
--tide-color2: #085487;
|
|
6
6
|
--tide-color3: #59A0EB;
|
|
7
|
+
--tide-foam: #E0EBF5;
|
|
7
8
|
|
|
8
9
|
--tide-gradient: linear-gradient(
|
|
9
10
|
to bottom right,
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
--tide-surface: var(--tide-gray-100);
|
|
24
25
|
--tide-surface-variant: var(--tide-gray-200);
|
|
25
26
|
--tide-surface-brand: var(--tide-color1);
|
|
26
|
-
--tide-surface-accent: var(--tide-
|
|
27
|
+
--tide-surface-accent: var(--tide-foam);
|
|
27
28
|
--tide-surface-accent-variant: var(--tide-color2);
|
|
28
29
|
--tide-surface-gradient: var(--tide-gradient);
|
|
29
30
|
--tide-surface-floating: var(--tide-floating);
|
package/dist/css/realm/rv.css
CHANGED
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
--tide-on-secondary: var(--tide-gray-100);
|
|
17
17
|
|
|
18
18
|
--tide-surface: var(--tide-gray-100);
|
|
19
|
+
--tide-surface-variant: var(--tide-gray-200);
|
|
19
20
|
--tide-surface-brand: var(--tide-green);
|
|
20
|
-
--tide-surface-accent: var(--tide-
|
|
21
|
+
--tide-surface-accent: var(--tide-pistachio);
|
|
21
22
|
--tide-surface-accent-variant: var(--tide-pistachio);
|
|
22
|
-
--tide-surface-variant: var(--tide-gray-200);
|
|
23
23
|
--tide-surface-floating: var(--tide-floating);
|
|
24
24
|
|
|
25
25
|
--tide-surface-gradient:
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
/* bottom right */
|
|
33
33
|
radial-gradient(
|
|
34
34
|
57.27% 60.26% at 100% 103.53%,
|
|
35
|
-
color-mix(in srgb, var(--tide-
|
|
36
|
-
color-mix(in srgb, var(--tide-
|
|
35
|
+
color-mix(in srgb, var(--tide-yellow) 22%, transparent) 0%,
|
|
36
|
+
color-mix(in srgb, var(--tide-yellow) 0%, transparent) 100%
|
|
37
37
|
),
|
|
38
38
|
/* bottom left */
|
|
39
39
|
radial-gradient(
|
package/dist/css/realm/snow.css
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
/* Snowmobile Trader Realm Colors */
|
|
2
2
|
:root {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
)
|
|
3
|
+
/* Realm-specific Tonal Palette: Only to be referenced in the assignment of Color Roles below. */
|
|
4
|
+
--tide-color1: #193778;
|
|
5
|
+
--tide-color2: #10234C;
|
|
6
|
+
--tide-color3: #4F60A7;
|
|
7
|
+
--tide-frost: #E3E8F2;
|
|
8
|
+
|
|
9
|
+
--tide-gradient: linear-gradient(
|
|
10
|
+
to bottom right,
|
|
11
|
+
var(--tide-color3) 50%,
|
|
12
|
+
var(--tide-color2) 150%
|
|
13
|
+
);
|
|
13
14
|
|
|
14
15
|
--tide-floating: rgba(255, 255, 255, 0);
|
|
15
16
|
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
--tide-surface: var(--tide-white);
|
|
24
25
|
--tide-surface-variant: var(--tide-gray-200);
|
|
25
26
|
--tide-surface-brand: var(--tide-color1);
|
|
26
|
-
--tide-surface-accent: var(--tide-
|
|
27
|
+
--tide-surface-accent: var(--tide-frost);
|
|
27
28
|
--tide-surface-accent-variant: var(--tide-color3);
|
|
28
29
|
--tide-surface-gradient: var(--tide-gradient);
|
|
29
30
|
--tide-surface-floating: var(--tide-floating);
|
package/dist/css/realm/truck.css
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
/* Commercial Truck Trader Realm Colors */
|
|
2
2
|
:root {
|
|
3
3
|
/* Realm-specific Tonal Palette: Only to be referenced in the assignment of Color Roles below. */
|
|
4
|
-
--tide-blue:
|
|
5
|
-
--tide-midnight-blue:
|
|
6
|
-
--tide-teal:
|
|
4
|
+
--tide-blue: #005F9E;
|
|
5
|
+
--tide-midnight-blue: #172C4B;
|
|
6
|
+
--tide-teal: #97D9E3;
|
|
7
|
+
--tide-cloud: #DEECF6;
|
|
7
8
|
|
|
8
|
-
--tide-
|
|
9
|
+
--tide-gradient: linear-gradient(
|
|
9
10
|
to bottom right,
|
|
10
11
|
var(--tide-midnight-blue) 50%,
|
|
11
12
|
var(--tide-teal) 150%
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
--tide-surface: var(--tide-white);
|
|
24
25
|
--tide-surface-variant: var(--tide-gray-200);
|
|
25
26
|
--tide-surface-brand: var(--tide-blue);
|
|
26
|
-
--tide-surface-accent: var(--tide-
|
|
27
|
+
--tide-surface-accent: var(--tide-cloud);
|
|
27
28
|
--tide-surface-accent-variant: var(--tide-midnight-blue);
|
|
28
29
|
--tide-surface-gradient: var(--tide-gradient);
|
|
29
30
|
--tide-surface-floating: var(--tide-floating);
|