drab 3.0.0 → 3.0.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 +125 -69
- package/dist/components/Breakpoint.svelte +33 -33
- package/dist/components/ContextMenu.svelte +84 -84
- package/dist/components/CopyButton.svelte +64 -61
- package/dist/components/CopyButton.svelte.d.ts +6 -4
- package/dist/components/DataTable.svelte +143 -143
- package/dist/components/Details.svelte +85 -85
- package/dist/components/Editor.svelte +98 -98
- package/dist/components/FrettedChord.svelte +154 -154
- package/dist/components/FullscreenButton.svelte +60 -60
- package/dist/components/Popover.svelte +77 -77
- package/dist/components/ShareButton.svelte +85 -85
- package/dist/components/Sheet.svelte +128 -118
- package/dist/components/Sheet.svelte.d.ts +10 -0
- package/dist/components/YouTube.svelte +33 -33
- package/package.json +81 -81
package/package.json
CHANGED
@@ -1,81 +1,81 @@
|
|
1
|
-
{
|
2
|
-
"name": "drab",
|
3
|
-
"version": "3.0.
|
4
|
-
"description": "An Unstyled Svelte Component Library",
|
5
|
-
"keywords": [
|
6
|
-
"components",
|
7
|
-
"Svelte",
|
8
|
-
"SvelteKit",
|
9
|
-
"Breakpoint",
|
10
|
-
"ContextMenu",
|
11
|
-
"Copy",
|
12
|
-
"DataTable",
|
13
|
-
"Details",
|
14
|
-
"Editor",
|
15
|
-
"FrettedChord",
|
16
|
-
"Fullscreen",
|
17
|
-
"Popover",
|
18
|
-
"Share",
|
19
|
-
"Sheet",
|
20
|
-
"YouTube"
|
21
|
-
],
|
22
|
-
"homepage": "https://drab.robino.dev",
|
23
|
-
"license": "MIT",
|
24
|
-
"author": {
|
25
|
-
"name": "Ross Robino",
|
26
|
-
"url": "https://robino.dev"
|
27
|
-
},
|
28
|
-
"repository": "github:rossrobino/drab",
|
29
|
-
"scripts": {
|
30
|
-
"dev": "vite dev",
|
31
|
-
"build": "vite build && npm run package",
|
32
|
-
"preview": "vite preview",
|
33
|
-
"package": "svelte-kit sync && svelte-package && publint",
|
34
|
-
"prepublishOnly": "npm run package",
|
35
|
-
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
36
|
-
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
37
|
-
"lint": "prettier --check . && eslint .",
|
38
|
-
"format": "prettier --write . --plugin=prettier-plugin-svelte --plugin=prettier-plugin-tailwindcss",
|
39
|
-
"pub": "npm publish --access public",
|
40
|
-
"doc": "node src/scripts/documentProps.js && node src/scripts/documentExamples.js && node src/scripts/copyReadMe.js"
|
41
|
-
},
|
42
|
-
"exports": {
|
43
|
-
".": {
|
44
|
-
"types": "./dist/index.d.ts",
|
45
|
-
"svelte": "./dist/index.js"
|
46
|
-
}
|
47
|
-
},
|
48
|
-
"files": [
|
49
|
-
"dist"
|
50
|
-
],
|
51
|
-
"dependencies": {
|
52
|
-
"svelte": "^4.2.0"
|
53
|
-
},
|
54
|
-
"devDependencies": {
|
55
|
-
"@sveltejs/adapter-vercel": "^3.0.3",
|
56
|
-
"@sveltejs/kit": "^1.22.6",
|
57
|
-
"@sveltejs/package": "^2.2.1",
|
58
|
-
"@tailwindcss/typography": "^0.5.9",
|
59
|
-
"@types/node": "^20.5.3",
|
60
|
-
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
61
|
-
"@typescript-eslint/parser": "^6.4.1",
|
62
|
-
"autoprefixer": "^10.4.15",
|
63
|
-
"eslint": "^8.47.0",
|
64
|
-
"eslint-config-prettier": "^9.0.0",
|
65
|
-
"eslint-plugin-svelte": "^2.33.0",
|
66
|
-
"marked": "^7.0.4",
|
67
|
-
"postcss": "^8.4.28",
|
68
|
-
"prettier": "^3.0.2",
|
69
|
-
"prettier-plugin-svelte": "^3.0.3",
|
70
|
-
"prettier-plugin-tailwindcss": "^0.5.3",
|
71
|
-
"publint": "^0.2.2",
|
72
|
-
"svelte-check": "^3.5.0",
|
73
|
-
"tailwindcss": "^3.3.3",
|
74
|
-
"tslib": "^2.6.2",
|
75
|
-
"typescript": "^5.1.6",
|
76
|
-
"vite": "^4.4.9"
|
77
|
-
},
|
78
|
-
"svelte": "./dist/index.js",
|
79
|
-
"types": "./dist/index.d.ts",
|
80
|
-
"type": "module"
|
81
|
-
}
|
1
|
+
{
|
2
|
+
"name": "drab",
|
3
|
+
"version": "3.0.2",
|
4
|
+
"description": "An Unstyled Svelte Component Library",
|
5
|
+
"keywords": [
|
6
|
+
"components",
|
7
|
+
"Svelte",
|
8
|
+
"SvelteKit",
|
9
|
+
"Breakpoint",
|
10
|
+
"ContextMenu",
|
11
|
+
"Copy",
|
12
|
+
"DataTable",
|
13
|
+
"Details",
|
14
|
+
"Editor",
|
15
|
+
"FrettedChord",
|
16
|
+
"Fullscreen",
|
17
|
+
"Popover",
|
18
|
+
"Share",
|
19
|
+
"Sheet",
|
20
|
+
"YouTube"
|
21
|
+
],
|
22
|
+
"homepage": "https://drab.robino.dev",
|
23
|
+
"license": "MIT",
|
24
|
+
"author": {
|
25
|
+
"name": "Ross Robino",
|
26
|
+
"url": "https://robino.dev"
|
27
|
+
},
|
28
|
+
"repository": "github:rossrobino/drab",
|
29
|
+
"scripts": {
|
30
|
+
"dev": "vite dev",
|
31
|
+
"build": "vite build && npm run package",
|
32
|
+
"preview": "vite preview",
|
33
|
+
"package": "svelte-kit sync && svelte-package && publint",
|
34
|
+
"prepublishOnly": "npm run package",
|
35
|
+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
36
|
+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
37
|
+
"lint": "prettier --check . && eslint .",
|
38
|
+
"format": "prettier --write . --plugin=prettier-plugin-svelte --plugin=prettier-plugin-tailwindcss",
|
39
|
+
"pub": "npm publish --access public",
|
40
|
+
"doc": "node src/scripts/documentProps.js && node src/scripts/documentExamples.js && node src/scripts/copyReadMe.js"
|
41
|
+
},
|
42
|
+
"exports": {
|
43
|
+
".": {
|
44
|
+
"types": "./dist/index.d.ts",
|
45
|
+
"svelte": "./dist/index.js"
|
46
|
+
}
|
47
|
+
},
|
48
|
+
"files": [
|
49
|
+
"dist"
|
50
|
+
],
|
51
|
+
"dependencies": {
|
52
|
+
"svelte": "^4.2.0"
|
53
|
+
},
|
54
|
+
"devDependencies": {
|
55
|
+
"@sveltejs/adapter-vercel": "^3.0.3",
|
56
|
+
"@sveltejs/kit": "^1.22.6",
|
57
|
+
"@sveltejs/package": "^2.2.1",
|
58
|
+
"@tailwindcss/typography": "^0.5.9",
|
59
|
+
"@types/node": "^20.5.3",
|
60
|
+
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
61
|
+
"@typescript-eslint/parser": "^6.4.1",
|
62
|
+
"autoprefixer": "^10.4.15",
|
63
|
+
"eslint": "^8.47.0",
|
64
|
+
"eslint-config-prettier": "^9.0.0",
|
65
|
+
"eslint-plugin-svelte": "^2.33.0",
|
66
|
+
"marked": "^7.0.4",
|
67
|
+
"postcss": "^8.4.28",
|
68
|
+
"prettier": "^3.0.2",
|
69
|
+
"prettier-plugin-svelte": "^3.0.3",
|
70
|
+
"prettier-plugin-tailwindcss": "^0.5.3",
|
71
|
+
"publint": "^0.2.2",
|
72
|
+
"svelte-check": "^3.5.0",
|
73
|
+
"tailwindcss": "^3.3.3",
|
74
|
+
"tslib": "^2.6.2",
|
75
|
+
"typescript": "^5.1.6",
|
76
|
+
"vite": "^4.4.9"
|
77
|
+
},
|
78
|
+
"svelte": "./dist/index.js",
|
79
|
+
"types": "./dist/index.d.ts",
|
80
|
+
"type": "module"
|
81
|
+
}
|