@synergy-design-system/mcp 2.14.0 → 2.15.0
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/CHANGELOG.md +23 -0
- package/metadata/checksum.txt +1 -1
- package/metadata/packages/assets/CHANGELOG.md +10 -0
- package/metadata/packages/components/components/syn-dialog/component.styles.ts +43 -35
- package/metadata/packages/components/components/syn-dialog/component.ts +30 -22
- package/metadata/packages/components/components/syn-header/component.ts +1 -1
- package/metadata/packages/components/components/syn-pagination/component.angular.ts +201 -0
- package/metadata/packages/components/components/syn-pagination/component.react.ts +56 -0
- package/metadata/packages/components/components/syn-pagination/component.styles.ts +128 -0
- package/metadata/packages/components/components/syn-pagination/component.ts +452 -0
- package/metadata/packages/components/components/syn-pagination/component.vue +144 -0
- package/metadata/packages/components/static/CHANGELOG.md +26 -56
- package/metadata/packages/tokens/CHANGELOG.md +12 -0
- package/metadata/packages/tokens/dark.css +1 -1
- package/metadata/packages/tokens/index.js +1 -1
- package/metadata/packages/tokens/light.css +1 -1
- package/metadata/packages/tokens/sick2018_dark.css +1 -1
- package/metadata/packages/tokens/sick2018_light.css +1 -1
- package/metadata/packages/tokens/sick2025_dark.css +1 -1
- package/metadata/packages/tokens/sick2025_light.css +1 -1
- package/metadata/static/components/syn-pagination/docs.md +102 -0
- package/package.json +5 -5
- package/metadata/packages/components/components/syn-dialog/component.custom.styles.ts +0 -60
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
// ---------------------------------------------------------------------
|
|
3
|
+
// 🔒 AUTOGENERATED @synergy-design-system/vue wrappers for @synergy-design-system/components
|
|
4
|
+
// Please do not edit this file directly!
|
|
5
|
+
// It will get recreated when running pnpm build.
|
|
6
|
+
// ---------------------------------------------------------------------
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @summary <syn-pagination /> provides page navigation, direct page input, and page-size selection for large data sets.
|
|
10
|
+
*
|
|
11
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-pagination--docs
|
|
12
|
+
* @status stable
|
|
13
|
+
* @since 3.12.0
|
|
14
|
+
*
|
|
15
|
+
* @event syn-pagination-page-changed - Emitted when the current page changes
|
|
16
|
+
* @event syn-pagination-page-size-changed - Emitted when the page size changes
|
|
17
|
+
*
|
|
18
|
+
* @csspart base - The component's base wrapper.
|
|
19
|
+
* @csspart divider - The divider element displayed at the top of the pagination component.
|
|
20
|
+
* @csspart page-size-select-wrapper - The wrapper element containing the page size select and page item summary.
|
|
21
|
+
* @csspart page-size-select - The page size select element.
|
|
22
|
+
* @csspart page-item-summary - The text element displaying the current page item range and total items.
|
|
23
|
+
* @csspart page-input-section - The section containing the page number input and total pages display.
|
|
24
|
+
* @csspart page-input - The page number input element.
|
|
25
|
+
* @csspart navigation - The pagination navigation element.
|
|
26
|
+
* @csspart navigation-action - The individual navigation action buttons (first, previous, next, last).
|
|
27
|
+
*
|
|
28
|
+
* @accessibility
|
|
29
|
+
* The entire component is wrapped in a semantic `<nav>` landmark with an `aria-label` for screen reader accessibility.
|
|
30
|
+
* Use the `aria-label` attribute to provide a unique, descriptive label when multiple pagination controls exist on the page.
|
|
31
|
+
* Example: `<syn-pagination aria-label="Search results pagination"></syn-pagination>`
|
|
32
|
+
*/
|
|
33
|
+
import { computed, ref } from 'vue';
|
|
34
|
+
import '@synergy-design-system/components/components/pagination/pagination.js';
|
|
35
|
+
|
|
36
|
+
import type { SynPaginationPageChangedEvent } from '@synergy-design-system/components';
|
|
37
|
+
import type { SynPaginationPageSizeChangedEvent } from '@synergy-design-system/components';
|
|
38
|
+
import type { SynPagination } from '@synergy-design-system/components';
|
|
39
|
+
|
|
40
|
+
// DOM Reference to the element
|
|
41
|
+
const nativeElement = ref<SynPagination>();
|
|
42
|
+
|
|
43
|
+
defineExpose({
|
|
44
|
+
nativeElement,
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
// Map attributes
|
|
48
|
+
const props = defineProps<{
|
|
49
|
+
/**
|
|
50
|
+
* When true, a divider is displayed at the top of the pagination component.
|
|
51
|
+
*/
|
|
52
|
+
divider?: SynPagination['divider'];
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* When true, the pagination controls are disabled and non-interactive.
|
|
56
|
+
*/
|
|
57
|
+
disabled?: SynPagination['disabled'];
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* The size of the pagination controls.
|
|
61
|
+
*/
|
|
62
|
+
size?: SynPagination['size'];
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* The current page number.
|
|
66
|
+
* The default value is 1.
|
|
67
|
+
The component will emit a `syn-pagination-page-changed` event whenever the page changes, allowing you to respond to page changes in your application.
|
|
68
|
+
*/
|
|
69
|
+
currentPage?: SynPagination['currentPage'];
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* The number of items to display per page.
|
|
73
|
+
* The default value is 25.
|
|
74
|
+
The component will emit a `syn-pagination-page-size-changed` event whenever the page size changes, allowing you to respond to page size changes in your application.
|
|
75
|
+
*/
|
|
76
|
+
pageSize?: SynPagination['pageSize'];
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* An array of numbers representing the available options for the number of items to display per page.
|
|
80
|
+
* The default value is [10, 25, 50, 100].
|
|
81
|
+
The component will use this array to populate the rows-per-page selector, allowing users to choose from the specified options.
|
|
82
|
+
*/
|
|
83
|
+
pageSizeOptions?: SynPagination['pageSizeOptions'];
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Total amount of items.
|
|
87
|
+
* The component will use this value to calculate the total number of pages based on the selected rows per page.
|
|
88
|
+
*/
|
|
89
|
+
totalItems?: SynPagination['totalItems'];
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* The pagination variant to use.
|
|
93
|
+
* The "full" variant includes comprehensive controls for navigating between pages and adjusting the number of displayed rows,
|
|
94
|
+
while the "compact" variant offers a streamlined interface with essential navigation controls.
|
|
95
|
+
The default value is "full".
|
|
96
|
+
*/
|
|
97
|
+
variant?: SynPagination['variant'];
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* An accessible label for the navigation landmark.
|
|
101
|
+
* Customize for multiple paginations on a page.
|
|
102
|
+
*/
|
|
103
|
+
ariaLabel?: SynPagination['ariaLabel'];
|
|
104
|
+
}>();
|
|
105
|
+
|
|
106
|
+
// Make sure prop binding only forwards the props that are actually there.
|
|
107
|
+
// This is needed because :param="param" also adds an empty attribute
|
|
108
|
+
// when using web-components, which breaks optional arguments like size in SynInput
|
|
109
|
+
// @see https://github.com/vuejs/core/issues/5190#issuecomment-1003112498
|
|
110
|
+
const visibleProps = computed(() =>
|
|
111
|
+
Object.fromEntries(
|
|
112
|
+
Object.entries(props).filter(([, value]) => typeof value !== 'undefined'),
|
|
113
|
+
),
|
|
114
|
+
);
|
|
115
|
+
|
|
116
|
+
// Map events
|
|
117
|
+
defineEmits<{
|
|
118
|
+
/**
|
|
119
|
+
* Emitted when the current page changes
|
|
120
|
+
*/
|
|
121
|
+
'syn-pagination-page-changed': [e: SynPaginationPageChangedEvent];
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* Emitted when the page size changes
|
|
125
|
+
*/
|
|
126
|
+
'syn-pagination-page-size-changed': [e: SynPaginationPageSizeChangedEvent];
|
|
127
|
+
}>();
|
|
128
|
+
</script>
|
|
129
|
+
|
|
130
|
+
<script lang="ts">
|
|
131
|
+
export type { SynPaginationPageChangedEvent } from '@synergy-design-system/components';
|
|
132
|
+
export type { SynPaginationPageSizeChangedEvent } from '@synergy-design-system/components';
|
|
133
|
+
</script>
|
|
134
|
+
|
|
135
|
+
<template>
|
|
136
|
+
<syn-pagination
|
|
137
|
+
@syn-pagination-page-changed="$emit('syn-pagination-page-changed', $event)"
|
|
138
|
+
@syn-pagination-page-size-changed="
|
|
139
|
+
$emit('syn-pagination-page-size-changed', $event)
|
|
140
|
+
"
|
|
141
|
+
v-bind="visibleProps"
|
|
142
|
+
ref="nativeElement">
|
|
143
|
+
</syn-pagination>
|
|
144
|
+
</template>
|
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1240](https://github.com/synergy-design-system/synergy-design-system/pull/1240) [`06c29d4`](https://github.com/synergy-design-system/synergy-design-system/commit/06c29d4be7b9297d34919646cfd71394abdc6f88) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-04-22
|
|
8
|
+
|
|
9
|
+
feat: ✨ Add new component `<syn-pagination>` (#684)
|
|
10
|
+
|
|
11
|
+
Adds a new component `<syn-pagination>` that may be used to paginate large datasets.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [[`06c29d4`](https://github.com/synergy-design-system/synergy-design-system/commit/06c29d4be7b9297d34919646cfd71394abdc6f88)]:
|
|
16
|
+
- @synergy-design-system/tokens@3.12.0
|
|
17
|
+
|
|
18
|
+
## 3.11.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- [#1252](https://github.com/synergy-design-system/synergy-design-system/pull/1252) [`9d36167`](https://github.com/synergy-design-system/synergy-design-system/commit/9d36167d35ebbdd43820d520140d6823e1331ea1) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-04-20
|
|
23
|
+
|
|
24
|
+
fix: 🐛 syn-dialog has broken scrolling when slotting scrollable children (#1249)
|
|
25
|
+
|
|
26
|
+
- Updated dependencies []:
|
|
27
|
+
- @synergy-design-system/tokens@3.11.1
|
|
28
|
+
|
|
3
29
|
## 3.11.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|
|
@@ -89,62 +115,6 @@
|
|
|
89
115
|
This release adds the possiblity to use `<syn-divider>` as a separator between items in the `<syn-header>` metanavigation.
|
|
90
116
|
It will automatically set the correct `height` on vertically aligned `<syn-dividers>`.
|
|
91
117
|
|
|
92
|
-
You may use it via:
|
|
93
|
-
|
|
94
|
-
```html
|
|
95
|
-
<syn-header label="App Name">
|
|
96
|
-
<nav slot="meta-navigation">
|
|
97
|
-
<syn-icon-button
|
|
98
|
-
name="settings_outline"
|
|
99
|
-
label="Settings"
|
|
100
|
-
></syn-icon-button>
|
|
101
|
-
<syn-icon-button
|
|
102
|
-
name="insert_chart_outlined"
|
|
103
|
-
label="Analytics"
|
|
104
|
-
></syn-icon-button>
|
|
105
|
-
<syn-divider vertical></syn-divider>
|
|
106
|
-
<syn-icon-button name="dark_mode" label="Dark Mode"></syn-icon-button>
|
|
107
|
-
<syn-divider vertical></syn-divider>
|
|
108
|
-
<syn-icon-button name="language" label="Language"></syn-icon-button>
|
|
109
|
-
<syn-icon-button name="login" label="Login"></syn-icon-button>
|
|
110
|
-
</nav>
|
|
111
|
-
</syn-header>
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
or via directly slotting the `<syn-divider>` via
|
|
115
|
-
|
|
116
|
-
```html
|
|
117
|
-
<syn-header label="App Name">
|
|
118
|
-
<syn-icon-button
|
|
119
|
-
slot="meta-navigation"
|
|
120
|
-
name="settings_outline"
|
|
121
|
-
label="Settings"
|
|
122
|
-
></syn-icon-button>
|
|
123
|
-
<syn-icon-button
|
|
124
|
-
slot="meta-navigation"
|
|
125
|
-
name="insert_chart_outlined"
|
|
126
|
-
label="Analytics"
|
|
127
|
-
></syn-icon-button>
|
|
128
|
-
<syn-divider vertical slot="meta-navigation"></syn-divider>
|
|
129
|
-
<syn-icon-button
|
|
130
|
-
slot="meta-navigation"
|
|
131
|
-
name="dark_mode"
|
|
132
|
-
label="Dark Mode"
|
|
133
|
-
></syn-icon-button>
|
|
134
|
-
<syn-divider vertical slot="meta-navigation"></syn-divider>
|
|
135
|
-
<syn-icon-button
|
|
136
|
-
slot="meta-navigation"
|
|
137
|
-
name="language"
|
|
138
|
-
label="Language"
|
|
139
|
-
></syn-icon-button>
|
|
140
|
-
<syn-icon-button
|
|
141
|
-
slot="meta-navigation"
|
|
142
|
-
name="login"
|
|
143
|
-
label="Login"
|
|
144
|
-
></syn-icon-button>
|
|
145
|
-
</syn-header>
|
|
146
|
-
```
|
|
147
|
-
|
|
148
118
|
`<syn-header>` now also exposes a new `cssproperty` `--metanavigation-item-size` that can be used to define the size of rendered `<syn-icon-buttons>`, as well as the height of `<syn-divider>`
|
|
149
119
|
|
|
150
120
|
### Patch Changes
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1240](https://github.com/synergy-design-system/synergy-design-system/pull/1240) [`06c29d4`](https://github.com/synergy-design-system/synergy-design-system/commit/06c29d4be7b9297d34919646cfd71394abdc6f88) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-04-22
|
|
8
|
+
|
|
9
|
+
feat: ✨ Add new component `<syn-pagination>` (#684)
|
|
10
|
+
|
|
11
|
+
Adds a new component `<syn-pagination>` that may be used to paginate large datasets.
|
|
12
|
+
|
|
13
|
+
## 3.11.1
|
|
14
|
+
|
|
3
15
|
## 3.11.0
|
|
4
16
|
|
|
5
17
|
## 3.10.5
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
## Default
|
|
2
|
+
|
|
3
|
+
The default pagination offers the most comprehensive controls and is optimized for tables, lists, and complex data views. It is intended for use cases where users need to adjust both the number of displayed rows and the active page. The navigation controls allow switching between pages as well as jumping directly to the first or last page.
|
|
4
|
+
|
|
5
|
+
```html
|
|
6
|
+
<syn-pagination
|
|
7
|
+
current-page="1"
|
|
8
|
+
page-size="25"
|
|
9
|
+
page-size-options="10, 25, 50, 100"
|
|
10
|
+
total-items="500"
|
|
11
|
+
size="medium"
|
|
12
|
+
variant="full"
|
|
13
|
+
></syn-pagination>
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## With Divider
|
|
19
|
+
|
|
20
|
+
An optional divider can be shown to provide visual separation depending on the layout needs.
|
|
21
|
+
|
|
22
|
+
```html
|
|
23
|
+
<syn-pagination
|
|
24
|
+
divider=""
|
|
25
|
+
current-page="2"
|
|
26
|
+
page-size="25"
|
|
27
|
+
total-items="500"
|
|
28
|
+
size="medium"
|
|
29
|
+
variant="full"
|
|
30
|
+
></syn-pagination>
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Disabled
|
|
36
|
+
|
|
37
|
+
Use the disabled attribute to disable all interactive elements like syn-select, syn-input, and the previous and next syn-icon-buttons. This can be useful if you want to prevent the user from entering something again immediately after an entry before the first entry has been processed.
|
|
38
|
+
|
|
39
|
+
```html
|
|
40
|
+
<syn-pagination
|
|
41
|
+
disabled=""
|
|
42
|
+
current-page="1"
|
|
43
|
+
page-size="25"
|
|
44
|
+
total-items="500"
|
|
45
|
+
size="medium"
|
|
46
|
+
variant="full"
|
|
47
|
+
></syn-pagination>
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## Compact
|
|
53
|
+
|
|
54
|
+
The compact variant focuses on essential pagination controls and fits tight layouts or mobile environments. Use this variant when space is limited or page size stays fixed.
|
|
55
|
+
|
|
56
|
+
```html
|
|
57
|
+
<syn-pagination
|
|
58
|
+
variant="compact"
|
|
59
|
+
current-page="1"
|
|
60
|
+
page-size="25"
|
|
61
|
+
total-items="500"
|
|
62
|
+
size="medium"
|
|
63
|
+
></syn-pagination>
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## Sizes
|
|
69
|
+
|
|
70
|
+
Use the size attribute to change the pagination size.
|
|
71
|
+
|
|
72
|
+
```html
|
|
73
|
+
<div
|
|
74
|
+
style="
|
|
75
|
+
display: flex;
|
|
76
|
+
flex-direction: column;
|
|
77
|
+
gap: var(--syn-spacing-2x-large);
|
|
78
|
+
"
|
|
79
|
+
>
|
|
80
|
+
<syn-pagination
|
|
81
|
+
current-page="1"
|
|
82
|
+
page-size="25"
|
|
83
|
+
total-items="500"
|
|
84
|
+
size="small"
|
|
85
|
+
variant="full"
|
|
86
|
+
></syn-pagination>
|
|
87
|
+
<syn-pagination
|
|
88
|
+
current-page="1"
|
|
89
|
+
page-size="25"
|
|
90
|
+
total-items="500"
|
|
91
|
+
size="medium"
|
|
92
|
+
variant="full"
|
|
93
|
+
></syn-pagination>
|
|
94
|
+
<syn-pagination
|
|
95
|
+
current-page="1"
|
|
96
|
+
page-size="25"
|
|
97
|
+
total-items="500"
|
|
98
|
+
size="large"
|
|
99
|
+
variant="full"
|
|
100
|
+
></syn-pagination>
|
|
101
|
+
</div>
|
|
102
|
+
```
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
11
11
|
"globby": "^16.1.1",
|
|
12
12
|
"zod": "^4.3.6",
|
|
13
|
-
"@synergy-design-system/assets": "2.0
|
|
13
|
+
"@synergy-design-system/assets": "2.1.0"
|
|
14
14
|
},
|
|
15
15
|
"description": "MCP Server for the Synergy Design System",
|
|
16
16
|
"devDependencies": {
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"serve-handler": "^6.1.7",
|
|
29
29
|
"ts-jest": "^29.4.6",
|
|
30
30
|
"typescript": "^5.9.3",
|
|
31
|
+
"@synergy-design-system/components": "3.12.0",
|
|
31
32
|
"@synergy-design-system/eslint-config-syn": "^0.1.0",
|
|
32
|
-
"@synergy-design-system/fonts": "1.0.5",
|
|
33
33
|
"@synergy-design-system/docs": "0.1.0",
|
|
34
|
-
"@synergy-design-system/
|
|
34
|
+
"@synergy-design-system/fonts": "1.0.5",
|
|
35
35
|
"@synergy-design-system/styles": "2.0.3",
|
|
36
|
-
"@synergy-design-system/
|
|
36
|
+
"@synergy-design-system/tokens": "^3.12.0"
|
|
37
37
|
},
|
|
38
38
|
"exports": {
|
|
39
39
|
".": {
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"directory": "packages/mcp"
|
|
68
68
|
},
|
|
69
69
|
"type": "module",
|
|
70
|
-
"version": "2.
|
|
70
|
+
"version": "2.15.0",
|
|
71
71
|
"scripts": {
|
|
72
72
|
"build": "pnpm run build:ts && pnpm run build:metadata && pnpm build:hash",
|
|
73
73
|
"build:all": "pnpm run build && pnpm run build:storybook",
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { css } from 'lit';
|
|
2
|
-
|
|
3
|
-
export default css`
|
|
4
|
-
:host {
|
|
5
|
-
/**
|
|
6
|
-
* Used as the default padding for the dialog title
|
|
7
|
-
*/
|
|
8
|
-
--header-spacing: var(--syn-spacing-large) var(--syn-spacing-x-small) var(--syn-spacing-large) var(--syn-spacing-large);
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Defines the default body spacing
|
|
12
|
-
*/
|
|
13
|
-
--body-spacing: var(--syn-spacing-medium) var(--syn-spacing-large);
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* Defines the default footer spacing
|
|
17
|
-
*/
|
|
18
|
-
--footer-spacing: var(--syn-spacing-medium) var(--syn-spacing-large) var(--syn-spacing-large) var(--syn-spacing-medium);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.dialog__panel {
|
|
22
|
-
border: var(--syn-spacing-4x-small) solid var(--syn-panel-border-color);
|
|
23
|
-
border-radius: var(--syn-border-radius-none);
|
|
24
|
-
box-shadow: var(--syn-shadow-large);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.dialog__header-actions {
|
|
28
|
-
align-items: flex-start;
|
|
29
|
-
gap: var(--syn-spacing-x-small);
|
|
30
|
-
padding: var(--syn-spacing-large) var(--syn-spacing-small) var(--syn-spacing-large) 0;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
/* Overlay Background */
|
|
34
|
-
.dialog__overlay {
|
|
35
|
-
/* #946: Add background blur for sick 2025 */
|
|
36
|
-
backdrop-filter: blur(var(--syn-overlay-background-blur));
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
/**
|
|
40
|
-
* We need this to make sure we are big enough as defined in the layout
|
|
41
|
-
* When omitting this statement, we will get rounding problems via line-height
|
|
42
|
-
*/
|
|
43
|
-
.dialog__title,
|
|
44
|
-
.dialog__header-actions {
|
|
45
|
-
min-height: 88px;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.dialog__header-actions syn-icon-button,
|
|
49
|
-
.dialog__header-actions ::slotted(syn-icon-button) {
|
|
50
|
-
color: var(--syn-color-neutral-950);
|
|
51
|
-
font-size: var(--syn-font-size-x-large);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.dialog__title {
|
|
55
|
-
font-family: var(--syn-font-sans);
|
|
56
|
-
font-size: var(--syn-font-size-x-large);
|
|
57
|
-
font-weight: var(--syn-font-weight-bold);
|
|
58
|
-
line-height: var(--syn-line-height-normal);
|
|
59
|
-
}
|
|
60
|
-
`;
|