@teseor/css 1.2.2 → 1.2.4
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/dist/compiled.css +1 -4564
- package/dist/index.css +126 -4545
- package/package.json +2 -4
- package/src/00-config/tokens/_variables.scss +3 -3
- package/src/00-config/tokens/typography/index.scss +3 -3
- package/src/03-layout/cluster/cluster-visual.png +0 -0
- package/src/03-layout/sidebar/sidebar-visual.png +0 -0
- package/src/03-layout/sidebar-nav/index.scss +1 -1
- package/src/04-components/actions/button/button-visual.png +0 -0
- package/src/04-components/actions/button-group/button-group-visual.png +0 -0
- package/src/04-components/data-display/avatar/avatar-visual.png +0 -0
- package/src/04-components/data-display/badge/badge-visual.png +0 -0
- package/src/04-components/data-display/card/card-visual.png +0 -0
- package/src/04-components/data-display/data-list/data-list-visual.png +0 -0
- package/src/04-components/data-display/icon/icon-visual.png +0 -0
- package/src/04-components/data-display/status/status-visual.png +0 -0
- package/src/04-components/data-display/table/table-visual.png +0 -0
- package/src/04-components/data-display/tag/tag-visual.png +0 -0
- package/src/04-components/disclosure/accordion/accordion-visual.png +0 -0
- package/src/04-components/disclosure/disclosure/disclosure-visual.png +0 -0
- package/src/04-components/feedback/alert/alert-visual.png +0 -0
- package/src/04-components/feedback/progress/progress-visual.png +0 -0
- package/src/04-components/feedback/skeleton/skeleton-visual.png +0 -0
- package/src/04-components/feedback/spinner/spinner-visual.png +0 -0
- package/src/04-components/feedback/toast/toast-visual.png +0 -0
- package/src/04-components/forms/checkbox/checkbox-visual.png +0 -0
- package/src/04-components/forms/field/field-visual.png +0 -0
- package/src/04-components/forms/form-error/form-error-visual.png +0 -0
- package/src/04-components/forms/form-helper/form-helper-visual.png +0 -0
- package/src/04-components/forms/input/input-visual.png +0 -0
- package/src/04-components/forms/label/label-visual.png +0 -0
- package/src/04-components/forms/radio/radio-visual.png +0 -0
- package/src/04-components/forms/select/select-visual.png +0 -0
- package/src/04-components/forms/textarea/textarea-visual.png +0 -0
- package/src/04-components/forms/toggle/toggle-visual.png +0 -0
- package/src/04-components/layout/divider/divider-visual.png +0 -0
- package/src/04-components/navigation/breadcrumb/breadcrumb-visual.png +0 -0
- package/src/04-components/navigation/menu/menu-visual.png +0 -0
- package/src/04-components/navigation/nav/nav-visual.png +0 -0
- package/src/04-components/navigation/pagination/pagination-visual.png +0 -0
- package/src/04-components/navigation/tabs/tabs-visual.png +0 -0
- package/src/04-components/overlays/dialog/dialog-visual.png +0 -0
- package/src/04-components/overlays/drawer/drawer-visual.png +0 -0
- package/src/04-components/overlays/modal/modal-visual.png +0 -0
- package/src/04-components/overlays/overlay/overlay-visual.png +0 -0
- package/src/04-components/overlays/popover/popover-visual.png +0 -0
- package/src/04-components/overlays/tooltip/tooltip-visual.png +0 -0
- package/src/04-components/typography/code/code-visual.png +0 -0
- package/src/04-components/typography/heading/heading-visual.png +0 -0
- package/src/04-components/typography/link/link-visual.png +0 -0
- package/src/index.scss +0 -3
- package/fonts/.gitkeep +0 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teseor/css",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"description": "CSS library - reset, primitives, components, utilities",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "letanure",
|
|
@@ -22,13 +22,11 @@
|
|
|
22
22
|
"main": "dist/index.css",
|
|
23
23
|
"exports": {
|
|
24
24
|
".": "./dist/index.css",
|
|
25
|
-
"./fonts/*": "./src/fonts/*",
|
|
26
25
|
"./dist/*": "./dist/*"
|
|
27
26
|
},
|
|
28
27
|
"files": [
|
|
29
28
|
"dist",
|
|
30
|
-
"src"
|
|
31
|
-
"fonts"
|
|
29
|
+
"src"
|
|
32
30
|
],
|
|
33
31
|
"scripts": {
|
|
34
32
|
"build": "pnpm --filter @teseor/source sync:components && sass src/index.scss dist/index.css --style=compressed",
|
|
@@ -39,9 +39,9 @@ $sizes: (
|
|
|
39
39
|
@return map.get($sizes, $name);
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
// Typography - Font families
|
|
43
|
-
$font-sans:
|
|
44
|
-
$font-mono: "
|
|
42
|
+
// Typography - Font families (system stack, consumers override via CSS tokens)
|
|
43
|
+
$font-sans: system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
|
|
44
|
+
$font-mono: ui-monospace, sfmono-regular, "SF Mono", menlo, consolas, "Liberation Mono", monospace;
|
|
45
45
|
|
|
46
46
|
// Typography - Font sizes (1.2 modular scale)
|
|
47
47
|
$font-size-xs: 0.75rem; // 12px
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
// Font families
|
|
3
|
-
--ui-font-sans:
|
|
4
|
-
--ui-font-mono: "
|
|
2
|
+
// Font families — system font stack, override with custom fonts via these tokens
|
|
3
|
+
--ui-font-sans: system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, "Helvetica Neue", arial, sans-serif;
|
|
4
|
+
--ui-font-mono: ui-monospace, sfmono-regular, "SF Mono", menlo, consolas, "Liberation Mono", monospace;
|
|
5
5
|
|
|
6
6
|
// ==========================================================================
|
|
7
7
|
// PRIMITIVE TOKENS - Font Size Scale
|
|
Binary file
|
|
Binary file
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
// Active state
|
|
143
143
|
.sidebar-nav__item--active {
|
|
144
144
|
--_bg: var(--ui-sidebar-nav-item-active-bg, var(--ui-color-primary-subtle));
|
|
145
|
-
--_color: var(--ui-sidebar-nav-item-active-color, var(--ui-color-primary));
|
|
145
|
+
--_color: var(--ui-sidebar-nav-item-active-color, var(--ui-color-primary-hover));
|
|
146
146
|
--_weight: var(--ui-sidebar-nav-item-active-weight, var(--ui-weight-medium));
|
|
147
147
|
}
|
|
148
148
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/src/index.scss
CHANGED
package/fonts/.gitkeep
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# Place WOFF2 font files here for self-hosted option
|
|
2
|
-
# Download from: https://fonts.google.com/noto/specimen/Noto+Sans
|
|
3
|
-
#
|
|
4
|
-
# Required files:
|
|
5
|
-
# - NotoSans-Regular.woff2
|
|
6
|
-
# - NotoSans-Medium.woff2
|
|
7
|
-
# - NotoSans-Bold.woff2
|
|
8
|
-
# - NotoSansMono-Regular.woff2
|
|
9
|
-
# - NotoSansMono-Medium.woff2
|