@particle-academy/fancy-sheets 0.1.0 → 0.1.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.
- package/README.md +392 -0
- package/dist/index.cjs +34 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +35 -13
- package/dist/index.js.map +1 -1
- package/dist/styles.css.map +1 -1
- package/package.json +56 -56
package/dist/styles.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/styles.css"],"sourcesContent":["/* @particle-academy/fancy-sheets — spreadsheet styles */\n\n/* Grid cell borders */\n[data-fancy-sheets-grid] {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\n}\n\n/* Cell editor positioning */\n[data-fancy-sheets-cell-editor] {\n box-sizing: border-box;\n}\n\n/* Scrollbar styling */\n[data-fancy-sheets-grid]::-webkit-scrollbar {\n width: 10px;\n height: 10px;\n}\n\n[data-fancy-sheets-grid]::-webkit-scrollbar-track {\n background: transparent;\n}\n\n[data-fancy-sheets-grid]::-webkit-scrollbar-thumb {\n background: #a1a1aa;\n border-radius: 5px;\n}\n\n.dark [data-fancy-sheets-grid]::-webkit-scrollbar-thumb {\n background: #52525b;\n}\n"],"mappings":";AAGA,CAAC;AACC;AAAA,IAAa,aAAa;AAAA,IAAE,kBAAkB;AAAA,IAAE,UAAU;AAAA,IAAE,MAAM;AAAA,IAAE;AACtE;AAGA,CAAC;AACC,cAAY;AACd;AAGA,CAAC,uBAAuB;AACtB,SAAO;AACP,UAAQ;AACV;AAEA,CAAC,uBAAuB;AACtB,cAAY;AACd;AAEA,CAAC,uBAAuB;AACtB,cAAY;AACZ,iBAAe;AACjB;AAEA,CAAC,KAAK,CAAC,uBAAuB;AAC5B,cAAY;AACd;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../src/styles.css"],"sourcesContent":["/* @particle-academy/fancy-sheets — spreadsheet styles */\r\n\r\n/* Grid cell borders */\r\n[data-fancy-sheets-grid] {\r\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, sans-serif;\r\n}\r\n\r\n/* Cell editor positioning */\r\n[data-fancy-sheets-cell-editor] {\r\n box-sizing: border-box;\r\n}\r\n\r\n/* Scrollbar styling */\r\n[data-fancy-sheets-grid]::-webkit-scrollbar {\r\n width: 10px;\r\n height: 10px;\r\n}\r\n\r\n[data-fancy-sheets-grid]::-webkit-scrollbar-track {\r\n background: transparent;\r\n}\r\n\r\n[data-fancy-sheets-grid]::-webkit-scrollbar-thumb {\r\n background: #a1a1aa;\r\n border-radius: 5px;\r\n}\r\n\r\n.dark [data-fancy-sheets-grid]::-webkit-scrollbar-thumb {\r\n background: #52525b;\r\n}\r\n"],"mappings":";AAGA,CAAC;AACC;AAAA,IAAa,aAAa;AAAA,IAAE,kBAAkB;AAAA,IAAE,UAAU;AAAA,IAAE,MAAM;AAAA,IAAE;AACtE;AAGA,CAAC;AACC,cAAY;AACd;AAGA,CAAC,uBAAuB;AACtB,SAAO;AACP,UAAQ;AACV;AAEA,CAAC,uBAAuB;AACtB,cAAY;AACd;AAEA,CAAC,uBAAuB;AACtB,cAAY;AACZ,iBAAe;AACjB;AAEA,CAAC,KAAK,CAAC,uBAAuB;AAC5B,cAAY;AACd;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@particle-academy/fancy-sheets",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Spreadsheet editor with formula engine, multi-sheet tabs, and full cell editing",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.cjs",
|
|
7
|
-
"module": "./dist/index.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"import": {
|
|
12
|
-
"types": "./dist/index.d.ts",
|
|
13
|
-
"default": "./dist/index.js"
|
|
14
|
-
},
|
|
15
|
-
"require": {
|
|
16
|
-
"types": "./dist/index.d.cts",
|
|
17
|
-
"default": "./dist/index.cjs"
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"./styles.css": "./dist/styles.css"
|
|
21
|
-
},
|
|
22
|
-
"files": [
|
|
23
|
-
"dist",
|
|
24
|
-
"README.md"
|
|
25
|
-
],
|
|
26
|
-
"scripts": {
|
|
27
|
-
"build": "tsup",
|
|
28
|
-
"dev": "tsup --watch",
|
|
29
|
-
"lint": "tsc --noEmit",
|
|
30
|
-
"clean": "rm -rf dist",
|
|
31
|
-
"prepublishOnly": "tsup"
|
|
32
|
-
},
|
|
33
|
-
"peerDependencies": {
|
|
34
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
35
|
-
"react-dom": "^18.0.0 || ^19.0.0",
|
|
36
|
-
"@particle-academy/react-fancy": "^1.5.0"
|
|
37
|
-
},
|
|
38
|
-
"dependencies": {},
|
|
39
|
-
"devDependencies": {
|
|
40
|
-
"@particle-academy/react-fancy": "workspace:*",
|
|
41
|
-
"@types/react": "^19.0.0",
|
|
42
|
-
"@types/react-dom": "^19.0.0",
|
|
43
|
-
"react": "^19.0.0",
|
|
44
|
-
"react-dom": "^19.0.0",
|
|
45
|
-
"tsup": "^8.5.0",
|
|
46
|
-
"typescript": "^5.8.0"
|
|
47
|
-
},
|
|
48
|
-
"publishConfig": {
|
|
49
|
-
"access": "public"
|
|
50
|
-
},
|
|
51
|
-
"license": "MIT",
|
|
52
|
-
"sideEffects": [
|
|
53
|
-
"**/*.css",
|
|
54
|
-
"src/engine/formula/functions/*.ts"
|
|
55
|
-
]
|
|
56
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@particle-academy/fancy-sheets",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Spreadsheet editor with formula engine, multi-sheet tabs, and full cell editing",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/index.d.cts",
|
|
17
|
+
"default": "./dist/index.cjs"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"./styles.css": "./dist/styles.css"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"README.md"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup",
|
|
28
|
+
"dev": "tsup --watch",
|
|
29
|
+
"lint": "tsc --noEmit",
|
|
30
|
+
"clean": "rm -rf dist",
|
|
31
|
+
"prepublishOnly": "tsup"
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
35
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
36
|
+
"@particle-academy/react-fancy": "^1.5.0"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@particle-academy/react-fancy": "workspace:*",
|
|
41
|
+
"@types/react": "^19.0.0",
|
|
42
|
+
"@types/react-dom": "^19.0.0",
|
|
43
|
+
"react": "^19.0.0",
|
|
44
|
+
"react-dom": "^19.0.0",
|
|
45
|
+
"tsup": "^8.5.0",
|
|
46
|
+
"typescript": "^5.8.0"
|
|
47
|
+
},
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public"
|
|
50
|
+
},
|
|
51
|
+
"license": "MIT",
|
|
52
|
+
"sideEffects": [
|
|
53
|
+
"**/*.css",
|
|
54
|
+
"src/engine/formula/functions/*.ts"
|
|
55
|
+
]
|
|
56
|
+
}
|