@eduboxpro/studio 0.1.17 → 0.1.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eduboxpro/studio",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "Modern Angular UI library for educational platforms with customizable design system",
5
5
  "keywords": [
6
6
  "angular",
@@ -0,0 +1,41 @@
1
+ /**
2
+ * @eduboxpro/studio - Stylesheet WITHOUT Reset
3
+ *
4
+ * Use this when you already have a CSS reset (like Tailwind's preflight)
5
+ * and only need Studio's design tokens and component styles.
6
+ *
7
+ * Import in your styles.scss:
8
+ * @use "@eduboxpro/studio/src/styles/studio-no-reset";
9
+ */
10
+
11
+ /* Design Tokens */
12
+ @forward 'tokens';
13
+
14
+ /* Mixins - use in component styles as needed */
15
+ /* @use '@eduboxpro/studio/styles/mixins'; */
16
+
17
+ /* Force font-family to all studio components (fixes ViewEncapsulation issue) */
18
+ studio-button,
19
+ studio-input,
20
+ studio-badge,
21
+ studio-switch,
22
+ studio-theme-switch,
23
+ studio-checkbox,
24
+ studio-textarea,
25
+ studio-navbar,
26
+ studio-drawer,
27
+ studio-card,
28
+ studio-icon,
29
+ studio-button *,
30
+ studio-input *,
31
+ studio-badge *,
32
+ studio-switch *,
33
+ studio-theme-switch *,
34
+ studio-checkbox *,
35
+ studio-textarea *,
36
+ studio-navbar *,
37
+ studio-drawer *,
38
+ studio-card *,
39
+ studio-icon * {
40
+ font-family: var(--studio-font-family) !important;
41
+ }