@clusterenvision/ui-scss 1.94.3

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 (224) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +152 -0
  3. package/dist/ce-ui-min.css +2951 -0
  4. package/dist/ce-ui-min.css.map +1 -0
  5. package/dist/ce-ui.css +4894 -0
  6. package/dist/ce-ui.css.map +1 -0
  7. package/dist/components/advanced/calendar.css +37 -0
  8. package/dist/components/advanced/carousel.css +59 -0
  9. package/dist/components/advanced/chat.css +29 -0
  10. package/dist/components/advanced/code-block.css +16 -0
  11. package/dist/components/advanced/editor.css +122 -0
  12. package/dist/components/advanced/rating.css +19 -0
  13. package/dist/components/advanced/steps.css +46 -0
  14. package/dist/components/advanced/timeline.css +32 -0
  15. package/dist/components/buttons/button-group.css +28 -0
  16. package/dist/components/buttons/button.css +305 -0
  17. package/dist/components/buttons/icon-button.css +32 -0
  18. package/dist/components/charts/chart-types.css +36 -0
  19. package/dist/components/containers/accordion.css +65 -0
  20. package/dist/components/containers/card.css +60 -0
  21. package/dist/components/containers/drawer.css +33 -0
  22. package/dist/components/containers/modal.css +61 -0
  23. package/dist/components/containers/panel.css +27 -0
  24. package/dist/components/containers/toast.css +38 -0
  25. package/dist/components/content/avatar.css +54 -0
  26. package/dist/components/content/badge.css +44 -0
  27. package/dist/components/content/chip.css +234 -0
  28. package/dist/components/content/divider.css +27 -0
  29. package/dist/components/content/image.css +23 -0
  30. package/dist/components/feedback/alert.css +50 -0
  31. package/dist/components/feedback/message.css +18 -0
  32. package/dist/components/feedback/progress-bar.css +22 -0
  33. package/dist/components/feedback/skeleton.css +35 -0
  34. package/dist/components/feedback/snackbar.css +30 -0
  35. package/dist/components/form-controls/checkbox.css +183 -0
  36. package/dist/components/form-controls/date-picker.css +26 -0
  37. package/dist/components/form-controls/file-upload.css +48 -0
  38. package/dist/components/form-controls/form-group.css +19 -0
  39. package/dist/components/form-controls/input.css +96 -0
  40. package/dist/components/form-controls/radio.css +20 -0
  41. package/dist/components/form-controls/range.css +42 -0
  42. package/dist/components/form-controls/select.css +243 -0
  43. package/dist/components/form-controls/textarea.css +28 -0
  44. package/dist/components/form-controls/toggle.css +38 -0
  45. package/dist/components/navigation/breadcrumbs.css +33 -0
  46. package/dist/components/navigation/menu.css +43 -0
  47. package/dist/components/navigation/navbar.css +64 -0
  48. package/dist/components/navigation/pagination.css +45 -0
  49. package/dist/components/navigation/sidebar.css +35 -0
  50. package/dist/components/navigation/tabs.css +25 -0
  51. package/dist/components/overlays/backdrop.css +6 -0
  52. package/dist/components/overlays/dropdown.css +77 -0
  53. package/dist/components/overlays/loader.css +28 -0
  54. package/dist/components/overlays/popover.css +54 -0
  55. package/dist/components/overlays/tooltip.css +37 -0
  56. package/dist/components/specialty/ce-atm-card.css +204 -0
  57. package/dist/components/tables-lists/data-table.css +48 -0
  58. package/dist/components/tables-lists/list.css +22 -0
  59. package/dist/components/tables-lists/table.css +40 -0
  60. package/dist/components/tables-lists/tree-view.css +37 -0
  61. package/dist/themes/core/package.json +12 -0
  62. package/dist/themes/core/tokens.css +120 -0
  63. package/dist/themes/core/tokens.d.ts +69 -0
  64. package/dist/themes/core/tokens.json +136 -0
  65. package/dist/themes/premium/package.json +12 -0
  66. package/dist/themes/premium/tokens.css +120 -0
  67. package/dist/themes/premium/tokens.d.ts +69 -0
  68. package/dist/themes/premium/tokens.json +136 -0
  69. package/dist/tokens/tokens.css +120 -0
  70. package/dist/tokens/tokens.d.ts +69 -0
  71. package/dist/tokens/tokens.json +133 -0
  72. package/package.json +61 -0
  73. package/src/abstracts/_functions.scss +34 -0
  74. package/src/abstracts/_mixins.scss +162 -0
  75. package/src/abstracts/_placeholders.scss +18 -0
  76. package/src/abstracts/_variables.scss +413 -0
  77. package/src/abstracts/_z-index.scss +9 -0
  78. package/src/accessibility/_focus-ring.scss +11 -0
  79. package/src/accessibility/_theme-switcher.scss +41 -0
  80. package/src/base/_animations.scss +32 -0
  81. package/src/base/_forms.scss +62 -0
  82. package/src/base/_reset.scss +102 -0
  83. package/src/base/_theme-base.scss +162 -0
  84. package/src/base/_typography.scss +38 -0
  85. package/src/components/advanced/_calendar.scss +47 -0
  86. package/src/components/advanced/_carousel.scss +87 -0
  87. package/src/components/advanced/_chat.scss +37 -0
  88. package/src/components/advanced/_code-block.scss +22 -0
  89. package/src/components/advanced/_editor.scss +156 -0
  90. package/src/components/advanced/_modal.scss +96 -0
  91. package/src/components/advanced/_notification-center.scss +172 -0
  92. package/src/components/advanced/_popover.scss +68 -0
  93. package/src/components/advanced/_rating.scss +22 -0
  94. package/src/components/advanced/_stepper.scss +135 -0
  95. package/src/components/advanced/_steps.scss +57 -0
  96. package/src/components/advanced/_timeline.scss +47 -0
  97. package/src/components/advanced/_wizard.scss +132 -0
  98. package/src/components/buttons/_button-group.scss +40 -0
  99. package/src/components/buttons/_button.scss +296 -0
  100. package/src/components/buttons/_icon-button.scss +42 -0
  101. package/src/components/charts/_chart-types.scss +74 -0
  102. package/src/components/containers/_accordion.scss +65 -0
  103. package/src/components/containers/_card.scss +65 -0
  104. package/src/components/containers/_drawer.scss +48 -0
  105. package/src/components/containers/_modal.scss +78 -0
  106. package/src/components/containers/_panel.scss +37 -0
  107. package/src/components/containers/_toast.scss +40 -0
  108. package/src/components/content/_avatar.scss +56 -0
  109. package/src/components/content/_badge.scss +42 -0
  110. package/src/components/content/_calendar.scss +147 -0
  111. package/src/components/content/_carousel.scss +112 -0
  112. package/src/components/content/_chip.scss +246 -0
  113. package/src/components/content/_divider.scss +49 -0
  114. package/src/components/content/_image.scss +32 -0
  115. package/src/components/content/_rating.scss +60 -0
  116. package/src/components/content/_rich-text-editor.scss +153 -0
  117. package/src/components/content/_timeline-advanced.scss +138 -0
  118. package/src/components/content/_timeline.scss +86 -0
  119. package/src/components/feedback/_advanced-notification.scss +156 -0
  120. package/src/components/feedback/_alert.scss +86 -0
  121. package/src/components/feedback/_message.scss +26 -0
  122. package/src/components/feedback/_notification-center.scss +118 -0
  123. package/src/components/feedback/_progress-bar.scss +48 -0
  124. package/src/components/feedback/_skeleton.scss +47 -0
  125. package/src/components/feedback/_snackbar.scss +38 -0
  126. package/src/components/feedback/_spinner.scss +211 -0
  127. package/src/components/feedback/_toast-queue.scss +164 -0
  128. package/src/components/form-controls/_autocomplete.scss +80 -0
  129. package/src/components/form-controls/_checkbox.scss +202 -0
  130. package/src/components/form-controls/_date-picker.scss +50 -0
  131. package/src/components/form-controls/_file-upload.scss +61 -0
  132. package/src/components/form-controls/_form-group.scss +26 -0
  133. package/src/components/form-controls/_input.scss +139 -0
  134. package/src/components/form-controls/_multi-select.scss +175 -0
  135. package/src/components/form-controls/_radio.scss +27 -0
  136. package/src/components/form-controls/_range.scss +54 -0
  137. package/src/components/form-controls/_select.scss +242 -0
  138. package/src/components/form-controls/_textarea.scss +45 -0
  139. package/src/components/form-controls/_toggle.scss +47 -0
  140. package/src/components/navigation/_breadcrumbs.scss +41 -0
  141. package/src/components/navigation/_menu.scss +75 -0
  142. package/src/components/navigation/_navbar.scss +79 -0
  143. package/src/components/navigation/_pagination.scss +85 -0
  144. package/src/components/navigation/_sidebar.scss +44 -0
  145. package/src/components/navigation/_stepper.scss +115 -0
  146. package/src/components/navigation/_tabs.scss +50 -0
  147. package/src/components/navigation/_tree-view.scss +95 -0
  148. package/src/components/navigation/_wizard.scss +132 -0
  149. package/src/components/overlays/_backdrop.scss +10 -0
  150. package/src/components/overlays/_dropdown.scss +110 -0
  151. package/src/components/overlays/_loader.scss +32 -0
  152. package/src/components/overlays/_popover.scss +64 -0
  153. package/src/components/overlays/_tooltip.scss +64 -0
  154. package/src/components/specialty/_ce-atm-card.scss +255 -0
  155. package/src/components/tables/_data-grid.scss +92 -0
  156. package/src/components/tables/_filter-grid.scss +29 -0
  157. package/src/components/tables-lists/_data-table.scss +63 -0
  158. package/src/components/tables-lists/_list.scss +30 -0
  159. package/src/components/tables-lists/_table.scss +79 -0
  160. package/src/components/tables-lists/_tree-view.scss +47 -0
  161. package/src/layout/_container.scss +20 -0
  162. package/src/layout/_footer.scss +41 -0
  163. package/src/layout/_grid.scss +23 -0
  164. package/src/layout/_header.scss +41 -0
  165. package/src/layout/_section.scss +26 -0
  166. package/src/layout/_sidebar.scss +39 -0
  167. package/src/layout/_stack.scss +23 -0
  168. package/src/main.css +3250 -0
  169. package/src/main.css.map +1 -0
  170. package/src/main.scss +158 -0
  171. package/src/minimal.scss +62 -0
  172. package/src/themes/_cool-slate.scss +11 -0
  173. package/src/themes/_dark.scss +11 -0
  174. package/src/themes/_default.scss +12 -0
  175. package/src/themes/_forest.scss +11 -0
  176. package/src/themes/_glassy-aero-windows.scss +9 -0
  177. package/src/themes/_glassy-amber.scss +21 -0
  178. package/src/themes/_glassy-aurora-sky.scss +9 -0
  179. package/src/themes/_glassy-blue.scss +10 -0
  180. package/src/themes/_glassy-cyan.scss +9 -0
  181. package/src/themes/_glassy-emerald-mist.scss +9 -0
  182. package/src/themes/_glassy-frosted-silver.scss +9 -0
  183. package/src/themes/_glassy-glass-white.scss +9 -0
  184. package/src/themes/_glassy-gold.scss +9 -0
  185. package/src/themes/_glassy-green.scss +10 -0
  186. package/src/themes/_glassy-ice-black.scss +13 -0
  187. package/src/themes/_glassy-mac-dark.scss +13 -0
  188. package/src/themes/_glassy-midnight-blue.scss +12 -0
  189. package/src/themes/_glassy-neon-cyber.scss +9 -0
  190. package/src/themes/_glassy-orange.scss +10 -0
  191. package/src/themes/_glassy-pink.scss +9 -0
  192. package/src/themes/_glassy-purple.scss +10 -0
  193. package/src/themes/_glassy-rose-gold.scss +9 -0
  194. package/src/themes/_glassy-sakura-glass.scss +9 -0
  195. package/src/themes/_glassy-silver.scss +9 -0
  196. package/src/themes/_glassy-teal.scss +9 -0
  197. package/src/themes/_high-contrast.scss +11 -0
  198. package/src/themes/_light.scss +10 -0
  199. package/src/themes/_mac.scss +10 -0
  200. package/src/themes/_minimal-mono.scss +11 -0
  201. package/src/themes/_mintwave.scss +9 -0
  202. package/src/themes/_neutral-light.scss +11 -0
  203. package/src/themes/_nordwave.scss +9 -0
  204. package/src/themes/_ocean.scss +9 -0
  205. package/src/themes/_orange.scss +9 -0
  206. package/src/themes/_purple.scss +9 -0
  207. package/src/themes/_red.scss +9 -0
  208. package/src/themes/_skyfade.scss +9 -0
  209. package/src/themes/_soft-pastel.scss +11 -0
  210. package/src/themes/_solarized.scss +9 -0
  211. package/src/themes/_standard-dark.scss +8 -0
  212. package/src/themes/_standard-default.scss +9 -0
  213. package/src/themes/_transparent.scss +9 -0
  214. package/src/themes/_true-dark.scss +11 -0
  215. package/src/themes/_warm-neutral.scss +11 -0
  216. package/src/themes.zip +0 -0
  217. package/src/tokens/tokens.json +133 -0
  218. package/src/utilities/_display.scss +11 -0
  219. package/src/utilities/_flex.scss +9 -0
  220. package/src/utilities/_position.scss +6 -0
  221. package/src/utilities/_screen-reader.scss +9 -0
  222. package/src/utilities/_spacing.scss +22 -0
  223. package/src/utilities/_text.scss +14 -0
  224. package/src/utilities/_visibility.scss +4 -0
@@ -0,0 +1,9 @@
1
+ @use "../abstracts/functions" as fn;
2
+
3
+ .theme-ocean, :root[data-ce-theme="ocean"], :root.theme-ocean {
4
+ --theme-bg: #{fn.color(ocean-light)};
5
+ --theme-fg: #{fn.color(ocean-deep)};
6
+ --theme-accent: #{fn.color(ocean-primary)};
7
+ --theme-muted: #{fn.color(ocean-muted)};
8
+ --theme-primary: #{fn.color(ocean-primary)};
9
+ }
@@ -0,0 +1,9 @@
1
+ @use "../abstracts/functions" as fn;
2
+
3
+ .theme-orange, :root[data-ce-theme="orange"], :root.theme-orange {
4
+ --theme-bg: #{fn.color(orange-50)};
5
+ --theme-fg: #{fn.color(orange-900)};
6
+ --theme-accent: #{fn.color(orange)};
7
+ --theme-muted: #{fn.color(orange-300)};
8
+ --theme-primary: #{fn.color(ocean-primary)};
9
+ }
@@ -0,0 +1,9 @@
1
+ @use "../abstracts/functions" as fn;
2
+
3
+ .theme-purple, :root[data-ce-theme="purple"], :root.theme-purple {
4
+ --theme-bg: #{fn.color(purple-50)};
5
+ --theme-fg: #{fn.color(purple-900)};
6
+ --theme-accent: #{fn.color(purple)};
7
+ --theme-muted: #{fn.color(purple-300)};
8
+ --theme-primary: #{fn.color(purple)};
9
+ }
@@ -0,0 +1,9 @@
1
+ @use "../abstracts/functions" as fn;
2
+
3
+ .theme-red, :root[data-ce-theme="red"], :root.theme-red {
4
+ --theme-bg: #{fn.color(red-50)};
5
+ --theme-fg: #{fn.color(red-900)};
6
+ --theme-accent: #{fn.color(red)};
7
+ --theme-muted: #{fn.color(red-300)};
8
+ --theme-primary: #{fn.color(red)};
9
+ }
@@ -0,0 +1,9 @@
1
+ @use "../abstracts/functions" as fn;
2
+
3
+ .theme-skyfade, :root[data-ce-theme="skyfade"], :root.theme-skyfade {
4
+ --theme-bg: #{fn.color(skyfade-bg)};
5
+ --theme-fg: #{fn.color(skyfade-fg)};
6
+ --theme-accent: #{fn.color(skyfade-primary)};
7
+ --theme-muted: #{fn.color(skyfade-muted)};
8
+ --theme-primary: #{fn.color(skyfade-primary)};
9
+ }
@@ -0,0 +1,11 @@
1
+ @use "../abstracts/functions" as fn;
2
+
3
+ :root.theme-soft-pastel, :root[data-ce-theme="soft-pastel"], .theme-soft-pastel {
4
+ --theme-bg: #eefcf6;
5
+ --theme-surface: #ffffff;
6
+ --theme-fg: #0f172a;
7
+ --theme-muted: #6b7280;
8
+ --theme-primary: #10b981;
9
+ --theme-accent: #10b981;
10
+ --theme-font: 'Inter', system-ui, sans-serif;
11
+ }
@@ -0,0 +1,9 @@
1
+ @use "../abstracts/functions" as fn;
2
+
3
+ .theme-solarized, :root[data-ce-theme="solarized"], :root.theme-solarized {
4
+ --theme-bg: #{fn.color(solar-base3)};
5
+ --theme-fg: #{fn.color(solar-base00)};
6
+ --theme-accent: #{fn.color(solar-blue)};
7
+ --theme-muted: #{fn.color(solar-base1)};
8
+ --theme-primary: #{fn.color(solar-blue)};
9
+ }
@@ -0,0 +1,8 @@
1
+ .theme-standard-dark, :root[data-ce-theme="standard-dark"], :root.theme-standard-dark {
2
+ --theme-bg: #121212;
3
+ --theme-fg: #f1f1f1;
4
+ --theme-primary: #bb86fc;
5
+ --theme-accent: #3700b3;
6
+ --theme-muted: #999;
7
+ --theme-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
8
+ }
@@ -0,0 +1,9 @@
1
+ .theme-standard-default, :root[data-ce-theme="standard-default"], :root.theme-standard-default {
2
+ --theme-bg: #ffffff;
3
+ --theme-fg: #1a1a1a;
4
+ --theme-primary: #1a73e8;
5
+ --theme-accent: #4285f4;
6
+ --theme-muted: #9aa0a6;
7
+ --theme-radius: 8px;
8
+ --theme-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
9
+ }
@@ -0,0 +1,9 @@
1
+ @use "../abstracts/functions" as fn;
2
+
3
+ .theme-transparent, :root[data-ce-theme="transparent"], :root.theme-transparent {
4
+ --theme-bg: transparent;
5
+ --theme-fg: #{fn.color(dark)};
6
+ --theme-accent: #{fn.color(primary)};
7
+ --theme-muted: rgba(0, 0, 0, 0.4);
8
+ --theme-primary: #{fn.color(primary)};
9
+ }
@@ -0,0 +1,11 @@
1
+ @use "../abstracts/functions" as fn;
2
+
3
+ :root.theme-true-dark, :root[data-ce-theme="true-dark"], .theme-true-dark {
4
+ --theme-bg: #0b0b0f;
5
+ --theme-surface: #111827;
6
+ --theme-fg: #e5e7eb;
7
+ --theme-muted: #9ca3af;
8
+ --theme-primary: #22d3ee;
9
+ --theme-accent: #22d3ee;
10
+ --theme-font: 'Inter', system-ui, sans-serif;
11
+ }
@@ -0,0 +1,11 @@
1
+ @use "../abstracts/functions" as fn;
2
+
3
+ :root.theme-warm-neutral, :root[data-ce-theme="warm-neutral"], .theme-warm-neutral {
4
+ --theme-bg: #f7f4f1;
5
+ --theme-surface: #ffffff;
6
+ --theme-fg: #1f2933;
7
+ --theme-muted: #7b8794;
8
+ --theme-primary: #d97706;
9
+ --theme-accent: #d97706;
10
+ --theme-font: 'Inter', system-ui, sans-serif;
11
+ }
package/src/themes.zip ADDED
Binary file
@@ -0,0 +1,133 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "modes": {
4
+ "light": {
5
+ "color": {
6
+ "background": "#f8fafc",
7
+ "surface": "#ffffff",
8
+ "text": "#0f172a",
9
+ "textMuted": "#6b7280",
10
+ "primary": "#2563eb",
11
+ "accent": "#2563eb",
12
+ "border": "#e5e7eb",
13
+ "focusRing": "#2563eb",
14
+ "success": "#34a853",
15
+ "warning": "#f9ab00",
16
+ "danger": "#ea4335",
17
+ "info": "#4285f4"
18
+ }
19
+ },
20
+ "dark": {
21
+ "color": {
22
+ "background": "#202124",
23
+ "surface": "#111827",
24
+ "text": "#ffffff",
25
+ "textMuted": "#f8f9fa",
26
+ "primary": "#1a73e8",
27
+ "accent": "#1a73e8",
28
+ "border": "#2b2f36",
29
+ "focusRing": "#1a73e8",
30
+ "success": "#34a853",
31
+ "warning": "#f9ab00",
32
+ "danger": "#ea4335",
33
+ "info": "#4285f4"
34
+ }
35
+ },
36
+ "high-contrast": {
37
+ "color": {
38
+ "background": "#000000",
39
+ "surface": "#0f1115",
40
+ "text": "#ffffff",
41
+ "textMuted": "#cbd5e1",
42
+ "primary": "#1d4ed8",
43
+ "accent": "#1d4ed8",
44
+ "border": "#ffffff",
45
+ "focusRing": "#ffffff",
46
+ "success": "#34a853",
47
+ "warning": "#f9ab00",
48
+ "danger": "#ea4335",
49
+ "info": "#4285f4"
50
+ }
51
+ }
52
+ },
53
+ "tokens": {
54
+ "spacing": {
55
+ "0": "0rem",
56
+ "4": "0.25rem",
57
+ "8": "0.5rem",
58
+ "12": "0.75rem",
59
+ "16": "1rem",
60
+ "24": "1.5rem",
61
+ "32": "2rem",
62
+ "48": "3rem",
63
+ "64": "4rem"
64
+ },
65
+ "radius": {
66
+ "none": "0",
67
+ "xs": "2px",
68
+ "sm": "4px",
69
+ "md": "8px",
70
+ "lg": "12px",
71
+ "xl": "16px",
72
+ "pill": "10px",
73
+ "circle": "50%"
74
+ },
75
+ "typography": {
76
+ "fontFamily": "'Inter', system-ui, sans-serif",
77
+ "fontSize": {
78
+ "xs": "0.75rem",
79
+ "sm": "0.875rem",
80
+ "md": "1rem",
81
+ "lg": "1.125rem",
82
+ "xl": "1.25rem",
83
+ "xxl": "1.5rem"
84
+ },
85
+ "fontWeight": {
86
+ "regular": "400",
87
+ "medium": "500",
88
+ "bold": "600"
89
+ },
90
+ "lineHeight": {
91
+ "tight": "1.2",
92
+ "normal": "1.5",
93
+ "relaxed": "1.7"
94
+ }
95
+ },
96
+ "density": {
97
+ "comfortable": "1",
98
+ "compact": "0.85"
99
+ },
100
+ "component": {
101
+ "button": {
102
+ "background": "var(--ce-color-primary)",
103
+ "foreground": "#ffffff",
104
+ "border": "var(--ce-color-primary)",
105
+ "radius": "var(--ce-radius-sm)",
106
+ "paddingY": "var(--ce-space-8)",
107
+ "paddingX": "var(--ce-space-16)"
108
+ },
109
+ "input": {
110
+ "background": "var(--ce-color-surface)",
111
+ "foreground": "var(--ce-color-text)",
112
+ "border": "var(--ce-color-border)",
113
+ "radius": "var(--ce-radius-sm)",
114
+ "paddingY": "var(--ce-space-8)",
115
+ "paddingX": "var(--ce-space-12)"
116
+ },
117
+ "card": {
118
+ "background": "var(--ce-color-surface)",
119
+ "foreground": "var(--ce-color-text)",
120
+ "border": "var(--ce-color-border)",
121
+ "radius": "var(--ce-radius-md)",
122
+ "shadow": "0 8px 24px rgba(0, 0, 0, 0.08)"
123
+ },
124
+ "tooltip": {
125
+ "background": "var(--ce-color-text)",
126
+ "foreground": "var(--ce-color-surface)",
127
+ "radius": "var(--ce-radius-sm)",
128
+ "paddingY": "var(--ce-space-4)",
129
+ "paddingX": "var(--ce-space-8)"
130
+ }
131
+ }
132
+ }
133
+ }
@@ -0,0 +1,11 @@
1
+ // utilities/_display.scss
2
+
3
+ .block { display: block !important; }
4
+ .inline { display: inline !important; }
5
+ .inline-block { display: inline-block !important; }
6
+ .none { display: none !important; }
7
+
8
+ @media (min-width: 768px) {
9
+ .sm-block { display: block !important; }
10
+ .sm-none { display: none !important; }
11
+ }
@@ -0,0 +1,9 @@
1
+ // utilities/_flex.scss
2
+
3
+ .flex { display: flex !important; }
4
+ .flex-column { flex-direction: column !important; }
5
+ .flex-row { flex-direction: row !important; }
6
+ .flex-center { justify-content: center; align-items: center; }
7
+ .justify-between { justify-content: space-between !important; }
8
+ .align-center { align-items: center !important; }
9
+ .wrap { flex-wrap: wrap !important; }
@@ -0,0 +1,6 @@
1
+ // utilities/_position.scss
2
+
3
+ .relative { position: relative !important; }
4
+ .absolute { position: absolute !important; }
5
+ .fixed { position: fixed !important; }
6
+ .sticky { position: sticky !important; }
@@ -0,0 +1,9 @@
1
+ // utilities/_screen-reader.scss
2
+
3
+ .sr-only {
4
+ position: absolute !important;
5
+ height: 1px; width: 1px;
6
+ overflow: hidden;
7
+ clip: rect(1px, 1px, 1px, 1px);
8
+ white-space: nowrap;
9
+ }
@@ -0,0 +1,22 @@
1
+ // utilities/_spacing.scss
2
+ @use "../abstracts/variables" as vars;
3
+
4
+ @each $name, $value in vars.$spacing {
5
+ .m-#{$name} { margin: $value !important; }
6
+ .mt-#{$name} { margin-top: $value !important; }
7
+ .mb-#{$name} { margin-bottom: $value !important; }
8
+ .ml-#{$name} { margin-left: $value !important; }
9
+ .mr-#{$name} { margin-right: $value !important; }
10
+ .ms-#{$name} { margin-inline-start: $value !important; }
11
+ .me-#{$name} { margin-inline-end: $value !important; }
12
+ .mx-#{$name} { margin-inline: $value !important; }
13
+
14
+ .p-#{$name} { padding: $value !important; }
15
+ .pt-#{$name} { padding-top: $value !important; }
16
+ .pb-#{$name} { padding-bottom: $value !important; }
17
+ .pl-#{$name} { padding-left: $value !important; }
18
+ .pr-#{$name} { padding-right: $value !important; }
19
+ .ps-#{$name} { padding-inline-start: $value !important; }
20
+ .pe-#{$name} { padding-inline-end: $value !important; }
21
+ .px-#{$name} { padding-inline: $value !important; }
22
+ }
@@ -0,0 +1,14 @@
1
+ // utilities/_text.scss
2
+ @use "../abstracts/functions" as fn;
3
+
4
+ .text-left { text-align: left !important; }
5
+ .text-center { text-align: center !important; }
6
+ .text-right { text-align: right !important; }
7
+
8
+ .text-primary { color: var(--theme-primary, #{fn.color(primary)}) !important; }
9
+ .text-success { color: var(--theme-success, #{fn.color(success)}) !important; }
10
+ .text-danger { color: var(--theme-danger, #{fn.color(danger)}) !important; }
11
+ .text-muted { color: var(--theme-muted, #{fn.color(muted)}) !important; }
12
+
13
+ .text-uppercase { text-transform: uppercase !important; }
14
+ .text-lowercase { text-transform: lowercase !important; }
@@ -0,0 +1,4 @@
1
+ // utilities/_visibility.scss
2
+
3
+ .visible { visibility: visible !important; }
4
+ .invisible { visibility: hidden !important; }