@react95/core 9.6.4 → 9.7.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react95/core",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.7.0",
|
|
4
4
|
"description": "Windows 95 styleguide",
|
|
5
5
|
"main": "cjs/index.cjs",
|
|
6
6
|
"type": "module",
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
".": {
|
|
9
9
|
"import": {
|
|
10
10
|
"types": "./types/index.d.ts",
|
|
11
|
-
"default": "./esm"
|
|
11
|
+
"default": "./esm/index.mjs"
|
|
12
12
|
},
|
|
13
13
|
"require": {
|
|
14
14
|
"types": "./types/index.d.ts",
|
|
15
|
-
"default": "./cjs"
|
|
15
|
+
"default": "./cjs/index.cjs"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"./themes/tokens/*": {
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"license": "MIT",
|
|
166
166
|
"dependencies": {
|
|
167
167
|
"@neodrag/react": "^2.0.4",
|
|
168
|
-
"@react95/icons": "^2.
|
|
168
|
+
"@react95/icons": "^2.4.0",
|
|
169
169
|
"@vanilla-extract/dynamic": "^2.1.0",
|
|
170
170
|
"@vanilla-extract/recipes": "^0.5.1",
|
|
171
171
|
"classnames": "^2.5.1",
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
"url": "https://github.com/React95/React95/issues"
|
|
197
197
|
},
|
|
198
198
|
"homepage": "https://github.com/React95/React95#readme",
|
|
199
|
-
"gitHead": "
|
|
199
|
+
"gitHead": "8028836f64182fa902a01990420e3c9a6001a138",
|
|
200
200
|
"module": "esm/index.mjs",
|
|
201
201
|
"private": false,
|
|
202
202
|
"types": "types/index.d.ts"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const Cursor: Record<"Help" | "Auto" | "Text" | "VerticalText" | "Crosshair" | "Pointer" | "Progress" | "Wait" | "Alias" | "
|
|
1
|
+
export declare const Cursor: Record<"Help" | "Copy" | "Auto" | "Text" | "VerticalText" | "Crosshair" | "Pointer" | "Progress" | "Wait" | "Alias" | "Move" | "None" | "NoDrop" | "NotAllowed" | "Grab" | "Grabbing" | "ColResize" | "RowResize" | "NResize" | "EResize" | "SResize" | "WResize" | "NsResize" | "EwResize" | "NeResize" | "NwResize" | "SeResize" | "SwResize" | "NeswResize" | "NwseResize" | "ZoomIn" | "ZoomOut", string>;
|
package/types/Tree/Node.d.ts
CHANGED
|
@@ -2,14 +2,14 @@ import React from 'react';
|
|
|
2
2
|
import type { FC, ReactElement, MouseEvent, KeyboardEvent, LiHTMLAttributes } from 'react';
|
|
3
3
|
import { FrameProps } from '../Frame/Frame';
|
|
4
4
|
export declare const icons: {
|
|
5
|
-
readonly FILE_MEDIA: React.
|
|
6
|
-
readonly FILE_TEXT: React.
|
|
7
|
-
readonly FILE_UNKNOWN: React.
|
|
8
|
-
readonly FILE_FONT: React.
|
|
9
|
-
readonly FILE_PEN: React.
|
|
10
|
-
readonly FILE_SETTINGS: React.
|
|
11
|
-
readonly FILE_TEXT_SETTINGS: React.
|
|
12
|
-
readonly FILE_EXECUTABLE: React.
|
|
5
|
+
readonly FILE_MEDIA: React.MemoExoticComponent<({ variant, ...rest }: import("@react95/icons").MediaCdProps) => React.JSX.Element>;
|
|
6
|
+
readonly FILE_TEXT: React.MemoExoticComponent<({ variant, ...rest }: import("@react95/icons").FileTextProps) => React.JSX.Element>;
|
|
7
|
+
readonly FILE_UNKNOWN: React.MemoExoticComponent<({ variant, ...rest }: import("@react95/icons").BatProps) => React.JSX.Element>;
|
|
8
|
+
readonly FILE_FONT: React.MemoExoticComponent<({ variant, ...rest }: import("@react95/icons").FileFont2Props) => React.JSX.Element>;
|
|
9
|
+
readonly FILE_PEN: React.MemoExoticComponent<({ variant, ...rest }: import("@react95/icons").FilePenProps) => React.JSX.Element>;
|
|
10
|
+
readonly FILE_SETTINGS: React.MemoExoticComponent<({ variant, ...rest }: import("@react95/icons").FileSettingsProps) => React.JSX.Element>;
|
|
11
|
+
readonly FILE_TEXT_SETTINGS: React.MemoExoticComponent<({ variant, ...rest }: import("@react95/icons").FileTextSettingsProps) => React.JSX.Element>;
|
|
12
|
+
readonly FILE_EXECUTABLE: React.MemoExoticComponent<({ variant, ...rest }: import("@react95/icons").BatExecProps) => React.JSX.Element>;
|
|
13
13
|
};
|
|
14
14
|
export type NodeProps = {
|
|
15
15
|
label: string;
|