@synergy-design-system/mcp 2.14.1 → 3.0.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 +28 -0
- package/README.md +826 -303
- package/dist/bin/start.js +57 -6
- package/dist/middleware/compose.d.ts +15 -0
- package/dist/middleware/compose.js +10 -0
- package/dist/middleware/compression.d.ts +19 -0
- package/dist/middleware/compression.js +35 -0
- package/dist/middleware/error-handler.d.ts +13 -0
- package/dist/middleware/error-handler.js +42 -0
- package/dist/middleware/index.d.ts +9 -0
- package/dist/middleware/index.js +8 -0
- package/dist/middleware/logging.d.ts +14 -0
- package/dist/middleware/logging.js +64 -0
- package/dist/middleware/types.d.ts +20 -0
- package/dist/middleware/types.js +4 -0
- package/dist/resources/asset-list.d.ts +7 -0
- package/dist/resources/asset-list.js +34 -0
- package/dist/resources/component-cluster-list.d.ts +7 -0
- package/dist/resources/component-cluster-list.js +30 -0
- package/dist/resources/component-list.d.ts +7 -0
- package/dist/resources/component-list.js +31 -0
- package/dist/resources/index.d.ts +5 -0
- package/dist/resources/index.js +5 -0
- package/dist/resources/styles-list.d.ts +7 -0
- package/dist/resources/styles-list.js +31 -0
- package/dist/resources/templates-list.d.ts +7 -0
- package/dist/resources/templates-list.js +28 -0
- package/dist/server.js +5 -1
- package/dist/tools/asset-info.js +41 -85
- package/dist/tools/asset-list.js +22 -31
- package/dist/tools/component-cluster-list.d.ts +6 -0
- package/dist/tools/component-cluster-list.js +30 -0
- package/dist/tools/component-info.js +38 -21
- package/dist/tools/component-list.js +35 -30
- package/dist/tools/davinci-migration-info.d.ts +2 -0
- package/dist/tools/davinci-migration-info.js +21 -0
- package/dist/tools/davinci-migration-list.d.ts +2 -0
- package/dist/tools/davinci-migration-list.js +20 -0
- package/dist/tools/index.d.ts +6 -5
- package/dist/tools/index.js +6 -5
- package/dist/tools/migration-info.js +12 -37
- package/dist/tools/migration-list.js +7 -13
- package/dist/tools/setup.d.ts +6 -0
- package/dist/tools/setup.js +31 -0
- package/dist/tools/styles-info.d.ts +1 -2
- package/dist/tools/styles-info.js +24 -20
- package/dist/tools/styles-list.js +19 -33
- package/dist/tools/template-info.js +19 -20
- package/dist/tools/template-list.d.ts +1 -1
- package/dist/tools/template-list.js +17 -32
- package/dist/tools/{tokens.d.ts → token-info.d.ts} +2 -2
- package/dist/tools/token-info.js +31 -0
- package/dist/tools/tokens-list.d.ts +6 -0
- package/dist/tools/tokens-list.js +52 -0
- package/dist/transports/http.d.ts +14 -0
- package/dist/transports/http.js +157 -0
- package/dist/transports/index.d.ts +23 -0
- package/dist/transports/index.js +23 -0
- package/dist/transports/stdio.d.ts +10 -0
- package/dist/transports/stdio.js +21 -0
- package/dist/types/tool-response.d.ts +13 -0
- package/dist/types/tool-response.js +7 -0
- package/dist/utilities/cli.d.ts +27 -0
- package/dist/utilities/cli.js +170 -0
- package/dist/utilities/compression.d.ts +7 -0
- package/dist/utilities/compression.js +45 -0
- package/dist/utilities/config.d.ts +122 -80
- package/dist/utilities/config.js +212 -81
- package/dist/utilities/davinci.d.ts +12 -0
- package/dist/utilities/davinci.js +55 -0
- package/dist/utilities/index.d.ts +10 -10
- package/dist/utilities/index.js +10 -10
- package/dist/utilities/local-file-logger.d.ts +2 -0
- package/dist/utilities/local-file-logger.js +22 -0
- package/dist/utilities/logger.d.ts +12 -0
- package/dist/utilities/logger.js +30 -0
- package/dist/utilities/logging-context.d.ts +8 -0
- package/dist/utilities/logging-context.js +7 -0
- package/dist/utilities/logging-service.d.ts +2 -0
- package/dist/utilities/logging-service.js +24 -0
- package/dist/utilities/logging-types.d.ts +19 -0
- package/dist/utilities/metadata.d.ts +10 -17
- package/dist/utilities/metadata.js +34 -51
- package/dist/utilities/migration.d.ts +2 -1
- package/dist/utilities/migration.js +33 -30
- package/dist/utilities/rules.d.ts +8 -0
- package/dist/utilities/rules.js +37 -0
- package/dist/utilities/server.d.ts +7 -0
- package/dist/utilities/server.js +12 -0
- package/dist/utilities/token-counter.d.ts +14 -0
- package/dist/utilities/token-counter.js +53 -0
- package/package.json +18 -28
- package/rules/asset-info.md +10 -0
- package/rules/asset-list.md +10 -0
- package/rules/component-cluster-list.md +5 -0
- package/{metadata/static/angular/index.md → rules/component-info-angular.md} +2 -1
- package/{metadata/static/react/index.md → rules/component-info-react.md} +2 -1
- package/{metadata/static/vue/index.md → rules/component-info-vue.md} +4 -1
- package/{metadata/static/component-list/index.md → rules/component-list.md} +5 -7
- package/rules/styles-info.md +9 -0
- package/{metadata/static/styles/index.md → rules/styles-list.md} +0 -2
- package/{metadata/static/templates/index.md → rules/template-info.md} +0 -1
- package/rules/template-list.md +7 -0
- package/dist/bin/create-checksum.d.ts +0 -2
- package/dist/bin/create-checksum.js +0 -24
- package/dist/build/assets.d.ts +0 -4
- package/dist/build/assets.js +0 -57
- package/dist/build/build.js +0 -35
- package/dist/build/components.d.ts +0 -4
- package/dist/build/components.js +0 -133
- package/dist/build/fonts.d.ts +0 -4
- package/dist/build/fonts.js +0 -49
- package/dist/build/frameworks.d.ts +0 -4
- package/dist/build/frameworks.js +0 -61
- package/dist/build/static.d.ts +0 -4
- package/dist/build/static.js +0 -65
- package/dist/build/styles.d.ts +0 -4
- package/dist/build/styles.js +0 -58
- package/dist/build/tokens.d.ts +0 -4
- package/dist/build/tokens.js +0 -59
- package/dist/tools/davinci-migration.d.ts +0 -3
- package/dist/tools/davinci-migration.js +0 -66
- package/dist/tools/font-info.d.ts +0 -6
- package/dist/tools/font-info.js +0 -35
- package/dist/tools/framework-info.d.ts +0 -7
- package/dist/tools/framework-info.js +0 -58
- package/dist/tools/tokens.js +0 -24
- package/dist/tools/version.d.ts +0 -7
- package/dist/tools/version.js +0 -53
- package/dist/utilities/assets.d.ts +0 -2
- package/dist/utilities/assets.js +0 -3
- package/dist/utilities/checksum.d.ts +0 -36
- package/dist/utilities/checksum.js +0 -94
- package/dist/utilities/components.d.ts +0 -25
- package/dist/utilities/components.js +0 -86
- package/dist/utilities/file.d.ts +0 -12
- package/dist/utilities/file.js +0 -31
- package/dist/utilities/fonts.d.ts +0 -2
- package/dist/utilities/fonts.js +0 -3
- package/dist/utilities/stdio.d.ts +0 -14
- package/dist/utilities/stdio.js +0 -60
- package/dist/utilities/storybook/build-docs.d.ts +0 -2
- package/dist/utilities/storybook/build-docs.js +0 -43
- package/dist/utilities/storybook/configs.d.ts +0 -13
- package/dist/utilities/storybook/configs.js +0 -85
- package/dist/utilities/storybook/docs-scraper.d.ts +0 -26
- package/dist/utilities/storybook/docs-scraper.js +0 -96
- package/dist/utilities/storybook/index.d.ts +0 -5
- package/dist/utilities/storybook/index.js +0 -4
- package/dist/utilities/storybook/scraper.d.ts +0 -14
- package/dist/utilities/storybook/scraper.js +0 -243
- package/dist/utilities/storybook/storybook-manager.d.ts +0 -29
- package/dist/utilities/storybook/storybook-manager.js +0 -138
- package/dist/utilities/storybook/types.d.ts +0 -22
- package/dist/utilities/storybook/types.js +0 -1
- package/dist/utilities/styles.d.ts +0 -6
- package/dist/utilities/styles.js +0 -24
- package/dist/utilities/templates.d.ts +0 -12
- package/dist/utilities/templates.js +0 -28
- package/dist/utilities/tokens.d.ts +0 -1
- package/dist/utilities/tokens.js +0 -21
- package/dist/utilities/version.d.ts +0 -28
- package/dist/utilities/version.js +0 -21
- package/metadata/checksum.txt +0 -1
- package/metadata/davinci-migration/migration-guide.md +0 -1859
- package/metadata/packages/angular/LIMITATIONS.md +0 -32
- package/metadata/packages/angular/README.md +0 -393
- package/metadata/packages/assets/BREAKING_CHANGES.md +0 -305
- package/metadata/packages/assets/CHANGELOG.md +0 -364
- package/metadata/packages/assets/README.md +0 -103
- package/metadata/packages/components/components/syn-accordion/component.angular.ts +0 -80
- package/metadata/packages/components/components/syn-accordion/component.react.ts +0 -30
- package/metadata/packages/components/components/syn-accordion/component.styles.ts +0 -15
- package/metadata/packages/components/components/syn-accordion/component.ts +0 -111
- package/metadata/packages/components/components/syn-accordion/component.vue +0 -64
- package/metadata/packages/components/components/syn-alert/component.angular.ts +0 -169
- package/metadata/packages/components/components/syn-alert/component.react.ts +0 -60
- package/metadata/packages/components/components/syn-alert/component.styles.ts +0 -203
- package/metadata/packages/components/components/syn-alert/component.ts +0 -322
- package/metadata/packages/components/components/syn-alert/component.vue +0 -135
- package/metadata/packages/components/components/syn-badge/component.angular.ts +0 -53
- package/metadata/packages/components/components/syn-badge/component.custom.styles.ts +0 -62
- package/metadata/packages/components/components/syn-badge/component.react.ts +0 -29
- package/metadata/packages/components/components/syn-badge/component.styles.ts +0 -52
- package/metadata/packages/components/components/syn-badge/component.ts +0 -58
- package/metadata/packages/components/components/syn-badge/component.vue +0 -53
- package/metadata/packages/components/components/syn-breadcrumb/component.angular.ts +0 -58
- package/metadata/packages/components/components/syn-breadcrumb/component.custom.styles.ts +0 -5
- package/metadata/packages/components/components/syn-breadcrumb/component.react.ts +0 -32
- package/metadata/packages/components/components/syn-breadcrumb/component.styles.ts +0 -11
- package/metadata/packages/components/components/syn-breadcrumb/component.ts +0 -103
- package/metadata/packages/components/components/syn-breadcrumb/component.vue +0 -58
- package/metadata/packages/components/components/syn-breadcrumb-item/component.angular.ts +0 -88
- package/metadata/packages/components/components/syn-breadcrumb-item/component.custom.styles.ts +0 -78
- package/metadata/packages/components/components/syn-breadcrumb-item/component.react.ts +0 -37
- package/metadata/packages/components/components/syn-breadcrumb-item/component.styles.ts +0 -88
- package/metadata/packages/components/components/syn-breadcrumb-item/component.ts +0 -132
- package/metadata/packages/components/components/syn-breadcrumb-item/component.vue +0 -76
- package/metadata/packages/components/components/syn-button/component.angular.ts +0 -318
- package/metadata/packages/components/components/syn-button/component.custom.styles.ts +0 -245
- package/metadata/packages/components/components/syn-button/component.react.ts +0 -56
- package/metadata/packages/components/components/syn-button/component.styles.ts +0 -361
- package/metadata/packages/components/components/syn-button/component.ts +0 -315
- package/metadata/packages/components/components/syn-button/component.vue +0 -204
- package/metadata/packages/components/components/syn-button-group/component.angular.ts +0 -79
- package/metadata/packages/components/components/syn-button-group/component.custom.styles.ts +0 -5
- package/metadata/packages/components/components/syn-button-group/component.react.ts +0 -29
- package/metadata/packages/components/components/syn-button-group/component.styles.ts +0 -14
- package/metadata/packages/components/components/syn-button-group/component.ts +0 -171
- package/metadata/packages/components/components/syn-button-group/component.vue +0 -67
- package/metadata/packages/components/components/syn-card/component.angular.ts +0 -83
- package/metadata/packages/components/components/syn-card/component.custom.styles.ts +0 -60
- package/metadata/packages/components/components/syn-card/component.react.ts +0 -41
- package/metadata/packages/components/components/syn-card/component.styles.ts +0 -70
- package/metadata/packages/components/components/syn-card/component.ts +0 -65
- package/metadata/packages/components/components/syn-card/component.vue +0 -73
- package/metadata/packages/components/components/syn-checkbox/component.angular.ts +0 -273
- package/metadata/packages/components/components/syn-checkbox/component.react.ts +0 -64
- package/metadata/packages/components/components/syn-checkbox/component.styles.ts +0 -183
- package/metadata/packages/components/components/syn-checkbox/component.ts +0 -287
- package/metadata/packages/components/components/syn-checkbox/component.vue +0 -191
- package/metadata/packages/components/components/syn-combobox/component.angular.ts +0 -516
- package/metadata/packages/components/components/syn-combobox/component.react.ts +0 -118
- package/metadata/packages/components/components/syn-combobox/component.styles.ts +0 -393
- package/metadata/packages/components/components/syn-combobox/component.ts +0 -1684
- package/metadata/packages/components/components/syn-combobox/component.vue +0 -350
- package/metadata/packages/components/components/syn-details/component.angular.ts +0 -186
- package/metadata/packages/components/components/syn-details/component.react.ts +0 -65
- package/metadata/packages/components/components/syn-details/component.styles.ts +0 -181
- package/metadata/packages/components/components/syn-details/component.ts +0 -261
- package/metadata/packages/components/components/syn-details/component.vue +0 -136
- package/metadata/packages/components/components/syn-dialog/component.angular.ts +0 -201
- package/metadata/packages/components/components/syn-dialog/component.react.ts +0 -91
- package/metadata/packages/components/components/syn-dialog/component.styles.ts +0 -130
- package/metadata/packages/components/components/syn-dialog/component.ts +0 -367
- package/metadata/packages/components/components/syn-dialog/component.vue +0 -169
- package/metadata/packages/components/components/syn-divider/component.angular.ts +0 -55
- package/metadata/packages/components/components/syn-divider/component.react.ts +0 -29
- package/metadata/packages/components/components/syn-divider/component.styles.ts +0 -22
- package/metadata/packages/components/components/syn-divider/component.ts +0 -34
- package/metadata/packages/components/components/syn-divider/component.vue +0 -51
- package/metadata/packages/components/components/syn-drawer/component.angular.ts +0 -234
- package/metadata/packages/components/components/syn-drawer/component.custom.styles.ts +0 -78
- package/metadata/packages/components/components/syn-drawer/component.react.ts +0 -98
- package/metadata/packages/components/components/syn-drawer/component.styles.ts +0 -158
- package/metadata/packages/components/components/syn-drawer/component.ts +0 -489
- package/metadata/packages/components/components/syn-drawer/component.vue +0 -188
- package/metadata/packages/components/components/syn-dropdown/component.angular.ts +0 -208
- package/metadata/packages/components/components/syn-dropdown/component.react.ts +0 -59
- package/metadata/packages/components/components/syn-dropdown/component.styles.ts +0 -51
- package/metadata/packages/components/components/syn-dropdown/component.ts +0 -469
- package/metadata/packages/components/components/syn-dropdown/component.vue +0 -152
- package/metadata/packages/components/components/syn-file/component.angular.ts +0 -372
- package/metadata/packages/components/components/syn-file/component.react.ts +0 -85
- package/metadata/packages/components/components/syn-file/component.styles.ts +0 -197
- package/metadata/packages/components/components/syn-file/component.ts +0 -645
- package/metadata/packages/components/components/syn-file/component.vue +0 -256
- package/metadata/packages/components/components/syn-header/component.angular.ts +0 -149
- package/metadata/packages/components/components/syn-header/component.react.ts +0 -68
- package/metadata/packages/components/components/syn-header/component.styles.ts +0 -143
- package/metadata/packages/components/components/syn-header/component.ts +0 -310
- package/metadata/packages/components/components/syn-header/component.vue +0 -126
- package/metadata/packages/components/components/syn-icon/component.angular.ts +0 -115
- package/metadata/packages/components/components/syn-icon/component.custom.styles.ts +0 -5
- package/metadata/packages/components/components/syn-icon/component.react.ts +0 -41
- package/metadata/packages/components/components/syn-icon/component.styles.ts +0 -18
- package/metadata/packages/components/components/syn-icon/component.ts +0 -227
- package/metadata/packages/components/components/syn-icon/component.vue +0 -100
- package/metadata/packages/components/components/syn-icon-button/component.angular.ts +0 -185
- package/metadata/packages/components/components/syn-icon-button/component.custom.styles.ts +0 -79
- package/metadata/packages/components/components/syn-icon-button/component.react.ts +0 -42
- package/metadata/packages/components/components/syn-icon-button/component.styles.ts +0 -52
- package/metadata/packages/components/components/syn-icon-button/component.ts +0 -147
- package/metadata/packages/components/components/syn-icon-button/component.vue +0 -132
- package/metadata/packages/components/components/syn-input/component.angular.ts +0 -608
- package/metadata/packages/components/components/syn-input/component.custom.styles.ts +0 -278
- package/metadata/packages/components/components/syn-input/component.react.ts +0 -91
- package/metadata/packages/components/components/syn-input/component.styles.ts +0 -280
- package/metadata/packages/components/components/syn-input/component.ts +0 -941
- package/metadata/packages/components/components/syn-input/component.vue +0 -370
- package/metadata/packages/components/components/syn-menu/component.angular.ts +0 -52
- package/metadata/packages/components/components/syn-menu/component.react.ts +0 -36
- package/metadata/packages/components/components/syn-menu/component.styles.ts +0 -37
- package/metadata/packages/components/components/syn-menu/component.ts +0 -191
- package/metadata/packages/components/components/syn-menu/component.vue +0 -48
- package/metadata/packages/components/components/syn-menu-item/component.angular.ts +0 -121
- package/metadata/packages/components/components/syn-menu-item/component.react.ts +0 -45
- package/metadata/packages/components/components/syn-menu-item/component.styles.ts +0 -285
- package/metadata/packages/components/components/syn-menu-item/component.ts +0 -201
- package/metadata/packages/components/components/syn-menu-item/component.vue +0 -91
- package/metadata/packages/components/components/syn-menu-label/component.angular.ts +0 -48
- package/metadata/packages/components/components/syn-menu-label/component.react.ts +0 -35
- package/metadata/packages/components/components/syn-menu-label/component.styles.ts +0 -31
- package/metadata/packages/components/components/syn-menu-label/component.ts +0 -46
- package/metadata/packages/components/components/syn-menu-label/component.vue +0 -41
- package/metadata/packages/components/components/syn-nav-item/component.angular.ts +0 -242
- package/metadata/packages/components/components/syn-nav-item/component.react.ts +0 -82
- package/metadata/packages/components/components/syn-nav-item/component.styles.ts +0 -333
- package/metadata/packages/components/components/syn-nav-item/component.ts +0 -491
- package/metadata/packages/components/components/syn-nav-item/component.vue +0 -182
- package/metadata/packages/components/components/syn-optgroup/component.angular.ts +0 -79
- package/metadata/packages/components/components/syn-optgroup/component.react.ts +0 -41
- package/metadata/packages/components/components/syn-optgroup/component.styles.ts +0 -61
- package/metadata/packages/components/components/syn-optgroup/component.ts +0 -176
- package/metadata/packages/components/components/syn-optgroup/component.vue +0 -71
- package/metadata/packages/components/components/syn-option/component.angular.ts +0 -79
- package/metadata/packages/components/components/syn-option/component.react.ts +0 -37
- package/metadata/packages/components/components/syn-option/component.styles.ts +0 -165
- package/metadata/packages/components/components/syn-option/component.ts +0 -191
- package/metadata/packages/components/components/syn-option/component.vue +0 -71
- package/metadata/packages/components/components/syn-popup/component.angular.ts +0 -372
- package/metadata/packages/components/components/syn-popup/component.react.ts +0 -55
- package/metadata/packages/components/components/syn-popup/component.styles.ts +0 -70
- package/metadata/packages/components/components/syn-popup/component.ts +0 -582
- package/metadata/packages/components/components/syn-popup/component.vue +0 -233
- package/metadata/packages/components/components/syn-prio-nav/component.angular.ts +0 -67
- package/metadata/packages/components/components/syn-prio-nav/component.react.ts +0 -54
- package/metadata/packages/components/components/syn-prio-nav/component.styles.ts +0 -48
- package/metadata/packages/components/components/syn-prio-nav/component.ts +0 -288
- package/metadata/packages/components/components/syn-prio-nav/component.vue +0 -60
- package/metadata/packages/components/components/syn-progress-bar/component.angular.ts +0 -85
- package/metadata/packages/components/components/syn-progress-bar/component.custom.styles.ts +0 -24
- package/metadata/packages/components/components/syn-progress-bar/component.react.ts +0 -37
- package/metadata/packages/components/components/syn-progress-bar/component.styles.ts +0 -87
- package/metadata/packages/components/components/syn-progress-bar/component.ts +0 -67
- package/metadata/packages/components/components/syn-progress-bar/component.vue +0 -71
- package/metadata/packages/components/components/syn-progress-ring/component.angular.ts +0 -72
- package/metadata/packages/components/components/syn-progress-ring/component.custom.styles.ts +0 -19
- package/metadata/packages/components/components/syn-progress-ring/component.react.ts +0 -37
- package/metadata/packages/components/components/syn-progress-ring/component.styles.ts +0 -70
- package/metadata/packages/components/components/syn-progress-ring/component.ts +0 -83
- package/metadata/packages/components/components/syn-progress-ring/component.vue +0 -66
- package/metadata/packages/components/components/syn-radio/component.angular.ts +0 -122
- package/metadata/packages/components/components/syn-radio/component.react.ts +0 -48
- package/metadata/packages/components/components/syn-radio/component.styles.ts +0 -179
- package/metadata/packages/components/components/syn-radio/component.ts +0 -131
- package/metadata/packages/components/components/syn-radio/component.vue +0 -104
- package/metadata/packages/components/components/syn-radio-button/component.angular.ts +0 -123
- package/metadata/packages/components/components/syn-radio-button/component.react.ts +0 -49
- package/metadata/packages/components/components/syn-radio-button/component.styles.ts +0 -30
- package/metadata/packages/components/components/syn-radio-button/component.ts +0 -142
- package/metadata/packages/components/components/syn-radio-button/component.vue +0 -105
- package/metadata/packages/components/components/syn-radio-group/component.angular.ts +0 -204
- package/metadata/packages/components/components/syn-radio-group/component.react.ts +0 -56
- package/metadata/packages/components/components/syn-radio-group/component.styles.ts +0 -58
- package/metadata/packages/components/components/syn-radio-group/component.ts +0 -440
- package/metadata/packages/components/components/syn-radio-group/component.vue +0 -158
- package/metadata/packages/components/components/syn-range/component.angular.ts +0 -347
- package/metadata/packages/components/components/syn-range/component.react.ts +0 -92
- package/metadata/packages/components/components/syn-range/component.styles.ts +0 -310
- package/metadata/packages/components/components/syn-range/component.ts +0 -933
- package/metadata/packages/components/components/syn-range/component.vue +0 -245
- package/metadata/packages/components/components/syn-range-tick/component.angular.ts +0 -59
- package/metadata/packages/components/components/syn-range-tick/component.react.ts +0 -33
- package/metadata/packages/components/components/syn-range-tick/component.styles.ts +0 -34
- package/metadata/packages/components/components/syn-range-tick/component.ts +0 -50
- package/metadata/packages/components/components/syn-range-tick/component.vue +0 -57
- package/metadata/packages/components/components/syn-resize-observer/component.styles.ts +0 -9
- package/metadata/packages/components/components/syn-resize-observer/component.ts +0 -91
- package/metadata/packages/components/components/syn-select/component.angular.ts +0 -439
- package/metadata/packages/components/components/syn-select/component.react.ts +0 -101
- package/metadata/packages/components/components/syn-select/component.styles.ts +0 -380
- package/metadata/packages/components/components/syn-select/component.ts +0 -1056
- package/metadata/packages/components/components/syn-select/component.vue +0 -301
- package/metadata/packages/components/components/syn-side-nav/component.angular.ts +0 -210
- package/metadata/packages/components/components/syn-side-nav/component.react.ts +0 -95
- package/metadata/packages/components/components/syn-side-nav/component.styles.ts +0 -142
- package/metadata/packages/components/components/syn-side-nav/component.ts +0 -458
- package/metadata/packages/components/components/syn-side-nav/component.vue +0 -188
- package/metadata/packages/components/components/syn-spinner/component.angular.ts +0 -44
- package/metadata/packages/components/components/syn-spinner/component.custom.styles.ts +0 -32
- package/metadata/packages/components/components/syn-spinner/component.react.ts +0 -31
- package/metadata/packages/components/components/syn-spinner/component.styles.ts +0 -48
- package/metadata/packages/components/components/syn-spinner/component.ts +0 -35
- package/metadata/packages/components/components/syn-spinner/component.vue +0 -35
- package/metadata/packages/components/components/syn-switch/component.angular.ts +0 -257
- package/metadata/packages/components/components/syn-switch/component.react.ts +0 -63
- package/metadata/packages/components/components/syn-switch/component.styles.ts +0 -252
- package/metadata/packages/components/components/syn-switch/component.ts +0 -279
- package/metadata/packages/components/components/syn-switch/component.vue +0 -183
- package/metadata/packages/components/components/syn-tab/component.angular.ts +0 -109
- package/metadata/packages/components/components/syn-tab/component.custom.styles.ts +0 -94
- package/metadata/packages/components/components/syn-tab/component.react.ts +0 -42
- package/metadata/packages/components/components/syn-tab/component.styles.ts +0 -70
- package/metadata/packages/components/components/syn-tab/component.ts +0 -125
- package/metadata/packages/components/components/syn-tab/component.vue +0 -91
- package/metadata/packages/components/components/syn-tab-group/component.angular.ts +0 -166
- package/metadata/packages/components/components/syn-tab-group/component.custom.styles.ts +0 -218
- package/metadata/packages/components/components/syn-tab-group/component.react.ts +0 -58
- package/metadata/packages/components/components/syn-tab-group/component.styles.ts +0 -193
- package/metadata/packages/components/components/syn-tab-group/component.ts +0 -551
- package/metadata/packages/components/components/syn-tab-group/component.vue +0 -126
- package/metadata/packages/components/components/syn-tab-panel/component.angular.ts +0 -68
- package/metadata/packages/components/components/syn-tab-panel/component.custom.styles.ts +0 -8
- package/metadata/packages/components/components/syn-tab-panel/component.react.ts +0 -31
- package/metadata/packages/components/components/syn-tab-panel/component.styles.ts +0 -20
- package/metadata/packages/components/components/syn-tab-panel/component.ts +0 -60
- package/metadata/packages/components/components/syn-tab-panel/component.vue +0 -60
- package/metadata/packages/components/components/syn-tag/component.angular.ts +0 -83
- package/metadata/packages/components/components/syn-tag/component.custom.styles.ts +0 -121
- package/metadata/packages/components/components/syn-tag/component.react.ts +0 -43
- package/metadata/packages/components/components/syn-tag/component.styles.ts +0 -58
- package/metadata/packages/components/components/syn-tag/component.ts +0 -83
- package/metadata/packages/components/components/syn-tag/component.vue +0 -81
- package/metadata/packages/components/components/syn-tag-group/component.angular.ts +0 -83
- package/metadata/packages/components/components/syn-tag-group/component.react.ts +0 -33
- package/metadata/packages/components/components/syn-tag-group/component.styles.ts +0 -49
- package/metadata/packages/components/components/syn-tag-group/component.ts +0 -95
- package/metadata/packages/components/components/syn-tag-group/component.vue +0 -69
- package/metadata/packages/components/components/syn-textarea/component.angular.ts +0 -396
- package/metadata/packages/components/components/syn-textarea/component.react.ts +0 -60
- package/metadata/packages/components/components/syn-textarea/component.styles.ts +0 -208
- package/metadata/packages/components/components/syn-textarea/component.ts +0 -400
- package/metadata/packages/components/components/syn-textarea/component.vue +0 -244
- package/metadata/packages/components/components/syn-tooltip/component.angular.ts +0 -196
- package/metadata/packages/components/components/syn-tooltip/component.react.ts +0 -63
- package/metadata/packages/components/components/syn-tooltip/component.styles.ts +0 -62
- package/metadata/packages/components/components/syn-tooltip/component.ts +0 -312
- package/metadata/packages/components/components/syn-tooltip/component.vue +0 -150
- package/metadata/packages/components/components/syn-validate/component.angular.ts +0 -137
- package/metadata/packages/components/components/syn-validate/component.react.ts +0 -44
- package/metadata/packages/components/components/syn-validate/component.styles.ts +0 -9
- package/metadata/packages/components/components/syn-validate/component.ts +0 -590
- package/metadata/packages/components/components/syn-validate/component.vue +0 -107
- package/metadata/packages/components/migration/BREAKING_CHANGES.md +0 -908
- package/metadata/packages/components/static/CHANGELOG.md +0 -2140
- package/metadata/packages/components/static/LIMITATIONS.md +0 -433
- package/metadata/packages/components/static/README.md +0 -231
- package/metadata/packages/fonts/CHANGELOG.md +0 -57
- package/metadata/packages/fonts/README.md +0 -164
- package/metadata/packages/fonts/package.json +0 -72
- package/metadata/packages/react/LIMITATIONS.md +0 -31
- package/metadata/packages/react/README.md +0 -262
- package/metadata/packages/styles/BREAKING_CHANGES.md +0 -105
- package/metadata/packages/styles/CHANGELOG.md +0 -188
- package/metadata/packages/styles/README.md +0 -132
- package/metadata/packages/styles/index.css +0 -300
- package/metadata/packages/styles/link-list.css +0 -47
- package/metadata/packages/styles/link.css +0 -81
- package/metadata/packages/styles/tables.css +0 -132
- package/metadata/packages/styles/typography.css +0 -52
- package/metadata/packages/tokens/BREAKING_CHANGES.md +0 -180
- package/metadata/packages/tokens/CHANGELOG.md +0 -949
- package/metadata/packages/tokens/README.md +0 -435
- package/metadata/packages/tokens/dark.css +0 -454
- package/metadata/packages/tokens/index.js +0 -2224
- package/metadata/packages/tokens/light.css +0 -454
- package/metadata/packages/tokens/sick2018_dark.css +0 -454
- package/metadata/packages/tokens/sick2018_light.css +0 -454
- package/metadata/packages/tokens/sick2025_dark.css +0 -454
- package/metadata/packages/tokens/sick2025_light.css +0 -454
- package/metadata/packages/vue/LIMITATIONS.md +0 -53
- package/metadata/packages/vue/README.md +0 -252
- package/metadata/static/assets/index.md +0 -10
- package/metadata/static/components/index.md +0 -10
- package/metadata/static/components/syn-accordion/docs.md +0 -449
- package/metadata/static/components/syn-alert/docs.md +0 -282
- package/metadata/static/components/syn-badge/docs.md +0 -106
- package/metadata/static/components/syn-breadcrumb/docs.md +0 -265
- package/metadata/static/components/syn-breadcrumb-item/docs.md +0 -49
- package/metadata/static/components/syn-button/docs.md +0 -472
- package/metadata/static/components/syn-button-group/docs.md +0 -259
- package/metadata/static/components/syn-card/docs.md +0 -314
- package/metadata/static/components/syn-checkbox/docs.md +0 -176
- package/metadata/static/components/syn-combobox/docs.md +0 -2633
- package/metadata/static/components/syn-details/docs.md +0 -227
- package/metadata/static/components/syn-dialog/docs.md +0 -220
- package/metadata/static/components/syn-divider/docs.md +0 -77
- package/metadata/static/components/syn-drawer/docs.md +0 -269
- package/metadata/static/components/syn-dropdown/docs.md +0 -316
- package/metadata/static/components/syn-file/docs.md +0 -239
- package/metadata/static/components/syn-header/docs.md +0 -209
- package/metadata/static/components/syn-icon/docs.md +0 -177
- package/metadata/static/components/syn-icon-button/docs.md +0 -142
- package/metadata/static/components/syn-input/docs.md +0 -462
- package/metadata/static/components/syn-menu/docs.md +0 -162
- package/metadata/static/components/syn-menu-item/docs.md +0 -216
- package/metadata/static/components/syn-menu-label/docs.md +0 -29
- package/metadata/static/components/syn-nav-item/docs.md +0 -166
- package/metadata/static/components/syn-optgroup/docs.md +0 -167
- package/metadata/static/components/syn-option/docs.md +0 -137
- package/metadata/static/components/syn-popup/docs.md +0 -812
- package/metadata/static/components/syn-prio-nav/docs.md +0 -54
- package/metadata/static/components/syn-progress-bar/docs.md +0 -77
- package/metadata/static/components/syn-progress-ring/docs.md +0 -89
- package/metadata/static/components/syn-radio/docs.md +0 -178
- package/metadata/static/components/syn-radio-group/docs.md +0 -484
- package/metadata/static/components/syn-range/docs.md +0 -438
- package/metadata/static/components/syn-range-tick/docs.md +0 -110
- package/metadata/static/components/syn-select/docs.md +0 -811
- package/metadata/static/components/syn-side-nav/docs.md +0 -593
- package/metadata/static/components/syn-spinner/docs.md +0 -45
- package/metadata/static/components/syn-switch/docs.md +0 -121
- package/metadata/static/components/syn-tab/docs.md +0 -47
- package/metadata/static/components/syn-tab-group/docs.md +0 -1094
- package/metadata/static/components/syn-tab-panel/docs.md +0 -91
- package/metadata/static/components/syn-tag/docs.md +0 -50
- package/metadata/static/components/syn-tag-group/docs.md +0 -269
- package/metadata/static/components/syn-textarea/docs.md +0 -215
- package/metadata/static/components/syn-tooltip/docs.md +0 -217
- package/metadata/static/components/syn-validate/docs.md +0 -305
- package/metadata/static/fonts/index.md +0 -4
- package/metadata/static/migration/index.md +0 -57
- package/metadata/static/migration/v2-2018-to-v2-2025.md +0 -481
- package/metadata/static/migration/v2-2018-to-v3-2018.md +0 -147
- package/metadata/static/migration/v2-2018-to-v3-2025.md +0 -150
- package/metadata/static/migration/v2-2025-to-v3-2025.md +0 -133
- package/metadata/static/setup/icon-usage.md +0 -411
- package/metadata/static/setup/prerequisites.md +0 -319
- package/metadata/static/styles/syn-body.md +0 -5
- package/metadata/static/styles/syn-heading.md +0 -5
- package/metadata/static/styles/syn-link-list.md +0 -325
- package/metadata/static/styles/syn-link.md +0 -156
- package/metadata/static/styles/syn-table-cell.md +0 -127
- package/metadata/static/styles/syn-table.md +0 -201
- package/metadata/static/styles/syn-weight.md +0 -5
- package/metadata/static/templates/appshell.md +0 -2053
- package/metadata/static/templates/breadcrumb.md +0 -379
- package/metadata/static/templates/footer.md +0 -340
- package/metadata/static/templates/forms.md +0 -558
- package/metadata/static/templates/localization.md +0 -279
- package/metadata/static/templates/table.md +0 -1425
- package/metadata/static/templates/tag-group.md +0 -833
- /package/dist/{build/build.d.ts → utilities/logging-types.js} +0 -0
- /package/{metadata/static/component-info/index.md → rules/component-info.md} +0 -0
|
@@ -1,2224 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @synergy-design-system/tokens version 3.11.0
|
|
3
|
-
* SICK Global UX Foundation
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* @type {string}
|
|
8
|
-
*/
|
|
9
|
-
export const SynAlertErrorColorBackground = 'var(--syn-alert-error-color-background)';
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* @type {string}
|
|
13
|
-
*/
|
|
14
|
-
export const SynAlertErrorColorBorder = 'var(--syn-alert-error-color-border)';
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* @type {string}
|
|
18
|
-
*/
|
|
19
|
-
export const SynAlertErrorColorIcon = 'var(--syn-alert-error-color-icon)';
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* @type {string}
|
|
23
|
-
*/
|
|
24
|
-
export const SynAlertErrorColorIndicator = 'var(--syn-alert-error-color-indicator)';
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
* @type {string}
|
|
28
|
-
*/
|
|
29
|
-
export const SynAlertInformativeColorBackground = 'var(--syn-alert-informative-color-background)';
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
* @type {string}
|
|
33
|
-
*/
|
|
34
|
-
export const SynAlertInformativeColorBorder = 'var(--syn-alert-informative-color-border)';
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* @type {string}
|
|
38
|
-
*/
|
|
39
|
-
export const SynAlertInformativeColorIcon = 'var(--syn-alert-informative-color-icon)';
|
|
40
|
-
|
|
41
|
-
/**
|
|
42
|
-
* @type {string}
|
|
43
|
-
*/
|
|
44
|
-
export const SynAlertInformativeColorIndicator = 'var(--syn-alert-informative-color-indicator)';
|
|
45
|
-
|
|
46
|
-
/**
|
|
47
|
-
* @type {string}
|
|
48
|
-
*/
|
|
49
|
-
export const SynAlertNeutralColorBackground = 'var(--syn-alert-neutral-color-background)';
|
|
50
|
-
|
|
51
|
-
/**
|
|
52
|
-
* @type {string}
|
|
53
|
-
*/
|
|
54
|
-
export const SynAlertNeutralColorBorder = 'var(--syn-alert-neutral-color-border)';
|
|
55
|
-
|
|
56
|
-
/**
|
|
57
|
-
* @type {string}
|
|
58
|
-
*/
|
|
59
|
-
export const SynAlertNeutralColorIcon = 'var(--syn-alert-neutral-color-icon)';
|
|
60
|
-
|
|
61
|
-
/**
|
|
62
|
-
* @type {string}
|
|
63
|
-
*/
|
|
64
|
-
export const SynAlertNeutralColorIndicator = 'var(--syn-alert-neutral-color-indicator)';
|
|
65
|
-
|
|
66
|
-
/**
|
|
67
|
-
* @type {string}
|
|
68
|
-
*/
|
|
69
|
-
export const SynAlertSuccessColorBackground = 'var(--syn-alert-success-color-background)';
|
|
70
|
-
|
|
71
|
-
/**
|
|
72
|
-
* @type {string}
|
|
73
|
-
*/
|
|
74
|
-
export const SynAlertSuccessColorBorder = 'var(--syn-alert-success-color-border)';
|
|
75
|
-
|
|
76
|
-
/**
|
|
77
|
-
* @type {string}
|
|
78
|
-
*/
|
|
79
|
-
export const SynAlertSuccessColorIcon = 'var(--syn-alert-success-color-icon)';
|
|
80
|
-
|
|
81
|
-
/**
|
|
82
|
-
* @type {string}
|
|
83
|
-
*/
|
|
84
|
-
export const SynAlertSuccessColorIndicator = 'var(--syn-alert-success-color-indicator)';
|
|
85
|
-
|
|
86
|
-
/**
|
|
87
|
-
* @type {string}
|
|
88
|
-
*/
|
|
89
|
-
export const SynAlertWarningColorBackground = 'var(--syn-alert-warning-color-background)';
|
|
90
|
-
|
|
91
|
-
/**
|
|
92
|
-
* @type {string}
|
|
93
|
-
*/
|
|
94
|
-
export const SynAlertWarningColorBorder = 'var(--syn-alert-warning-color-border)';
|
|
95
|
-
|
|
96
|
-
/**
|
|
97
|
-
* @type {string}
|
|
98
|
-
*/
|
|
99
|
-
export const SynAlertWarningColorIcon = 'var(--syn-alert-warning-color-icon)';
|
|
100
|
-
|
|
101
|
-
/**
|
|
102
|
-
* @type {string}
|
|
103
|
-
*/
|
|
104
|
-
export const SynAlertWarningColorIndicator = 'var(--syn-alert-warning-color-indicator)';
|
|
105
|
-
|
|
106
|
-
/**
|
|
107
|
-
* @type {string}
|
|
108
|
-
*/
|
|
109
|
-
export const SynBadgeErrorColorBackground = 'var(--syn-badge-error-color-background)';
|
|
110
|
-
|
|
111
|
-
/**
|
|
112
|
-
* @type {string}
|
|
113
|
-
*/
|
|
114
|
-
export const SynBadgeErrorColorText = 'var(--syn-badge-error-color-text)';
|
|
115
|
-
|
|
116
|
-
/**
|
|
117
|
-
* @type {string}
|
|
118
|
-
*/
|
|
119
|
-
export const SynBadgeInformativeColorBackground = 'var(--syn-badge-informative-color-background)';
|
|
120
|
-
|
|
121
|
-
/**
|
|
122
|
-
* @type {string}
|
|
123
|
-
*/
|
|
124
|
-
export const SynBadgeInformativeColorText = 'var(--syn-badge-informative-color-text)';
|
|
125
|
-
|
|
126
|
-
/**
|
|
127
|
-
* @type {string}
|
|
128
|
-
*/
|
|
129
|
-
export const SynBadgeNeutralColorBackground = 'var(--syn-badge-neutral-color-background)';
|
|
130
|
-
|
|
131
|
-
/**
|
|
132
|
-
* @type {string}
|
|
133
|
-
*/
|
|
134
|
-
export const SynBadgeNeutralColorText = 'var(--syn-badge-neutral-color-text)';
|
|
135
|
-
|
|
136
|
-
/**
|
|
137
|
-
* @type {string}
|
|
138
|
-
*/
|
|
139
|
-
export const SynBadgeSuccessColorBackground = 'var(--syn-badge-success-color-background)';
|
|
140
|
-
|
|
141
|
-
/**
|
|
142
|
-
* @type {string}
|
|
143
|
-
*/
|
|
144
|
-
export const SynBadgeSuccessColorText = 'var(--syn-badge-success-color-text)';
|
|
145
|
-
|
|
146
|
-
/**
|
|
147
|
-
* @type {string}
|
|
148
|
-
*/
|
|
149
|
-
export const SynBadgeWarningColorBackground = 'var(--syn-badge-warning-color-background)';
|
|
150
|
-
|
|
151
|
-
/**
|
|
152
|
-
* @type {string}
|
|
153
|
-
*/
|
|
154
|
-
export const SynBadgeWarningColorText = 'var(--syn-badge-warning-color-text)';
|
|
155
|
-
|
|
156
|
-
/**
|
|
157
|
-
* @type {string}
|
|
158
|
-
*/
|
|
159
|
-
export const SynBorderRadiusCircle = 'var(--syn-border-radius-circle)';
|
|
160
|
-
|
|
161
|
-
/**
|
|
162
|
-
* @type {string}
|
|
163
|
-
*/
|
|
164
|
-
export const SynBorderRadiusLarge = 'var(--syn-border-radius-large)';
|
|
165
|
-
|
|
166
|
-
/**
|
|
167
|
-
* @type {string}
|
|
168
|
-
*/
|
|
169
|
-
export const SynBorderRadiusMedium = 'var(--syn-border-radius-medium)';
|
|
170
|
-
|
|
171
|
-
/**
|
|
172
|
-
* @type {string}
|
|
173
|
-
*/
|
|
174
|
-
export const SynBorderRadiusNone = 'var(--syn-border-radius-none)';
|
|
175
|
-
|
|
176
|
-
/**
|
|
177
|
-
* @type {string}
|
|
178
|
-
*/
|
|
179
|
-
export const SynBorderRadiusPill = 'var(--syn-border-radius-pill)';
|
|
180
|
-
|
|
181
|
-
/**
|
|
182
|
-
* @type {string}
|
|
183
|
-
*/
|
|
184
|
-
export const SynBorderRadiusSmall = 'var(--syn-border-radius-small)';
|
|
185
|
-
|
|
186
|
-
/**
|
|
187
|
-
* @type {string}
|
|
188
|
-
*/
|
|
189
|
-
export const SynBorderRadiusXLarge = 'var(--syn-border-radius-x-large)';
|
|
190
|
-
|
|
191
|
-
/**
|
|
192
|
-
* @type {string}
|
|
193
|
-
*/
|
|
194
|
-
export const SynBorderWidthLarge = 'var(--syn-border-width-large)';
|
|
195
|
-
|
|
196
|
-
/**
|
|
197
|
-
* @type {string}
|
|
198
|
-
*/
|
|
199
|
-
export const SynBorderWidthMedium = 'var(--syn-border-width-medium)';
|
|
200
|
-
|
|
201
|
-
/**
|
|
202
|
-
* @type {string}
|
|
203
|
-
*/
|
|
204
|
-
export const SynBorderWidthNone = 'var(--syn-border-width-none)';
|
|
205
|
-
|
|
206
|
-
/**
|
|
207
|
-
* @type {string}
|
|
208
|
-
*/
|
|
209
|
-
export const SynBorderWidthSmall = 'var(--syn-border-width-small)';
|
|
210
|
-
|
|
211
|
-
/**
|
|
212
|
-
* @type {string}
|
|
213
|
-
*/
|
|
214
|
-
export const SynBorderWidthXLarge = 'var(--syn-border-width-x-large)';
|
|
215
|
-
|
|
216
|
-
/**
|
|
217
|
-
* @type {string}
|
|
218
|
-
*/
|
|
219
|
-
export const SynBreadcrumbColor = 'var(--syn-breadcrumb-color)';
|
|
220
|
-
|
|
221
|
-
/**
|
|
222
|
-
* @type {string}
|
|
223
|
-
*/
|
|
224
|
-
export const SynButtonBorderRadiusLarge = 'var(--syn-button-border-radius-large)';
|
|
225
|
-
|
|
226
|
-
/**
|
|
227
|
-
* @type {string}
|
|
228
|
-
*/
|
|
229
|
-
export const SynButtonBorderRadiusMedium = 'var(--syn-button-border-radius-medium)';
|
|
230
|
-
|
|
231
|
-
/**
|
|
232
|
-
* @type {string}
|
|
233
|
-
*/
|
|
234
|
-
export const SynButtonBorderRadiusSmall = 'var(--syn-button-border-radius-small)';
|
|
235
|
-
|
|
236
|
-
/**
|
|
237
|
-
* @type {string}
|
|
238
|
-
*/
|
|
239
|
-
export const SynButtonColor = 'var(--syn-button-color)';
|
|
240
|
-
|
|
241
|
-
/**
|
|
242
|
-
* @type {string}
|
|
243
|
-
*/
|
|
244
|
-
export const SynButtonColorActive = 'var(--syn-button-color-active)';
|
|
245
|
-
|
|
246
|
-
/**
|
|
247
|
-
* @type {string}
|
|
248
|
-
*/
|
|
249
|
-
export const SynButtonColorHover = 'var(--syn-button-color-hover)';
|
|
250
|
-
|
|
251
|
-
/**
|
|
252
|
-
* @type {string}
|
|
253
|
-
*/
|
|
254
|
-
export const SynButtonFilledColorText = 'var(--syn-button-filled-color-text)';
|
|
255
|
-
|
|
256
|
-
/**
|
|
257
|
-
* @type {string}
|
|
258
|
-
*/
|
|
259
|
-
export const SynButtonFilledColorTextActive = 'var(--syn-button-filled-color-text-active)';
|
|
260
|
-
|
|
261
|
-
/**
|
|
262
|
-
* @type {string}
|
|
263
|
-
*/
|
|
264
|
-
export const SynButtonFilledColorTextHover = 'var(--syn-button-filled-color-text-hover)';
|
|
265
|
-
|
|
266
|
-
/**
|
|
267
|
-
* @type {string}
|
|
268
|
-
*/
|
|
269
|
-
export const SynButtonFontSizeLarge = 'var(--syn-button-font-size-large)';
|
|
270
|
-
|
|
271
|
-
/**
|
|
272
|
-
* @type {string}
|
|
273
|
-
*/
|
|
274
|
-
export const SynButtonFontSizeMedium = 'var(--syn-button-font-size-medium)';
|
|
275
|
-
|
|
276
|
-
/**
|
|
277
|
-
* @type {string}
|
|
278
|
-
*/
|
|
279
|
-
export const SynButtonFontSizeSmall = 'var(--syn-button-font-size-small)';
|
|
280
|
-
|
|
281
|
-
/**
|
|
282
|
-
* @type {string}
|
|
283
|
-
*/
|
|
284
|
-
export const SynButtonOutlineColorActive = 'var(--syn-button-outline-color-active)';
|
|
285
|
-
|
|
286
|
-
/**
|
|
287
|
-
* @type {string}
|
|
288
|
-
*/
|
|
289
|
-
export const SynButtonOutlineColorHover = 'var(--syn-button-outline-color-hover)';
|
|
290
|
-
|
|
291
|
-
/**
|
|
292
|
-
* @type {string}
|
|
293
|
-
*/
|
|
294
|
-
export const SynButtonOutlineColorText = 'var(--syn-button-outline-color-text)';
|
|
295
|
-
|
|
296
|
-
/**
|
|
297
|
-
* @type {string}
|
|
298
|
-
*/
|
|
299
|
-
export const SynButtonOutlineColorTextActive = 'var(--syn-button-outline-color-text-active)';
|
|
300
|
-
|
|
301
|
-
/**
|
|
302
|
-
* @type {string}
|
|
303
|
-
*/
|
|
304
|
-
export const SynButtonOutlineColorTextHover = 'var(--syn-button-outline-color-text-hover)';
|
|
305
|
-
|
|
306
|
-
/**
|
|
307
|
-
* @type {string}
|
|
308
|
-
*/
|
|
309
|
-
export const SynButtonTextColorText = 'var(--syn-button-text-color-text)';
|
|
310
|
-
|
|
311
|
-
/**
|
|
312
|
-
* @type {string}
|
|
313
|
-
*/
|
|
314
|
-
export const SynButtonTextColorTextActive = 'var(--syn-button-text-color-text-active)';
|
|
315
|
-
|
|
316
|
-
/**
|
|
317
|
-
* @type {string}
|
|
318
|
-
*/
|
|
319
|
-
export const SynButtonTextColorTextHover = 'var(--syn-button-text-color-text-hover)';
|
|
320
|
-
|
|
321
|
-
/**
|
|
322
|
-
* @type {string}
|
|
323
|
-
*/
|
|
324
|
-
export const SynCheckboxBorderRadius = 'var(--syn-checkbox-border-radius)';
|
|
325
|
-
|
|
326
|
-
/**
|
|
327
|
-
* @type {string}
|
|
328
|
-
*/
|
|
329
|
-
export const SynColorAccent50 = 'var(--syn-color-accent-50)';
|
|
330
|
-
|
|
331
|
-
/**
|
|
332
|
-
* @type {string}
|
|
333
|
-
*/
|
|
334
|
-
export const SynColorAccent100 = 'var(--syn-color-accent-100)';
|
|
335
|
-
|
|
336
|
-
/**
|
|
337
|
-
* @type {string}
|
|
338
|
-
*/
|
|
339
|
-
export const SynColorAccent200 = 'var(--syn-color-accent-200)';
|
|
340
|
-
|
|
341
|
-
/**
|
|
342
|
-
* @type {string}
|
|
343
|
-
*/
|
|
344
|
-
export const SynColorAccent300 = 'var(--syn-color-accent-300)';
|
|
345
|
-
|
|
346
|
-
/**
|
|
347
|
-
* @type {string}
|
|
348
|
-
*/
|
|
349
|
-
export const SynColorAccent400 = 'var(--syn-color-accent-400)';
|
|
350
|
-
|
|
351
|
-
/**
|
|
352
|
-
* @type {string}
|
|
353
|
-
*/
|
|
354
|
-
export const SynColorAccent500 = 'var(--syn-color-accent-500)';
|
|
355
|
-
|
|
356
|
-
/**
|
|
357
|
-
* @type {string}
|
|
358
|
-
*/
|
|
359
|
-
export const SynColorAccent600 = 'var(--syn-color-accent-600)';
|
|
360
|
-
|
|
361
|
-
/**
|
|
362
|
-
* @type {string}
|
|
363
|
-
*/
|
|
364
|
-
export const SynColorAccent700 = 'var(--syn-color-accent-700)';
|
|
365
|
-
|
|
366
|
-
/**
|
|
367
|
-
* @type {string}
|
|
368
|
-
*/
|
|
369
|
-
export const SynColorAccent800 = 'var(--syn-color-accent-800)';
|
|
370
|
-
|
|
371
|
-
/**
|
|
372
|
-
* @type {string}
|
|
373
|
-
*/
|
|
374
|
-
export const SynColorAccent900 = 'var(--syn-color-accent-900)';
|
|
375
|
-
|
|
376
|
-
/**
|
|
377
|
-
* @type {string}
|
|
378
|
-
*/
|
|
379
|
-
export const SynColorAccent950 = 'var(--syn-color-accent-950)';
|
|
380
|
-
|
|
381
|
-
/**
|
|
382
|
-
* @type {string}
|
|
383
|
-
*/
|
|
384
|
-
export const SynColorCritical50 = 'var(--syn-color-critical-50)';
|
|
385
|
-
|
|
386
|
-
/**
|
|
387
|
-
* @type {string}
|
|
388
|
-
*/
|
|
389
|
-
export const SynColorCritical100 = 'var(--syn-color-critical-100)';
|
|
390
|
-
|
|
391
|
-
/**
|
|
392
|
-
* @type {string}
|
|
393
|
-
*/
|
|
394
|
-
export const SynColorCritical200 = 'var(--syn-color-critical-200)';
|
|
395
|
-
|
|
396
|
-
/**
|
|
397
|
-
* @type {string}
|
|
398
|
-
*/
|
|
399
|
-
export const SynColorCritical300 = 'var(--syn-color-critical-300)';
|
|
400
|
-
|
|
401
|
-
/**
|
|
402
|
-
* @type {string}
|
|
403
|
-
*/
|
|
404
|
-
export const SynColorCritical400 = 'var(--syn-color-critical-400)';
|
|
405
|
-
|
|
406
|
-
/**
|
|
407
|
-
* @type {string}
|
|
408
|
-
*/
|
|
409
|
-
export const SynColorCritical500 = 'var(--syn-color-critical-500)';
|
|
410
|
-
|
|
411
|
-
/**
|
|
412
|
-
* @type {string}
|
|
413
|
-
*/
|
|
414
|
-
export const SynColorCritical600 = 'var(--syn-color-critical-600)';
|
|
415
|
-
|
|
416
|
-
/**
|
|
417
|
-
* @type {string}
|
|
418
|
-
*/
|
|
419
|
-
export const SynColorCritical700 = 'var(--syn-color-critical-700)';
|
|
420
|
-
|
|
421
|
-
/**
|
|
422
|
-
* @type {string}
|
|
423
|
-
*/
|
|
424
|
-
export const SynColorCritical800 = 'var(--syn-color-critical-800)';
|
|
425
|
-
|
|
426
|
-
/**
|
|
427
|
-
* @type {string}
|
|
428
|
-
*/
|
|
429
|
-
export const SynColorCritical900 = 'var(--syn-color-critical-900)';
|
|
430
|
-
|
|
431
|
-
/**
|
|
432
|
-
* @type {string}
|
|
433
|
-
*/
|
|
434
|
-
export const SynColorCritical950 = 'var(--syn-color-critical-950)';
|
|
435
|
-
|
|
436
|
-
/**
|
|
437
|
-
* @type {string}
|
|
438
|
-
*/
|
|
439
|
-
export const SynColorDataMagenta50 = 'var(--syn-color-data-magenta-50)';
|
|
440
|
-
|
|
441
|
-
/**
|
|
442
|
-
* @type {string}
|
|
443
|
-
*/
|
|
444
|
-
export const SynColorDataMagenta100 = 'var(--syn-color-data-magenta-100)';
|
|
445
|
-
|
|
446
|
-
/**
|
|
447
|
-
* @type {string}
|
|
448
|
-
*/
|
|
449
|
-
export const SynColorDataMagenta200 = 'var(--syn-color-data-magenta-200)';
|
|
450
|
-
|
|
451
|
-
/**
|
|
452
|
-
* @type {string}
|
|
453
|
-
*/
|
|
454
|
-
export const SynColorDataMagenta300 = 'var(--syn-color-data-magenta-300)';
|
|
455
|
-
|
|
456
|
-
/**
|
|
457
|
-
* @type {string}
|
|
458
|
-
*/
|
|
459
|
-
export const SynColorDataMagenta400 = 'var(--syn-color-data-magenta-400)';
|
|
460
|
-
|
|
461
|
-
/**
|
|
462
|
-
* @type {string}
|
|
463
|
-
*/
|
|
464
|
-
export const SynColorDataMagenta500 = 'var(--syn-color-data-magenta-500)';
|
|
465
|
-
|
|
466
|
-
/**
|
|
467
|
-
* @type {string}
|
|
468
|
-
*/
|
|
469
|
-
export const SynColorDataMagenta600 = 'var(--syn-color-data-magenta-600)';
|
|
470
|
-
|
|
471
|
-
/**
|
|
472
|
-
* @type {string}
|
|
473
|
-
*/
|
|
474
|
-
export const SynColorDataMagenta700 = 'var(--syn-color-data-magenta-700)';
|
|
475
|
-
|
|
476
|
-
/**
|
|
477
|
-
* @type {string}
|
|
478
|
-
*/
|
|
479
|
-
export const SynColorDataMagenta800 = 'var(--syn-color-data-magenta-800)';
|
|
480
|
-
|
|
481
|
-
/**
|
|
482
|
-
* @type {string}
|
|
483
|
-
*/
|
|
484
|
-
export const SynColorDataMagenta900 = 'var(--syn-color-data-magenta-900)';
|
|
485
|
-
|
|
486
|
-
/**
|
|
487
|
-
* @type {string}
|
|
488
|
-
*/
|
|
489
|
-
export const SynColorDataMagenta950 = 'var(--syn-color-data-magenta-950)';
|
|
490
|
-
|
|
491
|
-
/**
|
|
492
|
-
* @type {string}
|
|
493
|
-
*/
|
|
494
|
-
export const SynColorDataPurple50 = 'var(--syn-color-data-purple-50)';
|
|
495
|
-
|
|
496
|
-
/**
|
|
497
|
-
* @type {string}
|
|
498
|
-
*/
|
|
499
|
-
export const SynColorDataPurple100 = 'var(--syn-color-data-purple-100)';
|
|
500
|
-
|
|
501
|
-
/**
|
|
502
|
-
* @type {string}
|
|
503
|
-
*/
|
|
504
|
-
export const SynColorDataPurple200 = 'var(--syn-color-data-purple-200)';
|
|
505
|
-
|
|
506
|
-
/**
|
|
507
|
-
* @type {string}
|
|
508
|
-
*/
|
|
509
|
-
export const SynColorDataPurple300 = 'var(--syn-color-data-purple-300)';
|
|
510
|
-
|
|
511
|
-
/**
|
|
512
|
-
* @type {string}
|
|
513
|
-
*/
|
|
514
|
-
export const SynColorDataPurple400 = 'var(--syn-color-data-purple-400)';
|
|
515
|
-
|
|
516
|
-
/**
|
|
517
|
-
* @type {string}
|
|
518
|
-
*/
|
|
519
|
-
export const SynColorDataPurple500 = 'var(--syn-color-data-purple-500)';
|
|
520
|
-
|
|
521
|
-
/**
|
|
522
|
-
* @type {string}
|
|
523
|
-
*/
|
|
524
|
-
export const SynColorDataPurple600 = 'var(--syn-color-data-purple-600)';
|
|
525
|
-
|
|
526
|
-
/**
|
|
527
|
-
* @type {string}
|
|
528
|
-
*/
|
|
529
|
-
export const SynColorDataPurple700 = 'var(--syn-color-data-purple-700)';
|
|
530
|
-
|
|
531
|
-
/**
|
|
532
|
-
* @type {string}
|
|
533
|
-
*/
|
|
534
|
-
export const SynColorDataPurple800 = 'var(--syn-color-data-purple-800)';
|
|
535
|
-
|
|
536
|
-
/**
|
|
537
|
-
* @type {string}
|
|
538
|
-
*/
|
|
539
|
-
export const SynColorDataPurple900 = 'var(--syn-color-data-purple-900)';
|
|
540
|
-
|
|
541
|
-
/**
|
|
542
|
-
* @type {string}
|
|
543
|
-
*/
|
|
544
|
-
export const SynColorDataPurple950 = 'var(--syn-color-data-purple-950)';
|
|
545
|
-
|
|
546
|
-
/**
|
|
547
|
-
* @type {string}
|
|
548
|
-
*/
|
|
549
|
-
export const SynColorDataTeal50 = 'var(--syn-color-data-teal-50)';
|
|
550
|
-
|
|
551
|
-
/**
|
|
552
|
-
* @type {string}
|
|
553
|
-
*/
|
|
554
|
-
export const SynColorDataTeal100 = 'var(--syn-color-data-teal-100)';
|
|
555
|
-
|
|
556
|
-
/**
|
|
557
|
-
* @type {string}
|
|
558
|
-
*/
|
|
559
|
-
export const SynColorDataTeal200 = 'var(--syn-color-data-teal-200)';
|
|
560
|
-
|
|
561
|
-
/**
|
|
562
|
-
* @type {string}
|
|
563
|
-
*/
|
|
564
|
-
export const SynColorDataTeal300 = 'var(--syn-color-data-teal-300)';
|
|
565
|
-
|
|
566
|
-
/**
|
|
567
|
-
* @type {string}
|
|
568
|
-
*/
|
|
569
|
-
export const SynColorDataTeal400 = 'var(--syn-color-data-teal-400)';
|
|
570
|
-
|
|
571
|
-
/**
|
|
572
|
-
* @type {string}
|
|
573
|
-
*/
|
|
574
|
-
export const SynColorDataTeal500 = 'var(--syn-color-data-teal-500)';
|
|
575
|
-
|
|
576
|
-
/**
|
|
577
|
-
* @type {string}
|
|
578
|
-
*/
|
|
579
|
-
export const SynColorDataTeal600 = 'var(--syn-color-data-teal-600)';
|
|
580
|
-
|
|
581
|
-
/**
|
|
582
|
-
* @type {string}
|
|
583
|
-
*/
|
|
584
|
-
export const SynColorDataTeal700 = 'var(--syn-color-data-teal-700)';
|
|
585
|
-
|
|
586
|
-
/**
|
|
587
|
-
* @type {string}
|
|
588
|
-
*/
|
|
589
|
-
export const SynColorDataTeal800 = 'var(--syn-color-data-teal-800)';
|
|
590
|
-
|
|
591
|
-
/**
|
|
592
|
-
* @type {string}
|
|
593
|
-
*/
|
|
594
|
-
export const SynColorDataTeal900 = 'var(--syn-color-data-teal-900)';
|
|
595
|
-
|
|
596
|
-
/**
|
|
597
|
-
* @type {string}
|
|
598
|
-
*/
|
|
599
|
-
export const SynColorDataTeal950 = 'var(--syn-color-data-teal-950)';
|
|
600
|
-
|
|
601
|
-
/**
|
|
602
|
-
* @type {string}
|
|
603
|
-
*/
|
|
604
|
-
export const SynColorError50 = 'var(--syn-color-error-50)';
|
|
605
|
-
|
|
606
|
-
/**
|
|
607
|
-
* @type {string}
|
|
608
|
-
*/
|
|
609
|
-
export const SynColorError100 = 'var(--syn-color-error-100)';
|
|
610
|
-
|
|
611
|
-
/**
|
|
612
|
-
* @type {string}
|
|
613
|
-
*/
|
|
614
|
-
export const SynColorError200 = 'var(--syn-color-error-200)';
|
|
615
|
-
|
|
616
|
-
/**
|
|
617
|
-
* @type {string}
|
|
618
|
-
*/
|
|
619
|
-
export const SynColorError300 = 'var(--syn-color-error-300)';
|
|
620
|
-
|
|
621
|
-
/**
|
|
622
|
-
* @type {string}
|
|
623
|
-
*/
|
|
624
|
-
export const SynColorError400 = 'var(--syn-color-error-400)';
|
|
625
|
-
|
|
626
|
-
/**
|
|
627
|
-
* @type {string}
|
|
628
|
-
*/
|
|
629
|
-
export const SynColorError500 = 'var(--syn-color-error-500)';
|
|
630
|
-
|
|
631
|
-
/**
|
|
632
|
-
* @type {string}
|
|
633
|
-
*/
|
|
634
|
-
export const SynColorError600 = 'var(--syn-color-error-600)';
|
|
635
|
-
|
|
636
|
-
/**
|
|
637
|
-
* @type {string}
|
|
638
|
-
*/
|
|
639
|
-
export const SynColorError700 = 'var(--syn-color-error-700)';
|
|
640
|
-
|
|
641
|
-
/**
|
|
642
|
-
* @type {string}
|
|
643
|
-
*/
|
|
644
|
-
export const SynColorError800 = 'var(--syn-color-error-800)';
|
|
645
|
-
|
|
646
|
-
/**
|
|
647
|
-
* @type {string}
|
|
648
|
-
*/
|
|
649
|
-
export const SynColorError900 = 'var(--syn-color-error-900)';
|
|
650
|
-
|
|
651
|
-
/**
|
|
652
|
-
* @type {string}
|
|
653
|
-
*/
|
|
654
|
-
export const SynColorError950 = 'var(--syn-color-error-950)';
|
|
655
|
-
|
|
656
|
-
/**
|
|
657
|
-
* @type {string}
|
|
658
|
-
*/
|
|
659
|
-
export const SynColorInfo50 = 'var(--syn-color-info-50)';
|
|
660
|
-
|
|
661
|
-
/**
|
|
662
|
-
* @type {string}
|
|
663
|
-
*/
|
|
664
|
-
export const SynColorInfo100 = 'var(--syn-color-info-100)';
|
|
665
|
-
|
|
666
|
-
/**
|
|
667
|
-
* @type {string}
|
|
668
|
-
*/
|
|
669
|
-
export const SynColorInfo200 = 'var(--syn-color-info-200)';
|
|
670
|
-
|
|
671
|
-
/**
|
|
672
|
-
* @type {string}
|
|
673
|
-
*/
|
|
674
|
-
export const SynColorInfo300 = 'var(--syn-color-info-300)';
|
|
675
|
-
|
|
676
|
-
/**
|
|
677
|
-
* @type {string}
|
|
678
|
-
*/
|
|
679
|
-
export const SynColorInfo400 = 'var(--syn-color-info-400)';
|
|
680
|
-
|
|
681
|
-
/**
|
|
682
|
-
* @type {string}
|
|
683
|
-
*/
|
|
684
|
-
export const SynColorInfo500 = 'var(--syn-color-info-500)';
|
|
685
|
-
|
|
686
|
-
/**
|
|
687
|
-
* @type {string}
|
|
688
|
-
*/
|
|
689
|
-
export const SynColorInfo600 = 'var(--syn-color-info-600)';
|
|
690
|
-
|
|
691
|
-
/**
|
|
692
|
-
* @type {string}
|
|
693
|
-
*/
|
|
694
|
-
export const SynColorInfo700 = 'var(--syn-color-info-700)';
|
|
695
|
-
|
|
696
|
-
/**
|
|
697
|
-
* @type {string}
|
|
698
|
-
*/
|
|
699
|
-
export const SynColorInfo800 = 'var(--syn-color-info-800)';
|
|
700
|
-
|
|
701
|
-
/**
|
|
702
|
-
* @type {string}
|
|
703
|
-
*/
|
|
704
|
-
export const SynColorInfo900 = 'var(--syn-color-info-900)';
|
|
705
|
-
|
|
706
|
-
/**
|
|
707
|
-
* @type {string}
|
|
708
|
-
*/
|
|
709
|
-
export const SynColorInfo950 = 'var(--syn-color-info-950)';
|
|
710
|
-
|
|
711
|
-
/**
|
|
712
|
-
* @type {string}
|
|
713
|
-
*/
|
|
714
|
-
export const SynColorMuted50 = 'var(--syn-color-muted-50)';
|
|
715
|
-
|
|
716
|
-
/**
|
|
717
|
-
* @type {string}
|
|
718
|
-
*/
|
|
719
|
-
export const SynColorMuted100 = 'var(--syn-color-muted-100)';
|
|
720
|
-
|
|
721
|
-
/**
|
|
722
|
-
* @type {string}
|
|
723
|
-
*/
|
|
724
|
-
export const SynColorMuted200 = 'var(--syn-color-muted-200)';
|
|
725
|
-
|
|
726
|
-
/**
|
|
727
|
-
* @type {string}
|
|
728
|
-
*/
|
|
729
|
-
export const SynColorMuted300 = 'var(--syn-color-muted-300)';
|
|
730
|
-
|
|
731
|
-
/**
|
|
732
|
-
* @type {string}
|
|
733
|
-
*/
|
|
734
|
-
export const SynColorMuted400 = 'var(--syn-color-muted-400)';
|
|
735
|
-
|
|
736
|
-
/**
|
|
737
|
-
* @type {string}
|
|
738
|
-
*/
|
|
739
|
-
export const SynColorMuted500 = 'var(--syn-color-muted-500)';
|
|
740
|
-
|
|
741
|
-
/**
|
|
742
|
-
* @type {string}
|
|
743
|
-
*/
|
|
744
|
-
export const SynColorMuted600 = 'var(--syn-color-muted-600)';
|
|
745
|
-
|
|
746
|
-
/**
|
|
747
|
-
* @type {string}
|
|
748
|
-
*/
|
|
749
|
-
export const SynColorMuted700 = 'var(--syn-color-muted-700)';
|
|
750
|
-
|
|
751
|
-
/**
|
|
752
|
-
* @type {string}
|
|
753
|
-
*/
|
|
754
|
-
export const SynColorMuted800 = 'var(--syn-color-muted-800)';
|
|
755
|
-
|
|
756
|
-
/**
|
|
757
|
-
* @type {string}
|
|
758
|
-
*/
|
|
759
|
-
export const SynColorMuted900 = 'var(--syn-color-muted-900)';
|
|
760
|
-
|
|
761
|
-
/**
|
|
762
|
-
* @type {string}
|
|
763
|
-
*/
|
|
764
|
-
export const SynColorMuted950 = 'var(--syn-color-muted-950)';
|
|
765
|
-
|
|
766
|
-
/**
|
|
767
|
-
* @type {string}
|
|
768
|
-
*/
|
|
769
|
-
export const SynColorNeutral0 = 'var(--syn-color-neutral-0)';
|
|
770
|
-
|
|
771
|
-
/**
|
|
772
|
-
* @type {string}
|
|
773
|
-
*/
|
|
774
|
-
export const SynColorNeutral50 = 'var(--syn-color-neutral-50)';
|
|
775
|
-
|
|
776
|
-
/**
|
|
777
|
-
* @type {string}
|
|
778
|
-
*/
|
|
779
|
-
export const SynColorNeutral100 = 'var(--syn-color-neutral-100)';
|
|
780
|
-
|
|
781
|
-
/**
|
|
782
|
-
* @type {string}
|
|
783
|
-
*/
|
|
784
|
-
export const SynColorNeutral200 = 'var(--syn-color-neutral-200)';
|
|
785
|
-
|
|
786
|
-
/**
|
|
787
|
-
* @type {string}
|
|
788
|
-
*/
|
|
789
|
-
export const SynColorNeutral300 = 'var(--syn-color-neutral-300)';
|
|
790
|
-
|
|
791
|
-
/**
|
|
792
|
-
* @type {string}
|
|
793
|
-
*/
|
|
794
|
-
export const SynColorNeutral400 = 'var(--syn-color-neutral-400)';
|
|
795
|
-
|
|
796
|
-
/**
|
|
797
|
-
* @type {string}
|
|
798
|
-
*/
|
|
799
|
-
export const SynColorNeutral500 = 'var(--syn-color-neutral-500)';
|
|
800
|
-
|
|
801
|
-
/**
|
|
802
|
-
* @type {string}
|
|
803
|
-
*/
|
|
804
|
-
export const SynColorNeutral600 = 'var(--syn-color-neutral-600)';
|
|
805
|
-
|
|
806
|
-
/**
|
|
807
|
-
* @type {string}
|
|
808
|
-
*/
|
|
809
|
-
export const SynColorNeutral700 = 'var(--syn-color-neutral-700)';
|
|
810
|
-
|
|
811
|
-
/**
|
|
812
|
-
* @type {string}
|
|
813
|
-
*/
|
|
814
|
-
export const SynColorNeutral800 = 'var(--syn-color-neutral-800)';
|
|
815
|
-
|
|
816
|
-
/**
|
|
817
|
-
* @type {string}
|
|
818
|
-
*/
|
|
819
|
-
export const SynColorNeutral900 = 'var(--syn-color-neutral-900)';
|
|
820
|
-
|
|
821
|
-
/**
|
|
822
|
-
* @type {string}
|
|
823
|
-
*/
|
|
824
|
-
export const SynColorNeutral950 = 'var(--syn-color-neutral-950)';
|
|
825
|
-
|
|
826
|
-
/**
|
|
827
|
-
* @type {string}
|
|
828
|
-
*/
|
|
829
|
-
export const SynColorNeutral1000 = 'var(--syn-color-neutral-1000)';
|
|
830
|
-
|
|
831
|
-
/**
|
|
832
|
-
* @type {string}
|
|
833
|
-
*/
|
|
834
|
-
export const SynColorPrimary50 = 'var(--syn-color-primary-50)';
|
|
835
|
-
|
|
836
|
-
/**
|
|
837
|
-
* @type {string}
|
|
838
|
-
*/
|
|
839
|
-
export const SynColorPrimary100 = 'var(--syn-color-primary-100)';
|
|
840
|
-
|
|
841
|
-
/**
|
|
842
|
-
* @type {string}
|
|
843
|
-
*/
|
|
844
|
-
export const SynColorPrimary200 = 'var(--syn-color-primary-200)';
|
|
845
|
-
|
|
846
|
-
/**
|
|
847
|
-
* @type {string}
|
|
848
|
-
*/
|
|
849
|
-
export const SynColorPrimary300 = 'var(--syn-color-primary-300)';
|
|
850
|
-
|
|
851
|
-
/**
|
|
852
|
-
* @type {string}
|
|
853
|
-
*/
|
|
854
|
-
export const SynColorPrimary400 = 'var(--syn-color-primary-400)';
|
|
855
|
-
|
|
856
|
-
/**
|
|
857
|
-
* @type {string}
|
|
858
|
-
*/
|
|
859
|
-
export const SynColorPrimary500 = 'var(--syn-color-primary-500)';
|
|
860
|
-
|
|
861
|
-
/**
|
|
862
|
-
* @type {string}
|
|
863
|
-
*/
|
|
864
|
-
export const SynColorPrimary600 = 'var(--syn-color-primary-600)';
|
|
865
|
-
|
|
866
|
-
/**
|
|
867
|
-
* @type {string}
|
|
868
|
-
*/
|
|
869
|
-
export const SynColorPrimary700 = 'var(--syn-color-primary-700)';
|
|
870
|
-
|
|
871
|
-
/**
|
|
872
|
-
* @type {string}
|
|
873
|
-
*/
|
|
874
|
-
export const SynColorPrimary800 = 'var(--syn-color-primary-800)';
|
|
875
|
-
|
|
876
|
-
/**
|
|
877
|
-
* @type {string}
|
|
878
|
-
*/
|
|
879
|
-
export const SynColorPrimary900 = 'var(--syn-color-primary-900)';
|
|
880
|
-
|
|
881
|
-
/**
|
|
882
|
-
* @type {string}
|
|
883
|
-
*/
|
|
884
|
-
export const SynColorPrimary950 = 'var(--syn-color-primary-950)';
|
|
885
|
-
|
|
886
|
-
/**
|
|
887
|
-
* @type {string}
|
|
888
|
-
*/
|
|
889
|
-
export const SynColorPrimary1000 = 'var(--syn-color-primary-1000)';
|
|
890
|
-
|
|
891
|
-
/**
|
|
892
|
-
* @type {string}
|
|
893
|
-
*/
|
|
894
|
-
export const SynColorSuccess50 = 'var(--syn-color-success-50)';
|
|
895
|
-
|
|
896
|
-
/**
|
|
897
|
-
* @type {string}
|
|
898
|
-
*/
|
|
899
|
-
export const SynColorSuccess100 = 'var(--syn-color-success-100)';
|
|
900
|
-
|
|
901
|
-
/**
|
|
902
|
-
* @type {string}
|
|
903
|
-
*/
|
|
904
|
-
export const SynColorSuccess200 = 'var(--syn-color-success-200)';
|
|
905
|
-
|
|
906
|
-
/**
|
|
907
|
-
* @type {string}
|
|
908
|
-
*/
|
|
909
|
-
export const SynColorSuccess300 = 'var(--syn-color-success-300)';
|
|
910
|
-
|
|
911
|
-
/**
|
|
912
|
-
* @type {string}
|
|
913
|
-
*/
|
|
914
|
-
export const SynColorSuccess400 = 'var(--syn-color-success-400)';
|
|
915
|
-
|
|
916
|
-
/**
|
|
917
|
-
* @type {string}
|
|
918
|
-
*/
|
|
919
|
-
export const SynColorSuccess500 = 'var(--syn-color-success-500)';
|
|
920
|
-
|
|
921
|
-
/**
|
|
922
|
-
* @type {string}
|
|
923
|
-
*/
|
|
924
|
-
export const SynColorSuccess600 = 'var(--syn-color-success-600)';
|
|
925
|
-
|
|
926
|
-
/**
|
|
927
|
-
* @type {string}
|
|
928
|
-
*/
|
|
929
|
-
export const SynColorSuccess700 = 'var(--syn-color-success-700)';
|
|
930
|
-
|
|
931
|
-
/**
|
|
932
|
-
* @type {string}
|
|
933
|
-
*/
|
|
934
|
-
export const SynColorSuccess800 = 'var(--syn-color-success-800)';
|
|
935
|
-
|
|
936
|
-
/**
|
|
937
|
-
* @type {string}
|
|
938
|
-
*/
|
|
939
|
-
export const SynColorSuccess900 = 'var(--syn-color-success-900)';
|
|
940
|
-
|
|
941
|
-
/**
|
|
942
|
-
* @type {string}
|
|
943
|
-
*/
|
|
944
|
-
export const SynColorSuccess950 = 'var(--syn-color-success-950)';
|
|
945
|
-
|
|
946
|
-
/**
|
|
947
|
-
* @type {string}
|
|
948
|
-
*/
|
|
949
|
-
export const SynColorWarning50 = 'var(--syn-color-warning-50)';
|
|
950
|
-
|
|
951
|
-
/**
|
|
952
|
-
* @type {string}
|
|
953
|
-
*/
|
|
954
|
-
export const SynColorWarning100 = 'var(--syn-color-warning-100)';
|
|
955
|
-
|
|
956
|
-
/**
|
|
957
|
-
* @type {string}
|
|
958
|
-
*/
|
|
959
|
-
export const SynColorWarning200 = 'var(--syn-color-warning-200)';
|
|
960
|
-
|
|
961
|
-
/**
|
|
962
|
-
* @type {string}
|
|
963
|
-
*/
|
|
964
|
-
export const SynColorWarning300 = 'var(--syn-color-warning-300)';
|
|
965
|
-
|
|
966
|
-
/**
|
|
967
|
-
* @type {string}
|
|
968
|
-
*/
|
|
969
|
-
export const SynColorWarning400 = 'var(--syn-color-warning-400)';
|
|
970
|
-
|
|
971
|
-
/**
|
|
972
|
-
* @type {string}
|
|
973
|
-
*/
|
|
974
|
-
export const SynColorWarning500 = 'var(--syn-color-warning-500)';
|
|
975
|
-
|
|
976
|
-
/**
|
|
977
|
-
* @type {string}
|
|
978
|
-
*/
|
|
979
|
-
export const SynColorWarning600 = 'var(--syn-color-warning-600)';
|
|
980
|
-
|
|
981
|
-
/**
|
|
982
|
-
* @type {string}
|
|
983
|
-
*/
|
|
984
|
-
export const SynColorWarning700 = 'var(--syn-color-warning-700)';
|
|
985
|
-
|
|
986
|
-
/**
|
|
987
|
-
* @type {string}
|
|
988
|
-
*/
|
|
989
|
-
export const SynColorWarning800 = 'var(--syn-color-warning-800)';
|
|
990
|
-
|
|
991
|
-
/**
|
|
992
|
-
* @type {string}
|
|
993
|
-
*/
|
|
994
|
-
export const SynColorWarning900 = 'var(--syn-color-warning-900)';
|
|
995
|
-
|
|
996
|
-
/**
|
|
997
|
-
* @type {string}
|
|
998
|
-
*/
|
|
999
|
-
export const SynColorWarning950 = 'var(--syn-color-warning-950)';
|
|
1000
|
-
|
|
1001
|
-
/**
|
|
1002
|
-
* @type {string}
|
|
1003
|
-
*/
|
|
1004
|
-
export const SynDetailsOpenRotation = 'var(--syn-details-open-rotation)';
|
|
1005
|
-
|
|
1006
|
-
/**
|
|
1007
|
-
* @type {string}
|
|
1008
|
-
*/
|
|
1009
|
-
export const SynDimensionBase = 'var(--syn-dimension-base)';
|
|
1010
|
-
|
|
1011
|
-
/**
|
|
1012
|
-
* @type {string}
|
|
1013
|
-
*/
|
|
1014
|
-
export const SynDurationExtraFast = 'var(--syn-duration-extra-fast)';
|
|
1015
|
-
|
|
1016
|
-
/**
|
|
1017
|
-
* @type {string}
|
|
1018
|
-
*/
|
|
1019
|
-
export const SynDurationExtraSlow = 'var(--syn-duration-extra-slow)';
|
|
1020
|
-
|
|
1021
|
-
/**
|
|
1022
|
-
* @type {string}
|
|
1023
|
-
*/
|
|
1024
|
-
export const SynDurationFast = 'var(--syn-duration-fast)';
|
|
1025
|
-
|
|
1026
|
-
/**
|
|
1027
|
-
* @type {string}
|
|
1028
|
-
*/
|
|
1029
|
-
export const SynDurationNormal = 'var(--syn-duration-normal)';
|
|
1030
|
-
|
|
1031
|
-
/**
|
|
1032
|
-
* @type {string}
|
|
1033
|
-
*/
|
|
1034
|
-
export const SynDurationSlow = 'var(--syn-duration-slow)';
|
|
1035
|
-
|
|
1036
|
-
/**
|
|
1037
|
-
* @type {string}
|
|
1038
|
-
*/
|
|
1039
|
-
export const SynFocusRingBorderRadius = 'var(--syn-focus-ring-border-radius)';
|
|
1040
|
-
|
|
1041
|
-
/**
|
|
1042
|
-
* @type {string}
|
|
1043
|
-
*/
|
|
1044
|
-
export const SynFocusRingColor = 'var(--syn-focus-ring-color)';
|
|
1045
|
-
|
|
1046
|
-
/**
|
|
1047
|
-
* @type {string}
|
|
1048
|
-
*/
|
|
1049
|
-
export const SynFocusRingOffset = 'var(--syn-focus-ring-offset)';
|
|
1050
|
-
|
|
1051
|
-
/**
|
|
1052
|
-
* @type {string}
|
|
1053
|
-
*/
|
|
1054
|
-
export const SynFocusRingStyle = 'var(--syn-focus-ring-style)';
|
|
1055
|
-
|
|
1056
|
-
/**
|
|
1057
|
-
* @type {string}
|
|
1058
|
-
*/
|
|
1059
|
-
export const SynFocusRingWidth = 'var(--syn-focus-ring-width)';
|
|
1060
|
-
|
|
1061
|
-
/**
|
|
1062
|
-
* @type {string}
|
|
1063
|
-
*/
|
|
1064
|
-
export const SynFontMono = 'var(--syn-font-mono)';
|
|
1065
|
-
|
|
1066
|
-
/**
|
|
1067
|
-
* @type {string}
|
|
1068
|
-
*/
|
|
1069
|
-
export const SynFontSans = 'var(--syn-font-sans)';
|
|
1070
|
-
|
|
1071
|
-
/**
|
|
1072
|
-
* @type {string}
|
|
1073
|
-
*/
|
|
1074
|
-
export const SynFontSansFallback = 'var(--syn-font-sans-fallback)';
|
|
1075
|
-
|
|
1076
|
-
/**
|
|
1077
|
-
* @type {string}
|
|
1078
|
-
*/
|
|
1079
|
-
export const SynFontSerif = 'var(--syn-font-serif)';
|
|
1080
|
-
|
|
1081
|
-
/**
|
|
1082
|
-
* @type {string}
|
|
1083
|
-
*/
|
|
1084
|
-
export const SynFontSize2xLarge = 'var(--syn-font-size-2x-large)';
|
|
1085
|
-
|
|
1086
|
-
/**
|
|
1087
|
-
* @type {string}
|
|
1088
|
-
*/
|
|
1089
|
-
export const SynFontSize2xSmall = 'var(--syn-font-size-2x-small)';
|
|
1090
|
-
|
|
1091
|
-
/**
|
|
1092
|
-
* @type {string}
|
|
1093
|
-
*/
|
|
1094
|
-
export const SynFontSize3xLarge = 'var(--syn-font-size-3x-large)';
|
|
1095
|
-
|
|
1096
|
-
/**
|
|
1097
|
-
* @type {string}
|
|
1098
|
-
*/
|
|
1099
|
-
export const SynFontSize4xLarge = 'var(--syn-font-size-4x-large)';
|
|
1100
|
-
|
|
1101
|
-
/**
|
|
1102
|
-
* @type {string}
|
|
1103
|
-
*/
|
|
1104
|
-
export const SynFontSizeLarge = 'var(--syn-font-size-large)';
|
|
1105
|
-
|
|
1106
|
-
/**
|
|
1107
|
-
* @type {string}
|
|
1108
|
-
*/
|
|
1109
|
-
export const SynFontSizeMedium = 'var(--syn-font-size-medium)';
|
|
1110
|
-
|
|
1111
|
-
/**
|
|
1112
|
-
* @type {string}
|
|
1113
|
-
*/
|
|
1114
|
-
export const SynFontSizeSmall = 'var(--syn-font-size-small)';
|
|
1115
|
-
|
|
1116
|
-
/**
|
|
1117
|
-
* @type {string}
|
|
1118
|
-
*/
|
|
1119
|
-
export const SynFontSizeXLarge = 'var(--syn-font-size-x-large)';
|
|
1120
|
-
|
|
1121
|
-
/**
|
|
1122
|
-
* @type {string}
|
|
1123
|
-
*/
|
|
1124
|
-
export const SynFontSizeXSmall = 'var(--syn-font-size-x-small)';
|
|
1125
|
-
|
|
1126
|
-
/**
|
|
1127
|
-
* @type {string}
|
|
1128
|
-
*/
|
|
1129
|
-
export const SynFontWeightBold = 'var(--syn-font-weight-bold)';
|
|
1130
|
-
|
|
1131
|
-
/**
|
|
1132
|
-
* @type {string}
|
|
1133
|
-
*/
|
|
1134
|
-
export const SynFontWeightLight = 'var(--syn-font-weight-light)';
|
|
1135
|
-
|
|
1136
|
-
/**
|
|
1137
|
-
* @type {string}
|
|
1138
|
-
*/
|
|
1139
|
-
export const SynFontWeightNormal = 'var(--syn-font-weight-normal)';
|
|
1140
|
-
|
|
1141
|
-
/**
|
|
1142
|
-
* @type {string}
|
|
1143
|
-
*/
|
|
1144
|
-
export const SynFontWeightSemibold = 'var(--syn-font-weight-semibold)';
|
|
1145
|
-
|
|
1146
|
-
/**
|
|
1147
|
-
* @type {string}
|
|
1148
|
-
*/
|
|
1149
|
-
export const SynHeaderBorderColor = 'var(--syn-header-border-color)';
|
|
1150
|
-
|
|
1151
|
-
/**
|
|
1152
|
-
* @type {string}
|
|
1153
|
-
*/
|
|
1154
|
-
export const SynIconButtonFocusRingBorderRadius = 'var(--syn-icon-button-focus-ring-border-radius)';
|
|
1155
|
-
|
|
1156
|
-
/**
|
|
1157
|
-
* @type {string}
|
|
1158
|
-
*/
|
|
1159
|
-
export const SynInputBackgroundColor = 'var(--syn-input-background-color)';
|
|
1160
|
-
|
|
1161
|
-
/**
|
|
1162
|
-
* @type {string}
|
|
1163
|
-
*/
|
|
1164
|
-
export const SynInputBackgroundColorDisabled = 'var(--syn-input-background-color-disabled)';
|
|
1165
|
-
|
|
1166
|
-
/**
|
|
1167
|
-
* @type {string}
|
|
1168
|
-
*/
|
|
1169
|
-
export const SynInputBackgroundColorFocus = 'var(--syn-input-background-color-focus)';
|
|
1170
|
-
|
|
1171
|
-
/**
|
|
1172
|
-
* @type {string}
|
|
1173
|
-
*/
|
|
1174
|
-
export const SynInputBackgroundColorHover = 'var(--syn-input-background-color-hover)';
|
|
1175
|
-
|
|
1176
|
-
/**
|
|
1177
|
-
* @type {string}
|
|
1178
|
-
*/
|
|
1179
|
-
export const SynInputBorderColor = 'var(--syn-input-border-color)';
|
|
1180
|
-
|
|
1181
|
-
/**
|
|
1182
|
-
* @type {string}
|
|
1183
|
-
*/
|
|
1184
|
-
export const SynInputBorderColorActive = 'var(--syn-input-border-color-active)';
|
|
1185
|
-
|
|
1186
|
-
/**
|
|
1187
|
-
* @type {string}
|
|
1188
|
-
*/
|
|
1189
|
-
export const SynInputBorderColorDisabled = 'var(--syn-input-border-color-disabled)';
|
|
1190
|
-
|
|
1191
|
-
/**
|
|
1192
|
-
* @type {string}
|
|
1193
|
-
*/
|
|
1194
|
-
export const SynInputBorderColorFocus = 'var(--syn-input-border-color-focus)';
|
|
1195
|
-
|
|
1196
|
-
/**
|
|
1197
|
-
* @type {string}
|
|
1198
|
-
*/
|
|
1199
|
-
export const SynInputBorderColorFocusError = 'var(--syn-input-border-color-focus-error)';
|
|
1200
|
-
|
|
1201
|
-
/**
|
|
1202
|
-
* @type {string}
|
|
1203
|
-
*/
|
|
1204
|
-
export const SynInputBorderColorHover = 'var(--syn-input-border-color-hover)';
|
|
1205
|
-
|
|
1206
|
-
/**
|
|
1207
|
-
* @type {string}
|
|
1208
|
-
*/
|
|
1209
|
-
export const SynInputBorderColorOffset = 'var(--syn-input-border-color-offset)';
|
|
1210
|
-
|
|
1211
|
-
/**
|
|
1212
|
-
* @type {string}
|
|
1213
|
-
*/
|
|
1214
|
-
export const SynInputBorderRadiusLarge = 'var(--syn-input-border-radius-large)';
|
|
1215
|
-
|
|
1216
|
-
/**
|
|
1217
|
-
* @type {string}
|
|
1218
|
-
*/
|
|
1219
|
-
export const SynInputBorderRadiusMedium = 'var(--syn-input-border-radius-medium)';
|
|
1220
|
-
|
|
1221
|
-
/**
|
|
1222
|
-
* @type {string}
|
|
1223
|
-
*/
|
|
1224
|
-
export const SynInputBorderRadiusSmall = 'var(--syn-input-border-radius-small)';
|
|
1225
|
-
|
|
1226
|
-
/**
|
|
1227
|
-
* @type {string}
|
|
1228
|
-
*/
|
|
1229
|
-
export const SynInputBorderWidth = 'var(--syn-input-border-width)';
|
|
1230
|
-
|
|
1231
|
-
/**
|
|
1232
|
-
* @type {string}
|
|
1233
|
-
*/
|
|
1234
|
-
export const SynInputColor = 'var(--syn-input-color)';
|
|
1235
|
-
|
|
1236
|
-
/**
|
|
1237
|
-
* @type {string}
|
|
1238
|
-
*/
|
|
1239
|
-
export const SynInputColorDisabled = 'var(--syn-input-color-disabled)';
|
|
1240
|
-
|
|
1241
|
-
/**
|
|
1242
|
-
* @type {string}
|
|
1243
|
-
*/
|
|
1244
|
-
export const SynInputColorFocus = 'var(--syn-input-color-focus)';
|
|
1245
|
-
|
|
1246
|
-
/**
|
|
1247
|
-
* @type {string}
|
|
1248
|
-
*/
|
|
1249
|
-
export const SynInputColorHover = 'var(--syn-input-color-hover)';
|
|
1250
|
-
|
|
1251
|
-
/**
|
|
1252
|
-
* @type {string}
|
|
1253
|
-
*/
|
|
1254
|
-
export const SynInputDisabledOpacity = 'var(--syn-input-disabled-opacity)';
|
|
1255
|
-
|
|
1256
|
-
/**
|
|
1257
|
-
* @type {string}
|
|
1258
|
-
*/
|
|
1259
|
-
export const SynInputFocusRingColor = 'var(--syn-input-focus-ring-color)';
|
|
1260
|
-
|
|
1261
|
-
/**
|
|
1262
|
-
* @type {string}
|
|
1263
|
-
*/
|
|
1264
|
-
export const SynInputFocusRingError = 'var(--syn-input-focus-ring-error)';
|
|
1265
|
-
|
|
1266
|
-
/**
|
|
1267
|
-
* @type {string}
|
|
1268
|
-
*/
|
|
1269
|
-
export const SynInputFocusRingOffset = 'var(--syn-input-focus-ring-offset)';
|
|
1270
|
-
|
|
1271
|
-
/**
|
|
1272
|
-
* @type {string}
|
|
1273
|
-
*/
|
|
1274
|
-
export const SynInputFontFamily = 'var(--syn-input-font-family)';
|
|
1275
|
-
|
|
1276
|
-
/**
|
|
1277
|
-
* @type {string}
|
|
1278
|
-
*/
|
|
1279
|
-
export const SynInputFontSizeLarge = 'var(--syn-input-font-size-large)';
|
|
1280
|
-
|
|
1281
|
-
/**
|
|
1282
|
-
* @type {string}
|
|
1283
|
-
*/
|
|
1284
|
-
export const SynInputFontSizeMedium = 'var(--syn-input-font-size-medium)';
|
|
1285
|
-
|
|
1286
|
-
/**
|
|
1287
|
-
* @type {string}
|
|
1288
|
-
*/
|
|
1289
|
-
export const SynInputFontSizeSmall = 'var(--syn-input-font-size-small)';
|
|
1290
|
-
|
|
1291
|
-
/**
|
|
1292
|
-
* @type {string}
|
|
1293
|
-
*/
|
|
1294
|
-
export const SynInputFontWeight = 'var(--syn-input-font-weight)';
|
|
1295
|
-
|
|
1296
|
-
/**
|
|
1297
|
-
* @type {string}
|
|
1298
|
-
*/
|
|
1299
|
-
export const SynInputHeightLarge = 'var(--syn-input-height-large)';
|
|
1300
|
-
|
|
1301
|
-
/**
|
|
1302
|
-
* @type {string}
|
|
1303
|
-
*/
|
|
1304
|
-
export const SynInputHeightMedium = 'var(--syn-input-height-medium)';
|
|
1305
|
-
|
|
1306
|
-
/**
|
|
1307
|
-
* @type {string}
|
|
1308
|
-
*/
|
|
1309
|
-
export const SynInputHeightSmall = 'var(--syn-input-height-small)';
|
|
1310
|
-
|
|
1311
|
-
/**
|
|
1312
|
-
* @type {string}
|
|
1313
|
-
*/
|
|
1314
|
-
export const SynInputHelpTextColor = 'var(--syn-input-help-text-color)';
|
|
1315
|
-
|
|
1316
|
-
/**
|
|
1317
|
-
* @type {string}
|
|
1318
|
-
*/
|
|
1319
|
-
export const SynInputHelpTextColorError = 'var(--syn-input-help-text-color-error)';
|
|
1320
|
-
|
|
1321
|
-
/**
|
|
1322
|
-
* @type {string}
|
|
1323
|
-
*/
|
|
1324
|
-
export const SynInputHelpTextFontSizeLarge = 'var(--syn-input-help-text-font-size-large)';
|
|
1325
|
-
|
|
1326
|
-
/**
|
|
1327
|
-
* @type {string}
|
|
1328
|
-
*/
|
|
1329
|
-
export const SynInputHelpTextFontSizeMedium = 'var(--syn-input-help-text-font-size-medium)';
|
|
1330
|
-
|
|
1331
|
-
/**
|
|
1332
|
-
* @type {string}
|
|
1333
|
-
*/
|
|
1334
|
-
export const SynInputHelpTextFontSizeSmall = 'var(--syn-input-help-text-font-size-small)';
|
|
1335
|
-
|
|
1336
|
-
/**
|
|
1337
|
-
* @type {string}
|
|
1338
|
-
*/
|
|
1339
|
-
export const SynInputIconColor = 'var(--syn-input-icon-color)';
|
|
1340
|
-
|
|
1341
|
-
/**
|
|
1342
|
-
* @type {string}
|
|
1343
|
-
*/
|
|
1344
|
-
export const SynInputIconColorHover = 'var(--syn-input-icon-color-hover)';
|
|
1345
|
-
|
|
1346
|
-
/**
|
|
1347
|
-
* @type {string}
|
|
1348
|
-
*/
|
|
1349
|
-
export const SynInputIconIconClearableColor = 'var(--syn-input-icon-icon-clearable-color)';
|
|
1350
|
-
|
|
1351
|
-
/**
|
|
1352
|
-
* @type {string}
|
|
1353
|
-
*/
|
|
1354
|
-
export const SynInputIconIconClearableColorActive = 'var(--syn-input-icon-icon-clearable-color-active)';
|
|
1355
|
-
|
|
1356
|
-
/**
|
|
1357
|
-
* @type {string}
|
|
1358
|
-
*/
|
|
1359
|
-
export const SynInputIconIconClearableColorHover = 'var(--syn-input-icon-icon-clearable-color-hover)';
|
|
1360
|
-
|
|
1361
|
-
/**
|
|
1362
|
-
* @type {string}
|
|
1363
|
-
*/
|
|
1364
|
-
export const SynInputLabelColor = 'var(--syn-input-label-color)';
|
|
1365
|
-
|
|
1366
|
-
/**
|
|
1367
|
-
* @type {string}
|
|
1368
|
-
*/
|
|
1369
|
-
export const SynInputLabelFontSizeLarge = 'var(--syn-input-label-font-size-large)';
|
|
1370
|
-
|
|
1371
|
-
/**
|
|
1372
|
-
* @type {string}
|
|
1373
|
-
*/
|
|
1374
|
-
export const SynInputLabelFontSizeMedium = 'var(--syn-input-label-font-size-medium)';
|
|
1375
|
-
|
|
1376
|
-
/**
|
|
1377
|
-
* @type {string}
|
|
1378
|
-
*/
|
|
1379
|
-
export const SynInputLabelFontSizeSmall = 'var(--syn-input-label-font-size-small)';
|
|
1380
|
-
|
|
1381
|
-
/**
|
|
1382
|
-
* @type {string}
|
|
1383
|
-
*/
|
|
1384
|
-
export const SynInputLetterSpacing = 'var(--syn-input-letter-spacing)';
|
|
1385
|
-
|
|
1386
|
-
/**
|
|
1387
|
-
* @type {string}
|
|
1388
|
-
*/
|
|
1389
|
-
export const SynInputPlaceholderColor = 'var(--syn-input-placeholder-color)';
|
|
1390
|
-
|
|
1391
|
-
/**
|
|
1392
|
-
* @type {string}
|
|
1393
|
-
*/
|
|
1394
|
-
export const SynInputPlaceholderColorDisabled = 'var(--syn-input-placeholder-color-disabled)';
|
|
1395
|
-
|
|
1396
|
-
/**
|
|
1397
|
-
* @type {string}
|
|
1398
|
-
*/
|
|
1399
|
-
export const SynInputReadonlyColorHover = 'var(--syn-input-readonly-color-hover)';
|
|
1400
|
-
|
|
1401
|
-
/**
|
|
1402
|
-
* @type {string}
|
|
1403
|
-
*/
|
|
1404
|
-
export const SynInputReadonlyBackgroundColor = 'var(--syn-input-readonly-background-color)';
|
|
1405
|
-
|
|
1406
|
-
/**
|
|
1407
|
-
* @type {string}
|
|
1408
|
-
*/
|
|
1409
|
-
export const SynInputReadonlyBackgroundColorDisabled = 'var(--syn-input-readonly-background-color-disabled)';
|
|
1410
|
-
|
|
1411
|
-
/**
|
|
1412
|
-
* @type {string}
|
|
1413
|
-
*/
|
|
1414
|
-
export const SynInputReadonlyBackgroundColorFocus = 'var(--syn-input-readonly-background-color-focus)';
|
|
1415
|
-
|
|
1416
|
-
/**
|
|
1417
|
-
* @type {string}
|
|
1418
|
-
*/
|
|
1419
|
-
export const SynInputReadonlyBackgroundColorHover = 'var(--syn-input-readonly-background-color-hover)';
|
|
1420
|
-
|
|
1421
|
-
/**
|
|
1422
|
-
* @type {string}
|
|
1423
|
-
*/
|
|
1424
|
-
export const SynInputRequiredContent = 'var(--syn-input-required-content)';
|
|
1425
|
-
|
|
1426
|
-
/**
|
|
1427
|
-
* @type {string}
|
|
1428
|
-
*/
|
|
1429
|
-
export const SynInputRequiredContentColor = 'var(--syn-input-required-content-color)';
|
|
1430
|
-
|
|
1431
|
-
/**
|
|
1432
|
-
* @type {string}
|
|
1433
|
-
*/
|
|
1434
|
-
export const SynInputRequiredContentOffset = 'var(--syn-input-required-content-offset)';
|
|
1435
|
-
|
|
1436
|
-
/**
|
|
1437
|
-
* @type {string}
|
|
1438
|
-
*/
|
|
1439
|
-
export const SynInputSpacingLarge = 'var(--syn-input-spacing-large)';
|
|
1440
|
-
|
|
1441
|
-
/**
|
|
1442
|
-
* @type {string}
|
|
1443
|
-
*/
|
|
1444
|
-
export const SynInputSpacingMedium = 'var(--syn-input-spacing-medium)';
|
|
1445
|
-
|
|
1446
|
-
/**
|
|
1447
|
-
* @type {string}
|
|
1448
|
-
*/
|
|
1449
|
-
export const SynInputSpacingSmall = 'var(--syn-input-spacing-small)';
|
|
1450
|
-
|
|
1451
|
-
/**
|
|
1452
|
-
* @type {string}
|
|
1453
|
-
*/
|
|
1454
|
-
export const SynInputWidth = 'var(--syn-input-width)';
|
|
1455
|
-
|
|
1456
|
-
/**
|
|
1457
|
-
* @type {string}
|
|
1458
|
-
*/
|
|
1459
|
-
export const SynInteractiveBackgroundColorActive = 'var(--syn-interactive-background-color-active)';
|
|
1460
|
-
|
|
1461
|
-
/**
|
|
1462
|
-
* @type {string}
|
|
1463
|
-
*/
|
|
1464
|
-
export const SynInteractiveBackgroundColorHover = 'var(--syn-interactive-background-color-hover)';
|
|
1465
|
-
|
|
1466
|
-
/**
|
|
1467
|
-
* @type {string}
|
|
1468
|
-
*/
|
|
1469
|
-
export const SynInteractiveEmphasisColor = 'var(--syn-interactive-emphasis-color)';
|
|
1470
|
-
|
|
1471
|
-
/**
|
|
1472
|
-
* @type {string}
|
|
1473
|
-
*/
|
|
1474
|
-
export const SynInteractiveEmphasisColorActive = 'var(--syn-interactive-emphasis-color-active)';
|
|
1475
|
-
|
|
1476
|
-
/**
|
|
1477
|
-
* @type {string}
|
|
1478
|
-
*/
|
|
1479
|
-
export const SynInteractiveEmphasisColorHover = 'var(--syn-interactive-emphasis-color-hover)';
|
|
1480
|
-
|
|
1481
|
-
/**
|
|
1482
|
-
* @type {string}
|
|
1483
|
-
*/
|
|
1484
|
-
export const SynInteractiveQuietColor = 'var(--syn-interactive-quiet-color)';
|
|
1485
|
-
|
|
1486
|
-
/**
|
|
1487
|
-
* @type {string}
|
|
1488
|
-
*/
|
|
1489
|
-
export const SynInteractiveQuietColorActive = 'var(--syn-interactive-quiet-color-active)';
|
|
1490
|
-
|
|
1491
|
-
/**
|
|
1492
|
-
* @type {string}
|
|
1493
|
-
*/
|
|
1494
|
-
export const SynInteractiveQuietColorHover = 'var(--syn-interactive-quiet-color-hover)';
|
|
1495
|
-
|
|
1496
|
-
/**
|
|
1497
|
-
* @type {string}
|
|
1498
|
-
*/
|
|
1499
|
-
export const SynLetterSpacingDense = 'var(--syn-letter-spacing-dense)';
|
|
1500
|
-
|
|
1501
|
-
/**
|
|
1502
|
-
* @type {string}
|
|
1503
|
-
*/
|
|
1504
|
-
export const SynLetterSpacingDenser = 'var(--syn-letter-spacing-denser)';
|
|
1505
|
-
|
|
1506
|
-
/**
|
|
1507
|
-
* @type {string}
|
|
1508
|
-
*/
|
|
1509
|
-
export const SynLetterSpacingLoose = 'var(--syn-letter-spacing-loose)';
|
|
1510
|
-
|
|
1511
|
-
/**
|
|
1512
|
-
* @type {string}
|
|
1513
|
-
*/
|
|
1514
|
-
export const SynLetterSpacingLooser = 'var(--syn-letter-spacing-looser)';
|
|
1515
|
-
|
|
1516
|
-
/**
|
|
1517
|
-
* @type {string}
|
|
1518
|
-
*/
|
|
1519
|
-
export const SynLetterSpacingNormal = 'var(--syn-letter-spacing-normal)';
|
|
1520
|
-
|
|
1521
|
-
/**
|
|
1522
|
-
* @type {string}
|
|
1523
|
-
*/
|
|
1524
|
-
export const SynLineHeightDense = 'var(--syn-line-height-dense)';
|
|
1525
|
-
|
|
1526
|
-
/**
|
|
1527
|
-
* @type {string}
|
|
1528
|
-
*/
|
|
1529
|
-
export const SynLineHeightDenser = 'var(--syn-line-height-denser)';
|
|
1530
|
-
|
|
1531
|
-
/**
|
|
1532
|
-
* @type {string}
|
|
1533
|
-
*/
|
|
1534
|
-
export const SynLineHeightLoose = 'var(--syn-line-height-loose)';
|
|
1535
|
-
|
|
1536
|
-
/**
|
|
1537
|
-
* @type {string}
|
|
1538
|
-
*/
|
|
1539
|
-
export const SynLineHeightLooser = 'var(--syn-line-height-looser)';
|
|
1540
|
-
|
|
1541
|
-
/**
|
|
1542
|
-
* @type {string}
|
|
1543
|
-
*/
|
|
1544
|
-
export const SynLineHeightNormal = 'var(--syn-line-height-normal)';
|
|
1545
|
-
|
|
1546
|
-
/**
|
|
1547
|
-
* @type {string}
|
|
1548
|
-
*/
|
|
1549
|
-
export const SynLinkColor = 'var(--syn-link-color)';
|
|
1550
|
-
|
|
1551
|
-
/**
|
|
1552
|
-
* @type {string}
|
|
1553
|
-
*/
|
|
1554
|
-
export const SynLinkColorActive = 'var(--syn-link-color-active)';
|
|
1555
|
-
|
|
1556
|
-
/**
|
|
1557
|
-
* @type {string}
|
|
1558
|
-
*/
|
|
1559
|
-
export const SynLinkColorHover = 'var(--syn-link-color-hover)';
|
|
1560
|
-
|
|
1561
|
-
/**
|
|
1562
|
-
* @type {string}
|
|
1563
|
-
*/
|
|
1564
|
-
export const SynLinkQuietColor = 'var(--syn-link-quiet-color)';
|
|
1565
|
-
|
|
1566
|
-
/**
|
|
1567
|
-
* @type {string}
|
|
1568
|
-
*/
|
|
1569
|
-
export const SynLinkQuietColorActive = 'var(--syn-link-quiet-color-active)';
|
|
1570
|
-
|
|
1571
|
-
/**
|
|
1572
|
-
* @type {string}
|
|
1573
|
-
*/
|
|
1574
|
-
export const SynLinkQuietColorHover = 'var(--syn-link-quiet-color-hover)';
|
|
1575
|
-
|
|
1576
|
-
/**
|
|
1577
|
-
* @type {string}
|
|
1578
|
-
*/
|
|
1579
|
-
export const SynLinkUnderlineOutline = 'var(--syn-link-underline-outline)';
|
|
1580
|
-
|
|
1581
|
-
/**
|
|
1582
|
-
* @type {string}
|
|
1583
|
-
*/
|
|
1584
|
-
export const SynLogoColor = 'var(--syn-logo-color)';
|
|
1585
|
-
|
|
1586
|
-
/**
|
|
1587
|
-
* @type {string}
|
|
1588
|
-
*/
|
|
1589
|
-
export const SynNamurColorBorder = 'var(--syn-namur-color-border)';
|
|
1590
|
-
|
|
1591
|
-
/**
|
|
1592
|
-
* @type {string}
|
|
1593
|
-
*/
|
|
1594
|
-
export const SynNamurCriticalColor = 'var(--syn-namur-critical-color)';
|
|
1595
|
-
|
|
1596
|
-
/**
|
|
1597
|
-
* @type {string}
|
|
1598
|
-
*/
|
|
1599
|
-
export const SynNamurCriticalColorBackground = 'var(--syn-namur-critical-color-background)';
|
|
1600
|
-
|
|
1601
|
-
/**
|
|
1602
|
-
* @type {string}
|
|
1603
|
-
*/
|
|
1604
|
-
export const SynNamurErrorColor = 'var(--syn-namur-error-color)';
|
|
1605
|
-
|
|
1606
|
-
/**
|
|
1607
|
-
* @type {string}
|
|
1608
|
-
*/
|
|
1609
|
-
export const SynNamurErrorColorBackground = 'var(--syn-namur-error-color-background)';
|
|
1610
|
-
|
|
1611
|
-
/**
|
|
1612
|
-
* @type {string}
|
|
1613
|
-
*/
|
|
1614
|
-
export const SynNamurIconColor = 'var(--syn-namur-icon-color)';
|
|
1615
|
-
|
|
1616
|
-
/**
|
|
1617
|
-
* @type {string}
|
|
1618
|
-
*/
|
|
1619
|
-
export const SynNamurInfoColor = 'var(--syn-namur-info-color)';
|
|
1620
|
-
|
|
1621
|
-
/**
|
|
1622
|
-
* @type {string}
|
|
1623
|
-
*/
|
|
1624
|
-
export const SynNamurInfoColorBackground = 'var(--syn-namur-info-color-background)';
|
|
1625
|
-
|
|
1626
|
-
/**
|
|
1627
|
-
* @type {string}
|
|
1628
|
-
*/
|
|
1629
|
-
export const SynNamurNeutralColor = 'var(--syn-namur-neutral-color)';
|
|
1630
|
-
|
|
1631
|
-
/**
|
|
1632
|
-
* @type {string}
|
|
1633
|
-
*/
|
|
1634
|
-
export const SynNamurNeutralColorBackground = 'var(--syn-namur-neutral-color-background)';
|
|
1635
|
-
|
|
1636
|
-
/**
|
|
1637
|
-
* @type {string}
|
|
1638
|
-
*/
|
|
1639
|
-
export const SynNamurSuccessColor = 'var(--syn-namur-success-color)';
|
|
1640
|
-
|
|
1641
|
-
/**
|
|
1642
|
-
* @type {string}
|
|
1643
|
-
*/
|
|
1644
|
-
export const SynNamurSuccessColorBackground = 'var(--syn-namur-success-color-background)';
|
|
1645
|
-
|
|
1646
|
-
/**
|
|
1647
|
-
* @type {string}
|
|
1648
|
-
*/
|
|
1649
|
-
export const SynNamurWarningColor = 'var(--syn-namur-warning-color)';
|
|
1650
|
-
|
|
1651
|
-
/**
|
|
1652
|
-
* @type {string}
|
|
1653
|
-
*/
|
|
1654
|
-
export const SynNamurWarningColorBackground = 'var(--syn-namur-warning-color-background)';
|
|
1655
|
-
|
|
1656
|
-
/**
|
|
1657
|
-
* @type {string}
|
|
1658
|
-
*/
|
|
1659
|
-
export const SynOpacity50 = 'var(--syn-opacity-50)';
|
|
1660
|
-
|
|
1661
|
-
/**
|
|
1662
|
-
* @type {string}
|
|
1663
|
-
*/
|
|
1664
|
-
export const SynOptionBackgroundColorActive = 'var(--syn-option-background-color-active)';
|
|
1665
|
-
|
|
1666
|
-
/**
|
|
1667
|
-
* @type {string}
|
|
1668
|
-
*/
|
|
1669
|
-
export const SynOptionBackgroundColorHover = 'var(--syn-option-background-color-hover)';
|
|
1670
|
-
|
|
1671
|
-
/**
|
|
1672
|
-
* @type {string}
|
|
1673
|
-
*/
|
|
1674
|
-
export const SynOptionCheckColor = 'var(--syn-option-check-color)';
|
|
1675
|
-
|
|
1676
|
-
/**
|
|
1677
|
-
* @type {string}
|
|
1678
|
-
*/
|
|
1679
|
-
export const SynOptionCheckColorActive = 'var(--syn-option-check-color-active)';
|
|
1680
|
-
|
|
1681
|
-
/**
|
|
1682
|
-
* @type {string}
|
|
1683
|
-
*/
|
|
1684
|
-
export const SynOptionCheckColorHover = 'var(--syn-option-check-color-hover)';
|
|
1685
|
-
|
|
1686
|
-
/**
|
|
1687
|
-
* @type {string}
|
|
1688
|
-
*/
|
|
1689
|
-
export const SynOptionColor = 'var(--syn-option-color)';
|
|
1690
|
-
|
|
1691
|
-
/**
|
|
1692
|
-
* @type {string}
|
|
1693
|
-
*/
|
|
1694
|
-
export const SynOptionColorActive = 'var(--syn-option-color-active)';
|
|
1695
|
-
|
|
1696
|
-
/**
|
|
1697
|
-
* @type {string}
|
|
1698
|
-
*/
|
|
1699
|
-
export const SynOptionColorHover = 'var(--syn-option-color-hover)';
|
|
1700
|
-
|
|
1701
|
-
/**
|
|
1702
|
-
* @type {string}
|
|
1703
|
-
*/
|
|
1704
|
-
export const SynOptionIconColor = 'var(--syn-option-icon-color)';
|
|
1705
|
-
|
|
1706
|
-
/**
|
|
1707
|
-
* @type {string}
|
|
1708
|
-
*/
|
|
1709
|
-
export const SynOptionIconColorActive = 'var(--syn-option-icon-color-active)';
|
|
1710
|
-
|
|
1711
|
-
/**
|
|
1712
|
-
* @type {string}
|
|
1713
|
-
*/
|
|
1714
|
-
export const SynOptionIconColorHover = 'var(--syn-option-icon-color-hover)';
|
|
1715
|
-
|
|
1716
|
-
/**
|
|
1717
|
-
* @type {string}
|
|
1718
|
-
*/
|
|
1719
|
-
export const SynOverlayBackgroundBlur = 'var(--syn-overlay-background-blur)';
|
|
1720
|
-
|
|
1721
|
-
/**
|
|
1722
|
-
* @type {string}
|
|
1723
|
-
*/
|
|
1724
|
-
export const SynOverlayBackgroundColor = 'var(--syn-overlay-background-color)';
|
|
1725
|
-
|
|
1726
|
-
/**
|
|
1727
|
-
* @type {string}
|
|
1728
|
-
*/
|
|
1729
|
-
export const SynPageBackground = 'var(--syn-page-background)';
|
|
1730
|
-
|
|
1731
|
-
/**
|
|
1732
|
-
* @type {string}
|
|
1733
|
-
*/
|
|
1734
|
-
export const SynPageBackgroundColor = 'var(--syn-page-background-color)';
|
|
1735
|
-
|
|
1736
|
-
/**
|
|
1737
|
-
* @type {string}
|
|
1738
|
-
*/
|
|
1739
|
-
export const SynPageBackgroundColorMuted = 'var(--syn-page-background-color-muted)';
|
|
1740
|
-
|
|
1741
|
-
/**
|
|
1742
|
-
* @type {string}
|
|
1743
|
-
*/
|
|
1744
|
-
export const SynPanelBackgroundColor = 'var(--syn-panel-background-color)';
|
|
1745
|
-
|
|
1746
|
-
/**
|
|
1747
|
-
* @type {string}
|
|
1748
|
-
*/
|
|
1749
|
-
export const SynPanelBorderColor = 'var(--syn-panel-border-color)';
|
|
1750
|
-
|
|
1751
|
-
/**
|
|
1752
|
-
* @type {string}
|
|
1753
|
-
*/
|
|
1754
|
-
export const SynPanelBorderRadius = 'var(--syn-panel-border-radius)';
|
|
1755
|
-
|
|
1756
|
-
/**
|
|
1757
|
-
* @type {string}
|
|
1758
|
-
*/
|
|
1759
|
-
export const SynPanelBorderWidth = 'var(--syn-panel-border-width)';
|
|
1760
|
-
|
|
1761
|
-
/**
|
|
1762
|
-
* @type {string}
|
|
1763
|
-
*/
|
|
1764
|
-
export const SynProgressIndicatorColor = 'var(--syn-progress-indicator-color)';
|
|
1765
|
-
|
|
1766
|
-
/**
|
|
1767
|
-
* @type {string}
|
|
1768
|
-
*/
|
|
1769
|
-
export const SynProgressTrackColor = 'var(--syn-progress-track-color)';
|
|
1770
|
-
|
|
1771
|
-
/**
|
|
1772
|
-
* @type {string}
|
|
1773
|
-
*/
|
|
1774
|
-
export const SynRangeColorInactive = 'var(--syn-range-color-inactive)';
|
|
1775
|
-
|
|
1776
|
-
/**
|
|
1777
|
-
* @type {string}
|
|
1778
|
-
*/
|
|
1779
|
-
export const SynRangeErrorColor = 'var(--syn-range-error-color)';
|
|
1780
|
-
|
|
1781
|
-
/**
|
|
1782
|
-
* @type {string}
|
|
1783
|
-
*/
|
|
1784
|
-
export const SynRangeTickColor = 'var(--syn-range-tick-color)';
|
|
1785
|
-
|
|
1786
|
-
/**
|
|
1787
|
-
* @type {string}
|
|
1788
|
-
*/
|
|
1789
|
-
export const SynRangeTrackColorActive = 'var(--syn-range-track-color-active)';
|
|
1790
|
-
|
|
1791
|
-
/**
|
|
1792
|
-
* @type {string}
|
|
1793
|
-
*/
|
|
1794
|
-
export const SynReadonlyBackgroundColor = 'var(--syn-readonly-background-color)';
|
|
1795
|
-
|
|
1796
|
-
/**
|
|
1797
|
-
* @type {string}
|
|
1798
|
-
*/
|
|
1799
|
-
export const SynReadonlyBorderColor = 'var(--syn-readonly-border-color)';
|
|
1800
|
-
|
|
1801
|
-
/**
|
|
1802
|
-
* @type {string}
|
|
1803
|
-
*/
|
|
1804
|
-
export const SynReadonlyColorText = 'var(--syn-readonly-color-text)';
|
|
1805
|
-
|
|
1806
|
-
/**
|
|
1807
|
-
* @type {string}
|
|
1808
|
-
*/
|
|
1809
|
-
export const SynReadonlyIconColor = 'var(--syn-readonly-icon-color)';
|
|
1810
|
-
|
|
1811
|
-
/**
|
|
1812
|
-
* @type {string}
|
|
1813
|
-
*/
|
|
1814
|
-
export const SynReadonlyIconColorClearable = 'var(--syn-readonly-icon-color-clearable)';
|
|
1815
|
-
|
|
1816
|
-
/**
|
|
1817
|
-
* @type {string}
|
|
1818
|
-
*/
|
|
1819
|
-
export const SynReadonlyIconColorExpand = 'var(--syn-readonly-icon-color-expand)';
|
|
1820
|
-
|
|
1821
|
-
/**
|
|
1822
|
-
* @type {string}
|
|
1823
|
-
*/
|
|
1824
|
-
export const SynReadonlyIndicatorColor = 'var(--syn-readonly-indicator-color)';
|
|
1825
|
-
|
|
1826
|
-
/**
|
|
1827
|
-
* @type {string}
|
|
1828
|
-
*/
|
|
1829
|
-
export const SynShadowMedium = 'var(--syn-shadow-medium)';
|
|
1830
|
-
|
|
1831
|
-
/**
|
|
1832
|
-
* @type {string}
|
|
1833
|
-
*/
|
|
1834
|
-
export const SynShadowLarge = 'var(--syn-shadow-large)';
|
|
1835
|
-
|
|
1836
|
-
/**
|
|
1837
|
-
* @type {string}
|
|
1838
|
-
*/
|
|
1839
|
-
export const SynShadowXLarge = 'var(--syn-shadow-x-large)';
|
|
1840
|
-
|
|
1841
|
-
/**
|
|
1842
|
-
* @type {string}
|
|
1843
|
-
*/
|
|
1844
|
-
export const SynShadowOverflowDown = 'var(--syn-shadow-overflow-down)';
|
|
1845
|
-
|
|
1846
|
-
/**
|
|
1847
|
-
* @type {string}
|
|
1848
|
-
*/
|
|
1849
|
-
export const SynShadowOverflowUp = 'var(--syn-shadow-overflow-up)';
|
|
1850
|
-
|
|
1851
|
-
/**
|
|
1852
|
-
* @type {string}
|
|
1853
|
-
*/
|
|
1854
|
-
export const SynShadowOverflowLeft = 'var(--syn-shadow-overflow-left)';
|
|
1855
|
-
|
|
1856
|
-
/**
|
|
1857
|
-
* @type {string}
|
|
1858
|
-
*/
|
|
1859
|
-
export const SynShadowOverflowRight = 'var(--syn-shadow-overflow-right)';
|
|
1860
|
-
|
|
1861
|
-
/**
|
|
1862
|
-
* @type {string}
|
|
1863
|
-
*/
|
|
1864
|
-
export const SynShadowXSmall = 'var(--syn-shadow-x-small)';
|
|
1865
|
-
|
|
1866
|
-
/**
|
|
1867
|
-
* @type {string}
|
|
1868
|
-
*/
|
|
1869
|
-
export const SynShadowSmall = 'var(--syn-shadow-small)';
|
|
1870
|
-
|
|
1871
|
-
/**
|
|
1872
|
-
* @type {string}
|
|
1873
|
-
*/
|
|
1874
|
-
export const SynShadowStickyDown = 'var(--syn-shadow-sticky-down)';
|
|
1875
|
-
|
|
1876
|
-
/**
|
|
1877
|
-
* @type {string}
|
|
1878
|
-
*/
|
|
1879
|
-
export const SynSpacing15xLarge = 'var(--syn-spacing-1-5x-large)';
|
|
1880
|
-
|
|
1881
|
-
/**
|
|
1882
|
-
* @type {string}
|
|
1883
|
-
*/
|
|
1884
|
-
export const SynSpacing2xLarge = 'var(--syn-spacing-2x-large)';
|
|
1885
|
-
|
|
1886
|
-
/**
|
|
1887
|
-
* @type {string}
|
|
1888
|
-
*/
|
|
1889
|
-
export const SynSpacing2xSmall = 'var(--syn-spacing-2x-small)';
|
|
1890
|
-
|
|
1891
|
-
/**
|
|
1892
|
-
* @type {string}
|
|
1893
|
-
*/
|
|
1894
|
-
export const SynSpacing3xLarge = 'var(--syn-spacing-3x-large)';
|
|
1895
|
-
|
|
1896
|
-
/**
|
|
1897
|
-
* @type {string}
|
|
1898
|
-
*/
|
|
1899
|
-
export const SynSpacing3xSmall = 'var(--syn-spacing-3x-small)';
|
|
1900
|
-
|
|
1901
|
-
/**
|
|
1902
|
-
* @type {string}
|
|
1903
|
-
*/
|
|
1904
|
-
export const SynSpacing4xLarge = 'var(--syn-spacing-4x-large)';
|
|
1905
|
-
|
|
1906
|
-
/**
|
|
1907
|
-
* @type {string}
|
|
1908
|
-
*/
|
|
1909
|
-
export const SynSpacing4xSmall = 'var(--syn-spacing-4x-small)';
|
|
1910
|
-
|
|
1911
|
-
/**
|
|
1912
|
-
* @type {string}
|
|
1913
|
-
*/
|
|
1914
|
-
export const SynSpacing5xLarge = 'var(--syn-spacing-5x-large)';
|
|
1915
|
-
|
|
1916
|
-
/**
|
|
1917
|
-
* @type {string}
|
|
1918
|
-
*/
|
|
1919
|
-
export const SynSpacingLarge = 'var(--syn-spacing-large)';
|
|
1920
|
-
|
|
1921
|
-
/**
|
|
1922
|
-
* @type {string}
|
|
1923
|
-
*/
|
|
1924
|
-
export const SynSpacingMedium = 'var(--syn-spacing-medium)';
|
|
1925
|
-
|
|
1926
|
-
/**
|
|
1927
|
-
* @type {string}
|
|
1928
|
-
*/
|
|
1929
|
-
export const SynSpacingMediumLarge = 'var(--syn-spacing-medium-large)';
|
|
1930
|
-
|
|
1931
|
-
/**
|
|
1932
|
-
* @type {string}
|
|
1933
|
-
*/
|
|
1934
|
-
export const SynSpacingSmall = 'var(--syn-spacing-small)';
|
|
1935
|
-
|
|
1936
|
-
/**
|
|
1937
|
-
* @type {string}
|
|
1938
|
-
*/
|
|
1939
|
-
export const SynSpacingXLarge = 'var(--syn-spacing-x-large)';
|
|
1940
|
-
|
|
1941
|
-
/**
|
|
1942
|
-
* @type {string}
|
|
1943
|
-
*/
|
|
1944
|
-
export const SynSpacingXSmall = 'var(--syn-spacing-x-small)';
|
|
1945
|
-
|
|
1946
|
-
/**
|
|
1947
|
-
* @type {string}
|
|
1948
|
-
*/
|
|
1949
|
-
export const SynSpinnerOpacity = 'var(--syn-spinner-opacity)';
|
|
1950
|
-
|
|
1951
|
-
/**
|
|
1952
|
-
* @type {string}
|
|
1953
|
-
*/
|
|
1954
|
-
export const SynSwitchHeightLarge = 'var(--syn-switch-height-large)';
|
|
1955
|
-
|
|
1956
|
-
/**
|
|
1957
|
-
* @type {string}
|
|
1958
|
-
*/
|
|
1959
|
-
export const SynSwitchHeightMedium = 'var(--syn-switch-height-medium)';
|
|
1960
|
-
|
|
1961
|
-
/**
|
|
1962
|
-
* @type {string}
|
|
1963
|
-
*/
|
|
1964
|
-
export const SynSwitchHeightSmall = 'var(--syn-switch-height-small)';
|
|
1965
|
-
|
|
1966
|
-
/**
|
|
1967
|
-
* @type {string}
|
|
1968
|
-
*/
|
|
1969
|
-
export const SynSwitchWidthLarge = 'var(--syn-switch-width-large)';
|
|
1970
|
-
|
|
1971
|
-
/**
|
|
1972
|
-
* @type {string}
|
|
1973
|
-
*/
|
|
1974
|
-
export const SynSwitchWidthMedium = 'var(--syn-switch-width-medium)';
|
|
1975
|
-
|
|
1976
|
-
/**
|
|
1977
|
-
* @type {string}
|
|
1978
|
-
*/
|
|
1979
|
-
export const SynSwitchWidthSmall = 'var(--syn-switch-width-small)';
|
|
1980
|
-
|
|
1981
|
-
/**
|
|
1982
|
-
* @type {string}
|
|
1983
|
-
*/
|
|
1984
|
-
export const SynTableBackgroundColor = 'var(--syn-table-background-color)';
|
|
1985
|
-
|
|
1986
|
-
/**
|
|
1987
|
-
* @type {string}
|
|
1988
|
-
*/
|
|
1989
|
-
export const SynTableBackgroundColorAlternating = 'var(--syn-table-background-color-alternating)';
|
|
1990
|
-
|
|
1991
|
-
/**
|
|
1992
|
-
* @type {string}
|
|
1993
|
-
*/
|
|
1994
|
-
export const SynTableBackgroundColorHeader = 'var(--syn-table-background-color-header)';
|
|
1995
|
-
|
|
1996
|
-
/**
|
|
1997
|
-
* @type {string}
|
|
1998
|
-
*/
|
|
1999
|
-
export const SynTableBorderColor = 'var(--syn-table-border-color)';
|
|
2000
|
-
|
|
2001
|
-
/**
|
|
2002
|
-
* @type {string}
|
|
2003
|
-
*/
|
|
2004
|
-
export const SynTableShadowEnd = 'var(--syn-table-shadow-end)';
|
|
2005
|
-
|
|
2006
|
-
/**
|
|
2007
|
-
* @type {string}
|
|
2008
|
-
*/
|
|
2009
|
-
export const SynTableShadowStart = 'var(--syn-table-shadow-start)';
|
|
2010
|
-
|
|
2011
|
-
/**
|
|
2012
|
-
* @type {string}
|
|
2013
|
-
*/
|
|
2014
|
-
export const SynTextDecorationDefault = 'var(--syn-text-decoration-default)';
|
|
2015
|
-
|
|
2016
|
-
/**
|
|
2017
|
-
* @type {string}
|
|
2018
|
-
*/
|
|
2019
|
-
export const SynTextDecorationUnderline = 'var(--syn-text-decoration-underline)';
|
|
2020
|
-
|
|
2021
|
-
/**
|
|
2022
|
-
* @type {string}
|
|
2023
|
-
*/
|
|
2024
|
-
export const SynToggleSizeLarge = 'var(--syn-toggle-size-large)';
|
|
2025
|
-
|
|
2026
|
-
/**
|
|
2027
|
-
* @type {string}
|
|
2028
|
-
*/
|
|
2029
|
-
export const SynToggleSizeMedium = 'var(--syn-toggle-size-medium)';
|
|
2030
|
-
|
|
2031
|
-
/**
|
|
2032
|
-
* @type {string}
|
|
2033
|
-
*/
|
|
2034
|
-
export const SynToggleSizeSmall = 'var(--syn-toggle-size-small)';
|
|
2035
|
-
|
|
2036
|
-
/**
|
|
2037
|
-
* @type {string}
|
|
2038
|
-
*/
|
|
2039
|
-
export const SynTooltipArrowSize = 'var(--syn-tooltip-arrow-size)';
|
|
2040
|
-
|
|
2041
|
-
/**
|
|
2042
|
-
* @type {string}
|
|
2043
|
-
*/
|
|
2044
|
-
export const SynTooltipBackgroundColor = 'var(--syn-tooltip-background-color)';
|
|
2045
|
-
|
|
2046
|
-
/**
|
|
2047
|
-
* @type {string}
|
|
2048
|
-
*/
|
|
2049
|
-
export const SynTooltipBorderRadius = 'var(--syn-tooltip-border-radius)';
|
|
2050
|
-
|
|
2051
|
-
/**
|
|
2052
|
-
* @type {string}
|
|
2053
|
-
*/
|
|
2054
|
-
export const SynTooltipColor = 'var(--syn-tooltip-color)';
|
|
2055
|
-
|
|
2056
|
-
/**
|
|
2057
|
-
* @type {string}
|
|
2058
|
-
*/
|
|
2059
|
-
export const SynTooltipFontFamily = 'var(--syn-tooltip-font-family)';
|
|
2060
|
-
|
|
2061
|
-
/**
|
|
2062
|
-
* @type {string}
|
|
2063
|
-
*/
|
|
2064
|
-
export const SynTooltipFontSize = 'var(--syn-tooltip-font-size)';
|
|
2065
|
-
|
|
2066
|
-
/**
|
|
2067
|
-
* @type {string}
|
|
2068
|
-
*/
|
|
2069
|
-
export const SynTooltipFontWeight = 'var(--syn-tooltip-font-weight)';
|
|
2070
|
-
|
|
2071
|
-
/**
|
|
2072
|
-
* @type {string}
|
|
2073
|
-
*/
|
|
2074
|
-
export const SynTooltipLineHeight = 'var(--syn-tooltip-line-height)';
|
|
2075
|
-
|
|
2076
|
-
/**
|
|
2077
|
-
* @type {string}
|
|
2078
|
-
*/
|
|
2079
|
-
export const SynTooltipPadding = 'var(--syn-tooltip-padding)';
|
|
2080
|
-
|
|
2081
|
-
/**
|
|
2082
|
-
* @type {string}
|
|
2083
|
-
*/
|
|
2084
|
-
export const SynTransitionFast = 'var(--syn-transition-fast)';
|
|
2085
|
-
|
|
2086
|
-
/**
|
|
2087
|
-
* @type {string}
|
|
2088
|
-
*/
|
|
2089
|
-
export const SynTransitionMedium = 'var(--syn-transition-medium)';
|
|
2090
|
-
|
|
2091
|
-
/**
|
|
2092
|
-
* @type {string}
|
|
2093
|
-
*/
|
|
2094
|
-
export const SynTransitionSlow = 'var(--syn-transition-slow)';
|
|
2095
|
-
|
|
2096
|
-
/**
|
|
2097
|
-
* @type {string}
|
|
2098
|
-
*/
|
|
2099
|
-
export const SynTransitionXFast = 'var(--syn-transition-x-fast)';
|
|
2100
|
-
|
|
2101
|
-
/**
|
|
2102
|
-
* @type {string}
|
|
2103
|
-
*/
|
|
2104
|
-
export const SynTransitionXSlow = 'var(--syn-transition-x-slow)';
|
|
2105
|
-
|
|
2106
|
-
/**
|
|
2107
|
-
* @type {string}
|
|
2108
|
-
*/
|
|
2109
|
-
export const SynTypographyColorText = 'var(--syn-typography-color-text)';
|
|
2110
|
-
|
|
2111
|
-
/**
|
|
2112
|
-
* @type {string}
|
|
2113
|
-
*/
|
|
2114
|
-
export const SynTypographyColorTextInverted = 'var(--syn-typography-color-text-inverted)';
|
|
2115
|
-
|
|
2116
|
-
/**
|
|
2117
|
-
* @type {string}
|
|
2118
|
-
*/
|
|
2119
|
-
export const SynZIndexDialog = 'var(--syn-z-index-dialog)';
|
|
2120
|
-
|
|
2121
|
-
/**
|
|
2122
|
-
* @type {string}
|
|
2123
|
-
*/
|
|
2124
|
-
export const SynZIndexDrawer = 'var(--syn-z-index-drawer)';
|
|
2125
|
-
|
|
2126
|
-
/**
|
|
2127
|
-
* @type {string}
|
|
2128
|
-
*/
|
|
2129
|
-
export const SynZIndexDropdown = 'var(--syn-z-index-dropdown)';
|
|
2130
|
-
|
|
2131
|
-
/**
|
|
2132
|
-
* @type {string}
|
|
2133
|
-
*/
|
|
2134
|
-
export const SynZIndexToast = 'var(--syn-z-index-toast)';
|
|
2135
|
-
|
|
2136
|
-
/**
|
|
2137
|
-
* @type {string}
|
|
2138
|
-
*/
|
|
2139
|
-
export const SynZIndexTooltip = 'var(--syn-z-index-tooltip)';
|
|
2140
|
-
|
|
2141
|
-
/**
|
|
2142
|
-
* @type {string}
|
|
2143
|
-
*/
|
|
2144
|
-
export const SynBodyXSmallRegular = 'var(--syn-body-x-small-regular)';
|
|
2145
|
-
|
|
2146
|
-
/**
|
|
2147
|
-
* @type {string}
|
|
2148
|
-
*/
|
|
2149
|
-
export const SynBodyXSmallSemibold = 'var(--syn-body-x-small-semibold)';
|
|
2150
|
-
|
|
2151
|
-
/**
|
|
2152
|
-
* @type {string}
|
|
2153
|
-
*/
|
|
2154
|
-
export const SynBodyXSmallBold = 'var(--syn-body-x-small-bold)';
|
|
2155
|
-
|
|
2156
|
-
/**
|
|
2157
|
-
* @type {string}
|
|
2158
|
-
*/
|
|
2159
|
-
export const SynBodySmallRegular = 'var(--syn-body-small-regular)';
|
|
2160
|
-
|
|
2161
|
-
/**
|
|
2162
|
-
* @type {string}
|
|
2163
|
-
*/
|
|
2164
|
-
export const SynBodySmallSemibold = 'var(--syn-body-small-semibold)';
|
|
2165
|
-
|
|
2166
|
-
/**
|
|
2167
|
-
* @type {string}
|
|
2168
|
-
*/
|
|
2169
|
-
export const SynBodySmallBold = 'var(--syn-body-small-bold)';
|
|
2170
|
-
|
|
2171
|
-
/**
|
|
2172
|
-
* @type {string}
|
|
2173
|
-
*/
|
|
2174
|
-
export const SynBodyMediumRegular = 'var(--syn-body-medium-regular)';
|
|
2175
|
-
|
|
2176
|
-
/**
|
|
2177
|
-
* @type {string}
|
|
2178
|
-
*/
|
|
2179
|
-
export const SynBodyMediumSemibold = 'var(--syn-body-medium-semibold)';
|
|
2180
|
-
|
|
2181
|
-
/**
|
|
2182
|
-
* @type {string}
|
|
2183
|
-
*/
|
|
2184
|
-
export const SynBodyMediumBold = 'var(--syn-body-medium-bold)';
|
|
2185
|
-
|
|
2186
|
-
/**
|
|
2187
|
-
* @type {string}
|
|
2188
|
-
*/
|
|
2189
|
-
export const SynBodyLargeRegular = 'var(--syn-body-large-regular)';
|
|
2190
|
-
|
|
2191
|
-
/**
|
|
2192
|
-
* @type {string}
|
|
2193
|
-
*/
|
|
2194
|
-
export const SynBodyLargeSemibold = 'var(--syn-body-large-semibold)';
|
|
2195
|
-
|
|
2196
|
-
/**
|
|
2197
|
-
* @type {string}
|
|
2198
|
-
*/
|
|
2199
|
-
export const SynBodyLargeBold = 'var(--syn-body-large-bold)';
|
|
2200
|
-
|
|
2201
|
-
/**
|
|
2202
|
-
* @type {string}
|
|
2203
|
-
*/
|
|
2204
|
-
export const SynHeadingLarge = 'var(--syn-heading-large)';
|
|
2205
|
-
|
|
2206
|
-
/**
|
|
2207
|
-
* @type {string}
|
|
2208
|
-
*/
|
|
2209
|
-
export const SynHeadingXLarge = 'var(--syn-heading-x-large)';
|
|
2210
|
-
|
|
2211
|
-
/**
|
|
2212
|
-
* @type {string}
|
|
2213
|
-
*/
|
|
2214
|
-
export const SynHeading2xLarge = 'var(--syn-heading-2x-large)';
|
|
2215
|
-
|
|
2216
|
-
/**
|
|
2217
|
-
* @type {string}
|
|
2218
|
-
*/
|
|
2219
|
-
export const SynHeading3xLarge = 'var(--syn-heading-3x-large)';
|
|
2220
|
-
|
|
2221
|
-
/**
|
|
2222
|
-
* @type {string}
|
|
2223
|
-
*/
|
|
2224
|
-
export const SynFocusRing = 'var(--syn-focus-ring)';
|