@xfilecom/front-core 0.2.8 → 0.2.10
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/base.css +4 -4
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/base.css
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
*
|
|
4
4
|
* 권장 로드 순서 (xframe web/shared 와 함께 쓸 때):
|
|
5
5
|
* 1. @xfilecom/front-core/tokens.css
|
|
6
|
-
* 2.
|
|
7
|
-
* 3.
|
|
8
|
-
* 4. web/shared/src/styles/app.css
|
|
6
|
+
* 2. 이 파일 (base.css) — atoms(.xfc-*)
|
|
7
|
+
* 3. web/shared/src/styles/xfc-theme.css — :root + .xfc-* 덮어쓰기(선택, base 이후)
|
|
8
|
+
* 4. web/shared/src/styles/app.css — 레이아웃 + 추가 오버라이드(선택)
|
|
9
9
|
*
|
|
10
|
-
*
|
|
10
|
+
* :root 의 --xfc-* 는 (3)에서 바꿔도 var() 해석 시 반영되며, (3)의 클래스 규칙은 (2)를 덮어씁니다.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
*,
|
package/dist/index.d.ts
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
*
|
|
4
4
|
* CSS (xframe 템플릿·web/shared 권장 순서):
|
|
5
5
|
* import '@xfilecom/front-core/tokens.css';
|
|
6
|
-
* import '<shared>/styles/xfc-theme.css'; // 앱 토큰 덮어쓰기(선택)
|
|
7
6
|
* import '@xfilecom/front-core/base.css';
|
|
8
|
-
* import '<shared>/styles/
|
|
7
|
+
* import '<shared>/styles/xfc-theme.css'; // :root + .xfc-* (base 이후, 선택)
|
|
8
|
+
* import '<shared>/styles/app.css'; // 레이아웃 + 추가 오버라이드
|
|
9
9
|
*
|
|
10
10
|
* React atoms: 패키지 루트 또는 `@xfilecom/front-core/atoms`.
|
|
11
11
|
*/
|
package/dist/index.js
CHANGED
|
@@ -6,9 +6,9 @@ exports.ToastSeverityIcon = exports.ToastList = exports.Toast = exports.Text = e
|
|
|
6
6
|
*
|
|
7
7
|
* CSS (xframe 템플릿·web/shared 권장 순서):
|
|
8
8
|
* import '@xfilecom/front-core/tokens.css';
|
|
9
|
-
* import '<shared>/styles/xfc-theme.css'; // 앱 토큰 덮어쓰기(선택)
|
|
10
9
|
* import '@xfilecom/front-core/base.css';
|
|
11
|
-
* import '<shared>/styles/
|
|
10
|
+
* import '<shared>/styles/xfc-theme.css'; // :root + .xfc-* (base 이후, 선택)
|
|
11
|
+
* import '<shared>/styles/app.css'; // 레이아웃 + 추가 오버라이드
|
|
12
12
|
*
|
|
13
13
|
* React atoms: 패키지 루트 또는 `@xfilecom/front-core/atoms`.
|
|
14
14
|
*/
|
package/package.json
CHANGED