@dev-tcloud/tcloud-ui 7.0.6 → 7.0.7
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
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Global styles — variante WEBCOMPONENT
|
|
3
|
+
// Espelha tcloud-ui/styles.scss, porém SEM o reset global de `body`
|
|
4
|
+
// (background/color/font), para não repintar o body do projeto pai (host).
|
|
5
|
+
// Ordem: cores → variáveis → componentes → utilitários
|
|
6
|
+
// =============================================================================
|
|
7
|
+
|
|
8
|
+
// --- Cores e tokens (fonte única de verdade) ---------------------------------
|
|
9
|
+
@use 'styles/colors';
|
|
10
|
+
@use 'styles/claus-colors';
|
|
11
|
+
|
|
12
|
+
// --- Variáveis, espaçamentos, tipografia e tamanhos -------------------------
|
|
13
|
+
@use 'styles/claus-variables';
|
|
14
|
+
@use 'styles/claus-spacers';
|
|
15
|
+
@use 'styles/claus-sizes';
|
|
16
|
+
@use 'styles/claus-typography';
|
|
17
|
+
|
|
18
|
+
// --- Componentes ------------------------------------------------------------
|
|
19
|
+
@use 'styles/claus-btn';
|
|
20
|
+
@use 'styles/claus-card';
|
|
21
|
+
@use 'styles/claus-title';
|
|
22
|
+
@use 'styles/claus-form';
|
|
23
|
+
@use 'styles/claus-badge';
|
|
24
|
+
|
|
25
|
+
// --- Reset e base -----------------------------------------------------------
|
|
26
|
+
// box-sizing mantido (benigno); SEM reset de body para não afetar o host
|
|
27
|
+
*,
|
|
28
|
+
*::before,
|
|
29
|
+
*::after {
|
|
30
|
+
box-sizing: border-box;
|
|
31
|
+
}
|