You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

46 lines
1.9 KiB

@use 'sass:map';
@use 'sass:list';
@use '../core/tokens/m3-utils';
@use '../core/theming/theming';
@use '../core/tokens/m3';
/// Generates custom tokens for the mat-paginator.
@function get-tokens($theme: m3.$sys-theme) {
$system: m3-utils.get-system($theme);
@return (
base: (
paginator-page-size-select-width: 84px,
paginator-page-size-select-touch-target-height: 48px,
),
color: (
paginator-container-text-color: map.get($system, on-surface),
paginator-container-background-color: map.get($system, surface),
paginator-disabled-icon-color: m3-utils.color-with-opacity(map.get($system, on-surface), 38%),
paginator-enabled-icon-color: map.get($system, on-surface-variant),
),
typography: (
paginator-container-text-font: map.get($system, body-small-font),
paginator-container-text-line-height: map.get($system, body-small-line-height),
paginator-container-text-size: map.get($system, body-small-size),
paginator-container-text-tracking: map.get($system, body-small-tracking),
paginator-container-text-weight: map.get($system, body-small-weight),
paginator-select-trigger-text-size: map.get($system, body-small-size),
),
density: get-density-tokens(map.get($system, density-scale)),
);
}
// Tokens that can be configured through Angular Material's density theming API.
@function get-density-tokens($scale) {
$scale: theming.clamp-density($scale, -5);
$index: ($scale * -1) + 1;
@return (
paginator-container-size: list.nth((56px, 52px, 48px, 40px, 40px, 40px), $index),
paginator-form-field-container-height: list.nth((40px, 40px, 40px, 40px, 40px, 36px), $index),
paginator-form-field-container-vertical-padding:
list.nth((8px, 8px, 8px, 8px, 8px, 6px), $index),
paginator-touch-target-display: list.nth((block, block, none, none, none, none), $index),
);
}