baaz-custom-components 3.1.2 → 3.1.4
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/index.css +14 -0
- package/dist/index.d.mts +3 -9
- package/dist/index.d.ts +3 -9
- package/dist/index.js +275 -114
- package/dist/index.mjs +274 -113
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
--color-white: #fff;
|
|
26
26
|
--spacing: 0.25rem;
|
|
27
27
|
--container-sm: 24rem;
|
|
28
|
+
--container-md: 28rem;
|
|
28
29
|
--container-lg: 32rem;
|
|
29
30
|
--text-xs: 0.75rem;
|
|
30
31
|
--text-xs--line-height: calc(1 / 0.75);
|
|
@@ -487,6 +488,9 @@
|
|
|
487
488
|
.min-h-0 {
|
|
488
489
|
min-height: calc(var(--spacing) * 0);
|
|
489
490
|
}
|
|
491
|
+
.\!w-md {
|
|
492
|
+
width: var(--container-md) !important;
|
|
493
|
+
}
|
|
490
494
|
.w-\(--sidebar-width\) {
|
|
491
495
|
width: var(--sidebar-width);
|
|
492
496
|
}
|
|
@@ -865,6 +869,10 @@
|
|
|
865
869
|
--tw-leading: 1;
|
|
866
870
|
line-height: 1;
|
|
867
871
|
}
|
|
872
|
+
.\!font-light {
|
|
873
|
+
--tw-font-weight: var(--font-weight-light) !important;
|
|
874
|
+
font-weight: var(--font-weight-light) !important;
|
|
875
|
+
}
|
|
868
876
|
.font-light {
|
|
869
877
|
--tw-font-weight: var(--font-weight-light);
|
|
870
878
|
font-weight: var(--font-weight-light);
|
|
@@ -894,6 +902,12 @@
|
|
|
894
902
|
.whitespace-nowrap {
|
|
895
903
|
white-space: nowrap;
|
|
896
904
|
}
|
|
905
|
+
.\!text-primary {
|
|
906
|
+
color: var(--primary) !important;
|
|
907
|
+
}
|
|
908
|
+
.text-accent-foreground {
|
|
909
|
+
color: var(--accent-foreground);
|
|
910
|
+
}
|
|
897
911
|
.text-foreground {
|
|
898
912
|
color: var(--foreground);
|
|
899
913
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
icon?: React.ReactNode;
|
|
7
|
-
}
|
|
8
|
-
interface NavbarData$1 {
|
|
9
|
-
items: NavbarItem[];
|
|
10
|
-
[key: string]: any;
|
|
11
|
-
}
|
|
3
|
+
type NavbarData$1 = {
|
|
4
|
+
[key: string]: string | NavbarData$1;
|
|
5
|
+
};
|
|
12
6
|
interface UserData {
|
|
13
7
|
name: string;
|
|
14
8
|
role: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
icon?: React.ReactNode;
|
|
7
|
-
}
|
|
8
|
-
interface NavbarData$1 {
|
|
9
|
-
items: NavbarItem[];
|
|
10
|
-
[key: string]: any;
|
|
11
|
-
}
|
|
3
|
+
type NavbarData$1 = {
|
|
4
|
+
[key: string]: string | NavbarData$1;
|
|
5
|
+
};
|
|
12
6
|
interface UserData {
|
|
13
7
|
name: string;
|
|
14
8
|
role: string;
|