@cloudscape-design/chat-components 1.0.70 → 1.0.72
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/avatar/interfaces.d.ts +0 -11
- package/avatar/interfaces.js.map +1 -1
- package/internal/api-docs/components/avatar.js +0 -1
- package/internal/api-docs/test-utils-doc/dom.js +190 -0
- package/internal/environment.js +1 -1
- package/internal/environment.json +1 -1
- package/internal/generated/styles/tokens.d.ts +0 -4
- package/internal/generated/styles/tokens.js +0 -4
- package/internal/generated/theming/index.cjs +0 -84
- package/internal/generated/theming/index.js +0 -84
- package/internal/manifest.json +1 -1
- package/package.json +1 -1
package/avatar/interfaces.d.ts
CHANGED
|
@@ -52,17 +52,6 @@ export interface AvatarProps {
|
|
|
52
52
|
*/
|
|
53
53
|
imgUrl?: string;
|
|
54
54
|
/**
|
|
55
|
-
* Specifies an object of selectors and properties that are used to apply custom styles.
|
|
56
|
-
*
|
|
57
|
-
* - `root.background` (string) - (Optional) Background of the avatar.
|
|
58
|
-
* - `root.borderColor` (string) - (Optional) Border color of the avatar.
|
|
59
|
-
* - `root.borderRadius` (string) - (Optional) Border radius of the avatar.
|
|
60
|
-
* - `root.borderWidth` (string) - (Optional) Border width of the avatar.
|
|
61
|
-
* - `root.boxShadow` (string) - (Optional) Box shadow of the avatar.
|
|
62
|
-
* - `root.color` (string) - (Optional) Text color of the avatar.
|
|
63
|
-
* - `root.focusRing.borderColor` (string) - (Optional) Focus ring border color.
|
|
64
|
-
* - `root.focusRing.borderRadius` (string) - (Optional) Focus ring border radius.
|
|
65
|
-
* - `root.focusRing.borderWidth` (string) - (Optional) Focus ring border width.
|
|
66
55
|
* @awsuiSystem core
|
|
67
56
|
*/
|
|
68
57
|
|
package/avatar/interfaces.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../src/avatar/interfaces.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport { IconProps } from \"@cloudscape-design/components/icon\";\n\nexport interface AvatarProps {\n /**\n * Determines the color of the avatar.\n * Use `gen-ai` for AI assistants and `default` otherwise.\n */\n color?: AvatarProps.Color;\n\n /**\n * The text content shown in the avatar's tooltip.\n *\n * When you use this property, make sure to include it in the `ariaLabel`.\n */\n tooltipText?: string;\n\n /**\n * The text content shown directly in the avatar's body.\n * Can be 1 or 2 symbols long, every subsequent symbol is ignored.\n * Use it to define initials that uniquely identify the avatar's owner.\n */\n initials?: string;\n\n /**\n * When set to true, a loading indicator is shown in avatar.\n */\n loading?: boolean;\n\n /**\n * Text to describe the avatar for assistive technology.\n * When more than one avatar is used, provide a unique label for each.\n * For example, \"Avatar of John Doe\" or \"Avatar of generative AI assistant\".\n *\n * If `tooltipText` is used make sure to include it in the `ariaLabel`.\n */\n ariaLabel: string;\n\n /**\n * Specifies the icon to be displayed as Avatar.\n * Use `gen-ai` icon for AI assistants. By default `user-profile` icon is used.\n *\n * If you set both `iconName` and `initials`, `initials` will take precedence.\n */\n iconName?: IconProps.Name;\n\n /**\n * Specifies the URL of a custom icon. Use this property if the icon you want isn't available, and your custom icon can't be an SVG.\n * @deprecated Use `iconSvg` or `imgUrl` instead.\n */\n iconUrl?: string;\n\n /**\n * Specifies the SVG of a custom icon.\n * Use this property if the icon you want isn't available.\n */\n iconSvg?: React.ReactNode;\n\n /**\n * Specifies the URL of a custom image. If you set both `iconUrl` and `imgUrl`, `imgUrl` will take precedence.\n */\n imgUrl?: string;\n\n /**\n *
|
|
1
|
+
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../src/avatar/interfaces.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport { IconProps } from \"@cloudscape-design/components/icon\";\n\nexport interface AvatarProps {\n /**\n * Determines the color of the avatar.\n * Use `gen-ai` for AI assistants and `default` otherwise.\n */\n color?: AvatarProps.Color;\n\n /**\n * The text content shown in the avatar's tooltip.\n *\n * When you use this property, make sure to include it in the `ariaLabel`.\n */\n tooltipText?: string;\n\n /**\n * The text content shown directly in the avatar's body.\n * Can be 1 or 2 symbols long, every subsequent symbol is ignored.\n * Use it to define initials that uniquely identify the avatar's owner.\n */\n initials?: string;\n\n /**\n * When set to true, a loading indicator is shown in avatar.\n */\n loading?: boolean;\n\n /**\n * Text to describe the avatar for assistive technology.\n * When more than one avatar is used, provide a unique label for each.\n * For example, \"Avatar of John Doe\" or \"Avatar of generative AI assistant\".\n *\n * If `tooltipText` is used make sure to include it in the `ariaLabel`.\n */\n ariaLabel: string;\n\n /**\n * Specifies the icon to be displayed as Avatar.\n * Use `gen-ai` icon for AI assistants. By default `user-profile` icon is used.\n *\n * If you set both `iconName` and `initials`, `initials` will take precedence.\n */\n iconName?: IconProps.Name;\n\n /**\n * Specifies the URL of a custom icon. Use this property if the icon you want isn't available, and your custom icon can't be an SVG.\n * @deprecated Use `iconSvg` or `imgUrl` instead.\n */\n iconUrl?: string;\n\n /**\n * Specifies the SVG of a custom icon.\n * Use this property if the icon you want isn't available.\n */\n iconSvg?: React.ReactNode;\n\n /**\n * Specifies the URL of a custom image. If you set both `iconUrl` and `imgUrl`, `imgUrl` will take precedence.\n */\n imgUrl?: string;\n\n /**\n * @awsuiSystem core\n */\n style?: AvatarProps.Style;\n\n /**\n * Defines the width and height of the avatar.\n * This value corresponds to the `width` CSS-property and will center and crop images using `object-fit: cover`.\n * The default and minimum width value is 28px.\n */\n width?: number;\n}\n\nexport namespace AvatarProps {\n export type Color = \"default\" | \"gen-ai\";\n\n export interface Style {\n root?: {\n background?: string;\n borderColor?: string;\n borderRadius?: string;\n borderWidth?: string;\n boxShadow?: string;\n color?: string;\n focusRing?: {\n borderColor?: string;\n borderRadius?: string;\n borderWidth?: string;\n };\n };\n }\n}\n"]}
|
|
@@ -277,7 +277,6 @@ module.exports = {
|
|
|
277
277
|
]
|
|
278
278
|
},
|
|
279
279
|
"optional": true,
|
|
280
|
-
"description": "Specifies an object of selectors and properties that are used to apply custom styles.\n\n- `root.background` (string) - (Optional) Background of the avatar.\n- `root.borderColor` (string) - (Optional) Border color of the avatar.\n- `root.borderRadius` (string) - (Optional) Border radius of the avatar.\n- `root.borderWidth` (string) - (Optional) Border width of the avatar.\n- `root.boxShadow` (string) - (Optional) Box shadow of the avatar.\n- `root.color` (string) - (Optional) Text color of the avatar.\n- `root.focusRing.borderColor` (string) - (Optional) Focus ring border color.\n- `root.focusRing.borderRadius` (string) - (Optional) Focus ring border radius.\n- `root.focusRing.borderWidth` (string) - (Optional) Focus ring border width.",
|
|
281
280
|
"systemTags": [
|
|
282
281
|
"core"
|
|
283
282
|
]
|
|
@@ -327,6 +327,25 @@ module.exports = { classes: [
|
|
|
327
327
|
"name": "AbstractWrapper.keypress"
|
|
328
328
|
}
|
|
329
329
|
},
|
|
330
|
+
{
|
|
331
|
+
"name": "keypress",
|
|
332
|
+
"returnType": {
|
|
333
|
+
"name": "void",
|
|
334
|
+
"isNullable": false
|
|
335
|
+
},
|
|
336
|
+
"parameters": [
|
|
337
|
+
{
|
|
338
|
+
"name": "keyboardEventProps",
|
|
339
|
+
"typeName": "KeyboardEventInit",
|
|
340
|
+
"flags": {
|
|
341
|
+
"isOptional": false
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
"inheritedFrom": {
|
|
346
|
+
"name": "AbstractWrapper.keypress"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
330
349
|
{
|
|
331
350
|
"name": "keyup",
|
|
332
351
|
"returnType": {
|
|
@@ -346,6 +365,25 @@ module.exports = { classes: [
|
|
|
346
365
|
"name": "AbstractWrapper.keyup"
|
|
347
366
|
}
|
|
348
367
|
},
|
|
368
|
+
{
|
|
369
|
+
"name": "keyup",
|
|
370
|
+
"returnType": {
|
|
371
|
+
"name": "void",
|
|
372
|
+
"isNullable": false
|
|
373
|
+
},
|
|
374
|
+
"parameters": [
|
|
375
|
+
{
|
|
376
|
+
"name": "keyboardEventProps",
|
|
377
|
+
"typeName": "KeyboardEventInit",
|
|
378
|
+
"flags": {
|
|
379
|
+
"isOptional": false
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
],
|
|
383
|
+
"inheritedFrom": {
|
|
384
|
+
"name": "AbstractWrapper.keyup"
|
|
385
|
+
}
|
|
386
|
+
},
|
|
349
387
|
{
|
|
350
388
|
"name": "matches",
|
|
351
389
|
"returnType": {
|
|
@@ -729,6 +767,25 @@ module.exports = { classes: [
|
|
|
729
767
|
"name": "AbstractWrapper.keypress"
|
|
730
768
|
}
|
|
731
769
|
},
|
|
770
|
+
{
|
|
771
|
+
"name": "keypress",
|
|
772
|
+
"returnType": {
|
|
773
|
+
"name": "void",
|
|
774
|
+
"isNullable": false
|
|
775
|
+
},
|
|
776
|
+
"parameters": [
|
|
777
|
+
{
|
|
778
|
+
"name": "keyboardEventProps",
|
|
779
|
+
"typeName": "KeyboardEventInit",
|
|
780
|
+
"flags": {
|
|
781
|
+
"isOptional": false
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
],
|
|
785
|
+
"inheritedFrom": {
|
|
786
|
+
"name": "AbstractWrapper.keypress"
|
|
787
|
+
}
|
|
788
|
+
},
|
|
732
789
|
{
|
|
733
790
|
"name": "keyup",
|
|
734
791
|
"returnType": {
|
|
@@ -748,6 +805,25 @@ module.exports = { classes: [
|
|
|
748
805
|
"name": "AbstractWrapper.keyup"
|
|
749
806
|
}
|
|
750
807
|
},
|
|
808
|
+
{
|
|
809
|
+
"name": "keyup",
|
|
810
|
+
"returnType": {
|
|
811
|
+
"name": "void",
|
|
812
|
+
"isNullable": false
|
|
813
|
+
},
|
|
814
|
+
"parameters": [
|
|
815
|
+
{
|
|
816
|
+
"name": "keyboardEventProps",
|
|
817
|
+
"typeName": "KeyboardEventInit",
|
|
818
|
+
"flags": {
|
|
819
|
+
"isOptional": false
|
|
820
|
+
}
|
|
821
|
+
}
|
|
822
|
+
],
|
|
823
|
+
"inheritedFrom": {
|
|
824
|
+
"name": "AbstractWrapper.keyup"
|
|
825
|
+
}
|
|
826
|
+
},
|
|
751
827
|
{
|
|
752
828
|
"name": "matches",
|
|
753
829
|
"returnType": {
|
|
@@ -1084,6 +1160,25 @@ module.exports = { classes: [
|
|
|
1084
1160
|
"name": "AbstractWrapper.keypress"
|
|
1085
1161
|
}
|
|
1086
1162
|
},
|
|
1163
|
+
{
|
|
1164
|
+
"name": "keypress",
|
|
1165
|
+
"returnType": {
|
|
1166
|
+
"name": "void",
|
|
1167
|
+
"isNullable": false
|
|
1168
|
+
},
|
|
1169
|
+
"parameters": [
|
|
1170
|
+
{
|
|
1171
|
+
"name": "keyboardEventProps",
|
|
1172
|
+
"typeName": "KeyboardEventInit",
|
|
1173
|
+
"flags": {
|
|
1174
|
+
"isOptional": false
|
|
1175
|
+
}
|
|
1176
|
+
}
|
|
1177
|
+
],
|
|
1178
|
+
"inheritedFrom": {
|
|
1179
|
+
"name": "AbstractWrapper.keypress"
|
|
1180
|
+
}
|
|
1181
|
+
},
|
|
1087
1182
|
{
|
|
1088
1183
|
"name": "keyup",
|
|
1089
1184
|
"returnType": {
|
|
@@ -1103,6 +1198,25 @@ module.exports = { classes: [
|
|
|
1103
1198
|
"name": "AbstractWrapper.keyup"
|
|
1104
1199
|
}
|
|
1105
1200
|
},
|
|
1201
|
+
{
|
|
1202
|
+
"name": "keyup",
|
|
1203
|
+
"returnType": {
|
|
1204
|
+
"name": "void",
|
|
1205
|
+
"isNullable": false
|
|
1206
|
+
},
|
|
1207
|
+
"parameters": [
|
|
1208
|
+
{
|
|
1209
|
+
"name": "keyboardEventProps",
|
|
1210
|
+
"typeName": "KeyboardEventInit",
|
|
1211
|
+
"flags": {
|
|
1212
|
+
"isOptional": false
|
|
1213
|
+
}
|
|
1214
|
+
}
|
|
1215
|
+
],
|
|
1216
|
+
"inheritedFrom": {
|
|
1217
|
+
"name": "AbstractWrapper.keyup"
|
|
1218
|
+
}
|
|
1219
|
+
},
|
|
1106
1220
|
{
|
|
1107
1221
|
"name": "matches",
|
|
1108
1222
|
"returnType": {
|
|
@@ -1470,6 +1584,25 @@ module.exports = { classes: [
|
|
|
1470
1584
|
"name": "AbstractWrapper.keypress"
|
|
1471
1585
|
}
|
|
1472
1586
|
},
|
|
1587
|
+
{
|
|
1588
|
+
"name": "keypress",
|
|
1589
|
+
"returnType": {
|
|
1590
|
+
"name": "void",
|
|
1591
|
+
"isNullable": false
|
|
1592
|
+
},
|
|
1593
|
+
"parameters": [
|
|
1594
|
+
{
|
|
1595
|
+
"name": "keyboardEventProps",
|
|
1596
|
+
"typeName": "KeyboardEventInit",
|
|
1597
|
+
"flags": {
|
|
1598
|
+
"isOptional": false
|
|
1599
|
+
}
|
|
1600
|
+
}
|
|
1601
|
+
],
|
|
1602
|
+
"inheritedFrom": {
|
|
1603
|
+
"name": "AbstractWrapper.keypress"
|
|
1604
|
+
}
|
|
1605
|
+
},
|
|
1473
1606
|
{
|
|
1474
1607
|
"name": "keyup",
|
|
1475
1608
|
"returnType": {
|
|
@@ -1489,6 +1622,25 @@ module.exports = { classes: [
|
|
|
1489
1622
|
"name": "AbstractWrapper.keyup"
|
|
1490
1623
|
}
|
|
1491
1624
|
},
|
|
1625
|
+
{
|
|
1626
|
+
"name": "keyup",
|
|
1627
|
+
"returnType": {
|
|
1628
|
+
"name": "void",
|
|
1629
|
+
"isNullable": false
|
|
1630
|
+
},
|
|
1631
|
+
"parameters": [
|
|
1632
|
+
{
|
|
1633
|
+
"name": "keyboardEventProps",
|
|
1634
|
+
"typeName": "KeyboardEventInit",
|
|
1635
|
+
"flags": {
|
|
1636
|
+
"isOptional": false
|
|
1637
|
+
}
|
|
1638
|
+
}
|
|
1639
|
+
],
|
|
1640
|
+
"inheritedFrom": {
|
|
1641
|
+
"name": "AbstractWrapper.keyup"
|
|
1642
|
+
}
|
|
1643
|
+
},
|
|
1492
1644
|
{
|
|
1493
1645
|
"name": "matches",
|
|
1494
1646
|
"returnType": {
|
|
@@ -1825,6 +1977,25 @@ module.exports = { classes: [
|
|
|
1825
1977
|
"name": "AbstractWrapper.keypress"
|
|
1826
1978
|
}
|
|
1827
1979
|
},
|
|
1980
|
+
{
|
|
1981
|
+
"name": "keypress",
|
|
1982
|
+
"returnType": {
|
|
1983
|
+
"name": "void",
|
|
1984
|
+
"isNullable": false
|
|
1985
|
+
},
|
|
1986
|
+
"parameters": [
|
|
1987
|
+
{
|
|
1988
|
+
"name": "keyboardEventProps",
|
|
1989
|
+
"typeName": "KeyboardEventInit",
|
|
1990
|
+
"flags": {
|
|
1991
|
+
"isOptional": false
|
|
1992
|
+
}
|
|
1993
|
+
}
|
|
1994
|
+
],
|
|
1995
|
+
"inheritedFrom": {
|
|
1996
|
+
"name": "AbstractWrapper.keypress"
|
|
1997
|
+
}
|
|
1998
|
+
},
|
|
1828
1999
|
{
|
|
1829
2000
|
"name": "keyup",
|
|
1830
2001
|
"returnType": {
|
|
@@ -1844,6 +2015,25 @@ module.exports = { classes: [
|
|
|
1844
2015
|
"name": "AbstractWrapper.keyup"
|
|
1845
2016
|
}
|
|
1846
2017
|
},
|
|
2018
|
+
{
|
|
2019
|
+
"name": "keyup",
|
|
2020
|
+
"returnType": {
|
|
2021
|
+
"name": "void",
|
|
2022
|
+
"isNullable": false
|
|
2023
|
+
},
|
|
2024
|
+
"parameters": [
|
|
2025
|
+
{
|
|
2026
|
+
"name": "keyboardEventProps",
|
|
2027
|
+
"typeName": "KeyboardEventInit",
|
|
2028
|
+
"flags": {
|
|
2029
|
+
"isOptional": false
|
|
2030
|
+
}
|
|
2031
|
+
}
|
|
2032
|
+
],
|
|
2033
|
+
"inheritedFrom": {
|
|
2034
|
+
"name": "AbstractWrapper.keyup"
|
|
2035
|
+
}
|
|
2036
|
+
},
|
|
1847
2037
|
{
|
|
1848
2038
|
"name": "matches",
|
|
1849
2039
|
"returnType": {
|
package/internal/environment.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export var PACKAGE_SOURCE = "chat-components";
|
|
2
|
-
export var PACKAGE_VERSION = "1.0.0 (
|
|
2
|
+
export var PACKAGE_VERSION = "1.0.0 (973328c3)";
|
|
3
3
|
export var THEME = "open-source-visual-refresh";
|
|
4
4
|
export var SYSTEM = "console";
|
|
5
5
|
export var ALWAYS_VISUAL_REFRESH = true;
|
|
@@ -465,7 +465,6 @@ export const colorShadowDefault: string;
|
|
|
465
465
|
export const colorShadowMedium: string;
|
|
466
466
|
export const colorShadowSide: string;
|
|
467
467
|
export const colorStrokeChartLine: string;
|
|
468
|
-
export const colorStrokeCodeEditorResizeHandler: string;
|
|
469
468
|
export const colorStrokeCodeEditorGutterActiveLineDefault: string;
|
|
470
469
|
export const colorStrokeCodeEditorGutterActiveLineHover: string;
|
|
471
470
|
export const colorTextAccent: string;
|
|
@@ -487,7 +486,6 @@ export const colorTextButtonPrimaryActive: string;
|
|
|
487
486
|
export const colorTextButtonPrimaryDefault: string;
|
|
488
487
|
export const colorTextButtonPrimaryHover: string;
|
|
489
488
|
export const colorTextCalendarDateHover: string;
|
|
490
|
-
export const colorTextCalendarDateSelected: string;
|
|
491
489
|
export const colorTextCalendarMonth: string;
|
|
492
490
|
export const colorTextCodeEditorGutterActiveLine: string;
|
|
493
491
|
export const colorTextCodeEditorGutterDefault: string;
|
|
@@ -753,7 +751,6 @@ export const spaceLayoutToggleDiameter: string;
|
|
|
753
751
|
export const spaceLayoutTogglePadding: string;
|
|
754
752
|
export const spaceModalContentBottom: string;
|
|
755
753
|
export const spaceModalHorizontal: string;
|
|
756
|
-
export const spaceOptionIconBigTop: string;
|
|
757
754
|
export const spacePanelContentBottom: string;
|
|
758
755
|
export const spacePanelContentTop: string;
|
|
759
756
|
export const spacePanelDividerMarginHorizontal: string;
|
|
@@ -815,7 +812,6 @@ export const spaceXl: string;
|
|
|
815
812
|
export const spaceXxl: string;
|
|
816
813
|
export const spaceXxxl: string;
|
|
817
814
|
export const shadowContainer: string;
|
|
818
|
-
export const shadowContainerStacked: string;
|
|
819
815
|
export const shadowContainerActive: string;
|
|
820
816
|
export const shadowDropdown: string;
|
|
821
817
|
export const shadowDropup: string;
|
|
@@ -465,7 +465,6 @@ export var colorShadowDefault = "var(--color-shadow-default-o7dmmm, rgba(15, 20,
|
|
|
465
465
|
export var colorShadowMedium = "var(--color-shadow-medium-x7of55, rgba(15, 20, 26, 0.12))";
|
|
466
466
|
export var colorShadowSide = "var(--color-shadow-side-rtsbda, rgba(15, 20, 26, 0.12))";
|
|
467
467
|
export var colorStrokeChartLine = "var(--color-stroke-chart-line-3nsnk6, #8c8c94)";
|
|
468
|
-
export var colorStrokeCodeEditorResizeHandler = "var(--color-stroke-code-editor-resize-handler-atdd8r, #424650)";
|
|
469
468
|
export var colorStrokeCodeEditorGutterActiveLineDefault = "var(--color-stroke-code-editor-gutter-active-line-default-5hrdmu, #dedee3)";
|
|
470
469
|
export var colorStrokeCodeEditorGutterActiveLineHover = "var(--color-stroke-code-editor-gutter-active-line-hover-vqrb6s, #f9f9fa)";
|
|
471
470
|
export var colorTextAccent = "var(--color-text-accent-n1kmht, #006ce0)";
|
|
@@ -487,7 +486,6 @@ export var colorTextButtonPrimaryActive = "var(--color-text-button-primary-activ
|
|
|
487
486
|
export var colorTextButtonPrimaryDefault = "var(--color-text-button-primary-default-mwl31m, #ffffff)";
|
|
488
487
|
export var colorTextButtonPrimaryHover = "var(--color-text-button-primary-hover-pw12ep, #ffffff)";
|
|
489
488
|
export var colorTextCalendarDateHover = "var(--color-text-calendar-date-hover-3fcriv, #0f141a)";
|
|
490
|
-
export var colorTextCalendarDateSelected = "var(--color-text-calendar-date-selected-wc8ffc, #006ce0)";
|
|
491
489
|
export var colorTextCalendarMonth = "var(--color-text-calendar-month-ea0e93, #656871)";
|
|
492
490
|
export var colorTextCodeEditorGutterActiveLine = "var(--color-text-code-editor-gutter-active-line-2addhd, #ffffff)";
|
|
493
491
|
export var colorTextCodeEditorGutterDefault = "var(--color-text-code-editor-gutter-default-nlshs8, #0f141a)";
|
|
@@ -753,7 +751,6 @@ export var spaceLayoutToggleDiameter = "var(--space-layout-toggle-diameter-j2qff
|
|
|
753
751
|
export var spaceLayoutTogglePadding = "var(--space-layout-toggle-padding-chwlhz, 12px)";
|
|
754
752
|
export var spaceModalContentBottom = "var(--space-modal-content-bottom-nl6ceq, 16px)";
|
|
755
753
|
export var spaceModalHorizontal = "var(--space-modal-horizontal-y5hnwp, 20px)";
|
|
756
|
-
export var spaceOptionIconBigTop = "var(--space-option-icon-big-top-rs5wgf, 0px)";
|
|
757
754
|
export var spacePanelContentBottom = "var(--space-panel-content-bottom-24c6lu, 40px)";
|
|
758
755
|
export var spacePanelContentTop = "var(--space-panel-content-top-qvd1dr, 20px)";
|
|
759
756
|
export var spacePanelDividerMarginHorizontal = "var(--space-panel-divider-margin-horizontal-yw31p0, 8px)";
|
|
@@ -815,7 +812,6 @@ export var spaceXl = "var(--space-xl-jfy3x4, 24px)";
|
|
|
815
812
|
export var spaceXxl = "var(--space-xxl-32srm4, 32px)";
|
|
816
813
|
export var spaceXxxl = "var(--space-xxxl-aut1u7, 40px)";
|
|
817
814
|
export var shadowContainer = "var(--shadow-container-53ltfv, 0px 0px 1px 1px #e9ebed, 0px 1px 8px 2px rgba(0, 7, 22, 0.12))";
|
|
818
|
-
export var shadowContainerStacked = "var(--shadow-container-stacked-y4nc75, -1px 1px 1px 0px #e9ebed, 1px 1px 1px 0px #e9ebed, 0px 9px 8px -7px rgb(0 7 22 / 12%), 8px 0px 8px -7px rgb(0 7 22 / 12%), -8px 0px 8px -7px rgb(0 7 22 / 12%))";
|
|
819
815
|
export var shadowContainerActive = "var(--shadow-container-active-ypjjoc, 0px 1px 1px 1px #e9ebed, 0px 6px 36px #0007161a)";
|
|
820
816
|
export var shadowDropdown = "var(--shadow-dropdown-isf0w4, 0px 4px 20px 1px rgba(0, 7, 22, 0.10))";
|
|
821
817
|
export var shadowDropup = "var(--shadow-dropup-2r02r5, 0px 4px 20px 1px rgba(0, 7, 22, 0.10))";
|
|
@@ -1754,10 +1754,6 @@ module.exports.preset = {
|
|
|
1754
1754
|
"light": "{colorNeutral500}",
|
|
1755
1755
|
"dark": "{colorNeutral500}"
|
|
1756
1756
|
},
|
|
1757
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
1758
|
-
"light": "{colorNeutral650}",
|
|
1759
|
-
"dark": "{colorNeutral300}"
|
|
1760
|
-
},
|
|
1761
1757
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
1762
1758
|
"light": "{colorNeutral300}",
|
|
1763
1759
|
"dark": "{colorNeutral800}"
|
|
@@ -1842,10 +1838,6 @@ module.exports.preset = {
|
|
|
1842
1838
|
"light": "{colorTextDropdownItemDefault}",
|
|
1843
1839
|
"dark": "{colorTextDropdownItemDefault}"
|
|
1844
1840
|
},
|
|
1845
|
-
"colorTextCalendarDateSelected": {
|
|
1846
|
-
"light": "{colorTextAccent}",
|
|
1847
|
-
"dark": "{colorTextAccent}"
|
|
1848
|
-
},
|
|
1849
1841
|
"colorTextCalendarMonth": {
|
|
1850
1842
|
"light": "{colorNeutral600}",
|
|
1851
1843
|
"dark": "{colorNeutral450}"
|
|
@@ -2630,10 +2622,6 @@ module.exports.preset = {
|
|
|
2630
2622
|
"comfortable": "{spaceContainerHorizontal}",
|
|
2631
2623
|
"compact": "{spaceContainerHorizontal}"
|
|
2632
2624
|
},
|
|
2633
|
-
"spaceOptionIconBigTop": {
|
|
2634
|
-
"comfortable": "0px",
|
|
2635
|
-
"compact": "0px"
|
|
2636
|
-
},
|
|
2637
2625
|
"spacePanelContentBottom": {
|
|
2638
2626
|
"comfortable": "{spaceScaledXxxl}",
|
|
2639
2627
|
"compact": "{spaceScaledXxxl}"
|
|
@@ -2878,10 +2866,6 @@ module.exports.preset = {
|
|
|
2878
2866
|
"light": "0px 0px 1px 1px #e9ebed, 0px 1px 8px 2px rgba(0, 7, 22, 0.12)",
|
|
2879
2867
|
"dark": "0px 1px 8px 2px rgba(0, 7, 22, 0.6)"
|
|
2880
2868
|
},
|
|
2881
|
-
"shadowContainerStacked": {
|
|
2882
|
-
"light": "-1px 1px 1px 0px #e9ebed, 1px 1px 1px 0px #e9ebed, 0px 9px 8px -7px rgb(0 7 22 / 12%), 8px 0px 8px -7px rgb(0 7 22 / 12%), -8px 0px 8px -7px rgb(0 7 22 / 12%)",
|
|
2883
|
-
"dark": "0px 9px 8px -7px rgb(0 7 22 / 60%), 8px 0px 8px -7px rgb(0 7 22 / 60%), -8px 0px 8px -7px rgb(0 7 22 / 60%)"
|
|
2884
|
-
},
|
|
2885
2869
|
"shadowContainerActive": {
|
|
2886
2870
|
"light": "0px 1px 1px 1px #e9ebed, 0px 6px 36px #0007161a",
|
|
2887
2871
|
"dark": "0px 1px 1px 1px #192534, 0px 6px 36px #00040c"
|
|
@@ -3104,10 +3088,6 @@ module.exports.preset = {
|
|
|
3104
3088
|
"comfortable": "{spaceContainerHorizontal}",
|
|
3105
3089
|
"compact": "{spaceContainerHorizontal}"
|
|
3106
3090
|
},
|
|
3107
|
-
"spaceOptionIconBigTop": {
|
|
3108
|
-
"comfortable": "0px",
|
|
3109
|
-
"compact": "0px"
|
|
3110
|
-
},
|
|
3111
3091
|
"spacePanelContentBottom": {
|
|
3112
3092
|
"comfortable": "{spaceScaledXxxl}",
|
|
3113
3093
|
"compact": "{spaceScaledXxxl}"
|
|
@@ -4042,10 +4022,6 @@ module.exports.preset = {
|
|
|
4042
4022
|
"light": "{colorNeutral500}",
|
|
4043
4023
|
"dark": "{colorNeutral500}"
|
|
4044
4024
|
},
|
|
4045
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
4046
|
-
"light": "{colorNeutral300}",
|
|
4047
|
-
"dark": "{colorNeutral300}"
|
|
4048
|
-
},
|
|
4049
4025
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
4050
4026
|
"light": "{colorNeutral800}",
|
|
4051
4027
|
"dark": "{colorNeutral800}"
|
|
@@ -4130,10 +4106,6 @@ module.exports.preset = {
|
|
|
4130
4106
|
"light": "{colorTextDropdownItemDefault}",
|
|
4131
4107
|
"dark": "{colorTextDropdownItemDefault}"
|
|
4132
4108
|
},
|
|
4133
|
-
"colorTextCalendarDateSelected": {
|
|
4134
|
-
"light": "{colorTextAccent}",
|
|
4135
|
-
"dark": "{colorTextAccent}"
|
|
4136
|
-
},
|
|
4137
4109
|
"colorTextCalendarMonth": {
|
|
4138
4110
|
"light": "{colorNeutral450}",
|
|
4139
4111
|
"dark": "{colorNeutral450}"
|
|
@@ -4480,10 +4452,6 @@ module.exports.preset = {
|
|
|
4480
4452
|
"light": "0px 1px 8px 2px rgba(0, 7, 22, 0.6)",
|
|
4481
4453
|
"dark": "0px 1px 8px 2px rgba(0, 7, 22, 0.6)"
|
|
4482
4454
|
},
|
|
4483
|
-
"shadowContainerStacked": {
|
|
4484
|
-
"light": "0px 9px 8px -7px rgb(0 7 22 / 60%), 8px 0px 8px -7px rgb(0 7 22 / 60%), -8px 0px 8px -7px rgb(0 7 22 / 60%)",
|
|
4485
|
-
"dark": "0px 9px 8px -7px rgb(0 7 22 / 60%), 8px 0px 8px -7px rgb(0 7 22 / 60%), -8px 0px 8px -7px rgb(0 7 22 / 60%)"
|
|
4486
|
-
},
|
|
4487
4455
|
"shadowContainerActive": {
|
|
4488
4456
|
"light": "0px 1px 1px 1px #192534, 0px 6px 36px #00040c",
|
|
4489
4457
|
"dark": "0px 1px 1px 1px #192534, 0px 6px 36px #00040c"
|
|
@@ -5228,10 +5196,6 @@ module.exports.preset = {
|
|
|
5228
5196
|
"light": "{colorNeutral500}",
|
|
5229
5197
|
"dark": "{colorNeutral500}"
|
|
5230
5198
|
},
|
|
5231
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
5232
|
-
"light": "{colorNeutral300}",
|
|
5233
|
-
"dark": "{colorNeutral300}"
|
|
5234
|
-
},
|
|
5235
5199
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
5236
5200
|
"light": "{colorNeutral800}",
|
|
5237
5201
|
"dark": "{colorNeutral800}"
|
|
@@ -5316,10 +5280,6 @@ module.exports.preset = {
|
|
|
5316
5280
|
"light": "{colorTextDropdownItemDefault}",
|
|
5317
5281
|
"dark": "{colorTextDropdownItemDefault}"
|
|
5318
5282
|
},
|
|
5319
|
-
"colorTextCalendarDateSelected": {
|
|
5320
|
-
"light": "{colorTextAccent}",
|
|
5321
|
-
"dark": "{colorTextAccent}"
|
|
5322
|
-
},
|
|
5323
5283
|
"colorTextCalendarMonth": {
|
|
5324
5284
|
"light": "{colorNeutral450}",
|
|
5325
5285
|
"dark": "{colorNeutral450}"
|
|
@@ -6346,10 +6306,6 @@ module.exports.preset = {
|
|
|
6346
6306
|
"light": "{colorNeutral500}",
|
|
6347
6307
|
"dark": "{colorNeutral500}"
|
|
6348
6308
|
},
|
|
6349
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
6350
|
-
"light": "{colorNeutral650}",
|
|
6351
|
-
"dark": "{colorNeutral300}"
|
|
6352
|
-
},
|
|
6353
6309
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
6354
6310
|
"light": "{colorNeutral300}",
|
|
6355
6311
|
"dark": "{colorNeutral800}"
|
|
@@ -6434,10 +6390,6 @@ module.exports.preset = {
|
|
|
6434
6390
|
"light": "{colorTextDropdownItemDefault}",
|
|
6435
6391
|
"dark": "{colorTextDropdownItemDefault}"
|
|
6436
6392
|
},
|
|
6437
|
-
"colorTextCalendarDateSelected": {
|
|
6438
|
-
"light": "{colorTextAccent}",
|
|
6439
|
-
"dark": "{colorTextAccent}"
|
|
6440
|
-
},
|
|
6441
6393
|
"colorTextCalendarMonth": {
|
|
6442
6394
|
"light": "{colorNeutral600}",
|
|
6443
6395
|
"dark": "{colorNeutral450}"
|
|
@@ -7464,10 +7416,6 @@ module.exports.preset = {
|
|
|
7464
7416
|
"light": "{colorNeutral500}",
|
|
7465
7417
|
"dark": "{colorNeutral500}"
|
|
7466
7418
|
},
|
|
7467
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
7468
|
-
"light": "{colorNeutral650}",
|
|
7469
|
-
"dark": "{colorNeutral300}"
|
|
7470
|
-
},
|
|
7471
7419
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
7472
7420
|
"light": "{colorNeutral300}",
|
|
7473
7421
|
"dark": "{colorNeutral800}"
|
|
@@ -7552,10 +7500,6 @@ module.exports.preset = {
|
|
|
7552
7500
|
"light": "{colorTextDropdownItemDefault}",
|
|
7553
7501
|
"dark": "{colorTextDropdownItemDefault}"
|
|
7554
7502
|
},
|
|
7555
|
-
"colorTextCalendarDateSelected": {
|
|
7556
|
-
"light": "{colorTextAccent}",
|
|
7557
|
-
"dark": "{colorTextAccent}"
|
|
7558
|
-
},
|
|
7559
7503
|
"colorTextCalendarMonth": {
|
|
7560
7504
|
"light": "{colorNeutral600}",
|
|
7561
7505
|
"dark": "{colorNeutral450}"
|
|
@@ -8582,10 +8526,6 @@ module.exports.preset = {
|
|
|
8582
8526
|
"light": "{colorNeutral500}",
|
|
8583
8527
|
"dark": "{colorNeutral500}"
|
|
8584
8528
|
},
|
|
8585
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
8586
|
-
"light": "{colorNeutral650}",
|
|
8587
|
-
"dark": "{colorNeutral300}"
|
|
8588
|
-
},
|
|
8589
8529
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
8590
8530
|
"light": "{colorNeutral300}",
|
|
8591
8531
|
"dark": "{colorNeutral800}"
|
|
@@ -8670,10 +8610,6 @@ module.exports.preset = {
|
|
|
8670
8610
|
"light": "{colorTextDropdownItemDefault}",
|
|
8671
8611
|
"dark": "{colorTextDropdownItemDefault}"
|
|
8672
8612
|
},
|
|
8673
|
-
"colorTextCalendarDateSelected": {
|
|
8674
|
-
"light": "{colorTextAccent}",
|
|
8675
|
-
"dark": "{colorTextAccent}"
|
|
8676
|
-
},
|
|
8677
8613
|
"colorTextCalendarMonth": {
|
|
8678
8614
|
"light": "{colorNeutral600}",
|
|
8679
8615
|
"dark": "{colorNeutral450}"
|
|
@@ -9702,10 +9638,6 @@ module.exports.preset = {
|
|
|
9702
9638
|
"light": "{colorNeutral500}",
|
|
9703
9639
|
"dark": "{colorNeutral500}"
|
|
9704
9640
|
},
|
|
9705
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
9706
|
-
"light": "{colorNeutral300}",
|
|
9707
|
-
"dark": "{colorNeutral300}"
|
|
9708
|
-
},
|
|
9709
9641
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
9710
9642
|
"light": "{colorNeutral800}",
|
|
9711
9643
|
"dark": "{colorNeutral800}"
|
|
@@ -9790,10 +9722,6 @@ module.exports.preset = {
|
|
|
9790
9722
|
"light": "{colorTextDropdownItemDefault}",
|
|
9791
9723
|
"dark": "{colorTextDropdownItemDefault}"
|
|
9792
9724
|
},
|
|
9793
|
-
"colorTextCalendarDateSelected": {
|
|
9794
|
-
"light": "{colorTextAccent}",
|
|
9795
|
-
"dark": "{colorTextAccent}"
|
|
9796
|
-
},
|
|
9797
9725
|
"colorTextCalendarMonth": {
|
|
9798
9726
|
"light": "{colorNeutral450}",
|
|
9799
9727
|
"dark": "{colorNeutral450}"
|
|
@@ -10611,7 +10539,6 @@ module.exports.preset = {
|
|
|
10611
10539
|
"colorShadowMedium": "color",
|
|
10612
10540
|
"colorShadowSide": "color",
|
|
10613
10541
|
"colorStrokeChartLine": "color",
|
|
10614
|
-
"colorStrokeCodeEditorResizeHandler": "color",
|
|
10615
10542
|
"colorStrokeCodeEditorGutterActiveLineDefault": "color",
|
|
10616
10543
|
"colorStrokeCodeEditorGutterActiveLineHover": "color",
|
|
10617
10544
|
"colorTextAccent": "color",
|
|
@@ -10633,7 +10560,6 @@ module.exports.preset = {
|
|
|
10633
10560
|
"colorTextButtonPrimaryDefault": "color",
|
|
10634
10561
|
"colorTextButtonPrimaryHover": "color",
|
|
10635
10562
|
"colorTextCalendarDateHover": "color",
|
|
10636
|
-
"colorTextCalendarDateSelected": "color",
|
|
10637
10563
|
"colorTextCalendarMonth": "color",
|
|
10638
10564
|
"colorTextCodeEditorGutterActiveLine": "color",
|
|
10639
10565
|
"colorTextCodeEditorGutterDefault": "color",
|
|
@@ -10807,7 +10733,6 @@ module.exports.preset = {
|
|
|
10807
10733
|
"spaceLayoutTogglePadding": "density",
|
|
10808
10734
|
"spaceModalContentBottom": "density",
|
|
10809
10735
|
"spaceModalHorizontal": "density",
|
|
10810
|
-
"spaceOptionIconBigTop": "density",
|
|
10811
10736
|
"spacePanelContentBottom": "density",
|
|
10812
10737
|
"spacePanelContentTop": "density",
|
|
10813
10738
|
"spacePanelDividerMarginHorizontal": "density",
|
|
@@ -10869,7 +10794,6 @@ module.exports.preset = {
|
|
|
10869
10794
|
"spaceXxl": "density",
|
|
10870
10795
|
"spaceXxxl": "density",
|
|
10871
10796
|
"shadowContainer": "color",
|
|
10872
|
-
"shadowContainerStacked": "color",
|
|
10873
10797
|
"shadowContainerActive": "color",
|
|
10874
10798
|
"shadowDropdown": "color",
|
|
10875
10799
|
"shadowDropup": "color",
|
|
@@ -12023,7 +11947,6 @@ module.exports.preset = {
|
|
|
12023
11947
|
"colorShadowMedium": "color-shadow-medium",
|
|
12024
11948
|
"colorShadowSide": "color-shadow-side",
|
|
12025
11949
|
"colorStrokeChartLine": "color-stroke-chart-line",
|
|
12026
|
-
"colorStrokeCodeEditorResizeHandler": "color-stroke-code-editor-resize-handler",
|
|
12027
11950
|
"colorStrokeCodeEditorGutterActiveLineDefault": "color-stroke-code-editor-gutter-active-line-default",
|
|
12028
11951
|
"colorStrokeCodeEditorGutterActiveLineHover": "color-stroke-code-editor-gutter-active-line-hover",
|
|
12029
11952
|
"colorTextAccent": "color-text-accent",
|
|
@@ -12045,7 +11968,6 @@ module.exports.preset = {
|
|
|
12045
11968
|
"colorTextButtonPrimaryDefault": "color-text-button-primary-default",
|
|
12046
11969
|
"colorTextButtonPrimaryHover": "color-text-button-primary-hover",
|
|
12047
11970
|
"colorTextCalendarDateHover": "color-text-calendar-date-hover",
|
|
12048
|
-
"colorTextCalendarDateSelected": "color-text-calendar-date-selected",
|
|
12049
11971
|
"colorTextCalendarMonth": "color-text-calendar-month",
|
|
12050
11972
|
"colorTextCodeEditorGutterActiveLine": "color-text-code-editor-gutter-active-line",
|
|
12051
11973
|
"colorTextCodeEditorGutterDefault": "color-text-code-editor-gutter-default",
|
|
@@ -12311,7 +12233,6 @@ module.exports.preset = {
|
|
|
12311
12233
|
"spaceLayoutTogglePadding": "space-layout-toggle-padding",
|
|
12312
12234
|
"spaceModalContentBottom": "space-modal-content-bottom",
|
|
12313
12235
|
"spaceModalHorizontal": "space-modal-horizontal",
|
|
12314
|
-
"spaceOptionIconBigTop": "space-option-icon-big-top",
|
|
12315
12236
|
"spacePanelContentBottom": "space-panel-content-bottom",
|
|
12316
12237
|
"spacePanelContentTop": "space-panel-content-top",
|
|
12317
12238
|
"spacePanelDividerMarginHorizontal": "space-panel-divider-margin-horizontal",
|
|
@@ -12373,7 +12294,6 @@ module.exports.preset = {
|
|
|
12373
12294
|
"spaceXxl": "space-xxl",
|
|
12374
12295
|
"spaceXxxl": "space-xxxl",
|
|
12375
12296
|
"shadowContainer": "shadow-container",
|
|
12376
|
-
"shadowContainerStacked": "shadow-container-stacked",
|
|
12377
12297
|
"shadowContainerActive": "shadow-container-active",
|
|
12378
12298
|
"shadowDropdown": "shadow-dropdown",
|
|
12379
12299
|
"shadowDropup": "shadow-dropup",
|
|
@@ -12858,7 +12778,6 @@ module.exports.preset = {
|
|
|
12858
12778
|
"colorShadowMedium": "--color-shadow-medium-x7of55",
|
|
12859
12779
|
"colorShadowSide": "--color-shadow-side-rtsbda",
|
|
12860
12780
|
"colorStrokeChartLine": "--color-stroke-chart-line-3nsnk6",
|
|
12861
|
-
"colorStrokeCodeEditorResizeHandler": "--color-stroke-code-editor-resize-handler-atdd8r",
|
|
12862
12781
|
"colorStrokeCodeEditorGutterActiveLineDefault": "--color-stroke-code-editor-gutter-active-line-default-5hrdmu",
|
|
12863
12782
|
"colorStrokeCodeEditorGutterActiveLineHover": "--color-stroke-code-editor-gutter-active-line-hover-vqrb6s",
|
|
12864
12783
|
"colorTextAccent": "--color-text-accent-n1kmht",
|
|
@@ -12880,7 +12799,6 @@ module.exports.preset = {
|
|
|
12880
12799
|
"colorTextButtonPrimaryDefault": "--color-text-button-primary-default-mwl31m",
|
|
12881
12800
|
"colorTextButtonPrimaryHover": "--color-text-button-primary-hover-pw12ep",
|
|
12882
12801
|
"colorTextCalendarDateHover": "--color-text-calendar-date-hover-3fcriv",
|
|
12883
|
-
"colorTextCalendarDateSelected": "--color-text-calendar-date-selected-wc8ffc",
|
|
12884
12802
|
"colorTextCalendarMonth": "--color-text-calendar-month-ea0e93",
|
|
12885
12803
|
"colorTextCodeEditorGutterActiveLine": "--color-text-code-editor-gutter-active-line-2addhd",
|
|
12886
12804
|
"colorTextCodeEditorGutterDefault": "--color-text-code-editor-gutter-default-nlshs8",
|
|
@@ -13146,7 +13064,6 @@ module.exports.preset = {
|
|
|
13146
13064
|
"spaceLayoutTogglePadding": "--space-layout-toggle-padding-chwlhz",
|
|
13147
13065
|
"spaceModalContentBottom": "--space-modal-content-bottom-nl6ceq",
|
|
13148
13066
|
"spaceModalHorizontal": "--space-modal-horizontal-y5hnwp",
|
|
13149
|
-
"spaceOptionIconBigTop": "--space-option-icon-big-top-rs5wgf",
|
|
13150
13067
|
"spacePanelContentBottom": "--space-panel-content-bottom-24c6lu",
|
|
13151
13068
|
"spacePanelContentTop": "--space-panel-content-top-qvd1dr",
|
|
13152
13069
|
"spacePanelDividerMarginHorizontal": "--space-panel-divider-margin-horizontal-yw31p0",
|
|
@@ -13208,7 +13125,6 @@ module.exports.preset = {
|
|
|
13208
13125
|
"spaceXxl": "--space-xxl-32srm4",
|
|
13209
13126
|
"spaceXxxl": "--space-xxxl-aut1u7",
|
|
13210
13127
|
"shadowContainer": "--shadow-container-53ltfv",
|
|
13211
|
-
"shadowContainerStacked": "--shadow-container-stacked-y4nc75",
|
|
13212
13128
|
"shadowContainerActive": "--shadow-container-active-ypjjoc",
|
|
13213
13129
|
"shadowDropdown": "--shadow-dropdown-isf0w4",
|
|
13214
13130
|
"shadowDropup": "--shadow-dropup-2r02r5",
|
|
@@ -1754,10 +1754,6 @@ export var preset = {
|
|
|
1754
1754
|
"light": "{colorNeutral500}",
|
|
1755
1755
|
"dark": "{colorNeutral500}"
|
|
1756
1756
|
},
|
|
1757
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
1758
|
-
"light": "{colorNeutral650}",
|
|
1759
|
-
"dark": "{colorNeutral300}"
|
|
1760
|
-
},
|
|
1761
1757
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
1762
1758
|
"light": "{colorNeutral300}",
|
|
1763
1759
|
"dark": "{colorNeutral800}"
|
|
@@ -1842,10 +1838,6 @@ export var preset = {
|
|
|
1842
1838
|
"light": "{colorTextDropdownItemDefault}",
|
|
1843
1839
|
"dark": "{colorTextDropdownItemDefault}"
|
|
1844
1840
|
},
|
|
1845
|
-
"colorTextCalendarDateSelected": {
|
|
1846
|
-
"light": "{colorTextAccent}",
|
|
1847
|
-
"dark": "{colorTextAccent}"
|
|
1848
|
-
},
|
|
1849
1841
|
"colorTextCalendarMonth": {
|
|
1850
1842
|
"light": "{colorNeutral600}",
|
|
1851
1843
|
"dark": "{colorNeutral450}"
|
|
@@ -2630,10 +2622,6 @@ export var preset = {
|
|
|
2630
2622
|
"comfortable": "{spaceContainerHorizontal}",
|
|
2631
2623
|
"compact": "{spaceContainerHorizontal}"
|
|
2632
2624
|
},
|
|
2633
|
-
"spaceOptionIconBigTop": {
|
|
2634
|
-
"comfortable": "0px",
|
|
2635
|
-
"compact": "0px"
|
|
2636
|
-
},
|
|
2637
2625
|
"spacePanelContentBottom": {
|
|
2638
2626
|
"comfortable": "{spaceScaledXxxl}",
|
|
2639
2627
|
"compact": "{spaceScaledXxxl}"
|
|
@@ -2878,10 +2866,6 @@ export var preset = {
|
|
|
2878
2866
|
"light": "0px 0px 1px 1px #e9ebed, 0px 1px 8px 2px rgba(0, 7, 22, 0.12)",
|
|
2879
2867
|
"dark": "0px 1px 8px 2px rgba(0, 7, 22, 0.6)"
|
|
2880
2868
|
},
|
|
2881
|
-
"shadowContainerStacked": {
|
|
2882
|
-
"light": "-1px 1px 1px 0px #e9ebed, 1px 1px 1px 0px #e9ebed, 0px 9px 8px -7px rgb(0 7 22 / 12%), 8px 0px 8px -7px rgb(0 7 22 / 12%), -8px 0px 8px -7px rgb(0 7 22 / 12%)",
|
|
2883
|
-
"dark": "0px 9px 8px -7px rgb(0 7 22 / 60%), 8px 0px 8px -7px rgb(0 7 22 / 60%), -8px 0px 8px -7px rgb(0 7 22 / 60%)"
|
|
2884
|
-
},
|
|
2885
2869
|
"shadowContainerActive": {
|
|
2886
2870
|
"light": "0px 1px 1px 1px #e9ebed, 0px 6px 36px #0007161a",
|
|
2887
2871
|
"dark": "0px 1px 1px 1px #192534, 0px 6px 36px #00040c"
|
|
@@ -3104,10 +3088,6 @@ export var preset = {
|
|
|
3104
3088
|
"comfortable": "{spaceContainerHorizontal}",
|
|
3105
3089
|
"compact": "{spaceContainerHorizontal}"
|
|
3106
3090
|
},
|
|
3107
|
-
"spaceOptionIconBigTop": {
|
|
3108
|
-
"comfortable": "0px",
|
|
3109
|
-
"compact": "0px"
|
|
3110
|
-
},
|
|
3111
3091
|
"spacePanelContentBottom": {
|
|
3112
3092
|
"comfortable": "{spaceScaledXxxl}",
|
|
3113
3093
|
"compact": "{spaceScaledXxxl}"
|
|
@@ -4042,10 +4022,6 @@ export var preset = {
|
|
|
4042
4022
|
"light": "{colorNeutral500}",
|
|
4043
4023
|
"dark": "{colorNeutral500}"
|
|
4044
4024
|
},
|
|
4045
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
4046
|
-
"light": "{colorNeutral300}",
|
|
4047
|
-
"dark": "{colorNeutral300}"
|
|
4048
|
-
},
|
|
4049
4025
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
4050
4026
|
"light": "{colorNeutral800}",
|
|
4051
4027
|
"dark": "{colorNeutral800}"
|
|
@@ -4130,10 +4106,6 @@ export var preset = {
|
|
|
4130
4106
|
"light": "{colorTextDropdownItemDefault}",
|
|
4131
4107
|
"dark": "{colorTextDropdownItemDefault}"
|
|
4132
4108
|
},
|
|
4133
|
-
"colorTextCalendarDateSelected": {
|
|
4134
|
-
"light": "{colorTextAccent}",
|
|
4135
|
-
"dark": "{colorTextAccent}"
|
|
4136
|
-
},
|
|
4137
4109
|
"colorTextCalendarMonth": {
|
|
4138
4110
|
"light": "{colorNeutral450}",
|
|
4139
4111
|
"dark": "{colorNeutral450}"
|
|
@@ -4480,10 +4452,6 @@ export var preset = {
|
|
|
4480
4452
|
"light": "0px 1px 8px 2px rgba(0, 7, 22, 0.6)",
|
|
4481
4453
|
"dark": "0px 1px 8px 2px rgba(0, 7, 22, 0.6)"
|
|
4482
4454
|
},
|
|
4483
|
-
"shadowContainerStacked": {
|
|
4484
|
-
"light": "0px 9px 8px -7px rgb(0 7 22 / 60%), 8px 0px 8px -7px rgb(0 7 22 / 60%), -8px 0px 8px -7px rgb(0 7 22 / 60%)",
|
|
4485
|
-
"dark": "0px 9px 8px -7px rgb(0 7 22 / 60%), 8px 0px 8px -7px rgb(0 7 22 / 60%), -8px 0px 8px -7px rgb(0 7 22 / 60%)"
|
|
4486
|
-
},
|
|
4487
4455
|
"shadowContainerActive": {
|
|
4488
4456
|
"light": "0px 1px 1px 1px #192534, 0px 6px 36px #00040c",
|
|
4489
4457
|
"dark": "0px 1px 1px 1px #192534, 0px 6px 36px #00040c"
|
|
@@ -5228,10 +5196,6 @@ export var preset = {
|
|
|
5228
5196
|
"light": "{colorNeutral500}",
|
|
5229
5197
|
"dark": "{colorNeutral500}"
|
|
5230
5198
|
},
|
|
5231
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
5232
|
-
"light": "{colorNeutral300}",
|
|
5233
|
-
"dark": "{colorNeutral300}"
|
|
5234
|
-
},
|
|
5235
5199
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
5236
5200
|
"light": "{colorNeutral800}",
|
|
5237
5201
|
"dark": "{colorNeutral800}"
|
|
@@ -5316,10 +5280,6 @@ export var preset = {
|
|
|
5316
5280
|
"light": "{colorTextDropdownItemDefault}",
|
|
5317
5281
|
"dark": "{colorTextDropdownItemDefault}"
|
|
5318
5282
|
},
|
|
5319
|
-
"colorTextCalendarDateSelected": {
|
|
5320
|
-
"light": "{colorTextAccent}",
|
|
5321
|
-
"dark": "{colorTextAccent}"
|
|
5322
|
-
},
|
|
5323
5283
|
"colorTextCalendarMonth": {
|
|
5324
5284
|
"light": "{colorNeutral450}",
|
|
5325
5285
|
"dark": "{colorNeutral450}"
|
|
@@ -6346,10 +6306,6 @@ export var preset = {
|
|
|
6346
6306
|
"light": "{colorNeutral500}",
|
|
6347
6307
|
"dark": "{colorNeutral500}"
|
|
6348
6308
|
},
|
|
6349
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
6350
|
-
"light": "{colorNeutral650}",
|
|
6351
|
-
"dark": "{colorNeutral300}"
|
|
6352
|
-
},
|
|
6353
6309
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
6354
6310
|
"light": "{colorNeutral300}",
|
|
6355
6311
|
"dark": "{colorNeutral800}"
|
|
@@ -6434,10 +6390,6 @@ export var preset = {
|
|
|
6434
6390
|
"light": "{colorTextDropdownItemDefault}",
|
|
6435
6391
|
"dark": "{colorTextDropdownItemDefault}"
|
|
6436
6392
|
},
|
|
6437
|
-
"colorTextCalendarDateSelected": {
|
|
6438
|
-
"light": "{colorTextAccent}",
|
|
6439
|
-
"dark": "{colorTextAccent}"
|
|
6440
|
-
},
|
|
6441
6393
|
"colorTextCalendarMonth": {
|
|
6442
6394
|
"light": "{colorNeutral600}",
|
|
6443
6395
|
"dark": "{colorNeutral450}"
|
|
@@ -7464,10 +7416,6 @@ export var preset = {
|
|
|
7464
7416
|
"light": "{colorNeutral500}",
|
|
7465
7417
|
"dark": "{colorNeutral500}"
|
|
7466
7418
|
},
|
|
7467
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
7468
|
-
"light": "{colorNeutral650}",
|
|
7469
|
-
"dark": "{colorNeutral300}"
|
|
7470
|
-
},
|
|
7471
7419
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
7472
7420
|
"light": "{colorNeutral300}",
|
|
7473
7421
|
"dark": "{colorNeutral800}"
|
|
@@ -7552,10 +7500,6 @@ export var preset = {
|
|
|
7552
7500
|
"light": "{colorTextDropdownItemDefault}",
|
|
7553
7501
|
"dark": "{colorTextDropdownItemDefault}"
|
|
7554
7502
|
},
|
|
7555
|
-
"colorTextCalendarDateSelected": {
|
|
7556
|
-
"light": "{colorTextAccent}",
|
|
7557
|
-
"dark": "{colorTextAccent}"
|
|
7558
|
-
},
|
|
7559
7503
|
"colorTextCalendarMonth": {
|
|
7560
7504
|
"light": "{colorNeutral600}",
|
|
7561
7505
|
"dark": "{colorNeutral450}"
|
|
@@ -8582,10 +8526,6 @@ export var preset = {
|
|
|
8582
8526
|
"light": "{colorNeutral500}",
|
|
8583
8527
|
"dark": "{colorNeutral500}"
|
|
8584
8528
|
},
|
|
8585
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
8586
|
-
"light": "{colorNeutral650}",
|
|
8587
|
-
"dark": "{colorNeutral300}"
|
|
8588
|
-
},
|
|
8589
8529
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
8590
8530
|
"light": "{colorNeutral300}",
|
|
8591
8531
|
"dark": "{colorNeutral800}"
|
|
@@ -8670,10 +8610,6 @@ export var preset = {
|
|
|
8670
8610
|
"light": "{colorTextDropdownItemDefault}",
|
|
8671
8611
|
"dark": "{colorTextDropdownItemDefault}"
|
|
8672
8612
|
},
|
|
8673
|
-
"colorTextCalendarDateSelected": {
|
|
8674
|
-
"light": "{colorTextAccent}",
|
|
8675
|
-
"dark": "{colorTextAccent}"
|
|
8676
|
-
},
|
|
8677
8613
|
"colorTextCalendarMonth": {
|
|
8678
8614
|
"light": "{colorNeutral600}",
|
|
8679
8615
|
"dark": "{colorNeutral450}"
|
|
@@ -9702,10 +9638,6 @@ export var preset = {
|
|
|
9702
9638
|
"light": "{colorNeutral500}",
|
|
9703
9639
|
"dark": "{colorNeutral500}"
|
|
9704
9640
|
},
|
|
9705
|
-
"colorStrokeCodeEditorResizeHandler": {
|
|
9706
|
-
"light": "{colorNeutral300}",
|
|
9707
|
-
"dark": "{colorNeutral300}"
|
|
9708
|
-
},
|
|
9709
9641
|
"colorStrokeCodeEditorGutterActiveLineDefault": {
|
|
9710
9642
|
"light": "{colorNeutral800}",
|
|
9711
9643
|
"dark": "{colorNeutral800}"
|
|
@@ -9790,10 +9722,6 @@ export var preset = {
|
|
|
9790
9722
|
"light": "{colorTextDropdownItemDefault}",
|
|
9791
9723
|
"dark": "{colorTextDropdownItemDefault}"
|
|
9792
9724
|
},
|
|
9793
|
-
"colorTextCalendarDateSelected": {
|
|
9794
|
-
"light": "{colorTextAccent}",
|
|
9795
|
-
"dark": "{colorTextAccent}"
|
|
9796
|
-
},
|
|
9797
9725
|
"colorTextCalendarMonth": {
|
|
9798
9726
|
"light": "{colorNeutral450}",
|
|
9799
9727
|
"dark": "{colorNeutral450}"
|
|
@@ -10611,7 +10539,6 @@ export var preset = {
|
|
|
10611
10539
|
"colorShadowMedium": "color",
|
|
10612
10540
|
"colorShadowSide": "color",
|
|
10613
10541
|
"colorStrokeChartLine": "color",
|
|
10614
|
-
"colorStrokeCodeEditorResizeHandler": "color",
|
|
10615
10542
|
"colorStrokeCodeEditorGutterActiveLineDefault": "color",
|
|
10616
10543
|
"colorStrokeCodeEditorGutterActiveLineHover": "color",
|
|
10617
10544
|
"colorTextAccent": "color",
|
|
@@ -10633,7 +10560,6 @@ export var preset = {
|
|
|
10633
10560
|
"colorTextButtonPrimaryDefault": "color",
|
|
10634
10561
|
"colorTextButtonPrimaryHover": "color",
|
|
10635
10562
|
"colorTextCalendarDateHover": "color",
|
|
10636
|
-
"colorTextCalendarDateSelected": "color",
|
|
10637
10563
|
"colorTextCalendarMonth": "color",
|
|
10638
10564
|
"colorTextCodeEditorGutterActiveLine": "color",
|
|
10639
10565
|
"colorTextCodeEditorGutterDefault": "color",
|
|
@@ -10807,7 +10733,6 @@ export var preset = {
|
|
|
10807
10733
|
"spaceLayoutTogglePadding": "density",
|
|
10808
10734
|
"spaceModalContentBottom": "density",
|
|
10809
10735
|
"spaceModalHorizontal": "density",
|
|
10810
|
-
"spaceOptionIconBigTop": "density",
|
|
10811
10736
|
"spacePanelContentBottom": "density",
|
|
10812
10737
|
"spacePanelContentTop": "density",
|
|
10813
10738
|
"spacePanelDividerMarginHorizontal": "density",
|
|
@@ -10869,7 +10794,6 @@ export var preset = {
|
|
|
10869
10794
|
"spaceXxl": "density",
|
|
10870
10795
|
"spaceXxxl": "density",
|
|
10871
10796
|
"shadowContainer": "color",
|
|
10872
|
-
"shadowContainerStacked": "color",
|
|
10873
10797
|
"shadowContainerActive": "color",
|
|
10874
10798
|
"shadowDropdown": "color",
|
|
10875
10799
|
"shadowDropup": "color",
|
|
@@ -12023,7 +11947,6 @@ export var preset = {
|
|
|
12023
11947
|
"colorShadowMedium": "color-shadow-medium",
|
|
12024
11948
|
"colorShadowSide": "color-shadow-side",
|
|
12025
11949
|
"colorStrokeChartLine": "color-stroke-chart-line",
|
|
12026
|
-
"colorStrokeCodeEditorResizeHandler": "color-stroke-code-editor-resize-handler",
|
|
12027
11950
|
"colorStrokeCodeEditorGutterActiveLineDefault": "color-stroke-code-editor-gutter-active-line-default",
|
|
12028
11951
|
"colorStrokeCodeEditorGutterActiveLineHover": "color-stroke-code-editor-gutter-active-line-hover",
|
|
12029
11952
|
"colorTextAccent": "color-text-accent",
|
|
@@ -12045,7 +11968,6 @@ export var preset = {
|
|
|
12045
11968
|
"colorTextButtonPrimaryDefault": "color-text-button-primary-default",
|
|
12046
11969
|
"colorTextButtonPrimaryHover": "color-text-button-primary-hover",
|
|
12047
11970
|
"colorTextCalendarDateHover": "color-text-calendar-date-hover",
|
|
12048
|
-
"colorTextCalendarDateSelected": "color-text-calendar-date-selected",
|
|
12049
11971
|
"colorTextCalendarMonth": "color-text-calendar-month",
|
|
12050
11972
|
"colorTextCodeEditorGutterActiveLine": "color-text-code-editor-gutter-active-line",
|
|
12051
11973
|
"colorTextCodeEditorGutterDefault": "color-text-code-editor-gutter-default",
|
|
@@ -12311,7 +12233,6 @@ export var preset = {
|
|
|
12311
12233
|
"spaceLayoutTogglePadding": "space-layout-toggle-padding",
|
|
12312
12234
|
"spaceModalContentBottom": "space-modal-content-bottom",
|
|
12313
12235
|
"spaceModalHorizontal": "space-modal-horizontal",
|
|
12314
|
-
"spaceOptionIconBigTop": "space-option-icon-big-top",
|
|
12315
12236
|
"spacePanelContentBottom": "space-panel-content-bottom",
|
|
12316
12237
|
"spacePanelContentTop": "space-panel-content-top",
|
|
12317
12238
|
"spacePanelDividerMarginHorizontal": "space-panel-divider-margin-horizontal",
|
|
@@ -12373,7 +12294,6 @@ export var preset = {
|
|
|
12373
12294
|
"spaceXxl": "space-xxl",
|
|
12374
12295
|
"spaceXxxl": "space-xxxl",
|
|
12375
12296
|
"shadowContainer": "shadow-container",
|
|
12376
|
-
"shadowContainerStacked": "shadow-container-stacked",
|
|
12377
12297
|
"shadowContainerActive": "shadow-container-active",
|
|
12378
12298
|
"shadowDropdown": "shadow-dropdown",
|
|
12379
12299
|
"shadowDropup": "shadow-dropup",
|
|
@@ -12858,7 +12778,6 @@ export var preset = {
|
|
|
12858
12778
|
"colorShadowMedium": "--color-shadow-medium-x7of55",
|
|
12859
12779
|
"colorShadowSide": "--color-shadow-side-rtsbda",
|
|
12860
12780
|
"colorStrokeChartLine": "--color-stroke-chart-line-3nsnk6",
|
|
12861
|
-
"colorStrokeCodeEditorResizeHandler": "--color-stroke-code-editor-resize-handler-atdd8r",
|
|
12862
12781
|
"colorStrokeCodeEditorGutterActiveLineDefault": "--color-stroke-code-editor-gutter-active-line-default-5hrdmu",
|
|
12863
12782
|
"colorStrokeCodeEditorGutterActiveLineHover": "--color-stroke-code-editor-gutter-active-line-hover-vqrb6s",
|
|
12864
12783
|
"colorTextAccent": "--color-text-accent-n1kmht",
|
|
@@ -12880,7 +12799,6 @@ export var preset = {
|
|
|
12880
12799
|
"colorTextButtonPrimaryDefault": "--color-text-button-primary-default-mwl31m",
|
|
12881
12800
|
"colorTextButtonPrimaryHover": "--color-text-button-primary-hover-pw12ep",
|
|
12882
12801
|
"colorTextCalendarDateHover": "--color-text-calendar-date-hover-3fcriv",
|
|
12883
|
-
"colorTextCalendarDateSelected": "--color-text-calendar-date-selected-wc8ffc",
|
|
12884
12802
|
"colorTextCalendarMonth": "--color-text-calendar-month-ea0e93",
|
|
12885
12803
|
"colorTextCodeEditorGutterActiveLine": "--color-text-code-editor-gutter-active-line-2addhd",
|
|
12886
12804
|
"colorTextCodeEditorGutterDefault": "--color-text-code-editor-gutter-default-nlshs8",
|
|
@@ -13146,7 +13064,6 @@ export var preset = {
|
|
|
13146
13064
|
"spaceLayoutTogglePadding": "--space-layout-toggle-padding-chwlhz",
|
|
13147
13065
|
"spaceModalContentBottom": "--space-modal-content-bottom-nl6ceq",
|
|
13148
13066
|
"spaceModalHorizontal": "--space-modal-horizontal-y5hnwp",
|
|
13149
|
-
"spaceOptionIconBigTop": "--space-option-icon-big-top-rs5wgf",
|
|
13150
13067
|
"spacePanelContentBottom": "--space-panel-content-bottom-24c6lu",
|
|
13151
13068
|
"spacePanelContentTop": "--space-panel-content-top-qvd1dr",
|
|
13152
13069
|
"spacePanelDividerMarginHorizontal": "--space-panel-divider-margin-horizontal-yw31p0",
|
|
@@ -13208,7 +13125,6 @@ export var preset = {
|
|
|
13208
13125
|
"spaceXxl": "--space-xxl-32srm4",
|
|
13209
13126
|
"spaceXxxl": "--space-xxxl-aut1u7",
|
|
13210
13127
|
"shadowContainer": "--shadow-container-53ltfv",
|
|
13211
|
-
"shadowContainerStacked": "--shadow-container-stacked-y4nc75",
|
|
13212
13128
|
"shadowContainerActive": "--shadow-container-active-ypjjoc",
|
|
13213
13129
|
"shadowDropdown": "--shadow-dropdown-isf0w4",
|
|
13214
13130
|
"shadowDropup": "--shadow-dropup-2r02r5",
|
package/internal/manifest.json
CHANGED