bopodev-ui 0.1.17 → 0.1.19
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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-lint.log +4 -0
- package/.turbo/turbo-typecheck.log +4 -0
- package/dist/styles.d.ts +6 -6
- package/package.json +1 -1
- package/src/styles.ts +6 -6
package/.turbo/turbo-build.log
CHANGED
package/dist/styles.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export declare const uiStyles: {
|
|
2
2
|
readonly shell: "min-h-screen bg-bopo-bg text-bopo-text";
|
|
3
3
|
readonly card: "rounded-xl border border-bopo-border bg-bopo-panel";
|
|
4
|
-
readonly cardHeader: "border-b border-bopo-border px-4 py-3 text-
|
|
4
|
+
readonly cardHeader: "border-b border-bopo-border px-4 py-3 text-base font-medium tracking-tight";
|
|
5
5
|
readonly cardBody: "px-4 py-4";
|
|
6
6
|
readonly muted: "text-bopo-muted";
|
|
7
|
-
readonly tableHeader: "bg-bopo-panel-elevated text-
|
|
8
|
-
readonly input: "h-9 w-full rounded-lg border border-bopo-border bg-bopo-panel-elevated px-3 text-
|
|
9
|
-
readonly buttonBase: "inline-flex h-9 items-center justify-center rounded-lg border px-3 text-
|
|
7
|
+
readonly tableHeader: "bg-bopo-panel-elevated text-base uppercase tracking-wide text-bopo-muted";
|
|
8
|
+
readonly input: "h-9 w-full rounded-lg border border-bopo-border bg-bopo-panel-elevated px-3 text-base text-bopo-text outline-none transition placeholder:text-bopo-muted/80 focus:border-bopo-accent focus:ring-2 focus:ring-bopo-accent/20";
|
|
9
|
+
readonly buttonBase: "inline-flex h-9 items-center justify-center rounded-lg border px-3 text-base font-medium transition disabled:cursor-not-allowed disabled:opacity-60";
|
|
10
10
|
readonly buttonGhost: "border-bopo-border bg-transparent text-bopo-text hover:bg-bopo-panel-elevated";
|
|
11
11
|
readonly buttonPrimary: "border-bopo-accent bg-bopo-accent text-white hover:brightness-110";
|
|
12
|
-
readonly badge: "inline-flex items-center rounded-md border px-2 py-0.5 text-
|
|
12
|
+
readonly badge: "inline-flex items-center rounded-md border px-2 py-0.5 text-base";
|
|
13
13
|
readonly modalOverlay: "fixed inset-0 z-50 bg-black/70 backdrop-blur-sm";
|
|
14
14
|
readonly modalContent: "fixed left-1/2 top-1/2 z-50 w-[min(720px,94vw)] -translate-x-1/2 -translate-y-1/2 rounded-xl border border-bopo-border bg-bopo-panel p-5";
|
|
15
15
|
readonly modalTitle: "text-base font-semibold tracking-tight text-bopo-text";
|
|
16
|
-
readonly modalDescription: "mt-1 text-
|
|
16
|
+
readonly modalDescription: "mt-1 text-base leading-6 text-bopo-muted";
|
|
17
17
|
};
|
package/package.json
CHANGED
package/src/styles.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
export const uiStyles = {
|
|
2
2
|
shell: "min-h-screen bg-bopo-bg text-bopo-text",
|
|
3
3
|
card: "rounded-xl border border-bopo-border bg-bopo-panel",
|
|
4
|
-
cardHeader: "border-b border-bopo-border px-4 py-3 text-
|
|
4
|
+
cardHeader: "border-b border-bopo-border px-4 py-3 text-base font-medium tracking-tight",
|
|
5
5
|
cardBody: "px-4 py-4",
|
|
6
6
|
muted: "text-bopo-muted",
|
|
7
|
-
tableHeader: "bg-bopo-panel-elevated text-
|
|
7
|
+
tableHeader: "bg-bopo-panel-elevated text-base uppercase tracking-wide text-bopo-muted",
|
|
8
8
|
input:
|
|
9
|
-
"h-9 w-full rounded-lg border border-bopo-border bg-bopo-panel-elevated px-3 text-
|
|
9
|
+
"h-9 w-full rounded-lg border border-bopo-border bg-bopo-panel-elevated px-3 text-base text-bopo-text outline-none transition placeholder:text-bopo-muted/80 focus:border-bopo-accent focus:ring-2 focus:ring-bopo-accent/20",
|
|
10
10
|
buttonBase:
|
|
11
|
-
"inline-flex h-9 items-center justify-center rounded-lg border px-3 text-
|
|
11
|
+
"inline-flex h-9 items-center justify-center rounded-lg border px-3 text-base font-medium transition disabled:cursor-not-allowed disabled:opacity-60",
|
|
12
12
|
buttonGhost: "border-bopo-border bg-transparent text-bopo-text hover:bg-bopo-panel-elevated",
|
|
13
13
|
buttonPrimary: "border-bopo-accent bg-bopo-accent text-white hover:brightness-110",
|
|
14
|
-
badge: "inline-flex items-center rounded-md border px-2 py-0.5 text-
|
|
14
|
+
badge: "inline-flex items-center rounded-md border px-2 py-0.5 text-base",
|
|
15
15
|
modalOverlay: "fixed inset-0 z-50 bg-black/70 backdrop-blur-sm",
|
|
16
16
|
modalContent:
|
|
17
17
|
"fixed left-1/2 top-1/2 z-50 w-[min(720px,94vw)] -translate-x-1/2 -translate-y-1/2 rounded-xl border border-bopo-border bg-bopo-panel p-5",
|
|
18
18
|
modalTitle: "text-base font-semibold tracking-tight text-bopo-text",
|
|
19
|
-
modalDescription: "mt-1 text-
|
|
19
|
+
modalDescription: "mt-1 text-base leading-6 text-bopo-muted"
|
|
20
20
|
} as const;
|