brd-ui-kit 0.1.22 → 0.1.24
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/brd-ui-kit.css +1 -1
- package/dist/components/textarea-field/index.d.ts +1 -1
- package/dist/components/ui/dialog/dialog.styles.d.ts +1 -1
- package/dist/components/ui/icon/icon.d.ts +6 -2
- package/dist/components/ui/icon/icon.stories.d.ts +6 -2
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.js +20 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -30,17 +30,18 @@ export type { IconTypes, Size } from './types/types';
|
|
|
30
30
|
export { usePopupControls } from './hooks/usePopupControls';
|
|
31
31
|
export { AppPagination } from './components/app-pagination';
|
|
32
32
|
export { AppSidebar } from './components/app-sidebar';
|
|
33
|
+
export type { AppSidebarGroup, AppSidebarItem, AppSidebarState } from './components/app-sidebar';
|
|
33
34
|
export { BasicCheckbox } from './components/basic-checkbox';
|
|
34
35
|
export type { CheckboxProps } from './components/basic-checkbox';
|
|
35
36
|
export { BasicModal } from './components/basic-modal';
|
|
36
37
|
export { BasicTable } from './components/basic-table';
|
|
37
38
|
export { BasicTooltip } from './components/basic-tooltip';
|
|
38
39
|
export { InputField } from './components/input-field';
|
|
39
|
-
export type { InputProps } from './components/input-field';
|
|
40
|
+
export type { DateAddon, InputFieldProps, InputProps } from './components/input-field';
|
|
40
41
|
export { InputPassword } from './components/input-password';
|
|
41
42
|
export type { InputPasswordProps } from './components/input-password';
|
|
42
43
|
export { RadioButton } from './components/radio-button';
|
|
43
44
|
export { SelectField } from './components/select-field';
|
|
44
|
-
export type { SelectProps } from './components/select-field';
|
|
45
|
+
export type { SelectItem, SelectList, SelectProps, SelectValue } from './components/select-field';
|
|
45
46
|
export { TextareaField } from './components/textarea-field';
|
|
46
|
-
export type {
|
|
47
|
+
export type { TextareaFieldProps } from './components/textarea-field';
|
package/dist/index.js
CHANGED
|
@@ -4356,18 +4356,27 @@ const Sb = {
|
|
|
4356
4356
|
size: t = "md",
|
|
4357
4357
|
viewBox: n = "0 0 24 24",
|
|
4358
4358
|
strokeWidth: r = 1.5,
|
|
4359
|
-
|
|
4360
|
-
|
|
4359
|
+
classes: o,
|
|
4360
|
+
color: i,
|
|
4361
|
+
...s
|
|
4361
4362
|
}) => {
|
|
4362
|
-
const
|
|
4363
|
-
return /* @__PURE__ */ x(
|
|
4364
|
-
|
|
4363
|
+
const a = Sb[e], l = Rb[t], c = z(l, o?.icon);
|
|
4364
|
+
return /* @__PURE__ */ x(
|
|
4365
|
+
"div",
|
|
4365
4366
|
{
|
|
4366
|
-
|
|
4367
|
-
|
|
4368
|
-
|
|
4367
|
+
...s,
|
|
4368
|
+
className: o?.wrapper,
|
|
4369
|
+
children: /* @__PURE__ */ x(
|
|
4370
|
+
a,
|
|
4371
|
+
{
|
|
4372
|
+
viewBox: n,
|
|
4373
|
+
strokeWidth: r,
|
|
4374
|
+
className: c,
|
|
4375
|
+
color: i
|
|
4376
|
+
}
|
|
4377
|
+
)
|
|
4369
4378
|
}
|
|
4370
|
-
)
|
|
4379
|
+
);
|
|
4371
4380
|
}, Eb = [
|
|
4372
4381
|
"peer bg-primary-bg border-inp-default-border grid size-5 shrink-0 cursor-pointer place-content-center rounded border",
|
|
4373
4382
|
"focus-visible:ring-inp-focus-border focus-visible:ring-1 focus-visible:outline-none",
|
|
@@ -13662,7 +13671,8 @@ For more information, see https://radix-ui.com/primitives/docs/components/${t.do
|
|
|
13662
13671
|
}, H0 = nf, B0 = of, j0 = af, vf = lf, yf = cf, xf = df, Cf = pf, wf = mf;
|
|
13663
13672
|
const W0 = [
|
|
13664
13673
|
"data-open:animate-in data-closed:animate-out data-closed:fade-out-0",
|
|
13665
|
-
"data-open:fade-in-0
|
|
13674
|
+
"data-open:fade-in-0 duration-100",
|
|
13675
|
+
"bg-primary-inverse-bg/20 fixed inset-0 isolate z-30"
|
|
13666
13676
|
], U0 = [
|
|
13667
13677
|
"fixed left-[50%] top-[50%] z-50 grid translate-x-[-50%]",
|
|
13668
13678
|
"translate-y-[-50%] gap-8 bg-primary-bg p-6 shadow-[0px_10px_40px_0px_rgba(0,0,0,0.15)] duration-200",
|