@rolder/kit 3.0.0-alpha-1 → 3.0.0-alpha-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.
@@ -0,0 +1,7 @@
1
+ import "./styles_module.css";
2
+ const styles_module = {
3
+ root: "root-OYYJgs",
4
+ content: "content-b5nnhz",
5
+ toolbar: "toolbar-RksEGD"
6
+ };
7
+ export { styles_module as default };
@@ -0,0 +1,16 @@
1
+ .root-OYYJgs {
2
+ --editor-border-color: light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-4));
3
+ border: rem(1px) solid var(--editor-border-color);
4
+ border-radius: var(--mantine-radius-md);
5
+ }
6
+
7
+ .content-b5nnhz {
8
+ border-radius: var(--mantine-radius-md);
9
+ }
10
+
11
+ .toolbar-RksEGD {
12
+ border-color: var(--editor-border-color);
13
+ border-top-left-radius: var(--mantine-radius-md);
14
+ border-top-right-radius: var(--mantine-radius-md);
15
+ }
16
+
@@ -0,0 +1,5 @@
1
+ import "./styles_module.css";
2
+ const styles_module = {
3
+ root: "root-Ao1xe7"
4
+ };
5
+ export { styles_module as default };
@@ -0,0 +1,10 @@
1
+ .root-Ao1xe7 {
2
+ opacity: 0;
3
+ transition: opacity .2s ease-in-out;
4
+
5
+ &[data-hovered] {
6
+ opacity: 1;
7
+ transition: opacity .2s ease-in-out;
8
+ }
9
+ }
10
+
@@ -0,0 +1,5 @@
1
+ import "./styles_module.css";
2
+ const styles_module = {
3
+ root: "root-aYPBH7"
4
+ };
5
+ export { styles_module as default };
@@ -0,0 +1,15 @@
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
+
@@ -0,0 +1,5 @@
1
+ import "./styles_module.css";
2
+ const styles_module = {
3
+ root: "root-t5Mcrb"
4
+ };
5
+ export { styles_module as default };
@@ -0,0 +1,5 @@
1
+ .root-t5Mcrb {
2
+ color: inherit;
3
+ text-decoration: none;
4
+ }
5
+
@@ -0,0 +1,7 @@
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 };
@@ -0,0 +1,14 @@
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
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolder/kit",
3
- "version": "3.0.0-alpha-1",
3
+ "version": "3.0.0-alpha-2",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -15,7 +15,8 @@
15
15
  "scripts": {
16
16
  "build": "rslib build",
17
17
  "dev": "rslib build --watch",
18
- "check": "biome check --write && tsc --noEmit"
18
+ "check": "biome check --write && tsc --noEmit",
19
+ "publish": "bun publish --access public"
19
20
  },
20
21
  "devDependencies": {
21
22
  "@biomejs/biome": "2.3.8",