design-system-silkhaus 3.7.7-beta.arabic-font-styles.5 → 3.8.0-beta.ST-1134.2
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/{ButtonsGroupSelector-BErKnj7L.js → ButtonsGroupSelector-Fwn9xZMc.js} +1267 -1283
- package/dist/app/index.js +2 -2
- package/dist/index.d.ts +20 -0
- package/dist/index.js +1752 -1714
- package/dist/style.css +1 -1
- package/dist/tailwind.config.js +728 -734
- package/package.json +1 -1
package/dist/app/index.js
CHANGED
|
@@ -10,8 +10,8 @@ var I = (s, e, a) => e in s ? J(s, e, { enumerable: !0, configurable: !0, writab
|
|
|
10
10
|
X.call(e, a) && I(s, a, e[a]);
|
|
11
11
|
return s;
|
|
12
12
|
}, k = (s, e) => K(s, L(e));
|
|
13
|
-
import { j as d, p as Y, u as Z, o as _, i as O, s as ss, r as es, v as ds, d as as, e as ls, f as ts, g as rs, a as m, F as ns, A as is, h as os, D as cs, x as us, C as fs, l as xs, k as ms, n as ps } from "../ButtonsGroupSelector-
|
|
14
|
-
import { w as ks } from "../ButtonsGroupSelector-
|
|
13
|
+
import { j as d, p as Y, u as Z, o as _, i as O, s as ss, r as es, v as ds, d as as, e as ls, f as ts, g as rs, a as m, F as ns, A as is, h as os, D as cs, x as us, C as fs, l as xs, k as ms, n as ps } from "../ButtonsGroupSelector-Fwn9xZMc.js";
|
|
14
|
+
import { w as ks } from "../ButtonsGroupSelector-Fwn9xZMc.js";
|
|
15
15
|
import { useState as b } from "react";
|
|
16
16
|
const hs = (s) => window.innerWidth < Y ? /* @__PURE__ */ d.jsx(R, x({}, s)) : /* @__PURE__ */ d.jsx(M, x({}, s));
|
|
17
17
|
hs.displayName = "Dropdown";
|
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { ClassValue } from 'clsx';
|
|
|
4
4
|
import { default as default_2 } from 'react';
|
|
5
5
|
import { ElementType } from 'react';
|
|
6
6
|
import { FC } from 'react';
|
|
7
|
+
import { fontSizeConfig } from '../../tailwind.config';
|
|
7
8
|
import { ForwardRefExoticComponent } from 'react';
|
|
8
9
|
import { HTMLAttributes } from 'react';
|
|
9
10
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
@@ -1431,6 +1432,25 @@ declare type TagProps = {
|
|
|
1431
1432
|
label: string;
|
|
1432
1433
|
};
|
|
1433
1434
|
|
|
1435
|
+
/**
|
|
1436
|
+
*
|
|
1437
|
+
*/
|
|
1438
|
+
declare const Text_2: <T extends ElementType = "div">({ as, children, className, dataTestId, variant, isResponsive, ...rest }: TextProps<T>) => JSX_2.Element;
|
|
1439
|
+
export { Text_2 as Text }
|
|
1440
|
+
|
|
1441
|
+
export declare type TextProps<T extends ElementType = 'div'> = React.PropsWithChildren<{
|
|
1442
|
+
/**
|
|
1443
|
+
* Element type to render as
|
|
1444
|
+
* @default 'div'
|
|
1445
|
+
*/
|
|
1446
|
+
as?: T;
|
|
1447
|
+
dataTestId?: string;
|
|
1448
|
+
variant?: TextVariant;
|
|
1449
|
+
isResponsive?: boolean;
|
|
1450
|
+
}> & React.ComponentPropsWithoutRef<T>;
|
|
1451
|
+
|
|
1452
|
+
declare type TextVariant = keyof typeof fontSizeConfig;
|
|
1453
|
+
|
|
1434
1454
|
export declare const ThreeDotsCircleIcon: FC<{
|
|
1435
1455
|
className?: string;
|
|
1436
1456
|
}>;
|