@taiga-ui/addon-mobile 4.52.0-canary.763e67d → 4.52.0-canary.7c53ccc
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/components/bottom-sheet/bottom-sheet.component.d.ts +3 -3
- package/components/mobile-calendar/calendar-date-stream.d.ts +6 -0
- package/components/mobile-calendar/index.d.ts +1 -0
- package/components/mobile-calendar/mobile-calendar.component.d.ts +15 -18
- package/components/mobile-calendar/mobile-calendar.strategy.d.ts +1 -2
- package/components/mobile-calendar-dropdown/mobile-calendar-dropdown.component.d.ts +6 -6
- package/components/mobile-calendar-dropdown/mobile-calendar-dropdown.directive.d.ts +6 -6
- package/components/pull-to-refresh/pull-to-refresh.component.d.ts +8 -7
- package/components/swipe-action/swipe-actions-auto-close.directive.d.ts +2 -2
- package/components/tab-bar/tab-bar-item.component.d.ts +3 -3
- package/components/tab-bar/tab-bar.component.d.ts +4 -7
- package/directives/elastic-sticky/elastic-sticky.directive.d.ts +1 -2
- package/directives/ripple/ripple.directive.d.ts +2 -2
- package/directives/touchable/touchable.directive.d.ts +5 -5
- package/fesm2022/taiga-ui-addon-mobile-components-bottom-sheet.mjs +11 -19
- package/fesm2022/taiga-ui-addon-mobile-components-bottom-sheet.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-mobile-components-mobile-calendar-dropdown.mjs +23 -31
- package/fesm2022/taiga-ui-addon-mobile-components-mobile-calendar-dropdown.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-mobile-components-mobile-calendar-sheet.mjs +2 -2
- package/fesm2022/taiga-ui-addon-mobile-components-mobile-calendar.mjs +102 -123
- package/fesm2022/taiga-ui-addon-mobile-components-mobile-calendar.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-mobile-components-pull-to-refresh.mjs +29 -39
- package/fesm2022/taiga-ui-addon-mobile-components-pull-to-refresh.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-mobile-components-sheet-dialog.mjs +2 -2
- package/fesm2022/taiga-ui-addon-mobile-components-sheet-dialog.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-mobile-components-swipe-action.mjs +7 -14
- package/fesm2022/taiga-ui-addon-mobile-components-swipe-action.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-mobile-components-tab-bar.mjs +23 -41
- package/fesm2022/taiga-ui-addon-mobile-components-tab-bar.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-mobile-directives-elastic-sticky.mjs +4 -6
- package/fesm2022/taiga-ui-addon-mobile-directives-elastic-sticky.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-mobile-directives-ripple.mjs +5 -7
- package/fesm2022/taiga-ui-addon-mobile-directives-ripple.mjs.map +1 -1
- package/fesm2022/taiga-ui-addon-mobile-directives-touchable.mjs +16 -22
- package/fesm2022/taiga-ui-addon-mobile-directives-touchable.mjs.map +1 -1
- package/package.json +9 -9
- package/styles/android/app-bar.less +5 -1
- package/styles/common/badge-notification.less +1 -1
- package/styles/common/badge.less +2 -2
- package/styles/common/block-status.less +1 -1
- package/styles/common/button.less +1 -1
- package/styles/common/header.less +1 -1
- package/styles/common/message.less +1 -1
- package/styles/common/segmented.less +1 -1
- package/styles/common/title.less +0 -1
- package/styles/common/toast.less +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
tui-app-bar {
|
|
2
|
-
font: var(--tui-font-heading-
|
|
2
|
+
font: var(--tui-font-heading-h6);
|
|
3
3
|
block-size: 3.5rem;
|
|
4
4
|
|
|
5
5
|
> .t-content {
|
|
@@ -12,6 +12,10 @@ tui-app-bar {
|
|
|
12
12
|
> * {
|
|
13
13
|
max-inline-size: calc(100% - var(--t-sides, 0px));
|
|
14
14
|
}
|
|
15
|
+
|
|
16
|
+
> [tuiProgressBar] {
|
|
17
|
+
.center-left();
|
|
18
|
+
}
|
|
15
19
|
}
|
|
16
20
|
|
|
17
21
|
> :last-child [tuiIconButton] {
|
package/styles/common/badge.less
CHANGED
|
@@ -3,7 +3,7 @@ tui-badge,
|
|
|
3
3
|
font-weight: 600;
|
|
4
4
|
|
|
5
5
|
&[data-size='s'] {
|
|
6
|
-
font: var(--tui-font-
|
|
6
|
+
font: var(--tui-font-body-xs);
|
|
7
7
|
font-weight: bold;
|
|
8
8
|
}
|
|
9
9
|
|
|
@@ -11,7 +11,7 @@ tui-badge,
|
|
|
11
11
|
--t-padding: 0 0.625rem;
|
|
12
12
|
--t-size: 1.75rem;
|
|
13
13
|
|
|
14
|
-
font: var(--tui-font-
|
|
14
|
+
font: var(--tui-font-body-s);
|
|
15
15
|
font-weight: 600;
|
|
16
16
|
}
|
|
17
17
|
}
|
package/styles/common/title.less
CHANGED