@snack-uikit/list 0.13.10 → 0.13.11-preview-665bb1e8.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/dist/components/Items/BaseItem/BaseItem.d.ts +0 -1
- package/dist/components/Items/BaseItem/BaseItem.js +1 -1
- package/dist/components/Items/BaseItem/styles.module.css +4 -4
- package/dist/components/Items/styles.module.css +2 -2
- package/dist/components/Items/types.d.ts +1 -0
- package/dist/components/Lists/ListPrivate/styles.module.css +1 -1
- package/dist/components/Lists/styles.module.css +2 -2
- package/dist/helperComponents/CollapseBlockPrivate/styles.module.css +1 -1
- package/dist/helperComponents/ItemContent/styles.module.css +4 -4
- package/dist/helperComponents/Separator/styles.module.css +6 -6
- package/package.json +2 -2
- package/src/components/Items/BaseItem/BaseItem.tsx +1 -2
- package/src/components/Items/types.ts +2 -0
|
@@ -28,7 +28,7 @@ export function BaseItem(_a) {
|
|
|
28
28
|
const { forceUpdateActiveItemId } = useFocusListContext();
|
|
29
29
|
const { closeDroplist, closeDroplistOnItemClick } = useOpenListContext();
|
|
30
30
|
const { value, onChange, mode, isSelectionSingle, isSelectionMultiple } = useSelectionContext();
|
|
31
|
-
const isChecked = isSelectionSingle ? value === id : checkedProp !== null && checkedProp !== void 0 ? checkedProp : value === null || value === void 0 ? void 0 : value.includes(id !== null && id !== void 0 ? id : '');
|
|
31
|
+
const isChecked = isSelectionSingle ? checkedProp !== null && checkedProp !== void 0 ? checkedProp : value === id : checkedProp !== null && checkedProp !== void 0 ? checkedProp : value === null || value === void 0 ? void 0 : value.includes(id !== null && id !== void 0 ? id : '');
|
|
32
32
|
const handleChange = () => {
|
|
33
33
|
onChange === null || onChange === void 0 ? void 0 : onChange(id);
|
|
34
34
|
};
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
justify-content:center;
|
|
17
17
|
width:var(--size-icon-container-s, 24px);
|
|
18
18
|
height:var(--size-icon-container-s, 24px);
|
|
19
|
-
color:var(--sys-neutral-text-light, #
|
|
19
|
+
color:var(--sys-neutral-text-light, #8b8e9b);
|
|
20
20
|
}
|
|
21
21
|
.beforeContent svg{
|
|
22
22
|
max-width:100%;
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
.expandableIcon{
|
|
27
27
|
display:flex;
|
|
28
28
|
align-items:center;
|
|
29
|
-
color:var(--sys-neutral-text-light, #
|
|
29
|
+
color:var(--sys-neutral-text-light, #8b8e9b);
|
|
30
30
|
fill:currentColor;
|
|
31
31
|
}
|
|
32
32
|
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
.innerWrapper[data-disabled] .expandableIcon{
|
|
81
|
-
color:var(--sys-neutral-text-disabled, #
|
|
81
|
+
color:var(--sys-neutral-text-disabled, #aaaebd);
|
|
82
82
|
}
|
|
83
83
|
.innerWrapper[data-disabled] .beforeContent{
|
|
84
84
|
opacity:var(--opacity-a064, 0.64);
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
outline-color:var(--sys-primary-accent-default, #794ed3);
|
|
102
102
|
}
|
|
103
103
|
.innerWrapper[data-has-checked][data-disabled] .markerContainer:before, .innerWrapper[data-checked][data-disabled] .markerContainer:before{
|
|
104
|
-
background-color:var(--sys-neutral-text-disabled, #
|
|
104
|
+
background-color:var(--sys-neutral-text-disabled, #aaaebd);
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
.content{
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
.itemWrapper:not([data-inactive], [data-disabled])[data-open]::before, .itemWrapper:not([data-inactive], [data-disabled])[data-focused]::before, .itemWrapper:not([data-inactive], [data-disabled]):hover::before, .itemWrapper:not([data-inactive], [data-disabled]):focus-visible::before{
|
|
30
30
|
opacity:var(--opacity-a008, 0.08);
|
|
31
|
-
background-color:var(--sys-neutral-accent-default, #
|
|
31
|
+
background-color:var(--sys-neutral-accent-default, #787b8a);
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
.listItem{
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
min-width:100%;
|
|
44
44
|
margin:0;
|
|
45
45
|
padding:0;
|
|
46
|
-
color:var(--sys-neutral-text-main, #
|
|
46
|
+
color:var(--sys-neutral-text-main, #33343f);
|
|
47
47
|
text-align:start;
|
|
48
48
|
-webkit-appearance:unset;
|
|
49
49
|
-moz-appearance:unset;
|
|
@@ -50,6 +50,7 @@ export type BaseItem = WithSupportProps<{
|
|
|
50
50
|
*/
|
|
51
51
|
switch?: boolean;
|
|
52
52
|
itemWrapRender?(item: ReactNode): ReactNode;
|
|
53
|
+
checked?: boolean;
|
|
53
54
|
}>;
|
|
54
55
|
type BaseItemWithoutNonGroup = Omit<BaseItem, 'switch' | 'inactive'>;
|
|
55
56
|
export type Item = BaseItem | AccordionItem | NextListItem | GroupItem | GroupSelectItem;
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
outline-style:var(--border-state-focus-s-border-style, solid);
|
|
30
30
|
outline-color:var(--border-state-focus-s-border-color, );
|
|
31
31
|
outline-offset:calc(var(--border-state-focus-s-border-width, 2px) * -1);
|
|
32
|
-
outline-color:var(--sys-available-complementary, #
|
|
32
|
+
outline-color:var(--sys-available-complementary, #15151b);
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.scrollStub{
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
outline-style:var(--border-state-focus-s-border-style, solid);
|
|
15
15
|
outline-color:var(--border-state-focus-s-border-color, );
|
|
16
16
|
outline-offset:calc(var(--border-state-focus-s-border-width, 2px) * -1);
|
|
17
|
-
outline-color:var(--sys-available-complementary, #
|
|
17
|
+
outline-color:var(--sys-available-complementary, #15151b);
|
|
18
18
|
}
|
|
19
19
|
.listContainer:focus-visible[data-active] *{
|
|
20
20
|
cursor:inherit;
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
outline-style:var(--border-state-focus-s-border-style, solid);
|
|
37
37
|
outline-color:var(--border-state-focus-s-border-color, );
|
|
38
38
|
outline-offset:calc(var(--border-state-focus-s-border-width, 2px) * -1);
|
|
39
|
-
outline-color:var(--sys-available-complementary, #
|
|
39
|
+
outline-color:var(--sys-available-complementary, #15151b);
|
|
40
40
|
}
|
|
41
41
|
.wrapper li,
|
|
42
42
|
.wrapper ul{
|
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
.label{
|
|
7
7
|
overflow:hidden;
|
|
8
8
|
flex:1;
|
|
9
|
-
color:var(--sys-neutral-text-main, #
|
|
9
|
+
color:var(--sys-neutral-text-main, #33343f);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.caption{
|
|
13
13
|
overflow:hidden;
|
|
14
|
-
color:var(--sys-neutral-text-light, #
|
|
14
|
+
color:var(--sys-neutral-text-light, #8b8e9b);
|
|
15
15
|
text-overflow:ellipsis;
|
|
16
16
|
white-space:nowrap;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.description{
|
|
20
|
-
color:var(--sys-neutral-text-support, #
|
|
20
|
+
color:var(--sys-neutral-text-support, #6d707f);
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
.content{
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
.content[data-disabled] .label,
|
|
114
114
|
.content[data-disabled] .description,
|
|
115
115
|
.content[data-disabled] .caption{
|
|
116
|
-
color:var(--sys-neutral-text-disabled, #
|
|
116
|
+
color:var(--sys-neutral-text-disabled, #aaaebd);
|
|
117
117
|
}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
font-weight:var(--sans-label-m-font-weight, Semibold);
|
|
20
20
|
line-height:var(--sans-label-m-line-height, 16px);
|
|
21
21
|
font-size:var(--sans-label-m-font-size, 12px);
|
|
22
|
-
letter-spacing:var(--sans-label-m-letter-spacing,
|
|
22
|
+
letter-spacing:var(--sans-label-m-letter-spacing, 0px);
|
|
23
23
|
paragraph-spacing:var(--sans-label-m-paragraph-spacing, 6.6px);
|
|
24
24
|
}
|
|
25
25
|
.separatorWithLabel[data-size=s] .label[data-mode=secondary]{
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
font-weight:var(--light-label-m-font-weight, Regular);
|
|
28
28
|
line-height:var(--light-label-m-line-height, 16px);
|
|
29
29
|
font-size:var(--light-label-m-font-size, 12px);
|
|
30
|
-
letter-spacing:var(--light-label-m-letter-spacing,
|
|
30
|
+
letter-spacing:var(--light-label-m-letter-spacing, 0px);
|
|
31
31
|
paragraph-spacing:var(--light-label-m-paragraph-spacing, 6.6px);
|
|
32
32
|
}
|
|
33
33
|
.separatorWithLabel[data-size=m]{
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
font-weight:var(--sans-label-l-font-weight, Semibold);
|
|
44
44
|
line-height:var(--sans-label-l-line-height, 20px);
|
|
45
45
|
font-size:var(--sans-label-l-font-size, 14px);
|
|
46
|
-
letter-spacing:var(--sans-label-l-letter-spacing,
|
|
46
|
+
letter-spacing:var(--sans-label-l-letter-spacing, 0px);
|
|
47
47
|
paragraph-spacing:var(--sans-label-l-paragraph-spacing, 7.7px);
|
|
48
48
|
}
|
|
49
49
|
.separatorWithLabel[data-size=m] .label[data-mode=secondary]{
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
font-weight:var(--light-label-l-font-weight, Regular);
|
|
52
52
|
line-height:var(--light-label-l-line-height, 20px);
|
|
53
53
|
font-size:var(--light-label-l-font-size, 14px);
|
|
54
|
-
letter-spacing:var(--light-label-l-letter-spacing,
|
|
54
|
+
letter-spacing:var(--light-label-l-letter-spacing, 0px);
|
|
55
55
|
paragraph-spacing:var(--light-label-l-paragraph-spacing, 7.7px);
|
|
56
56
|
}
|
|
57
57
|
.separatorWithLabel[data-size=l]{
|
|
@@ -108,10 +108,10 @@
|
|
|
108
108
|
flex-shrink:1;
|
|
109
109
|
}
|
|
110
110
|
.label[data-mode=primary]{
|
|
111
|
-
color:var(--sys-neutral-text-main, #
|
|
111
|
+
color:var(--sys-neutral-text-main, #33343f);
|
|
112
112
|
}
|
|
113
113
|
.label[data-mode=secondary]{
|
|
114
|
-
color:var(--sys-neutral-text-light, #
|
|
114
|
+
color:var(--sys-neutral-text-light, #8b8e9b);
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
hr.divider{
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "List",
|
|
7
|
-
"version": "0.13.
|
|
7
|
+
"version": "0.13.11-preview-665bb1e8.0",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@snack-uikit/locale": "*"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "3c194191d70f95ea7984691acc64c46a5472aa4c"
|
|
53
53
|
}
|
|
@@ -22,7 +22,6 @@ type AllBaseItemProps = FlattenBaseItem & {
|
|
|
22
22
|
expandIcon?: ReactNode;
|
|
23
23
|
open?: boolean;
|
|
24
24
|
indeterminate?: boolean;
|
|
25
|
-
checked?: boolean;
|
|
26
25
|
onSelect?(): void;
|
|
27
26
|
isParentNode?: boolean;
|
|
28
27
|
onOpenNestedList?(e?: KeyboardEvent<HTMLElement>): void;
|
|
@@ -60,7 +59,7 @@ export function BaseItem({
|
|
|
60
59
|
const { closeDroplist, closeDroplistOnItemClick } = useOpenListContext();
|
|
61
60
|
const { value, onChange, mode, isSelectionSingle, isSelectionMultiple } = useSelectionContext();
|
|
62
61
|
|
|
63
|
-
const isChecked = isSelectionSingle ? value === id : checkedProp ?? value?.includes(id ?? '');
|
|
62
|
+
const isChecked = isSelectionSingle ? checkedProp ?? value === id : checkedProp ?? value?.includes(id ?? '');
|
|
64
63
|
|
|
65
64
|
const handleChange = () => {
|
|
66
65
|
onChange?.(id);
|