@carbon/ibm-products 1.50.0 → 1.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -5
- package/css/index-full-carbon.css +131 -82
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +2 -2
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon-released-only.css +38 -11
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css +1 -1
- package/css/index-without-carbon-released-only.min.css.map +1 -1
- package/css/index-without-carbon.css +131 -82
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +2 -2
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +131 -82
- package/css/index.css.map +1 -1
- package/css/index.min.css +2 -2
- package/css/index.min.css.map +1 -1
- package/es/components/AboutModal/AboutModal.js +3 -4
- package/es/components/ActionBar/ActionBar.js +9 -18
- package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +8 -13
- package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +7 -11
- package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +8 -8
- package/es/components/Datagrid/Datagrid/DatagridToolbar.js +5 -5
- package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +3 -4
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +17 -3
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +17 -2
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +8 -4
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useInitialStateFromFilters.js +2 -1
- package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +14 -0
- package/es/components/Datagrid/index.js +1 -0
- package/es/components/Datagrid/useActionsColumn.js +10 -7
- package/es/components/Datagrid/useCustomizeColumns.js +5 -1
- package/es/components/Datagrid/useEditableCell.js +12 -0
- package/es/components/Datagrid/useExpandedRow.js +11 -7
- package/es/components/Datagrid/useFiltering.js +15 -10
- package/es/components/Datagrid/useInlineEdit.js +17 -8
- package/es/components/Datagrid/useNestedRows.js +10 -6
- package/es/components/Datagrid/useOnRowClick.js +9 -1
- package/es/components/Datagrid/useSelectRows.js +2 -0
- package/es/components/EditInPlace/EditInPlace.js +43 -0
- package/es/components/EditInPlace/index.js +8 -0
- package/es/components/ExampleComponent/ExampleComponent.js +32 -4
- package/es/components/ExampleComponent/useExample.js +49 -0
- package/es/components/InlineEdit/InlineEdit.js +5 -1
- package/es/components/InlineEditV1/InlineEditV1.js +7 -2
- package/es/components/InlineEditV2/InlineEditV2.js +51 -15
- package/es/components/NonLinearReading/NonLinearReading.js +7 -7
- package/es/components/PageHeader/PageHeader.js +28 -31
- package/es/components/SidePanel/SidePanel.js +25 -26
- package/es/components/TagSet/TagSet.js +5 -7
- package/es/components/Tearsheet/TearsheetShell.js +4 -6
- package/es/components/index.js +2 -1
- package/es/global/js/hooks/useResizeObserver.js +74 -0
- package/es/global/js/package-settings.js +35 -4
- package/es/global/js/utils/test-helper.js +34 -3
- package/es/settings.js +40 -29
- package/lib/components/AboutModal/AboutModal.js +3 -4
- package/lib/components/ActionBar/ActionBar.js +9 -18
- package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +8 -13
- package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +7 -11
- package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +2 -1
- package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +4 -4
- package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +3 -4
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +17 -3
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +17 -2
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +8 -4
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useInitialStateFromFilters.js +2 -1
- package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +15 -0
- package/lib/components/Datagrid/index.js +7 -0
- package/lib/components/Datagrid/useActionsColumn.js +7 -1
- package/lib/components/Datagrid/useCustomizeColumns.js +4 -0
- package/lib/components/Datagrid/useEditableCell.js +20 -0
- package/lib/components/Datagrid/useExpandedRow.js +4 -0
- package/lib/components/Datagrid/useFiltering.js +8 -2
- package/lib/components/Datagrid/useInlineEdit.js +19 -8
- package/lib/components/Datagrid/useNestedRows.js +9 -6
- package/lib/components/Datagrid/useOnRowClick.js +9 -1
- package/lib/components/Datagrid/useSelectRows.js +2 -0
- package/lib/components/EditInPlace/EditInPlace.js +46 -0
- package/lib/components/EditInPlace/index.js +12 -0
- package/lib/components/ExampleComponent/ExampleComponent.js +35 -4
- package/lib/components/ExampleComponent/useExample.js +58 -0
- package/lib/components/InlineEdit/InlineEdit.js +5 -1
- package/lib/components/InlineEditV1/InlineEditV1.js +7 -2
- package/lib/components/InlineEditV2/InlineEditV2.js +53 -16
- package/lib/components/NonLinearReading/NonLinearReading.js +6 -6
- package/lib/components/PageHeader/PageHeader.js +28 -31
- package/lib/components/SidePanel/SidePanel.js +25 -26
- package/lib/components/TagSet/TagSet.js +5 -7
- package/lib/components/Tearsheet/TearsheetShell.js +4 -6
- package/lib/components/index.js +13 -0
- package/lib/global/js/hooks/useResizeObserver.js +83 -0
- package/lib/global/js/package-settings.js +34 -3
- package/lib/global/js/utils/test-helper.js +37 -5
- package/lib/settings.js +41 -30
- package/package.json +2 -3
- package/scss/components/Datagrid/styles/_useSelectAllToggle.scss +10 -7
- package/scss/components/InlineEditV2/_inline-edit-v2.scss +52 -11
- package/scss/components/InlineEditV2/_storybook-styles.scss +9 -2
- package/scss/components/NonLinearReading/_non-linear-reading.scss +76 -67
- package/scss/components/NonLinearReading/_storybook-styles.scss +16 -0
package/README.md
CHANGED
|
@@ -102,7 +102,7 @@ const App = () => {
|
|
|
102
102
|
};
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
-
### Enabling Canary components
|
|
105
|
+
### Enabling Canary components and flagged features
|
|
106
106
|
|
|
107
107
|
Components that have not yet completed the release review process are considered
|
|
108
108
|
to be canary and require the consumer to enable via a feature flag in a
|
|
@@ -121,14 +121,19 @@ pkg.component.SidePanel = true;
|
|
|
121
121
|
// Live dangerously: enable all components!
|
|
122
122
|
pkg.setAllComponents(true);
|
|
123
123
|
|
|
124
|
-
// Enable
|
|
125
|
-
pkg.
|
|
126
|
-
|
|
124
|
+
// Enable a feature flagged example
|
|
125
|
+
pkg.feature.nameOfFeature = true;
|
|
126
|
+
pkg.feature['Component.feature'] = true;
|
|
127
127
|
// Live dangerously: enable all pre-release features!
|
|
128
128
|
pkg.setAllFeatures(true);
|
|
129
129
|
```
|
|
130
130
|
|
|
131
|
-
**Note:** The above settings must happen before a component first renders
|
|
131
|
+
**Note:** The above settings must happen before a component first renders or a
|
|
132
|
+
feature is first used.
|
|
133
|
+
|
|
134
|
+
**Note: 2** In the case of features implemented via hooks the feature may
|
|
135
|
+
function without enabling. In all cases features that disabled by default will
|
|
136
|
+
log in the console a warning if enabled via a feature flag or an error if not.
|
|
132
137
|
|
|
133
138
|
### Building and running locally
|
|
134
139
|
|
|
@@ -22054,13 +22054,6 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
22054
22054
|
border-bottom: none;
|
|
22055
22055
|
}
|
|
22056
22056
|
|
|
22057
|
-
/*
|
|
22058
|
-
* Licensed Materials - Property of IBM
|
|
22059
|
-
* 5724-Q36
|
|
22060
|
-
* (c) Copyright IBM Corp. 2021
|
|
22061
|
-
* US Government Users Restricted Rights - Use, duplication or disclosure
|
|
22062
|
-
* restricted by GSA ADP Schedule Contract with IBM Corp.
|
|
22063
|
-
*/
|
|
22064
22057
|
.c4p--datagrid__grid-container th.c4p--datagrid__select-all-toggle-on,
|
|
22065
22058
|
.c4p--datagrid__grid-container td.c4p--datagrid__select-all-toggle-on {
|
|
22066
22059
|
/* stylelint-disable-next-line declaration-no-important */
|
|
@@ -22081,6 +22074,10 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
22081
22074
|
margin-left: var(--cds-spacing-01, 0.125rem);
|
|
22082
22075
|
}
|
|
22083
22076
|
|
|
22077
|
+
.c4p--datagrid__select-all-toggle-overflow.bx--overflow-menu-options--sm.bx--overflow-menu-options[data-floating-menu-direction=bottom]::after {
|
|
22078
|
+
width: var(--cds-spacing-13, 10rem);
|
|
22079
|
+
}
|
|
22080
|
+
|
|
22084
22081
|
/*
|
|
22085
22082
|
* Licensed Materials - Property of IBM
|
|
22086
22083
|
* 5724-Q36
|
|
@@ -23010,6 +23007,7 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
23010
23007
|
}
|
|
23011
23008
|
|
|
23012
23009
|
.c4p--inline-edit-v2 {
|
|
23010
|
+
--c4p--inline-edit-v2--size: var(--cds-spacing-07, 2rem);
|
|
23013
23011
|
display: flex;
|
|
23014
23012
|
align-items: center;
|
|
23015
23013
|
background: transparent;
|
|
@@ -23018,15 +23016,28 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
23018
23016
|
.c4p--inline-edit-v2-readonly {
|
|
23019
23017
|
cursor: not-allowed;
|
|
23020
23018
|
}
|
|
23019
|
+
.c4p--inline-edit-v2--sm {
|
|
23020
|
+
--c4p--inline-edit-v2--size: var(--cds-spacing-07, 2rem);
|
|
23021
|
+
}
|
|
23022
|
+
.c4p--inline-edit-v2--md {
|
|
23023
|
+
--c4p--inline-edit-v2--size: var(--cds-spacing-08, 2.5rem);
|
|
23024
|
+
}
|
|
23025
|
+
.c4p--inline-edit-v2--lg {
|
|
23026
|
+
--c4p--inline-edit-v2--size: var(--cds-spacing-09, 3rem);
|
|
23027
|
+
}
|
|
23021
23028
|
.c4p--inline-edit-v2:hover {
|
|
23022
23029
|
background: var(--cds-field-01, #f4f4f4);
|
|
23023
23030
|
}
|
|
23024
|
-
.c4p--inline-edit-v2:hover .c4p--inline-edit-v2__btn-edit
|
|
23031
|
+
.c4p--inline-edit-v2:hover .c4p--inline-edit-v2__btn-edit,
|
|
23032
|
+
.c4p--inline-edit-v2 .c4p--inline-edit-v2__btn-edit.c4p--inline-edit-v2__btn-edit--always-visible {
|
|
23025
23033
|
visibility: visible;
|
|
23026
23034
|
}
|
|
23027
23035
|
.c4p--inline-edit-v2__btn-edit {
|
|
23028
23036
|
visibility: hidden;
|
|
23029
23037
|
}
|
|
23038
|
+
.c4p--inline-edit-v2--invalid {
|
|
23039
|
+
outline: 2px solid var(--cds-support-01, #da1e28);
|
|
23040
|
+
}
|
|
23030
23041
|
.c4p--inline-edit-v2--focused {
|
|
23031
23042
|
background: var(--cds-field-01, #f4f4f4);
|
|
23032
23043
|
outline: 2px solid var(--cds-focus, #0f62fe);
|
|
@@ -23034,11 +23045,27 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
23034
23045
|
.c4p--inline-edit-v2__text-input {
|
|
23035
23046
|
flex: 1;
|
|
23036
23047
|
}
|
|
23048
|
+
.c4p--inline-edit-v2--inherit-type .c4p--inline-edit-v2__text-input {
|
|
23049
|
+
/* match font of container */
|
|
23050
|
+
font-size: inherit;
|
|
23051
|
+
font-weight: inherit;
|
|
23052
|
+
letter-spacing: inherit;
|
|
23053
|
+
line-height: inherit;
|
|
23054
|
+
}
|
|
23055
|
+
.c4p--inline-edit-v2__ellipsis {
|
|
23056
|
+
position: relative;
|
|
23057
|
+
margin-left: calc(-1 * var(--cds-spacing-05, 1rem));
|
|
23058
|
+
opacity: 0;
|
|
23059
|
+
}
|
|
23060
|
+
.c4p--inline-edit-v2--overflows:not(.c4p--inline-edit-v2--focused) .c4p--inline-edit-v2__ellipsis {
|
|
23061
|
+
opacity: 1;
|
|
23062
|
+
}
|
|
23037
23063
|
.c4p--inline-edit-v2__text-input-label {
|
|
23038
23064
|
display: none;
|
|
23039
23065
|
}
|
|
23040
23066
|
.c4p--inline-edit-v2__warning-icon {
|
|
23041
|
-
|
|
23067
|
+
width: var(--cds-spacing-05, 1rem);
|
|
23068
|
+
margin: auto var(--cds-spacing-03, 0.5rem) auto auto;
|
|
23042
23069
|
color: var(--cds-support-01, #da1e28);
|
|
23043
23070
|
}
|
|
23044
23071
|
.c4p--inline-edit-v2__warning-text {
|
|
@@ -23057,27 +23084,24 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
23057
23084
|
outline: none;
|
|
23058
23085
|
}
|
|
23059
23086
|
|
|
23060
|
-
.c4p--inline-edit-v2-readonly .c4p--inline-edit-v2__text-input.bx--text-input,
|
|
23061
|
-
.c4p--inline-edit-v2-readonly .bx--btn.bx--btn--icon-only.bx--tooltip__trigger {
|
|
23062
|
-
cursor: not-allowed;
|
|
23063
|
-
}
|
|
23064
|
-
|
|
23065
23087
|
.c4p--inline-edit-v2__text-input.bx--text-input:focus,
|
|
23066
23088
|
.c4p--inline-edit-v2__text-input.bx--text-input:active {
|
|
23067
23089
|
outline: none;
|
|
23068
23090
|
}
|
|
23069
23091
|
|
|
23070
23092
|
.c4p--inline-edit-v2__toolbar {
|
|
23071
|
-
--toolbar-width: var(--
|
|
23072
|
-
--toolbar-width-focussed: var(--
|
|
23093
|
+
--toolbar-width: var(--c4p--inline-edit-v2--size);
|
|
23094
|
+
--toolbar-width-focussed: calc(2 * var(--c4p--inline-edit-v2--size));
|
|
23073
23095
|
display: inline-flex;
|
|
23074
23096
|
overflow: hidden;
|
|
23075
23097
|
width: var(--toolbar-width);
|
|
23076
23098
|
}
|
|
23077
23099
|
|
|
23078
23100
|
.c4p--inline-edit-v2--invalid .c4p--inline-edit-v2__toolbar {
|
|
23079
|
-
--toolbar-width: var(--cds-spacing-07, 2rem);
|
|
23080
|
-
--toolbar-width-focussed:
|
|
23101
|
+
--toolbar-width: calc(var(--c4p--inline-edit-v2--size) + var(--cds-spacing-07, 2rem));
|
|
23102
|
+
--toolbar-width-focussed: calc(
|
|
23103
|
+
2 * var(--c4p--inline-edit-v2--size) + var(--cds-spacing-07, 2rem)
|
|
23104
|
+
);
|
|
23081
23105
|
}
|
|
23082
23106
|
|
|
23083
23107
|
@keyframes slide-in {
|
|
@@ -23111,45 +23135,70 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
23111
23135
|
opacity: 1;
|
|
23112
23136
|
}
|
|
23113
23137
|
}
|
|
23114
|
-
.c4p--non-linear-
|
|
23115
|
-
|
|
23116
|
-
|
|
23138
|
+
.c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed {
|
|
23139
|
+
height: 1.25rem;
|
|
23140
|
+
padding-top: 0;
|
|
23141
|
+
padding-right: 0.1875rem;
|
|
23142
|
+
border-width: 0.0625rem;
|
|
23143
|
+
border-style: solid;
|
|
23117
23144
|
border-radius: var(--cds-spacing-04, 0.75rem);
|
|
23118
|
-
background-color: var(--cds-interactive-02, #393939);
|
|
23119
23145
|
white-space: nowrap;
|
|
23120
|
-
|
|
23121
|
-
color:
|
|
23146
|
+
border-color: var(--cds-interactive-03, #0f62fe);
|
|
23147
|
+
background-color: transparent;
|
|
23148
|
+
color: var(--cds-interactive-03, #0f62fe);
|
|
23122
23149
|
}
|
|
23123
|
-
.c4p--non-linear-
|
|
23124
|
-
background-color: var(--cds-hover-secondary, #4c4c4c);
|
|
23150
|
+
.c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:hover {
|
|
23125
23151
|
cursor: pointer;
|
|
23126
23152
|
}
|
|
23127
|
-
.c4p--non-linear-
|
|
23128
|
-
|
|
23153
|
+
.c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed svg {
|
|
23154
|
+
margin: 0.0625rem 0 0 0;
|
|
23155
|
+
vertical-align: text-top;
|
|
23129
23156
|
}
|
|
23130
|
-
.c4p--non-linear-
|
|
23131
|
-
|
|
23132
|
-
|
|
23157
|
+
.c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:hover {
|
|
23158
|
+
background-color: var(--cds-interactive-03, #0f62fe);
|
|
23159
|
+
color: var(--cds-inverse-01, #ffffff);
|
|
23160
|
+
}
|
|
23161
|
+
.c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open {
|
|
23162
|
+
height: 1.25rem;
|
|
23163
|
+
padding-top: 0;
|
|
23164
|
+
padding-right: 0.1875rem;
|
|
23165
|
+
border-width: 0.0625rem;
|
|
23166
|
+
border-style: solid;
|
|
23133
23167
|
border-radius: var(--cds-spacing-04, 0.75rem);
|
|
23134
|
-
background-color: var(--cds-interactive-02, #393939);
|
|
23135
23168
|
white-space: nowrap;
|
|
23136
|
-
|
|
23137
|
-
background-color: #
|
|
23138
|
-
color: var(--cds-
|
|
23169
|
+
border-color: var(--cds-interactive-03, #0f62fe);
|
|
23170
|
+
background-color: var(--cds-interactive-03, #0f62fe);
|
|
23171
|
+
color: var(--cds-inverse-01, #ffffff);
|
|
23139
23172
|
}
|
|
23140
|
-
.c4p--non-linear-
|
|
23141
|
-
background-color: var(--cds-hover-secondary, #4c4c4c);
|
|
23173
|
+
.c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:hover {
|
|
23142
23174
|
cursor: pointer;
|
|
23143
23175
|
}
|
|
23144
|
-
.c4p--non-linear-
|
|
23145
|
-
|
|
23146
|
-
margin: 0 var(--cds-spacing-02, 0.25rem) 0 var(--cds-spacing-01, 0.125rem);
|
|
23176
|
+
.c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
|
|
23177
|
+
margin: 0.0625rem 0 0 0;
|
|
23147
23178
|
vertical-align: text-top;
|
|
23148
23179
|
}
|
|
23149
|
-
.c4p--non-linear-
|
|
23150
|
-
|
|
23180
|
+
.c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
|
|
23181
|
+
transform: rotate(180deg);
|
|
23151
23182
|
}
|
|
23152
|
-
.c4p--non-linear-
|
|
23183
|
+
.c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:hover {
|
|
23184
|
+
background-color: transparent;
|
|
23185
|
+
color: var(--cds-interactive-03, #0f62fe);
|
|
23186
|
+
}
|
|
23187
|
+
.c4p--non-linear-reading__light .c4p--non-linear-reading__body {
|
|
23188
|
+
font-size: var(--cds-body-long-01-font-size, 0.875rem);
|
|
23189
|
+
font-weight: var(--cds-body-long-01-font-weight, 400);
|
|
23190
|
+
line-height: var(--cds-body-long-01-line-height, 1.42857);
|
|
23191
|
+
letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
|
|
23192
|
+
display: block;
|
|
23193
|
+
padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
|
|
23194
|
+
border-left-width: 0.078125rem;
|
|
23195
|
+
border-left-style: solid;
|
|
23196
|
+
margin: var(--cds-spacing-02, 0.25rem) 0;
|
|
23197
|
+
animation: fade 600ms;
|
|
23198
|
+
border-left-color: var(--cds-text-01, #161616);
|
|
23199
|
+
}
|
|
23200
|
+
|
|
23201
|
+
.c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed {
|
|
23153
23202
|
--cds-interactive-01: #0f62fe;
|
|
23154
23203
|
--cds-interactive-02: #6f6f6f;
|
|
23155
23204
|
--cds-interactive-03: #ffffff;
|
|
@@ -23570,22 +23619,29 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
23570
23619
|
--cds-size-2XLarge: 5rem;
|
|
23571
23620
|
--cds-icon-size-01: 1rem;
|
|
23572
23621
|
--cds-icon-size-02: 1.25rem;
|
|
23573
|
-
|
|
23574
|
-
|
|
23622
|
+
height: 1.25rem;
|
|
23623
|
+
padding-top: 0;
|
|
23624
|
+
padding-right: 0.1875rem;
|
|
23625
|
+
border-width: 0.0625rem;
|
|
23626
|
+
border-style: solid;
|
|
23575
23627
|
border-radius: var(--cds-spacing-04, 0.75rem);
|
|
23576
|
-
background-color: var(--cds-interactive-02, #393939);
|
|
23577
23628
|
white-space: nowrap;
|
|
23578
|
-
|
|
23579
|
-
color:
|
|
23629
|
+
border-color: var(--cds-icon-03, #ffffff);
|
|
23630
|
+
background-color: transparent;
|
|
23631
|
+
color: var(--cds-text-01, #161616);
|
|
23580
23632
|
}
|
|
23581
|
-
.c4p--non-linear-
|
|
23582
|
-
background-color: var(--cds-hover-secondary, #4c4c4c);
|
|
23633
|
+
.c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:hover {
|
|
23583
23634
|
cursor: pointer;
|
|
23584
23635
|
}
|
|
23585
|
-
.c4p--non-linear-
|
|
23586
|
-
|
|
23636
|
+
.c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed svg {
|
|
23637
|
+
margin: 0.0625rem 0 0 0;
|
|
23638
|
+
vertical-align: text-top;
|
|
23639
|
+
}
|
|
23640
|
+
.c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:hover {
|
|
23641
|
+
background-color: var(--cds-icon-03, #ffffff);
|
|
23642
|
+
color: var(--cds-inverse-01, #ffffff);
|
|
23587
23643
|
}
|
|
23588
|
-
.c4p--non-linear-
|
|
23644
|
+
.c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open {
|
|
23589
23645
|
--cds-interactive-01: #0f62fe;
|
|
23590
23646
|
--cds-interactive-02: #6f6f6f;
|
|
23591
23647
|
--cds-interactive-03: #ffffff;
|
|
@@ -24006,42 +24062,32 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
24006
24062
|
--cds-size-2XLarge: 5rem;
|
|
24007
24063
|
--cds-icon-size-01: 1rem;
|
|
24008
24064
|
--cds-icon-size-02: 1.25rem;
|
|
24009
|
-
|
|
24010
|
-
|
|
24065
|
+
height: 1.25rem;
|
|
24066
|
+
padding-top: 0;
|
|
24067
|
+
padding-right: 0.1875rem;
|
|
24068
|
+
border-width: 0.0625rem;
|
|
24069
|
+
border-style: solid;
|
|
24011
24070
|
border-radius: var(--cds-spacing-04, 0.75rem);
|
|
24012
|
-
background-color: var(--cds-interactive-02, #393939);
|
|
24013
24071
|
white-space: nowrap;
|
|
24014
|
-
|
|
24015
|
-
background-color: #
|
|
24016
|
-
color: var(--cds-
|
|
24072
|
+
border-color: var(--cds-icon-03, #ffffff);
|
|
24073
|
+
background-color: var(--cds-icon-03, #ffffff);
|
|
24074
|
+
color: var(--cds-inverse-01, #ffffff);
|
|
24017
24075
|
}
|
|
24018
|
-
.c4p--non-linear-
|
|
24019
|
-
background-color: var(--cds-hover-secondary, #4c4c4c);
|
|
24076
|
+
.c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
|
|
24020
24077
|
cursor: pointer;
|
|
24021
24078
|
}
|
|
24022
|
-
.c4p--non-linear-
|
|
24023
|
-
|
|
24024
|
-
margin: 0 var(--cds-spacing-02, 0.25rem) 0 var(--cds-spacing-01, 0.125rem);
|
|
24079
|
+
.c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
|
|
24080
|
+
margin: 0.0625rem 0 0 0;
|
|
24025
24081
|
vertical-align: text-top;
|
|
24026
24082
|
}
|
|
24027
|
-
.c4p--non-linear-
|
|
24028
|
-
|
|
24083
|
+
.c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
|
|
24084
|
+
transform: rotate(180deg);
|
|
24029
24085
|
}
|
|
24030
|
-
.c4p--non-linear-
|
|
24031
|
-
|
|
24032
|
-
|
|
24033
|
-
line-height: var(--cds-body-long-01-line-height, 1.42857);
|
|
24034
|
-
letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
|
|
24035
|
-
display: block;
|
|
24036
|
-
padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
|
|
24037
|
-
border-left-width: 0.078125rem;
|
|
24038
|
-
border-left-style: solid;
|
|
24039
|
-
margin: var(--cds-spacing-02, 0.25rem) 0;
|
|
24040
|
-
animation: fade 600ms;
|
|
24041
|
-
border-left-color: #6929c4;
|
|
24042
|
-
color: #6929c4;
|
|
24086
|
+
.c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
|
|
24087
|
+
background-color: transparent;
|
|
24088
|
+
color: var(--cds-text-01, #161616);
|
|
24043
24089
|
}
|
|
24044
|
-
.c4p--non-linear-
|
|
24090
|
+
.c4p--non-linear-reading__dark .c4p--non-linear-reading__body {
|
|
24045
24091
|
--cds-interactive-01: #0f62fe;
|
|
24046
24092
|
--cds-interactive-02: #6f6f6f;
|
|
24047
24093
|
--cds-interactive-03: #ffffff;
|
|
@@ -24472,8 +24518,11 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
24472
24518
|
border-left-style: solid;
|
|
24473
24519
|
margin: var(--cds-spacing-02, 0.25rem) 0;
|
|
24474
24520
|
animation: fade 600ms;
|
|
24475
|
-
border-left-color: #
|
|
24476
|
-
color: #
|
|
24521
|
+
border-left-color: var(--cds-text-01, #161616);
|
|
24522
|
+
color: var(--cds-text-01, #161616);
|
|
24523
|
+
}
|
|
24524
|
+
.c4p--non-linear-reading__dark .c4p--non-linear-reading__body a {
|
|
24525
|
+
color: var(--cds-link-01, #0f62fe);
|
|
24477
24526
|
}
|
|
24478
24527
|
|
|
24479
24528
|
@font-face {
|