@rolder/kit 3.0.0-alpha-17 → 3.0.0-alpha.1

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.
@@ -3,7 +3,6 @@ import { ActionIcon, FileButton, Tooltip } from "@mantine/core";
3
3
  import { useRef } from "react";
4
4
  import { FileIcon } from "./FileIcon.js";
5
5
  import { usePromptInput } from "./PromptInputContext.js";
6
- import styles_module from "./styles.module.js";
7
6
  const File = (props)=>{
8
7
  const resetRef = useRef(null);
9
8
  const { file, setFile, accept, submiting, uploading } = usePromptInput();
@@ -23,7 +22,7 @@ const File = (props)=>{
23
22
  disabled: submiting,
24
23
  loading: uploading,
25
24
  classNames: {
26
- root: styles_module.fileActionAction
25
+ root: 'rolder-prompt-input-file-action-action'
27
26
  },
28
27
  ...props,
29
28
  children: /*#__PURE__*/ jsxs("svg", {
@@ -67,7 +66,7 @@ const File = (props)=>{
67
66
  size: "lg",
68
67
  variant: "default",
69
68
  classNames: {
70
- root: styles_module.fileActionAction
69
+ root: 'rolder-prompt-input-file-action-action'
71
70
  },
72
71
  onClick: ()=>{
73
72
  resetRef.current?.();
@@ -2,7 +2,6 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { Paper } from "@mantine/core";
3
3
  import clsx from "clsx";
4
4
  import { Provider } from "./PromptInputProvider.js";
5
- import styles_module from "./styles.module.js";
6
5
  const Root = ({ className, onSubmit, submiting, uploading, accept, ...props })=>/*#__PURE__*/ jsx(Provider, {
7
6
  onSubmit: onSubmit,
8
7
  submiting: submiting,
@@ -11,7 +10,7 @@ const Root = ({ className, onSubmit, submiting, uploading, accept, ...props })=>
11
10
  children: /*#__PURE__*/ jsx(Paper, {
12
11
  radius: "md",
13
12
  withBorder: true,
14
- className: clsx(styles_module.root, className),
13
+ className: clsx('rolder-prompt-input-root', className),
15
14
  ...props
16
15
  })
17
16
  });
@@ -2,7 +2,6 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { Textarea } from "@mantine/core";
3
3
  import { useState } from "react";
4
4
  import { usePromptInput } from "./PromptInputContext.js";
5
- import styles_module from "./styles.module.js";
6
5
  const Textarea_Textarea = (props)=>{
7
6
  const { text, setText, onSubmit, submiting, uploading } = usePromptInput();
8
7
  const [isComposing, setIsComposing] = useState(false);
@@ -19,7 +18,7 @@ const Textarea_Textarea = (props)=>{
19
18
  size: "md",
20
19
  rows: 3,
21
20
  classNames: {
22
- input: styles_module.textarea
21
+ input: 'rolder-prompt-input-textarea'
23
22
  },
24
23
  placeholder: "Напишите сообщение",
25
24
  onCompositionEnd: ()=>setIsComposing(false),
@@ -0,0 +1,74 @@
1
+ .rolder-prompt-input-root {
2
+ background-color: light-dark(var(--mantine-color-white), var(--mantine-color-dark-6));
3
+
4
+ &:focus-within {
5
+ border-color: var(--mantine-primary-color-filled);
6
+ border-color: var(--mantine-primary-color-filled);
7
+ outline: none;
8
+ }
9
+ }
10
+
11
+ .rolder-prompt-input-textarea {
12
+ border: 0;
13
+ border-radius: 8px;
14
+ overflow: hidden;
15
+ }
16
+
17
+ .rolder-prompt-input-file-action-action {
18
+ color: light-dark(var(--mantine-color-gray-7), var(--mantine-color-dark-1));
19
+
20
+ &[data-disabled] {
21
+ color: light-dark(var(--mantine-color-gray-5), var(--mantine-color-dark-3));
22
+ }
23
+ }
24
+
25
+ .rolder-editor-root {
26
+ --editor-border-color: light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-4));
27
+ border: rem(1px) solid var(--editor-border-color);
28
+ border-radius: var(--mantine-radius-md);
29
+ }
30
+
31
+ .rolder-editor-content {
32
+ border-radius: var(--mantine-radius-md);
33
+ }
34
+
35
+ .rolder-editor-toolbar {
36
+ border-color: var(--editor-border-color);
37
+ border-top-left-radius: var(--mantine-radius-md);
38
+ border-top-right-radius: var(--mantine-radius-md);
39
+ }
40
+
41
+ .rolder-hover-paper-root {
42
+ transition: background-color .2s ease-in-out;
43
+
44
+ &:hover {
45
+ background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-6));
46
+ cursor: pointer;
47
+ transition: background-color .2s ease-in-out;
48
+ }
49
+
50
+ &[data-disabled] {
51
+ background-color: unset;
52
+ cursor: default;
53
+ }
54
+ }
55
+
56
+ .rolder-router-link-root {
57
+ color: inherit;
58
+ text-decoration: none;
59
+ }
60
+
61
+ .rolder-scroll-area-viewport {
62
+ border-radius: var(--radius);
63
+ }
64
+
65
+ .rolder-scroll-area-content {
66
+ width: 100%;
67
+ height: 100%;
68
+ }
69
+
70
+ .rolder-scroll-area-scrollbar {
71
+ border-top-right-radius: var(--radius);
72
+ border-bottom-right-radius: var(--radius);
73
+ }
74
+
@@ -2,11 +2,10 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { ActionIcon, Anchor, Button, UnstyledButton } from "@mantine/core";
3
3
  import { createLink } from "@tanstack/react-router";
4
4
  import { forwardRef } from "react";
5
- import styles_module from "./styles.module.js";
6
5
  const MantineLinkComponent = /*#__PURE__*/ forwardRef(({ classNames, ...props }, ref)=>/*#__PURE__*/ jsx(Anchor, {
7
6
  ref: ref,
8
7
  classNames: {
9
- root: styles_module.root,
8
+ root: 'rolder-router-link-root',
10
9
  ...classNames
11
10
  },
12
11
  c: "inherit",
@@ -1,15 +1,14 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { RichTextEditor } from "@mantine/tiptap";
3
3
  import { useEditor } from "./Provider.js";
4
- import styles_module from "./styles.module.js";
5
4
  const Root = ({ children, classNames, ...props })=>{
6
5
  const { editor } = useEditor();
7
6
  return /*#__PURE__*/ jsx(RichTextEditor, {
8
7
  editor: editor,
9
8
  classNames: {
10
- root: styles_module.root,
11
- content: styles_module.content,
12
- toolbar: styles_module.toolbar,
9
+ root: 'rolder-editor-root',
10
+ content: 'rolder-editor-content',
11
+ toolbar: 'rolder-editor-toolbar',
13
12
  ...classNames
14
13
  },
15
14
  ...props,
@@ -1,7 +1,7 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { Button, Group, Stack, Title } from "@mantine/core";
3
3
  import { rootRouteId, useMatch, useRouter } from "@tanstack/react-router";
4
- import { RouterLink } from "../routerLink/index.js";
4
+ import { RouterLink } from "../RouterLink.js";
5
5
  const DefaultError = ({ error })=>{
6
6
  const router = useRouter();
7
7
  const isRoot = useMatch({
@@ -1,6 +1,6 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { Stack, Text, Title } from "@mantine/core";
3
- import { RouterLink } from "../routerLink/index.js";
3
+ import { RouterLink } from "../RouterLink.js";
4
4
  const DefaultNotFound = ()=>/*#__PURE__*/ jsxs(Stack, {
5
5
  align: "center",
6
6
  justify: "center",
@@ -1,6 +1,6 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { Stack, Title } from "@mantine/core";
3
- import { RouterLink } from "../routerLink/index.js";
3
+ import { RouterLink } from "../RouterLink.js";
4
4
  const Forbidden = ()=>/*#__PURE__*/ jsxs(Stack, {
5
5
  align: "center",
6
6
  justify: "center",
@@ -1,11 +1,10 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { Paper } from "@mantine/core";
3
3
  import { forwardRef } from "react";
4
- import styles_module from "./styles.module.js";
5
4
  const HoverPaper = /*#__PURE__*/ forwardRef(({ disabled, classNames, ...props }, ref)=>/*#__PURE__*/ jsx(Paper, {
6
5
  ref: ref,
7
6
  classNames: {
8
- root: styles_module.root,
7
+ root: 'rolder-hover-paper-root',
9
8
  ...classNames
10
9
  },
11
10
  mod: {
@@ -4,6 +4,6 @@ export * from './error';
4
4
  export * from './form';
5
5
  export * from './hoverPaper';
6
6
  export * from './JsonInput';
7
- export * from './routerLink';
7
+ export * from './RouterLink';
8
8
  export * from './saveInput';
9
9
  export * from './scrollArea';
package/dist/ui/index.js CHANGED
@@ -4,6 +4,6 @@ export * from "./error/index.js";
4
4
  export * from "./form/index.js";
5
5
  export * from "./hoverPaper/index.js";
6
6
  export * from "./JsonInput.js";
7
- export * from "./routerLink/index.js";
7
+ export * from "./RouterLink.js";
8
8
  export * from "./saveInput/index.js";
9
9
  export * from "./scrollArea/index.js";
@@ -2,16 +2,15 @@ import { jsx } from "react/jsx-runtime";
2
2
  import { Box, ScrollArea, getRadius } from "@mantine/core";
3
3
  import { useContext } from "react";
4
4
  import { ScrollAreaContext } from "./context.js";
5
- import styles_module from "./styles.module.js";
6
5
  const ScrollAreaContent = ({ children })=>{
7
6
  const fullContext = useContext(ScrollAreaContext);
8
7
  if (!fullContext) throw new Error('ScrollAreaContent must be used within ScrollArea');
9
8
  const { _callbackRef, mantineProps, radius, _contentResizeRef } = fullContext;
10
9
  return /*#__PURE__*/ jsx(ScrollArea, {
11
10
  classNames: {
12
- viewport: styles_module.viewport,
13
- content: styles_module.content,
14
- scrollbar: styles_module.scrollbar
11
+ viewport: 'rolder-scroll-area-viewport',
12
+ content: 'rolder-scroll-area-content',
13
+ scrollbar: 'rolder-scroll-area-scrollbar'
15
14
  },
16
15
  style: {
17
16
  '--radius': radius ? getRadius(radius) : void 0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolder/kit",
3
- "version": "3.0.0-alpha-17",
3
+ "version": "3.0.0-alpha.1",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -8,9 +8,6 @@
8
8
  "import": "./dist/index.js"
9
9
  }
10
10
  },
11
- "sideEffects": [
12
- "*.css"
13
- ],
14
11
  "files": [
15
12
  "dist"
16
13
  ],
@@ -34,7 +31,6 @@
34
31
  "peerDependencies": {
35
32
  "react": ">=16.9.0",
36
33
  "react-dom": ">=16.9.0",
37
- "@tabler/icons-react": "^3.36.1",
38
34
  "clsx": "^2.1.1",
39
35
  "@tiptap/extension-highlight": "^3.15.3",
40
36
  "@tiptap/extension-placeholder": "^3.15.3",
@@ -1,7 +0,0 @@
1
- import "./styles_module.css";
2
- const styles_module = {
3
- root: "root-gmXOO2",
4
- textarea: "textarea-f3Dbtf",
5
- fileActionAction: "fileActionAction-w3KPzA"
6
- };
7
- export { styles_module as default };
@@ -1,24 +0,0 @@
1
- .root-gmXOO2 {
2
- background-color: light-dark(var(--mantine-color-white), var(--mantine-color-dark-6));
3
-
4
- &:focus-within {
5
- border-color: var(--mantine-primary-color-filled);
6
- border-color: var(--mantine-primary-color-filled);
7
- outline: none;
8
- }
9
- }
10
-
11
- .textarea-f3Dbtf {
12
- border: 0;
13
- border-radius: 8px;
14
- overflow: hidden;
15
- }
16
-
17
- .fileActionAction-w3KPzA {
18
- color: light-dark(var(--mantine-color-gray-7), var(--mantine-color-dark-1));
19
-
20
- &[data-disabled] {
21
- color: light-dark(var(--mantine-color-gray-5), var(--mantine-color-dark-3));
22
- }
23
- }
24
-
@@ -1,5 +0,0 @@
1
- import "./styles_module.css";
2
- const styles_module = {
3
- root: "root-aYPBH7"
4
- };
5
- export { styles_module as default };
@@ -1,15 +0,0 @@
1
- .root-aYPBH7 {
2
- transition: background-color .2s ease-in-out;
3
-
4
- &:hover {
5
- background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-6));
6
- cursor: pointer;
7
- transition: background-color .2s ease-in-out;
8
- }
9
-
10
- &[data-disabled] {
11
- background-color: unset;
12
- cursor: default;
13
- }
14
- }
15
-
@@ -1 +0,0 @@
1
- export * from './RouterLink';
@@ -1 +0,0 @@
1
- export * from "./RouterLink.js";
@@ -1,5 +0,0 @@
1
- import "./styles_module.css";
2
- const styles_module = {
3
- root: "root-t5Mcrb"
4
- };
5
- export { styles_module as default };
@@ -1,5 +0,0 @@
1
- .root-t5Mcrb {
2
- color: inherit;
3
- text-decoration: none;
4
- }
5
-
@@ -1,7 +0,0 @@
1
- import "./styles_module.css";
2
- const styles_module = {
3
- viewport: "viewport-KXLjEt",
4
- content: "content-An6Wm1",
5
- scrollbar: "scrollbar-q5GUTX"
6
- };
7
- export { styles_module as default };
@@ -1,14 +0,0 @@
1
- .viewport-KXLjEt {
2
- border-radius: var(--radius);
3
- }
4
-
5
- .content-An6Wm1 {
6
- width: 100%;
7
- height: 100%;
8
- }
9
-
10
- .scrollbar-q5GUTX {
11
- border-top-right-radius: var(--radius);
12
- border-bottom-right-radius: var(--radius);
13
- }
14
-