@tale-ui/core 1.1.3 → 1.1.5
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/README.md +4 -2
- package/dist/style.css +1 -11
- package/package.json +1 -1
- package/src/foundations/_base-elements.css +0 -10
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @tale-ui/core
|
|
2
2
|
|
|
3
3
|
[](https://github.com/Tale-UI/core/actions/workflows/publish.yml)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
The foundational CSS layer of the Tale UI Design System — design tokens, layout utilities, and theming primitives. Framework-agnostic, no build tools required.
|
|
6
|
+
|
|
7
|
+
> **Scope:** This package provides the *foundations* — tokens, layout, utilities, and theming. It does **not** include UI components (buttons, modals, forms, etc.). Component libraries are separate packages that depend on this one.
|
|
6
8
|
|
|
7
9
|
## Features
|
|
8
10
|
|
package/dist/style.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @tale-ui/core — Built 2026-02-
|
|
1
|
+
/* @tale-ui/core — Built 2026-02-26 */
|
|
2
2
|
/* Source: packages/css/src/index.css */
|
|
3
3
|
|
|
4
4
|
/* ============================================
|
|
@@ -877,16 +877,6 @@ body.bricks-is-frontend {
|
|
|
877
877
|
/* ============================================
|
|
878
878
|
foundations/_base-elements.css
|
|
879
879
|
============================================ */
|
|
880
|
-
body.bricks-is-frontend :focus {
|
|
881
|
-
outline: none;
|
|
882
|
-
box-shadow: none;
|
|
883
|
-
}
|
|
884
|
-
body.bricks-is-frontend :focus-visible {
|
|
885
|
-
outline-width: 1px;
|
|
886
|
-
outline-style: dotted;
|
|
887
|
-
outline-offset: 1px;
|
|
888
|
-
outline-color: var(--neutral-80);
|
|
889
|
-
}
|
|
890
880
|
:where(p) {
|
|
891
881
|
margin: 0 0 calc(var(--text-line-height) * 1em);
|
|
892
882
|
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
body.bricks-is-frontend :focus {
|
|
2
|
-
outline: none;
|
|
3
|
-
box-shadow: none;
|
|
4
|
-
}
|
|
5
|
-
body.bricks-is-frontend :focus-visible {
|
|
6
|
-
outline-width: 1px;
|
|
7
|
-
outline-style: dotted;
|
|
8
|
-
outline-offset: 1px;
|
|
9
|
-
outline-color: var(--neutral-80);
|
|
10
|
-
}
|
|
11
1
|
:where(p) {
|
|
12
2
|
margin: 0 0 calc(var(--text-line-height) * 1em);
|
|
13
3
|
}
|