@fest-lib/veela 0.1.20 → 1.0.1

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.
Files changed (141) hide show
  1. package/dist/veela.js +4 -33
  2. package/package.json +9 -2
  3. package/src/scss/_layers.scss +5 -34
  4. package/src/scss/basic/{misc/_core-layout.scss → _core-layout.scss} +1 -1
  5. package/src/scss/basic/_layers.scss +1 -0
  6. package/src/scss/basic/{misc/_layout.scss → _layout.scss} +15 -15
  7. package/src/scss/basic/{misc/_normalize.scss → _normalize.scss} +5 -103
  8. package/src/scss/basic/{misc/_states.scss → _states.scss} +2 -2
  9. package/src/scss/{core/misc → basic}/_utilities.scss +4 -4
  10. package/src/scss/basic/design/_keyframes.scss +1 -1
  11. package/src/scss/basic/design/_shapes.scss +1 -1
  12. package/src/scss/basic/index.scss +14 -16
  13. package/src/scss/chrome.scss +2 -0
  14. package/src/scss/core/_color-mod.scss +24 -0
  15. package/src/scss/core/{misc/_color-properties.scss → _color-properties.scss} +1 -1
  16. package/src/scss/core/{misc/_tokens.scss → _tokens.scss} +10 -93
  17. package/src/scss/core/index.scss +13 -1
  18. package/src/scss/index.scss +7 -2
  19. package/src/scss/index.ts +1 -1
  20. package/src/scss/{core/interact → interact}/_viewport.scss +1 -1
  21. package/src/scss/interact/index.scss +18 -0
  22. package/src/scss/theme/_effects.scss +60 -0
  23. package/src/scss/theme/index.scss +8 -0
  24. package/src/scss/{advanced/index.ts → theme/loader.ts} +3 -4
  25. package/src/scss/ui/_bar.scss +268 -0
  26. package/src/scss/ui/_buttons.scss +215 -0
  27. package/src/scss/ui/_chrome-mixins.scss +104 -0
  28. package/src/scss/ui/_color.scss +3 -0
  29. package/src/scss/ui/_colorize.scss +5 -0
  30. package/src/scss/{advanced/layout → ui}/_content.scss +0 -1
  31. package/src/scss/ui/_core-layout.scss +4 -0
  32. package/src/scss/ui/_essentials-options.scss +2 -0
  33. package/src/scss/ui/_essentials.scss +707 -0
  34. package/src/scss/ui/_explorer-content.scss +417 -0
  35. package/src/scss/ui/_explorer.scss +274 -0
  36. package/src/scss/ui/_forms-bare-host-elements.scss +25 -0
  37. package/src/scss/ui/_forms-options.scss +2 -0
  38. package/src/scss/ui/_forms.scss +279 -0
  39. package/src/scss/ui/_forms_misc.scss +201 -0
  40. package/src/scss/ui/_gridbox.scss +298 -0
  41. package/src/scss/ui/_home-host.scss +192 -0
  42. package/src/scss/ui/_index.scss +23 -0
  43. package/src/scss/ui/_launcher-typography.scss +31 -0
  44. package/src/scss/ui/_layers.scss +48 -0
  45. package/src/scss/ui/_layout.scss +3 -0
  46. package/src/scss/ui/_markdown.scss +1634 -0
  47. package/src/scss/ui/_modal.scss +309 -0
  48. package/src/scss/ui/_motion.scss +3 -0
  49. package/src/scss/ui/_native-host-button-chrome.scss +31 -0
  50. package/src/scss/ui/_normalize.scss +5 -0
  51. package/src/scss/ui/_orientation-functions.scss +273 -0
  52. package/src/scss/ui/_orientbox.scss +97 -0
  53. package/src/scss/ui/_scrollbar.scss +257 -0
  54. package/src/scss/ui/_shared-overlays.scss +16 -0
  55. package/src/scss/ui/_shared.scss +4 -0
  56. package/src/scss/ui/_sidebar.scss +478 -0
  57. package/src/scss/ui/_speed-dial.scss +47 -0
  58. package/src/scss/ui/_states.scss +4 -0
  59. package/src/scss/ui/_tables.scss +28 -0
  60. package/src/scss/ui/_tabs.scss +405 -0
  61. package/src/scss/ui/_taskbar.scss +215 -0
  62. package/src/scss/ui/_toolbars.scss +167 -0
  63. package/src/scss/ui/_typography.scss +11 -0
  64. package/src/scss/ui/_utils.scss +8 -0
  65. package/src/scss/ui/_viewport.scss +470 -0
  66. package/src/scss/ui/_window-frame.scss +658 -0
  67. package/src/scss/ui/components/app-menu.scss +817 -0
  68. package/src/scss/ui/components/appearance-desktop.scss +14 -0
  69. package/src/scss/ui/components/appearance-mobile.scss +14 -0
  70. package/src/scss/ui/components/calendar/flyout.scss +194 -0
  71. package/src/scss/ui/components/calendar/index.scss +627 -0
  72. package/src/scss/ui/components/explorer-settings.scss +232 -0
  73. package/src/scss/ui/components/file-manager-content.scss +2 -0
  74. package/src/scss/ui/components/file-manager.scss +2 -0
  75. package/src/scss/ui/components/launcher-icon-mask.scss +34 -0
  76. package/src/scss/ui/components/navbar.scss +133 -0
  77. package/src/scss/ui/components/quick-settings.scss +321 -0
  78. package/src/scss/ui/components/scrollframe.scss +58 -0
  79. package/src/scss/ui/components/slider.scss +188 -0
  80. package/src/scss/ui/components/speed-dial.scss +2288 -0
  81. package/src/scss/ui/components/statusbar.scss +255 -0
  82. package/src/scss/ui/components/task.scss +118 -0
  83. package/src/scss/ui/components/taskbar.scss +514 -0
  84. package/src/scss/ui/components/text.scss +241 -0
  85. package/src/scss/ui/components/window.scss +601 -0
  86. package/src/scss/ui/home-host-apply.scss +10 -0
  87. package/src/scss/ui/index.scss +7 -0
  88. package/src/scss/ui/native-controls.scss +17 -0
  89. package/src/scss/advanced/_index.scss +0 -0
  90. package/src/scss/advanced/animation/_motion.scss +0 -323
  91. package/src/scss/advanced/color/_color.scss +0 -328
  92. package/src/scss/advanced/color/_colorize.scss +0 -325
  93. package/src/scss/advanced/design/_design-tokens.scss +0 -118
  94. package/src/scss/advanced/design/_effects.scss +0 -275
  95. package/src/scss/advanced/design/_shadow.scss +0 -359
  96. package/src/scss/advanced/design/_surfaces.scss +0 -76
  97. package/src/scss/advanced/effects/_animations.scss +0 -124
  98. package/src/scss/advanced/effects/_shadows.scss +0 -50
  99. package/src/scss/advanced/font/_typography.scss +0 -601
  100. package/src/scss/advanced/index.scss +0 -11
  101. package/src/scss/advanced/layout/_index.scss +0 -5
  102. package/src/scss/advanced/layout/_normalize.scss +0 -543
  103. package/src/scss/advanced/layout/_shared-overlays.scss +0 -162
  104. package/src/scss/advanced/md3/_md3.scss +0 -506
  105. package/src/scss/advanced/md3/_utils.scss +0 -114
  106. package/src/scss/advanced/misc/_config.scss +0 -119
  107. package/src/scss/advanced/misc/_initials.scss +0 -298
  108. package/src/scss/advanced/misc/_mixins.scss +0 -179
  109. package/src/scss/advanced/misc/_rendering.scss +0 -82
  110. package/src/scss/advanced/misc/_tokens.scss +0 -74
  111. package/src/scss/advanced/theme/_shared.scss +0 -232
  112. package/src/scss/advanced/theme/_states.scss +0 -332
  113. package/src/scss/advanced/theme/_variants.scss +0 -354
  114. package/src/scss/advanced/tokens/_material-color.scss +0 -120
  115. package/src/scss/advanced/tokens/_variables.scss +0 -171
  116. package/src/scss/basic/misc/_index.scss +0 -18
  117. package/src/scss/basic/misc/_mixins.scss +0 -179
  118. package/src/scss/basic/misc/_queries.scss +0 -34
  119. package/src/scss/basic/misc/_tokens.scss +0 -78
  120. package/src/scss/basic/misc/_veela.scss +0 -12
  121. package/src/scss/core/misc/_index.scss +0 -6
  122. /package/src/scss/basic/{misc/_motion.scss → _motion.scss} +0 -0
  123. /package/src/scss/{advanced/misc → basic}/_queries.scss +0 -0
  124. /package/src/scss/basic/{misc/_shared.scss → _shared.scss} +0 -0
  125. /package/src/scss/core/{misc/_config.scss → _config.scss} +0 -0
  126. /package/src/scss/core/{misc/_functions.scss → _functions.scss} +0 -0
  127. /package/src/scss/core/{misc/_icons.scss → _icons.scss} +0 -0
  128. /package/src/scss/core/{misc/_layout.scss → _layout.scss} +0 -0
  129. /package/src/scss/core/{misc/_mixins.scss → _mixins.scss} +0 -0
  130. /package/src/scss/core/{misc/_properties.scss → _properties.scss} +0 -0
  131. /package/src/scss/core/{misc/_utils.scss → _utils.scss} +0 -0
  132. /package/src/scss/{core/interact → interact}/_draggable.scss +0 -0
  133. /package/src/scss/{core/interact → interact}/_position.scss +0 -0
  134. /package/src/scss/{core/interact → interact}/_ps-anchor.scss +0 -0
  135. /package/src/scss/{core/interact → interact}/_ps-centered.scss +0 -0
  136. /package/src/scss/{core/interact → interact}/_ps-cursor.scss +0 -0
  137. /package/src/scss/{core/interact → interact}/_ps-draggable.scss +0 -0
  138. /package/src/scss/{core/interact → interact}/_ps-mechanic.scss +0 -0
  139. /package/src/scss/{core/interact → interact}/_ps-properties.scss +0 -0
  140. /package/src/scss/{core/interact → interact}/_ps-resizable.scss +0 -0
  141. /package/src/scss/{core/interact → interact}/_resizable.scss +0 -0
@@ -0,0 +1,97 @@
1
+ /*
2
+ * Filename: _orientbox.scss
3
+ * FullPath: modules/projects/fl.ui/src/styles/ui/_orientbox.scss
4
+ * Reason for changes: Restore Veela viewport import (typo viewrt→interact/viewport) and fix stray brace after merge mess.
5
+ */
6
+ @use "../interact/viewport" as *;
7
+
8
+ //
9
+ @layer layout {
10
+
11
+ //
12
+ .ui-orientbox {
13
+ @include init-cs-size;
14
+ @include compute_os_conditions;
15
+ @include compute_cs_size_to_os;
16
+ @include compute_from_os_to_cs;
17
+
18
+ //
19
+ & {
20
+ --cs-size-x: 100cqi;
21
+ --cs-size-y: 100cqb;
22
+
23
+ //
24
+ position: relative;
25
+ container-type: size !important;
26
+ contain: strict !important;
27
+ background-color: transparent;
28
+ inset: 0px;
29
+
30
+ //
31
+ grid-column: 1 / -1;
32
+ grid-row: 1 / -1;
33
+ place-self: start;
34
+
35
+ //
36
+ min-inline-size: 0px;
37
+ min-block-size: 0px;
38
+ inline-size: stretch;
39
+ block-size: stretch;
40
+ pointer-events: none;
41
+
42
+ //
43
+ zoom: max(var(--zoom, 1), 0.125);
44
+ font-size: 16px;
45
+
46
+ //
47
+ writing-mode: horizontal-tb !important;
48
+ direction: ltr !important;
49
+
50
+ //
51
+ /* WHY: IME must overlay — do not cap to shrinking `--vv-height` / `100dvb`. */
52
+ max-inline-size: min(100%, min(100cqi, 100lvi), var(--lv-width, 100lvi)) !important;
53
+ max-block-size: min(100%, min(100cqb, 100lvb), var(--lv-height, 100lvb)) !important;
54
+
55
+ //
56
+ /*outline-color: oklch(from var(--on-surface-color) l c h / 0.1);
57
+ outline-width: 1px;
58
+ outline-style: solid;
59
+ outline-offset: -1px;*/
60
+
61
+ //
62
+ border-radius: var(--radius-lg);
63
+ }
64
+
65
+ //
66
+ & {
67
+ //
68
+ --zoom: max(var(--scaling, 1), 0.125);
69
+ --zpx: calc(1px / max(var(--zoom, 1), 0.125));
70
+ --ppx: calc(1px / max(var(--pixel-ratio, 1), 0.125));
71
+ }
72
+
73
+ //
74
+ & > :where(*),
75
+ & :where(ui-frame, .u2-grid-item, ui-modal, [is="ui-orientbox"], [is="ui-gridbox"], [is="ui-orientbox"] > :where(*), [is="ui-gridbox"] > :where(*), .ui-gridlayout, .ui-gridlayout > :where(*))
76
+ {
77
+ @include compute_os_conditions;
78
+ @include compute_cs_size_to_os;
79
+ @include compute_from_os_to_cs;
80
+ }
81
+
82
+ //
83
+ .center-self {
84
+ @include use-inset;
85
+ @include centered-with-offset();
86
+ }
87
+
88
+ //
89
+ .fixed { @include use-inset; position: fixed !important; }
90
+ .absolute { @include use-inset; position: absolute !important; }
91
+ }
92
+
93
+ //
94
+ .native-portrait-optimized {
95
+ @include oriented(--in-swap-cond, 0, 1);
96
+ }
97
+ }
@@ -0,0 +1,257 @@
1
+ @use "sass:string";
2
+
3
+ //
4
+ @mixin anchor($name: "ux-scrollbox") { & { anchor-name: --#{$name}; } }
5
+ @mixin anchor-bind($name: "ux-scrollbox") {
6
+ & {
7
+ position-area: span-all !important;
8
+ position-visibility: always !important;
9
+ position: absolute !important;
10
+ inline-size: anchor-size(inline, 100%) !important;
11
+ block-size: anchor-size(block, 100%) !important;
12
+ inset-inline-start: anchor(start, 0px) !important;
13
+ inset-block-start: anchor(start, 0px) !important;
14
+ inset-inline-end: anchor(end, 0px) !important;
15
+ inset-block-end: anchor(end, 0px) !important;
16
+ min-inline-size: 0px;
17
+ min-block-size: 0px;
18
+ max-inline-size: none;
19
+ max-block-size: none;
20
+ overflow: hidden !important;
21
+ pointer-events: none !important;
22
+ scrollbar-width: none !important;
23
+ scrollbar-color: transparent transparent !important;
24
+ scrollbar-gutter: auto !important;
25
+ z-index: 99 !important;
26
+ }
27
+ }
28
+
29
+ //
30
+ @mixin scroll-tm($source: "", $name: "ux-scrollbox", $axis: "block") {
31
+ & #{$source} { scroll-timeline-axis : #{$axis}; }
32
+ & #{$source} { scroll-timeline-name : --#{$name}; }
33
+ & { timeline-scope: --#{$name}; }
34
+ }
35
+
36
+ //
37
+ @mixin scroll-tm-2-axis($source: "", $name: "ux-scrollbox") {
38
+ & #{$source} { scroll-timeline-axis : inline, block; }
39
+ & #{$source} { scroll-timeline-name : --#{$name}-x, --#{$name}-y; }
40
+ & { timeline-scope: --#{$name}-x, --#{$name}-y; }
41
+ }
42
+
43
+ //
44
+ @mixin view-tm($source: "", $name: "ux-viewbox", $axis: "block") {
45
+ & #{$source} { view-timeline-axis : #{$axis}; }
46
+ & #{$source} { view-timeline-name : --#{$name}; }
47
+ & { timeline-scope: --#{$name}; }
48
+ }
49
+
50
+ //
51
+ @function lerp($a, $b, $i: "var(--percent, 0)") { @return calc(#{$a} * #{$i} + #{$b} * (1 - #{$i})); }
52
+ @function starts-with ($string, $prefix) { @return string.slice($string, 1, string.length($prefix)) == $prefix; }
53
+ @function strip-prefix($string, $prefix) { @if starts-with($string, $prefix) { @return string.slice($string, string.length($prefix) + 1); }; @return $string; }
54
+
55
+ //
56
+ @mixin with-timeline($timeline: "ux-scrollbox", $name: "percent-coef", $prop: "percent") {
57
+ $is-custom: starts-with($prop, "var("); $strip-prop: strip-prefix($prop, "--");
58
+ $css-prop : sass(if(sass($is-custom): $prop; else: "--#{$strip-prop}"));
59
+ & {
60
+ animation-name: #{$name};
61
+ animation-timeline: --#{$timeline};
62
+ animation-duration: 1ms;
63
+ animation-direction: alternate;
64
+ animation-fill-mode: both;
65
+ animation-timing-function: linear;
66
+ }}
67
+
68
+ //
69
+ @mixin inner-property($name: "percent-coef", $prop: "percent") {
70
+ $is-custom: starts-with($prop, "--"); $strip-prop: strip-prefix($prop, "--");
71
+ $css-prop : sass(if(sass($is-custom): $prop; else: "--#{$strip-prop}"));
72
+ @at-root {
73
+ @if $is-custom { @property --#{$strip-prop} { initial-value: 0; syntax: "<number>"; inherits: true; } }
74
+ @keyframes #{$name} { from { #{$css-prop}: 0.0; }; to { #{$css-prop}: 1.0; }}
75
+ }}
76
+
77
+ //
78
+ $counter: 0;
79
+ @mixin timeline-interpol-coef($property: "percent", $timeline: "ux-scrollbox", $name: "percent-coef-A" + $counter) {
80
+ @include inner-property($name, $property);
81
+ @include with-timeline($timeline, $name);
82
+ $counter: $counter+1;
83
+ }
84
+
85
+ //
86
+ @position-try --just-block { inset-block-end: 0px; }
87
+ @position-try --just-inline { inset-inline-end: 0px; }
88
+
89
+ //
90
+ @include inner-property("percent-coef-x", "percent-x");
91
+ @include inner-property("percent-coef-y", "percent-y");
92
+
93
+ // TODO: use CSS if() for hiding these scrollbar
94
+ @mixin axis-scrollbar($selector, $fit: "inline", $thumb: ".thumb", $timeline-name: "ux-scrollbox") {
95
+ $cqf: 100cqi; @if $fit == 'block' { $cqf: 100cqb; };
96
+ $inv: block ; @if $fit == 'block' { $inv: inline; };
97
+ $axe: x; ; @if $fit == 'block' { $axe: y; };
98
+
99
+ //
100
+ & :is(#{$selector}[axis="#{$axe}"]) {
101
+ & { #{$inv}-size: 0.5rem; #{$fit}-size: calc(#{$cqf} - 1rem);
102
+ @if $fit == 'block' {
103
+ grid-column: scrollbar-x !important;
104
+ grid-row: content-h !important;
105
+ } @else {
106
+ grid-column: content-w !important;
107
+ grid-row: scrollbar-y !important;
108
+ }
109
+
110
+ /*inset-#{$fit}-end : auto;
111
+ inset-#{$inv}-start: auto;
112
+ inset-#{$fit}-start: 0.5rem;
113
+ inset-#{$inv}-end : 1px;*/
114
+ --content-size: calc(#{$cqf} * 1); //--scroll-size: calc(var(--content-size, 0) / var(--scroll-coef, 1));
115
+ --clamped-size: calc(#{$cqf} - 1rem); --max-size: min(100%, var(--clamped-size, #{$cqf}));
116
+ --scroll-coef: clamp(0, calc(var(--content-size, 0.0001px) / var(--scroll-size, 0.0001px)), 1); //! new CSS calc feature
117
+ --determinant: clamp(0, round(up, calc(1 - (var(--scroll-coef, 1) + 0.001)), 1), 1);
118
+ //inset-#{$fit}-start: calc(anchor(--ux-scrollbox start, 0px) + 0.5rem);
119
+ //inset-#{$inv}-end : calc(anchor(--ux-scrollbox end , 0px) + 1px);
120
+ //position-try-fallbacks: --just-inline, --just-block;
121
+ //@include timeline-interpol-coef("--percent-#{$axe}", "#{$timeline-name}-#{$axe}");
122
+
123
+ pointer-events: none !important;
124
+ pointer-events: if(style(--determinant: 0): none; else: auto) !important;
125
+
126
+ //! new CSS if feature
127
+ visibility: collapse !important;
128
+ visibility: if(style(--determinant: 0): collapse; else: visible) !important;
129
+ @include timeline-interpol-coef("--percent-#{$axe}", "#{$timeline-name}-#{$axe}");
130
+ }
131
+
132
+ //
133
+ & :where(#{$thumb})
134
+ {
135
+ #{$inv}-size: 100%; #{$fit}-size: min(calc(var(--max-size, 100%) * var(--scroll-coef, 1)), var(--max-size, 100%));
136
+ --thumb-size: calc(var(--clamped-size, #{$cqf}) * var(--scroll-coef, 0));
137
+ --max-offset: calc(var(--clamped-size, #{$cqf}) - var(--thumb-size, 0));
138
+ @if $fit == block
139
+ { translate: 0px calc(var(--max-offset, 0) * var(--percent-y, 0)) 0px; } @else
140
+ { translate: calc(var(--max-offset, 0) * var(--percent-x, 0)) 0px 0px; }
141
+ }
142
+ }
143
+ }
144
+
145
+ // TODO: use CSS if() for hiding these scrollbar
146
+ @mixin scrollbar ($selector: ".ui-scrollbar", $anchor: "ux-scrollbox", $thumb: ".ui-thumb") { :where(#{$selector}) {
147
+ & { --fit-unit: calc((var(--content-size, 1) * 1px - 1rem) / var(--content-size, 1)); };
148
+ & { --scroll-coef: 0; }
149
+ & { //
150
+ pointer-events: none;
151
+ touch-action: none;
152
+ user-select: none;
153
+
154
+ //
155
+ background-color: transparent !important;
156
+ position-anchor: --#{$anchor};
157
+ container-type: normal;
158
+ writing-mode: horizontal-tb !important;
159
+ line-height: 0px;
160
+ visibility: collapse;
161
+ box-sizing: border-box;
162
+ direction: ltr !important;
163
+ //overflow: hidden;
164
+ position: relative;
165
+ //position: fixed;
166
+ display: block flow;
167
+ z-index: 9999;
168
+ inset: 0px;
169
+ }
170
+
171
+ //
172
+ & :where(#{$thumb}) {
173
+ background-color: oklch(from var(--scrollbar-color, #101010F0) l c h / 0.6) !important;
174
+ position-anchor: --#{$anchor};
175
+ pointer-events: auto;
176
+ border-radius: 0.25rem;
177
+ touch-action: none;
178
+ writing-mode: horizontal-tb !important;
179
+ user-select: none;
180
+ line-height: 0px;
181
+ box-sizing: border-box;
182
+ visibility: auto;
183
+ direction: ltr !important;
184
+ position: relative;
185
+ overflow: hidden;
186
+ display: block flow;
187
+ }
188
+ }}
189
+
190
+ //
191
+ @mixin scrollbox($timeline: "ux-scrollbox") {
192
+ & {
193
+ content-visibility: visible !important;
194
+ container-type: size;
195
+ //contain: layout;
196
+ isolation: isolate;
197
+ overflow: hidden;
198
+ position: static;
199
+ scrollbar-color: transparent transparent !important;
200
+ scrollbar-width: none !important;
201
+ scrollbar-gutter: auto !important;
202
+ pointer-events: none !important;
203
+ z-index: 1;
204
+
205
+ //
206
+ display: grid !important;
207
+ grid-template-columns: [content-w] minmax(0px, 1fr) [scrollbar-y] minmax(0px, max-content) !important;
208
+ grid-template-rows: [content-h] minmax(0px, 1fr) [scrollbar-x] minmax(0px, max-content) !important;
209
+ //position: relative;
210
+ //position: fixed !important;
211
+ }
212
+
213
+ //
214
+ &, & * {
215
+ interpolate-size: allow-keywords;
216
+ transition-behavior: allow-discrete;
217
+ }
218
+
219
+ //
220
+ @include scroll-tm-2-axis("", $timeline);
221
+ @include anchor($timeline);
222
+ @include scrollbar();
223
+ @include anchor-bind();
224
+ }
225
+
226
+ // Scrollbar mixins - veela-independent fallbacks
227
+ // (scrollbar / custom-scrollbar / hide-scrollbar: core/_mixins.scss)
228
+
229
+ @mixin scrollbox {
230
+ overflow: auto;
231
+ overscroll-behavior: contain;
232
+ }
233
+
234
+ @mixin scroll-tm-2-axis {
235
+ overflow: auto;
236
+ scroll-behavior: smooth;
237
+ }
238
+
239
+ @mixin axis-scrollbar($selector, $axis, $thumb-selector, $timeline-name) {
240
+ // Simplified scrollbar axis handling
241
+ #{$selector}[axis="#{$axis}"] {
242
+ @if $axis == "x" or $axis == "inline" {
243
+ overflow-x: auto;
244
+ overflow-y: hidden;
245
+ } @else {
246
+ overflow-x: hidden;
247
+ overflow-y: auto;
248
+ }
249
+ }
250
+ }
251
+
252
+ @mixin with-timeline($name) {
253
+ // Scroll timeline support (progressive enhancement)
254
+ @supports (animation-timeline: scroll()) {
255
+ animation-timeline: scroll();
256
+ }
257
+ }
@@ -0,0 +1,16 @@
1
+ @mixin state-overlay($color: currentColor) {
2
+ position: relative;
3
+ }
4
+
5
+ @mixin focus-ring($color: currentColor) {
6
+ &:focus-visible {
7
+ outline: 2px solid #{$color};
8
+ outline-offset: 2px;
9
+ }
10
+ }
11
+
12
+ @mixin icon-button($size: var(--icon-size-lg)) {
13
+ inline-size: #{$size};
14
+ block-size: #{$size};
15
+ padding: 0;
16
+ }
@@ -0,0 +1,4 @@
1
+ /*
2
+ * MAP:modules/projects/veela.css/src/scss/basic/_shared.scss
3
+ */
4
+ @forward "../basic/shared";