@moises.ai/design-system 2.2.17 → 3.0.0
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/{NoSearchIcon-BJv-hw_q.js → GlobeIcon-BkquIy1P.js} +1901 -1760
- package/dist/fonts.css +32 -0
- package/dist/icons.js +280 -278
- package/dist/{index-BVdomY1g.js → index-BYQcyvIT.js} +48 -66
- package/dist/index.js +3932 -3686
- package/dist/primitives.js +2 -2
- package/dist/styles.css +10 -8
- package/package.json +1 -1
package/dist/primitives.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as a from "react";
|
|
2
2
|
import Y from "react";
|
|
3
|
-
import { R as tr, u as ye, c as le, a as _e, b as or, C as Yr, P as O, d as ae, e as Xr, T as Zr, f as ce, g as G, h as Ie, i as P, j as Jr, A as Qr, k as en, l as tn, G as on, I as rn, m as nn, L as an, n as sn, o as be, p as bt, q as cn, r as ln, s as un, S as dn, t as fn, v as pn, w as vn, x as Ve, y as mn, z as Me, B as Xe, D as gn, E as Q, F as bn, H as hn, J as Cn, K as wn, M as rr, N as nr, O as Tn, Q as En, V as ar, U as yn, W as sr, X as Rn, Y as _n } from "./index-
|
|
4
|
-
import { Z as Ni, _ as Fi, $ as Oi, a0 as Di, a1 as Li, a2 as ki, a3 as Vi, a4 as Ki, a5 as $i, a6 as Gi, a7 as Bi, a8 as Hi, a9 as zi, aa as Ui, ab as ji, ac as Wi, ad as qi, ae as Yi, af as Xi, ag as Zi, ah as Ji, ai as Qi } from "./index-
|
|
3
|
+
import { R as tr, u as ye, c as le, a as _e, b as or, C as Yr, P as O, d as ae, e as Xr, T as Zr, f as ce, g as G, h as Ie, i as P, j as Jr, A as Qr, k as en, l as tn, G as on, I as rn, m as nn, L as an, n as sn, o as be, p as bt, q as cn, r as ln, s as un, S as dn, t as fn, v as pn, w as vn, x as Ve, y as mn, z as Me, B as Xe, D as gn, E as Q, F as bn, H as hn, J as Cn, K as wn, M as rr, N as nr, O as Tn, Q as En, V as ar, U as yn, W as sr, X as Rn, Y as _n } from "./index-BYQcyvIT.js";
|
|
4
|
+
import { Z as Ni, _ as Fi, $ as Oi, a0 as Di, a1 as Li, a2 as ki, a3 as Vi, a4 as Ki, a5 as $i, a6 as Gi, a7 as Bi, a8 as Hi, a9 as zi, aa as Ui, ab as ji, ac as Wi, ad as qi, ae as Yi, af as Xi, ag as Zi, ah as Ji, ai as Qi } from "./index-BYQcyvIT.js";
|
|
5
5
|
import { jsxs as ve, Fragment as me, jsx as i } from "react/jsx-runtime";
|
|
6
6
|
import * as In from "react-dom";
|
|
7
7
|
import Mn, { flushSync as pe } from "react-dom";
|
package/dist/styles.css
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
/* Import Radix UI Themes base styles */
|
|
2
|
-
@import '@radix-ui/themes/styles.css';
|
|
3
|
-
|
|
4
|
-
/* Import custom theme overrides and colors */
|
|
5
|
-
@import './colors/custom-styles.css';
|
|
6
|
-
|
|
7
1
|
/*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
2
|
+
* CSS Cascade Layers - explicitly control style priority
|
|
3
|
+
* Layers declared first have LOWER priority than layers declared later.
|
|
4
|
+
* Unlayered styles (like CSS modules) always beat layered styles.
|
|
10
5
|
*/
|
|
6
|
+
@layer radix, theme;
|
|
7
|
+
|
|
8
|
+
/* Import Radix UI Themes base styles into the radix layer */
|
|
9
|
+
@import '@radix-ui/themes/styles.css' layer(radix);
|
|
10
|
+
|
|
11
|
+
/* Import custom theme overrides into the theme layer (higher priority than radix) */
|
|
12
|
+
@import './colors/custom-styles.css' layer(theme);
|