@cloudscape-design/components-themeable 3.0.716 → 3.0.717
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/lib/internal/manifest.json +1 -1
- package/lib/internal/scss/toggle-button/styles.scss +18 -0
- package/lib/internal/template/button/interfaces.d.ts +39 -37
- package/lib/internal/template/button/interfaces.d.ts.map +1 -1
- package/lib/internal/template/button/interfaces.js.map +1 -1
- package/lib/internal/template/index.d.ts +1 -0
- package/lib/internal/template/index.d.ts.map +1 -1
- package/lib/internal/template/index.js +1 -0
- package/lib/internal/template/index.js.map +1 -1
- package/lib/internal/template/internal/base-component/styles.scoped.css +44 -0
- package/lib/internal/template/internal/environment.js +1 -1
- package/lib/internal/template/internal/environment.json +1 -1
- package/lib/internal/template/internal/generated/styles/tokens.d.ts +4 -0
- package/lib/internal/template/internal/generated/styles/tokens.js +4 -0
- package/lib/internal/template/internal/generated/theming/index.cjs +132 -0
- package/lib/internal/template/internal/generated/theming/index.cjs.d.ts +32 -0
- package/lib/internal/template/internal/generated/theming/index.d.ts +32 -0
- package/lib/internal/template/internal/generated/theming/index.js +132 -0
- package/lib/internal/template/package.json +1 -0
- package/lib/internal/template/select/parts/filter.d.ts +1 -1
- package/lib/internal/template/test-utils/dom/index.d.ts +3 -0
- package/lib/internal/template/test-utils/dom/index.js +9 -1
- package/lib/internal/template/test-utils/dom/index.js.map +1 -1
- package/lib/internal/template/test-utils/dom/toggle-button/index.d.ts +5 -0
- package/lib/internal/template/test-utils/dom/toggle-button/index.js +25 -0
- package/lib/internal/template/test-utils/dom/toggle-button/index.js.map +1 -0
- package/lib/internal/template/test-utils/selectors/index.d.ts +3 -0
- package/lib/internal/template/test-utils/selectors/index.js +9 -1
- package/lib/internal/template/test-utils/selectors/index.js.map +1 -1
- package/lib/internal/template/test-utils/selectors/toggle-button/index.d.ts +5 -0
- package/lib/internal/template/test-utils/selectors/toggle-button/index.js +12 -0
- package/lib/internal/template/test-utils/selectors/toggle-button/index.js.map +1 -0
- package/lib/internal/template/test-utils/tsconfig.tsbuildinfo +1 -1
- package/lib/internal/template/toggle-button/index.d.ts +6 -0
- package/lib/internal/template/toggle-button/index.d.ts.map +1 -0
- package/lib/internal/template/toggle-button/index.js +19 -0
- package/lib/internal/template/toggle-button/index.js.map +1 -0
- package/lib/internal/template/toggle-button/interfaces.d.ts +78 -0
- package/lib/internal/template/toggle-button/interfaces.d.ts.map +1 -0
- package/lib/internal/template/toggle-button/interfaces.js +2 -0
- package/lib/internal/template/toggle-button/interfaces.js.map +1 -0
- package/lib/internal/template/toggle-button/internal.d.ts +5 -0
- package/lib/internal/template/toggle-button/internal.d.ts.map +1 -0
- package/lib/internal/template/toggle-button/internal.js +31 -0
- package/lib/internal/template/toggle-button/internal.js.map +1 -0
- package/lib/internal/template/toggle-button/styles.css.js +8 -0
- package/lib/internal/template/toggle-button/styles.scoped.css +19 -0
- package/lib/internal/template/toggle-button/styles.selectors.js +9 -0
- package/lib/internal/template/toggle-button/util.d.ts +2 -0
- package/lib/internal/template/toggle-button/util.d.ts.map +1 -0
- package/lib/internal/template/toggle-button/util.js +9 -0
- package/lib/internal/template/toggle-button/util.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
|
+
SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
@use '../internal/styles/tokens' as awsui;
|
|
7
|
+
|
|
8
|
+
.variant-normal.pressed {
|
|
9
|
+
background: awsui.$color-background-toggle-button-normal-pressed;
|
|
10
|
+
border-color: awsui.$color-border-toggle-button-normal-pressed;
|
|
11
|
+
color: awsui.$color-text-toggle-button-normal-pressed;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.variant-icon.pressed {
|
|
15
|
+
background: transparent;
|
|
16
|
+
border-color: transparent;
|
|
17
|
+
color: awsui.$color-text-toggle-button-icon-pressed;
|
|
18
|
+
}
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import { IconProps } from '../icon/interfaces';
|
|
3
3
|
import { BaseComponentProps } from '../internal/base-component';
|
|
4
4
|
import { BaseNavigationDetail, CancelableEventHandler, ClickDetail as _ClickDetail } from '../internal/events';
|
|
5
|
-
export interface
|
|
5
|
+
export interface BaseButtonProps {
|
|
6
6
|
/**
|
|
7
7
|
* Renders the button as disabled and prevents clicks.
|
|
8
8
|
*/
|
|
@@ -26,10 +26,6 @@ export interface ButtonProps extends BaseComponentProps {
|
|
|
26
26
|
* Displays an icon next to the text. You can use the `iconAlign` property to position the icon.
|
|
27
27
|
*/
|
|
28
28
|
iconName?: IconProps.Name;
|
|
29
|
-
/**
|
|
30
|
-
* Specifies the alignment of the icon.
|
|
31
|
-
*/
|
|
32
|
-
iconAlign?: ButtonProps.IconAlign;
|
|
33
29
|
/**
|
|
34
30
|
* Specifies the URL of a custom icon. Use this property if the icon you want isn't available.
|
|
35
31
|
*
|
|
@@ -58,15 +54,6 @@ export interface ButtonProps extends BaseComponentProps {
|
|
|
58
54
|
* In most cases, they aren't needed, as the `svg` element inherits styles from the icon component.
|
|
59
55
|
*/
|
|
60
56
|
iconSvg?: React.ReactNode;
|
|
61
|
-
/**
|
|
62
|
-
* Specifies alternate text for a custom icon. We recommend that you provide this for accessibility.
|
|
63
|
-
* This property is ignored if you use a predefined icon or if you set your custom icon using the `iconSvg` slot.
|
|
64
|
-
*/
|
|
65
|
-
iconAlt?: string;
|
|
66
|
-
/**
|
|
67
|
-
* The form action that is performed by a button click.
|
|
68
|
-
*/
|
|
69
|
-
formAction?: ButtonProps.FormAction;
|
|
70
57
|
/**
|
|
71
58
|
* Adds `aria-label` to the button element. Use this to provide an accessible name for buttons
|
|
72
59
|
* that don't have visible text, and to distinguish between multiple buttons with identical visible text.
|
|
@@ -77,6 +64,29 @@ export interface ButtonProps extends BaseComponentProps {
|
|
|
77
64
|
* Adds `aria-describedby` to the button.
|
|
78
65
|
*/
|
|
79
66
|
ariaDescribedby?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Specifies if the `text` content wraps. If you set it to `false`, it prevents the text from wrapping.
|
|
69
|
+
*/
|
|
70
|
+
wrapText?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Text displayed in the button element.
|
|
73
|
+
* @displayname text
|
|
74
|
+
*/
|
|
75
|
+
children?: React.ReactNode;
|
|
76
|
+
/**
|
|
77
|
+
* Adds `aria-controls` to the button. Use when the button controls the contents or presence of an element.
|
|
78
|
+
*/
|
|
79
|
+
ariaControls?: string;
|
|
80
|
+
}
|
|
81
|
+
export interface ButtonProps extends BaseComponentProps, BaseButtonProps {
|
|
82
|
+
/**
|
|
83
|
+
* Specifies the alignment of the icon.
|
|
84
|
+
*/
|
|
85
|
+
iconAlign?: ButtonProps.IconAlign;
|
|
86
|
+
/**
|
|
87
|
+
* The form action that is performed by a button click.
|
|
88
|
+
*/
|
|
89
|
+
formAction?: ButtonProps.FormAction;
|
|
80
90
|
/**
|
|
81
91
|
* Applies button styling to a link. Use this property if you need a link styled as a button (`variant=link`).
|
|
82
92
|
* For example, if you have a 'help' button that links to a documentation page.
|
|
@@ -98,28 +108,14 @@ export interface ButtonProps extends BaseComponentProps {
|
|
|
98
108
|
* This property only applies when an `href` is provided.
|
|
99
109
|
**/
|
|
100
110
|
download?: boolean | string;
|
|
101
|
-
/**
|
|
102
|
-
* Specifies if the `text` content wraps. If you set it to `false`, it prevents the text from wrapping.
|
|
103
|
-
*/
|
|
104
|
-
wrapText?: boolean;
|
|
105
|
-
/** Determines the general styling of the button as follows:
|
|
106
|
-
* * `primary` for primary buttons.
|
|
107
|
-
* * `normal` for secondary buttons.
|
|
108
|
-
* * `link` for tertiary buttons.
|
|
109
|
-
* * `icon` to display an icon only (no text).
|
|
110
|
-
* * `inline-icon` to display an icon-only (no text) button within a text context.
|
|
111
|
-
* * `inline-link` to display a tertiary button with no outer padding.
|
|
112
|
-
*/
|
|
113
|
-
variant?: ButtonProps.Variant;
|
|
114
111
|
/** The id of the <form> element to associate with the button. The value of this attribute must be the id of a <form> in the same document.
|
|
115
112
|
* Use when a button is not the ancestor of a form element, such as when used in a modal.
|
|
116
113
|
*/
|
|
117
114
|
form?: string;
|
|
118
115
|
/**
|
|
119
|
-
*
|
|
120
|
-
* @displayname text
|
|
116
|
+
* Adds aria-expanded to the button element. Use when the button controls an expandable element.
|
|
121
117
|
*/
|
|
122
|
-
|
|
118
|
+
ariaExpanded?: boolean;
|
|
123
119
|
/**
|
|
124
120
|
* Called when the user clicks on the button and the button is not disabled or in loading state.
|
|
125
121
|
*/
|
|
@@ -130,17 +126,23 @@ export interface ButtonProps extends BaseComponentProps {
|
|
|
130
126
|
*/
|
|
131
127
|
onFollow?: CancelableEventHandler<ButtonProps.FollowDetail>;
|
|
132
128
|
/**
|
|
133
|
-
*
|
|
129
|
+
* Sets the button width to be 100% of the parent container width. Button content is centered.
|
|
134
130
|
*/
|
|
135
|
-
|
|
136
|
-
/**
|
|
137
|
-
*
|
|
131
|
+
fullWidth?: boolean;
|
|
132
|
+
/** Determines the general styling of the button as follows:
|
|
133
|
+
* * `primary` for primary buttons.
|
|
134
|
+
* * `normal` for secondary buttons.
|
|
135
|
+
* * `link` for tertiary buttons.
|
|
136
|
+
* * `icon` to display an icon only (no text).
|
|
137
|
+
* * `inline-icon` to display an icon-only (no text) button within a text context.
|
|
138
|
+
* * `inline-link` to display a tertiary button with no outer padding.
|
|
138
139
|
*/
|
|
139
|
-
|
|
140
|
+
variant?: ButtonProps.Variant;
|
|
140
141
|
/**
|
|
141
|
-
*
|
|
142
|
+
* Specifies alternate text for a custom icon. We recommend that you provide this for accessibility.
|
|
143
|
+
* This property is ignored if you use a predefined icon or if you set your custom icon using the `iconSvg` slot.
|
|
142
144
|
*/
|
|
143
|
-
|
|
145
|
+
iconAlt?: string;
|
|
144
146
|
}
|
|
145
147
|
export declare namespace ButtonProps {
|
|
146
148
|
type Variant = 'normal' | 'primary' | 'link' | 'icon' | 'inline-icon' | 'inline-link';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interfaces.d.ts","sourceRoot":"","sources":["../../../src/button/interfaces.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,WAAW,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAE/G,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"interfaces.d.ts","sourceRoot":"","sources":["../../../src/button/interfaces.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,WAAW,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAE/G,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,QAAQ,CAAC,EAAE,SAAS,CAAC,IAAI,CAAC;IAC1B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE1B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE3B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,WAAY,SAAQ,kBAAkB,EAAE,eAAe;IACtE;;OAEG;IACH,SAAS,CAAC,EAAE,WAAW,CAAC,SAAS,CAAC;IAElC;;OAEG;IACH,UAAU,CAAC,EAAE,WAAW,CAAC,UAAU,CAAC;IAEpC;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IAEb;;;;QAII;IACJ,QAAQ,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAE5B;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IAEvB;;OAEG;IACH,OAAO,CAAC,EAAE,sBAAsB,CAAC,WAAW,CAAC,WAAW,CAAC,CAAC;IAE1D;;;OAGG;IACH,QAAQ,CAAC,EAAE,sBAAsB,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC;IAE5D;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;;;;;;OAOG;IACH,OAAO,CAAC,EAAE,WAAW,CAAC,OAAO,CAAC;IAE9B;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,yBAAiB,WAAW,CAAC;IAC3B,KAAY,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,aAAa,GAAG,aAAa,CAAC;IAC7F,KAAY,WAAW,GAAG,YAAY,CAAC;IACvC,KAAY,YAAY,GAAG,oBAAoB,CAAC;IAEhD,KAAY,UAAU,GAAG,QAAQ,GAAG,MAAM,CAAC;IAE3C,KAAY,SAAS,GAAG,MAAM,GAAG,OAAO,CAAC;IAEzC,UAAiB,GAAG;QAClB;;WAEG;QACH,KAAK,CAAC,OAAO,CAAC,EAAE,YAAY,GAAG,IAAI,CAAC;KACrC;CACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../src/button/interfaces.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport React from 'react';\n\nimport { IconProps } from '../icon/interfaces';\nimport { BaseComponentProps } from '../internal/base-component';\nimport { BaseNavigationDetail, CancelableEventHandler, ClickDetail as _ClickDetail } from '../internal/events';\n\nexport interface
|
|
1
|
+
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../src/button/interfaces.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport React from 'react';\n\nimport { IconProps } from '../icon/interfaces';\nimport { BaseComponentProps } from '../internal/base-component';\nimport { BaseNavigationDetail, CancelableEventHandler, ClickDetail as _ClickDetail } from '../internal/events';\n\nexport interface BaseButtonProps {\n /**\n * Renders the button as disabled and prevents clicks.\n */\n disabled?: boolean;\n /**\n * Provides a reason why the button is disabled (only when `disabled` is `true`).\n * If provided, the button becomes focusable.\n * Applicable for all button variants, except link and icon.\n */\n disabledReason?: string;\n /**\n * Renders the button as being in a loading state. It takes precedence over the `disabled` if both are set to `true`.\n * It prevents users from clicking the button, but it can still be focused.\n */\n loading?: boolean;\n /**\n * Specifies the text that screen reader announces when the button is in a loading state.\n */\n loadingText?: string;\n /**\n * Displays an icon next to the text. You can use the `iconAlign` property to position the icon.\n */\n iconName?: IconProps.Name;\n /**\n * Specifies the URL of a custom icon. Use this property if the icon you want isn't available.\n *\n * If you set both `iconUrl` and `iconSvg`, `iconSvg` will take precedence.\n */\n iconUrl?: string;\n /**\n * Specifies the SVG of a custom icon.\n *\n * Use this property if you want your custom icon to inherit colors dictated by variant or hover states.\n * When this property is set, the component will be decorated with `aria-hidden=\"true\"`. Ensure that the `svg` element:\n * - has attribute `focusable=\"false\"`.\n * - has `viewBox=\"0 0 16 16\"`.\n *\n * If you set the `svg` element as the root node of the slot, the component will automatically\n * - set `stroke=\"currentColor\"`, `fill=\"none\"`, and `vertical-align=\"top\"`.\n * - set the stroke width based on the size of the icon.\n * - set the width and height of the SVG element based on the size of the icon.\n *\n * If you don't want these styles to be automatically set, wrap the `svg` element into a `span`.\n * You can still set the stroke to `currentColor` to inherit the color of the surrounding elements.\n *\n * If you set both `iconUrl` and `iconSvg`, `iconSvg` will take precedence.\n *\n * *Note:* Remember to remove any additional elements (for example: `defs`) and related CSS classes from SVG files exported from design software.\n * In most cases, they aren't needed, as the `svg` element inherits styles from the icon component.\n */\n iconSvg?: React.ReactNode;\n\n /**\n * Adds `aria-label` to the button element. Use this to provide an accessible name for buttons\n * that don't have visible text, and to distinguish between multiple buttons with identical visible text.\n * The text will also be added to the `title` attribute of the button.\n */\n ariaLabel?: string;\n\n /**\n * Adds `aria-describedby` to the button.\n */\n ariaDescribedby?: string;\n\n /**\n * Specifies if the `text` content wraps. If you set it to `false`, it prevents the text from wrapping.\n */\n wrapText?: boolean;\n\n /**\n * Text displayed in the button element.\n * @displayname text\n */\n children?: React.ReactNode;\n\n /**\n * Adds `aria-controls` to the button. Use when the button controls the contents or presence of an element.\n */\n ariaControls?: string;\n}\n\nexport interface ButtonProps extends BaseComponentProps, BaseButtonProps {\n /**\n * Specifies the alignment of the icon.\n */\n iconAlign?: ButtonProps.IconAlign;\n\n /**\n * The form action that is performed by a button click.\n */\n formAction?: ButtonProps.FormAction;\n\n /**\n * Applies button styling to a link. Use this property if you need a link styled as a button (`variant=link`).\n * For example, if you have a 'help' button that links to a documentation page.\n */\n href?: string;\n\n /**\n * Specifies where to open the linked URL (for example, to open in a new browser window or tab use `_blank`).\n * This property only applies when an `href` is provided.\n */\n target?: string;\n\n /**\n * Adds a `rel` attribute to the link. By default, the component sets the `rel` attribute to \"noopener noreferrer\" when `target` is `\"_blank\"`.\n * If the `rel` property is provided, it overrides the default behavior.\n */\n rel?: string;\n\n /**\n * Specifies whether the linked URL, when selected, will prompt the user to download instead of navigate.\n * You can specify a string value that will be suggested as the name of the downloaded file.\n * This property only applies when an `href` is provided.\n **/\n download?: boolean | string;\n\n /** The id of the <form> element to associate with the button. The value of this attribute must be the id of a <form> in the same document.\n * Use when a button is not the ancestor of a form element, such as when used in a modal.\n */\n form?: string;\n\n /**\n * Adds aria-expanded to the button element. Use when the button controls an expandable element.\n */\n ariaExpanded?: boolean;\n\n /**\n * Called when the user clicks on the button and the button is not disabled or in loading state.\n */\n onClick?: CancelableEventHandler<ButtonProps.ClickDetail>;\n\n /**\n * Called when the user clicks on the button with the left mouse button without pressing\n * modifier keys (that is, CTRL, ALT, SHIFT, META), and the button has an `href` set.\n */\n onFollow?: CancelableEventHandler<ButtonProps.FollowDetail>;\n\n /**\n * Sets the button width to be 100% of the parent container width. Button content is centered.\n */\n fullWidth?: boolean;\n\n /** Determines the general styling of the button as follows:\n * * `primary` for primary buttons.\n * * `normal` for secondary buttons.\n * * `link` for tertiary buttons.\n * * `icon` to display an icon only (no text).\n * * `inline-icon` to display an icon-only (no text) button within a text context.\n * * `inline-link` to display a tertiary button with no outer padding.\n */\n variant?: ButtonProps.Variant;\n\n /**\n * Specifies alternate text for a custom icon. We recommend that you provide this for accessibility.\n * This property is ignored if you use a predefined icon or if you set your custom icon using the `iconSvg` slot.\n */\n iconAlt?: string;\n}\n\nexport namespace ButtonProps {\n export type Variant = 'normal' | 'primary' | 'link' | 'icon' | 'inline-icon' | 'inline-link';\n export type ClickDetail = _ClickDetail;\n export type FollowDetail = BaseNavigationDetail;\n\n export type FormAction = 'submit' | 'none';\n\n export type IconAlign = 'left' | 'right';\n\n export interface Ref {\n /**\n * Focuses the underlying native button.\n */\n focus(options?: FocusOptions): void;\n }\n}\n"]}
|
|
@@ -66,6 +66,7 @@ export { default as Textarea, TextareaProps } from './textarea';
|
|
|
66
66
|
export { default as Tiles, TilesProps } from './tiles';
|
|
67
67
|
export { default as TimeInput, TimeInputProps } from './time-input';
|
|
68
68
|
export { default as Toggle, ToggleProps } from './toggle';
|
|
69
|
+
export { default as ToggleButton, ToggleButtonProps } from './toggle-button';
|
|
69
70
|
export { default as TokenGroup, TokenGroupProps } from './token-group';
|
|
70
71
|
export { default as TopNavigation, TopNavigationProps } from './top-navigation';
|
|
71
72
|
export { default as TutorialPanel, TutorialPanelProps } from './tutorial-panel';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -66,6 +66,7 @@ export { default as Textarea } from './textarea';
|
|
|
66
66
|
export { default as Tiles } from './tiles';
|
|
67
67
|
export { default as TimeInput } from './time-input';
|
|
68
68
|
export { default as Toggle } from './toggle';
|
|
69
|
+
export { default as ToggleButton } from './toggle-button';
|
|
69
70
|
export { default as TokenGroup } from './token-group';
|
|
70
71
|
export { default as TopNavigation } from './top-navigation';
|
|
71
72
|
export { default as TutorialPanel } from './tutorial-panel';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["export { default as Alert, AlertProps } from './alert';\nexport { default as AnchorNavigation, AnchorNavigationProps } from './anchor-navigation';\nexport { default as AnnotationContext, AnnotationContextProps } from './annotation-context';\nexport { default as AppLayout, AppLayoutProps } from './app-layout';\nexport { default as AreaChart, AreaChartProps } from './area-chart';\nexport { default as AttributeEditor, AttributeEditorProps } from './attribute-editor';\nexport { default as Autosuggest, AutosuggestProps } from './autosuggest';\nexport { default as Badge, BadgeProps } from './badge';\nexport { default as BarChart, BarChartProps } from './bar-chart';\nexport { default as Box, BoxProps } from './box';\nexport { default as BreadcrumbGroup, BreadcrumbGroupProps } from './breadcrumb-group';\nexport { default as Button, ButtonProps } from './button';\nexport { default as ButtonDropdown, ButtonDropdownProps } from './button-dropdown';\nexport { default as Calendar, CalendarProps } from './calendar';\nexport { default as Cards, CardsProps } from './cards';\nexport { default as Checkbox, CheckboxProps } from './checkbox';\nexport { default as CodeEditor, CodeEditorProps } from './code-editor';\nexport { default as CollectionPreferences, CollectionPreferencesProps } from './collection-preferences';\nexport { default as ColumnLayout, ColumnLayoutProps } from './column-layout';\nexport { default as Container, ContainerProps } from './container';\nexport { default as ContentLayout, ContentLayoutProps } from './content-layout';\nexport { default as CopyToClipboard, CopyToClipboardProps } from './copy-to-clipboard';\nexport { default as DateInput, DateInputProps } from './date-input';\nexport { default as DatePicker, DatePickerProps } from './date-picker';\nexport { default as DateRangePicker, DateRangePickerProps } from './date-range-picker';\nexport { default as Drawer, DrawerProps } from './drawer';\nexport { default as ExpandableSection, ExpandableSectionProps } from './expandable-section';\nexport { default as FileUpload, FileUploadProps } from './file-upload';\nexport { default as Flashbar, FlashbarProps } from './flashbar';\nexport { default as Form, FormProps } from './form';\nexport { default as FormField, FormFieldProps } from './form-field';\nexport { default as Grid, GridProps } from './grid';\nexport { default as Header, HeaderProps } from './header';\nexport { default as HelpPanel, HelpPanelProps } from './help-panel';\nexport { default as Hotspot, HotspotProps } from './hotspot';\nexport { default as Icon, IconProps } from './icon';\nexport { default as Input, InputProps } from './input';\nexport { default as KeyValuePairs, KeyValuePairsProps } from './key-value-pairs';\nexport { default as LineChart, LineChartProps } from './line-chart';\nexport { default as Link, LinkProps } from './link';\nexport { default as MixedLineBarChart, MixedLineBarChartProps } from './mixed-line-bar-chart';\nexport { default as Modal, ModalProps } from './modal';\nexport { default as Multiselect, MultiselectProps } from './multiselect';\nexport { default as Pagination, PaginationProps } from './pagination';\nexport { default as PieChart, PieChartProps } from './pie-chart';\nexport { default as Popover, PopoverProps } from './popover';\nexport { default as ProgressBar, ProgressBarProps } from './progress-bar';\nexport { default as PromptInput, PromptInputProps } from './prompt-input';\nexport { default as PropertyFilter, PropertyFilterProps } from './property-filter';\nexport { default as RadioGroup, RadioGroupProps } from './radio-group';\nexport { default as S3ResourceSelector, S3ResourceSelectorProps } from './s3-resource-selector';\nexport { default as SegmentedControl, SegmentedControlProps } from './segmented-control';\nexport { default as Select, SelectProps } from './select';\nexport { default as SideNavigation, SideNavigationProps } from './side-navigation';\nexport { default as Slider, SliderProps } from './slider';\nexport { default as SpaceBetween, SpaceBetweenProps } from './space-between';\nexport { default as Spinner, SpinnerProps } from './spinner';\nexport { default as SplitPanel, SplitPanelProps } from './split-panel';\nexport { default as StatusIndicator, StatusIndicatorProps } from './status-indicator';\nexport { default as Table, TableProps } from './table';\nexport { default as Tabs, TabsProps } from './tabs';\nexport { default as TagEditor, TagEditorProps } from './tag-editor';\nexport { default as TextContent, TextContentProps } from './text-content';\nexport { default as TextFilter, TextFilterProps } from './text-filter';\nexport { default as Textarea, TextareaProps } from './textarea';\nexport { default as Tiles, TilesProps } from './tiles';\nexport { default as TimeInput, TimeInputProps } from './time-input';\nexport { default as Toggle, ToggleProps } from './toggle';\nexport { default as TokenGroup, TokenGroupProps } from './token-group';\nexport { default as TopNavigation, TopNavigationProps } from './top-navigation';\nexport { default as TutorialPanel, TutorialPanelProps } from './tutorial-panel';\nexport { default as Wizard, WizardProps } from './wizard';\nexport * from './interfaces';\n"]}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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","sourcesContent":["export { default as Alert, AlertProps } from './alert';\nexport { default as AnchorNavigation, AnchorNavigationProps } from './anchor-navigation';\nexport { default as AnnotationContext, AnnotationContextProps } from './annotation-context';\nexport { default as AppLayout, AppLayoutProps } from './app-layout';\nexport { default as AreaChart, AreaChartProps } from './area-chart';\nexport { default as AttributeEditor, AttributeEditorProps } from './attribute-editor';\nexport { default as Autosuggest, AutosuggestProps } from './autosuggest';\nexport { default as Badge, BadgeProps } from './badge';\nexport { default as BarChart, BarChartProps } from './bar-chart';\nexport { default as Box, BoxProps } from './box';\nexport { default as BreadcrumbGroup, BreadcrumbGroupProps } from './breadcrumb-group';\nexport { default as Button, ButtonProps } from './button';\nexport { default as ButtonDropdown, ButtonDropdownProps } from './button-dropdown';\nexport { default as Calendar, CalendarProps } from './calendar';\nexport { default as Cards, CardsProps } from './cards';\nexport { default as Checkbox, CheckboxProps } from './checkbox';\nexport { default as CodeEditor, CodeEditorProps } from './code-editor';\nexport { default as CollectionPreferences, CollectionPreferencesProps } from './collection-preferences';\nexport { default as ColumnLayout, ColumnLayoutProps } from './column-layout';\nexport { default as Container, ContainerProps } from './container';\nexport { default as ContentLayout, ContentLayoutProps } from './content-layout';\nexport { default as CopyToClipboard, CopyToClipboardProps } from './copy-to-clipboard';\nexport { default as DateInput, DateInputProps } from './date-input';\nexport { default as DatePicker, DatePickerProps } from './date-picker';\nexport { default as DateRangePicker, DateRangePickerProps } from './date-range-picker';\nexport { default as Drawer, DrawerProps } from './drawer';\nexport { default as ExpandableSection, ExpandableSectionProps } from './expandable-section';\nexport { default as FileUpload, FileUploadProps } from './file-upload';\nexport { default as Flashbar, FlashbarProps } from './flashbar';\nexport { default as Form, FormProps } from './form';\nexport { default as FormField, FormFieldProps } from './form-field';\nexport { default as Grid, GridProps } from './grid';\nexport { default as Header, HeaderProps } from './header';\nexport { default as HelpPanel, HelpPanelProps } from './help-panel';\nexport { default as Hotspot, HotspotProps } from './hotspot';\nexport { default as Icon, IconProps } from './icon';\nexport { default as Input, InputProps } from './input';\nexport { default as KeyValuePairs, KeyValuePairsProps } from './key-value-pairs';\nexport { default as LineChart, LineChartProps } from './line-chart';\nexport { default as Link, LinkProps } from './link';\nexport { default as MixedLineBarChart, MixedLineBarChartProps } from './mixed-line-bar-chart';\nexport { default as Modal, ModalProps } from './modal';\nexport { default as Multiselect, MultiselectProps } from './multiselect';\nexport { default as Pagination, PaginationProps } from './pagination';\nexport { default as PieChart, PieChartProps } from './pie-chart';\nexport { default as Popover, PopoverProps } from './popover';\nexport { default as ProgressBar, ProgressBarProps } from './progress-bar';\nexport { default as PromptInput, PromptInputProps } from './prompt-input';\nexport { default as PropertyFilter, PropertyFilterProps } from './property-filter';\nexport { default as RadioGroup, RadioGroupProps } from './radio-group';\nexport { default as S3ResourceSelector, S3ResourceSelectorProps } from './s3-resource-selector';\nexport { default as SegmentedControl, SegmentedControlProps } from './segmented-control';\nexport { default as Select, SelectProps } from './select';\nexport { default as SideNavigation, SideNavigationProps } from './side-navigation';\nexport { default as Slider, SliderProps } from './slider';\nexport { default as SpaceBetween, SpaceBetweenProps } from './space-between';\nexport { default as Spinner, SpinnerProps } from './spinner';\nexport { default as SplitPanel, SplitPanelProps } from './split-panel';\nexport { default as StatusIndicator, StatusIndicatorProps } from './status-indicator';\nexport { default as Table, TableProps } from './table';\nexport { default as Tabs, TabsProps } from './tabs';\nexport { default as TagEditor, TagEditorProps } from './tag-editor';\nexport { default as TextContent, TextContentProps } from './text-content';\nexport { default as TextFilter, TextFilterProps } from './text-filter';\nexport { default as Textarea, TextareaProps } from './textarea';\nexport { default as Tiles, TilesProps } from './tiles';\nexport { default as TimeInput, TimeInputProps } from './time-input';\nexport { default as Toggle, ToggleProps } from './toggle';\nexport { default as ToggleButton, ToggleButtonProps } from './toggle-button';\nexport { default as TokenGroup, TokenGroupProps } from './token-group';\nexport { default as TopNavigation, TopNavigationProps } from './top-navigation';\nexport { default as TutorialPanel, TutorialPanelProps } from './tutorial-panel';\nexport { default as Wizard, WizardProps } from './wizard';\nexport * from './interfaces';\n"]}
|
|
@@ -161,6 +161,7 @@
|
|
|
161
161
|
--color-background-button-normal-default-k8i6b0:#ffffff;
|
|
162
162
|
--color-background-button-normal-disabled-puusfc:#ffffff;
|
|
163
163
|
--color-background-button-normal-hover-yqjern:#fafafa;
|
|
164
|
+
--color-background-toggle-button-normal-pressed-d4efoa:#eaeded;
|
|
164
165
|
--color-background-button-primary-active-rz38q7:#12293b;
|
|
165
166
|
--color-background-button-primary-default-f3veih:#0073bb;
|
|
166
167
|
--color-background-button-primary-disabled-ynfxdn:#ffffff;
|
|
@@ -235,6 +236,7 @@
|
|
|
235
236
|
--color-background-loading-bar-gen-ai-et3hkq:linear-gradient(90deg, #99f7ff 0%, #0096fa 10%, #bf80ff 24%, #7300e5 50%, #bf80ff 76%, #0096fa 90%, #99f7ff 100%);
|
|
236
237
|
--color-border-button-normal-active-mn8z2y:#545b64;
|
|
237
238
|
--color-border-button-normal-default-bqhrgd:#545b64;
|
|
239
|
+
--color-border-toggle-button-normal-pressed-u163qw:#545b64;
|
|
238
240
|
--color-border-button-normal-disabled-vj6u6p:#d5dbdb;
|
|
239
241
|
--color-text-button-normal-disabled-1yxabk:#879596;
|
|
240
242
|
--color-border-button-normal-hover-9bq1t6:#16191f;
|
|
@@ -303,6 +305,7 @@
|
|
|
303
305
|
--color-text-button-inline-icon-disabled-m6lq35:#aab7b8;
|
|
304
306
|
--color-text-button-inline-icon-hover-gmrtb4:#16191f;
|
|
305
307
|
--color-text-button-normal-active-fp98iq:#16191f;
|
|
308
|
+
--color-text-toggle-button-normal-pressed-i2dusm:#16191f;
|
|
306
309
|
--color-text-button-normal-default-gpe171:#545b64;
|
|
307
310
|
--color-text-button-normal-hover-3xe8o6:#16191f;
|
|
308
311
|
--color-text-link-button-normal-default-pfifu1:#545b64;
|
|
@@ -353,6 +356,7 @@
|
|
|
353
356
|
--color-text-interactive-default-dt26aj:#545b64;
|
|
354
357
|
--color-text-interactive-disabled-e23z4j:#aab7b8;
|
|
355
358
|
--color-text-interactive-hover-7who0l:#16191f;
|
|
359
|
+
--color-text-toggle-button-icon-pressed-2z9bc3:#16191f;
|
|
356
360
|
--color-text-interactive-inverted-default-n7b0xy:#d5dbdb;
|
|
357
361
|
--color-text-interactive-inverted-hover-pxgg1k:#fafafa;
|
|
358
362
|
--color-text-inverted-g0utm2:#ffffff;
|
|
@@ -793,6 +797,7 @@
|
|
|
793
797
|
--color-background-button-normal-default-k8i6b0:#2a2e33;
|
|
794
798
|
--color-background-button-normal-disabled-puusfc:#2a2e33;
|
|
795
799
|
--color-background-button-normal-hover-yqjern:#21252c;
|
|
800
|
+
--color-background-toggle-button-normal-pressed-d4efoa:#16191f;
|
|
796
801
|
--color-background-button-primary-active-rz38q7:#44b9d6;
|
|
797
802
|
--color-background-button-primary-default-f3veih:#44b9d6;
|
|
798
803
|
--color-background-button-primary-disabled-ynfxdn:#2a2e33;
|
|
@@ -850,6 +855,7 @@
|
|
|
850
855
|
--color-background-toggle-default-q71d3m:#879596;
|
|
851
856
|
--color-border-button-normal-active-mn8z2y:#879596;
|
|
852
857
|
--color-border-button-normal-default-bqhrgd:#879596;
|
|
858
|
+
--color-border-toggle-button-normal-pressed-u163qw:#879596;
|
|
853
859
|
--color-border-button-normal-disabled-vj6u6p:#414750;
|
|
854
860
|
--color-border-button-normal-hover-9bq1t6:#aab7b8;
|
|
855
861
|
--color-border-button-primary-disabled-rqdj0t:#414750;
|
|
@@ -900,6 +906,7 @@
|
|
|
900
906
|
--color-text-button-inline-icon-disabled-m6lq35:#687078;
|
|
901
907
|
--color-text-button-inline-icon-hover-gmrtb4:#fafafa;
|
|
902
908
|
--color-text-button-normal-active-fp98iq:#fafafa;
|
|
909
|
+
--color-text-toggle-button-normal-pressed-i2dusm:#fafafa;
|
|
903
910
|
--color-text-button-normal-default-gpe171:#d5dbdb;
|
|
904
911
|
--color-text-button-normal-hover-3xe8o6:#fafafa;
|
|
905
912
|
--color-text-link-button-normal-default-pfifu1:#d5dbdb;
|
|
@@ -949,6 +956,7 @@
|
|
|
949
956
|
--color-text-interactive-default-dt26aj:#d5dbdb;
|
|
950
957
|
--color-text-interactive-disabled-e23z4j:#687078;
|
|
951
958
|
--color-text-interactive-hover-7who0l:#fafafa;
|
|
959
|
+
--color-text-toggle-button-icon-pressed-2z9bc3:#fafafa;
|
|
952
960
|
--color-text-inverted-g0utm2:#16191f;
|
|
953
961
|
--color-text-label-62sx61:#95a5a6;
|
|
954
962
|
--color-text-layout-toggle-bxubxk:#d5dbdb;
|
|
@@ -1096,6 +1104,7 @@
|
|
|
1096
1104
|
--color-background-button-normal-default-k8i6b0:#2a2e33;
|
|
1097
1105
|
--color-background-button-normal-disabled-puusfc:#2a2e33;
|
|
1098
1106
|
--color-background-button-normal-hover-yqjern:#21252c;
|
|
1107
|
+
--color-background-toggle-button-normal-pressed-d4efoa:#16191f;
|
|
1099
1108
|
--color-background-button-primary-active-rz38q7:#44b9d6;
|
|
1100
1109
|
--color-background-button-primary-default-f3veih:#44b9d6;
|
|
1101
1110
|
--color-background-button-primary-disabled-ynfxdn:#2a2e33;
|
|
@@ -1153,6 +1162,7 @@
|
|
|
1153
1162
|
--color-background-toggle-default-q71d3m:#879596;
|
|
1154
1163
|
--color-border-button-normal-active-mn8z2y:#879596;
|
|
1155
1164
|
--color-border-button-normal-default-bqhrgd:#879596;
|
|
1165
|
+
--color-border-toggle-button-normal-pressed-u163qw:#879596;
|
|
1156
1166
|
--color-border-button-normal-disabled-vj6u6p:#414750;
|
|
1157
1167
|
--color-border-button-normal-hover-9bq1t6:#aab7b8;
|
|
1158
1168
|
--color-border-button-primary-disabled-rqdj0t:#414750;
|
|
@@ -1203,6 +1213,7 @@
|
|
|
1203
1213
|
--color-text-button-inline-icon-disabled-m6lq35:#687078;
|
|
1204
1214
|
--color-text-button-inline-icon-hover-gmrtb4:#fafafa;
|
|
1205
1215
|
--color-text-button-normal-active-fp98iq:#fafafa;
|
|
1216
|
+
--color-text-toggle-button-normal-pressed-i2dusm:#fafafa;
|
|
1206
1217
|
--color-text-button-normal-default-gpe171:#d5dbdb;
|
|
1207
1218
|
--color-text-button-normal-hover-3xe8o6:#fafafa;
|
|
1208
1219
|
--color-text-link-button-normal-default-pfifu1:#d5dbdb;
|
|
@@ -1252,6 +1263,7 @@
|
|
|
1252
1263
|
--color-text-interactive-default-dt26aj:#d5dbdb;
|
|
1253
1264
|
--color-text-interactive-disabled-e23z4j:#687078;
|
|
1254
1265
|
--color-text-interactive-hover-7who0l:#fafafa;
|
|
1266
|
+
--color-text-toggle-button-icon-pressed-2z9bc3:#fafafa;
|
|
1255
1267
|
--color-text-inverted-g0utm2:#16191f;
|
|
1256
1268
|
--color-text-label-62sx61:#95a5a6;
|
|
1257
1269
|
--color-text-layout-toggle-bxubxk:#d5dbdb;
|
|
@@ -1398,6 +1410,7 @@
|
|
|
1398
1410
|
--color-background-button-link-hover-c4uiaf:#f2f8fd;
|
|
1399
1411
|
--color-background-button-normal-active-r3oxzv:#d3e7f9;
|
|
1400
1412
|
--color-background-button-normal-hover-yqjern:#f2f8fd;
|
|
1413
|
+
--color-background-toggle-button-normal-pressed-d4efoa:#d3e7f9;
|
|
1401
1414
|
--color-background-button-primary-active-rz38q7:#033160;
|
|
1402
1415
|
--color-background-button-primary-default-f3veih:#0972d3;
|
|
1403
1416
|
--color-background-button-primary-disabled-ynfxdn:#e9ebed;
|
|
@@ -1454,6 +1467,7 @@
|
|
|
1454
1467
|
--color-background-avatar-default-w7usu3:#414d5c;
|
|
1455
1468
|
--color-border-button-normal-active-mn8z2y:#033160;
|
|
1456
1469
|
--color-border-button-normal-default-bqhrgd:#0972d3;
|
|
1470
|
+
--color-border-toggle-button-normal-pressed-u163qw:#0972d3;
|
|
1457
1471
|
--color-border-button-normal-disabled-vj6u6p:#9ba7b6;
|
|
1458
1472
|
--color-text-button-normal-disabled-1yxabk:#7d8998;
|
|
1459
1473
|
--color-border-button-normal-hover-9bq1t6:#033160;
|
|
@@ -1520,6 +1534,7 @@
|
|
|
1520
1534
|
--color-text-button-inline-icon-disabled-m6lq35:#9ba7b6;
|
|
1521
1535
|
--color-text-button-inline-icon-hover-gmrtb4:#033160;
|
|
1522
1536
|
--color-text-button-normal-active-fp98iq:#033160;
|
|
1537
|
+
--color-text-toggle-button-normal-pressed-i2dusm:#033160;
|
|
1523
1538
|
--color-text-button-normal-default-gpe171:#0972d3;
|
|
1524
1539
|
--color-text-button-normal-hover-3xe8o6:#033160;
|
|
1525
1540
|
--color-text-link-button-normal-default-pfifu1:#0972d3;
|
|
@@ -1564,6 +1579,7 @@
|
|
|
1564
1579
|
--color-text-interactive-default-dt26aj:#414d5c;
|
|
1565
1580
|
--color-text-interactive-disabled-e23z4j:#9ba7b6;
|
|
1566
1581
|
--color-text-interactive-hover-7who0l:#000716;
|
|
1582
|
+
--color-text-toggle-button-icon-pressed-2z9bc3:#000716;
|
|
1567
1583
|
--color-text-interactive-inverted-default-n7b0xy:#d1d5db;
|
|
1568
1584
|
--color-text-interactive-inverted-hover-pxgg1k:#fbfbfb;
|
|
1569
1585
|
--color-text-label-62sx61:#000716;
|
|
@@ -1752,6 +1768,7 @@
|
|
|
1752
1768
|
--color-background-button-normal-default-k8i6b0:#0f1b2a;
|
|
1753
1769
|
--color-background-button-normal-disabled-puusfc:#0f1b2a;
|
|
1754
1770
|
--color-background-button-normal-hover-yqjern:#192534;
|
|
1771
|
+
--color-background-toggle-button-normal-pressed-d4efoa:#354150;
|
|
1755
1772
|
--color-background-button-primary-active-rz38q7:#539fe5;
|
|
1756
1773
|
--color-background-button-primary-default-f3veih:#539fe5;
|
|
1757
1774
|
--color-background-button-primary-disabled-ynfxdn:#232f3e;
|
|
@@ -1806,6 +1823,7 @@
|
|
|
1806
1823
|
--color-background-toggle-default-q71d3m:#7d8998;
|
|
1807
1824
|
--color-border-button-normal-active-mn8z2y:#89bdee;
|
|
1808
1825
|
--color-border-button-normal-default-bqhrgd:#539fe5;
|
|
1826
|
+
--color-border-toggle-button-normal-pressed-u163qw:#539fe5;
|
|
1809
1827
|
--color-border-button-normal-disabled-vj6u6p:#5f6b7a;
|
|
1810
1828
|
--color-border-button-normal-hover-9bq1t6:#89bdee;
|
|
1811
1829
|
--color-border-button-primary-disabled-rqdj0t:#232f3e;
|
|
@@ -1862,6 +1880,7 @@
|
|
|
1862
1880
|
--color-text-button-inline-icon-disabled-m6lq35:#5f6b7a;
|
|
1863
1881
|
--color-text-button-inline-icon-hover-gmrtb4:#89bdee;
|
|
1864
1882
|
--color-text-button-normal-active-fp98iq:#89bdee;
|
|
1883
|
+
--color-text-toggle-button-normal-pressed-i2dusm:#89bdee;
|
|
1865
1884
|
--color-text-button-normal-default-gpe171:#539fe5;
|
|
1866
1885
|
--color-text-button-normal-hover-3xe8o6:#89bdee;
|
|
1867
1886
|
--color-text-link-button-normal-default-pfifu1:#539fe5;
|
|
@@ -1909,6 +1928,7 @@
|
|
|
1909
1928
|
--color-text-interactive-default-dt26aj:#d1d5db;
|
|
1910
1929
|
--color-text-interactive-disabled-e23z4j:#5f6b7a;
|
|
1911
1930
|
--color-text-interactive-hover-7who0l:#fbfbfb;
|
|
1931
|
+
--color-text-toggle-button-icon-pressed-2z9bc3:#fbfbfb;
|
|
1912
1932
|
--color-text-inverted-g0utm2:#000716;
|
|
1913
1933
|
--color-text-label-62sx61:#d1d5db;
|
|
1914
1934
|
--color-text-layout-toggle-active-zmvv31:#0f1b2a;
|
|
@@ -2015,6 +2035,7 @@
|
|
|
2015
2035
|
--color-background-button-normal-default-k8i6b0:#0f1b2a;
|
|
2016
2036
|
--color-background-button-normal-disabled-puusfc:#0f1b2a;
|
|
2017
2037
|
--color-background-button-normal-hover-yqjern:#192534;
|
|
2038
|
+
--color-background-toggle-button-normal-pressed-d4efoa:#354150;
|
|
2018
2039
|
--color-background-button-primary-active-rz38q7:#539fe5;
|
|
2019
2040
|
--color-background-button-primary-default-f3veih:#539fe5;
|
|
2020
2041
|
--color-background-button-primary-disabled-ynfxdn:#232f3e;
|
|
@@ -2070,6 +2091,7 @@
|
|
|
2070
2091
|
--color-background-toggle-default-q71d3m:#7d8998;
|
|
2071
2092
|
--color-border-button-normal-active-mn8z2y:#89bdee;
|
|
2072
2093
|
--color-border-button-normal-default-bqhrgd:#539fe5;
|
|
2094
|
+
--color-border-toggle-button-normal-pressed-u163qw:#539fe5;
|
|
2073
2095
|
--color-border-button-normal-disabled-vj6u6p:#5f6b7a;
|
|
2074
2096
|
--color-border-button-normal-hover-9bq1t6:#89bdee;
|
|
2075
2097
|
--color-border-button-primary-disabled-rqdj0t:#232f3e;
|
|
@@ -2130,6 +2152,7 @@
|
|
|
2130
2152
|
--color-text-button-inline-icon-disabled-m6lq35:#5f6b7a;
|
|
2131
2153
|
--color-text-button-inline-icon-hover-gmrtb4:#89bdee;
|
|
2132
2154
|
--color-text-button-normal-active-fp98iq:#89bdee;
|
|
2155
|
+
--color-text-toggle-button-normal-pressed-i2dusm:#89bdee;
|
|
2133
2156
|
--color-text-button-normal-default-gpe171:#539fe5;
|
|
2134
2157
|
--color-text-button-normal-hover-3xe8o6:#89bdee;
|
|
2135
2158
|
--color-text-link-button-normal-default-pfifu1:#539fe5;
|
|
@@ -2178,6 +2201,7 @@
|
|
|
2178
2201
|
--color-text-interactive-default-dt26aj:#d1d5db;
|
|
2179
2202
|
--color-text-interactive-disabled-e23z4j:#5f6b7a;
|
|
2180
2203
|
--color-text-interactive-hover-7who0l:#fbfbfb;
|
|
2204
|
+
--color-text-toggle-button-icon-pressed-2z9bc3:#fbfbfb;
|
|
2181
2205
|
--color-text-inverted-g0utm2:#000716;
|
|
2182
2206
|
--color-text-label-62sx61:#d1d5db;
|
|
2183
2207
|
--color-text-layout-toggle-bxubxk:#ffffff;
|
|
@@ -2214,6 +2238,7 @@
|
|
|
2214
2238
|
--color-background-button-normal-default-k8i6b0:#0f1b2a;
|
|
2215
2239
|
--color-background-button-normal-disabled-puusfc:#0f1b2a;
|
|
2216
2240
|
--color-background-button-normal-hover-yqjern:#192534;
|
|
2241
|
+
--color-background-toggle-button-normal-pressed-d4efoa:#354150;
|
|
2217
2242
|
--color-background-button-primary-active-rz38q7:#539fe5;
|
|
2218
2243
|
--color-background-button-primary-default-f3veih:#539fe5;
|
|
2219
2244
|
--color-background-button-primary-disabled-ynfxdn:#232f3e;
|
|
@@ -2268,6 +2293,7 @@
|
|
|
2268
2293
|
--color-background-toggle-default-q71d3m:#7d8998;
|
|
2269
2294
|
--color-border-button-normal-active-mn8z2y:#89bdee;
|
|
2270
2295
|
--color-border-button-normal-default-bqhrgd:#539fe5;
|
|
2296
|
+
--color-border-toggle-button-normal-pressed-u163qw:#539fe5;
|
|
2271
2297
|
--color-border-button-normal-disabled-vj6u6p:#5f6b7a;
|
|
2272
2298
|
--color-border-button-normal-hover-9bq1t6:#89bdee;
|
|
2273
2299
|
--color-border-button-primary-disabled-rqdj0t:#232f3e;
|
|
@@ -2324,6 +2350,7 @@
|
|
|
2324
2350
|
--color-text-button-inline-icon-disabled-m6lq35:#5f6b7a;
|
|
2325
2351
|
--color-text-button-inline-icon-hover-gmrtb4:#89bdee;
|
|
2326
2352
|
--color-text-button-normal-active-fp98iq:#89bdee;
|
|
2353
|
+
--color-text-toggle-button-normal-pressed-i2dusm:#89bdee;
|
|
2327
2354
|
--color-text-button-normal-default-gpe171:#539fe5;
|
|
2328
2355
|
--color-text-button-normal-hover-3xe8o6:#89bdee;
|
|
2329
2356
|
--color-text-link-button-normal-default-pfifu1:#539fe5;
|
|
@@ -2371,6 +2398,7 @@
|
|
|
2371
2398
|
--color-text-interactive-default-dt26aj:#d1d5db;
|
|
2372
2399
|
--color-text-interactive-disabled-e23z4j:#5f6b7a;
|
|
2373
2400
|
--color-text-interactive-hover-7who0l:#fbfbfb;
|
|
2401
|
+
--color-text-toggle-button-icon-pressed-2z9bc3:#fbfbfb;
|
|
2374
2402
|
--color-text-inverted-g0utm2:#000716;
|
|
2375
2403
|
--color-text-label-62sx61:#d1d5db;
|
|
2376
2404
|
--color-text-layout-toggle-active-zmvv31:#0f1b2a;
|
|
@@ -2408,6 +2436,7 @@
|
|
|
2408
2436
|
--color-background-button-normal-default-k8i6b0:#000716;
|
|
2409
2437
|
--color-background-button-normal-disabled-puusfc:#000716;
|
|
2410
2438
|
--color-background-button-normal-hover-yqjern:#192534;
|
|
2439
|
+
--color-background-toggle-button-normal-pressed-d4efoa:#354150;
|
|
2411
2440
|
--color-background-button-primary-active-rz38q7:#539fe5;
|
|
2412
2441
|
--color-background-button-primary-default-f3veih:#539fe5;
|
|
2413
2442
|
--color-background-button-primary-disabled-ynfxdn:#232f3e;
|
|
@@ -2463,6 +2492,7 @@
|
|
|
2463
2492
|
--color-background-toggle-default-q71d3m:#7d8998;
|
|
2464
2493
|
--color-border-button-normal-active-mn8z2y:#89bdee;
|
|
2465
2494
|
--color-border-button-normal-default-bqhrgd:#539fe5;
|
|
2495
|
+
--color-border-toggle-button-normal-pressed-u163qw:#539fe5;
|
|
2466
2496
|
--color-border-button-normal-disabled-vj6u6p:#5f6b7a;
|
|
2467
2497
|
--color-border-button-normal-hover-9bq1t6:#89bdee;
|
|
2468
2498
|
--color-border-button-primary-disabled-rqdj0t:#232f3e;
|
|
@@ -2519,6 +2549,7 @@
|
|
|
2519
2549
|
--color-text-button-inline-icon-disabled-m6lq35:#5f6b7a;
|
|
2520
2550
|
--color-text-button-inline-icon-hover-gmrtb4:#89bdee;
|
|
2521
2551
|
--color-text-button-normal-active-fp98iq:#89bdee;
|
|
2552
|
+
--color-text-toggle-button-normal-pressed-i2dusm:#89bdee;
|
|
2522
2553
|
--color-text-button-normal-default-gpe171:#539fe5;
|
|
2523
2554
|
--color-text-button-normal-hover-3xe8o6:#89bdee;
|
|
2524
2555
|
--color-text-link-button-normal-default-pfifu1:#539fe5;
|
|
@@ -2567,6 +2598,7 @@
|
|
|
2567
2598
|
--color-text-interactive-default-dt26aj:#d1d5db;
|
|
2568
2599
|
--color-text-interactive-disabled-e23z4j:#5f6b7a;
|
|
2569
2600
|
--color-text-interactive-hover-7who0l:#fbfbfb;
|
|
2601
|
+
--color-text-toggle-button-icon-pressed-2z9bc3:#fbfbfb;
|
|
2570
2602
|
--color-text-inverted-g0utm2:#000716;
|
|
2571
2603
|
--color-text-label-62sx61:#d1d5db;
|
|
2572
2604
|
--color-text-layout-toggle-active-zmvv31:#0f1b2a;
|
|
@@ -2616,6 +2648,7 @@
|
|
|
2616
2648
|
--color-background-button-normal-default-k8i6b0:#000716;
|
|
2617
2649
|
--color-background-button-normal-disabled-puusfc:#000716;
|
|
2618
2650
|
--color-background-button-normal-hover-yqjern:#192534;
|
|
2651
|
+
--color-background-toggle-button-normal-pressed-d4efoa:#354150;
|
|
2619
2652
|
--color-background-button-primary-active-rz38q7:#539fe5;
|
|
2620
2653
|
--color-background-button-primary-default-f3veih:#539fe5;
|
|
2621
2654
|
--color-background-button-primary-disabled-ynfxdn:#232f3e;
|
|
@@ -2671,6 +2704,7 @@
|
|
|
2671
2704
|
--color-background-toggle-default-q71d3m:#7d8998;
|
|
2672
2705
|
--color-border-button-normal-active-mn8z2y:#89bdee;
|
|
2673
2706
|
--color-border-button-normal-default-bqhrgd:#539fe5;
|
|
2707
|
+
--color-border-toggle-button-normal-pressed-u163qw:#539fe5;
|
|
2674
2708
|
--color-border-button-normal-disabled-vj6u6p:#5f6b7a;
|
|
2675
2709
|
--color-border-button-normal-hover-9bq1t6:#89bdee;
|
|
2676
2710
|
--color-border-button-primary-disabled-rqdj0t:#232f3e;
|
|
@@ -2727,6 +2761,7 @@
|
|
|
2727
2761
|
--color-text-button-inline-icon-disabled-m6lq35:#5f6b7a;
|
|
2728
2762
|
--color-text-button-inline-icon-hover-gmrtb4:#89bdee;
|
|
2729
2763
|
--color-text-button-normal-active-fp98iq:#89bdee;
|
|
2764
|
+
--color-text-toggle-button-normal-pressed-i2dusm:#89bdee;
|
|
2730
2765
|
--color-text-button-normal-default-gpe171:#539fe5;
|
|
2731
2766
|
--color-text-button-normal-hover-3xe8o6:#89bdee;
|
|
2732
2767
|
--color-text-link-button-normal-default-pfifu1:#539fe5;
|
|
@@ -2775,6 +2810,7 @@
|
|
|
2775
2810
|
--color-text-interactive-default-dt26aj:#d1d5db;
|
|
2776
2811
|
--color-text-interactive-disabled-e23z4j:#5f6b7a;
|
|
2777
2812
|
--color-text-interactive-hover-7who0l:#fbfbfb;
|
|
2813
|
+
--color-text-toggle-button-icon-pressed-2z9bc3:#fbfbfb;
|
|
2778
2814
|
--color-text-inverted-g0utm2:#000716;
|
|
2779
2815
|
--color-text-label-62sx61:#d1d5db;
|
|
2780
2816
|
--color-text-layout-toggle-active-zmvv31:#0f1b2a;
|
|
@@ -3016,6 +3052,7 @@
|
|
|
3016
3052
|
--color-background-button-normal-default-k8i6b0:transparent;
|
|
3017
3053
|
--color-background-button-normal-disabled-puusfc:#0f1b2a;
|
|
3018
3054
|
--color-background-button-normal-hover-yqjern:rgba(255, 255, 255, 0.1);
|
|
3055
|
+
--color-background-toggle-button-normal-pressed-d4efoa:#354150;
|
|
3019
3056
|
--color-background-button-primary-active-rz38q7:#539fe5;
|
|
3020
3057
|
--color-background-button-primary-default-f3veih:#d1d5db;
|
|
3021
3058
|
--color-background-button-primary-disabled-ynfxdn:#232f3e;
|
|
@@ -3071,6 +3108,7 @@
|
|
|
3071
3108
|
--color-background-toggle-default-q71d3m:#7d8998;
|
|
3072
3109
|
--color-border-button-normal-active-mn8z2y:#ffffff;
|
|
3073
3110
|
--color-border-button-normal-default-bqhrgd:#d1d5db;
|
|
3111
|
+
--color-border-toggle-button-normal-pressed-u163qw:#539fe5;
|
|
3074
3112
|
--color-border-button-normal-disabled-vj6u6p:#5f6b7a;
|
|
3075
3113
|
--color-border-button-normal-hover-9bq1t6:#ffffff;
|
|
3076
3114
|
--color-border-button-primary-disabled-rqdj0t:#232f3e;
|
|
@@ -3127,6 +3165,7 @@
|
|
|
3127
3165
|
--color-text-button-inline-icon-disabled-m6lq35:#5f6b7a;
|
|
3128
3166
|
--color-text-button-inline-icon-hover-gmrtb4:#89bdee;
|
|
3129
3167
|
--color-text-button-normal-active-fp98iq:#ffffff;
|
|
3168
|
+
--color-text-toggle-button-normal-pressed-i2dusm:#89bdee;
|
|
3130
3169
|
--color-text-button-normal-default-gpe171:#d1d5db;
|
|
3131
3170
|
--color-text-button-normal-hover-3xe8o6:#ffffff;
|
|
3132
3171
|
--color-text-link-button-normal-default-pfifu1:#539fe5;
|
|
@@ -3175,6 +3214,7 @@
|
|
|
3175
3214
|
--color-text-interactive-default-dt26aj:#d1d5db;
|
|
3176
3215
|
--color-text-interactive-disabled-e23z4j:#5f6b7a;
|
|
3177
3216
|
--color-text-interactive-hover-7who0l:#fbfbfb;
|
|
3217
|
+
--color-text-toggle-button-icon-pressed-2z9bc3:#fbfbfb;
|
|
3178
3218
|
--color-text-inverted-g0utm2:#000716;
|
|
3179
3219
|
--color-text-label-62sx61:#d1d5db;
|
|
3180
3220
|
--color-text-layout-toggle-active-zmvv31:#0f1b2a;
|
|
@@ -3212,6 +3252,7 @@
|
|
|
3212
3252
|
--color-background-button-normal-default-k8i6b0:transparent;
|
|
3213
3253
|
--color-background-button-normal-disabled-puusfc:#0f1b2a;
|
|
3214
3254
|
--color-background-button-normal-hover-yqjern:rgba(255, 255, 255, 0.1);
|
|
3255
|
+
--color-background-toggle-button-normal-pressed-d4efoa:#354150;
|
|
3215
3256
|
--color-background-button-primary-active-rz38q7:#539fe5;
|
|
3216
3257
|
--color-background-button-primary-default-f3veih:#d1d5db;
|
|
3217
3258
|
--color-background-button-primary-disabled-ynfxdn:#232f3e;
|
|
@@ -3267,6 +3308,7 @@
|
|
|
3267
3308
|
--color-background-toggle-default-q71d3m:#7d8998;
|
|
3268
3309
|
--color-border-button-normal-active-mn8z2y:#ffffff;
|
|
3269
3310
|
--color-border-button-normal-default-bqhrgd:#d1d5db;
|
|
3311
|
+
--color-border-toggle-button-normal-pressed-u163qw:#539fe5;
|
|
3270
3312
|
--color-border-button-normal-disabled-vj6u6p:#5f6b7a;
|
|
3271
3313
|
--color-border-button-normal-hover-9bq1t6:#ffffff;
|
|
3272
3314
|
--color-border-button-primary-disabled-rqdj0t:#232f3e;
|
|
@@ -3323,6 +3365,7 @@
|
|
|
3323
3365
|
--color-text-button-inline-icon-disabled-m6lq35:#5f6b7a;
|
|
3324
3366
|
--color-text-button-inline-icon-hover-gmrtb4:#89bdee;
|
|
3325
3367
|
--color-text-button-normal-active-fp98iq:#ffffff;
|
|
3368
|
+
--color-text-toggle-button-normal-pressed-i2dusm:#89bdee;
|
|
3326
3369
|
--color-text-button-normal-default-gpe171:#d1d5db;
|
|
3327
3370
|
--color-text-button-normal-hover-3xe8o6:#ffffff;
|
|
3328
3371
|
--color-text-link-button-normal-default-pfifu1:#539fe5;
|
|
@@ -3371,6 +3414,7 @@
|
|
|
3371
3414
|
--color-text-interactive-default-dt26aj:#d1d5db;
|
|
3372
3415
|
--color-text-interactive-disabled-e23z4j:#5f6b7a;
|
|
3373
3416
|
--color-text-interactive-hover-7who0l:#fbfbfb;
|
|
3417
|
+
--color-text-toggle-button-icon-pressed-2z9bc3:#fbfbfb;
|
|
3374
3418
|
--color-text-inverted-g0utm2:#000716;
|
|
3375
3419
|
--color-text-label-62sx61:#d1d5db;
|
|
3376
3420
|
--color-text-layout-toggle-active-zmvv31:#0f1b2a;
|