@overmap-ai/blocks 1.0.28 → 1.0.29-item-stack.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/README.md +3 -3
- package/dist/blocks.js +19 -1
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +19 -1
- package/dist/blocks.umd.cjs.map +1 -1
- package/dist/style.css +16 -16
- package/package.json +109 -109
package/dist/style.css
CHANGED
|
@@ -597,22 +597,22 @@
|
|
|
597
597
|
overflow: hidden;
|
|
598
598
|
text-overflow: ellipsis;
|
|
599
599
|
display: block;
|
|
600
|
-
}/*
|
|
601
|
-
Doubling up on the radix-themes class to increase specificity over the default.
|
|
602
|
-
Note: the class name must be "radix-themes" for nested themes to work.
|
|
603
|
-
|
|
604
|
-
See documentation at https://www.radix-ui.com/themes/docs/theme/token-reference
|
|
605
|
-
*/
|
|
606
|
-
.radix-themes.radix-themes {
|
|
607
|
-
--cursor-button: pointer;
|
|
608
|
-
--cursor-menu-item: pointer;
|
|
609
|
-
--cursor-checkbox: pointer;
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
.rt-BaseButton {
|
|
613
|
-
/* fix the cursor token only being applied to HTML buttons */
|
|
614
|
-
cursor: var(--cursor-button);
|
|
615
|
-
}
|
|
600
|
+
}/*
|
|
601
|
+
Doubling up on the radix-themes class to increase specificity over the default.
|
|
602
|
+
Note: the class name must be "radix-themes" for nested themes to work.
|
|
603
|
+
|
|
604
|
+
See documentation at https://www.radix-ui.com/themes/docs/theme/token-reference
|
|
605
|
+
*/
|
|
606
|
+
.radix-themes.radix-themes {
|
|
607
|
+
--cursor-button: pointer;
|
|
608
|
+
--cursor-menu-item: pointer;
|
|
609
|
+
--cursor-checkbox: pointer;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.rt-BaseButton {
|
|
613
|
+
/* fix the cursor token only being applied to HTML buttons */
|
|
614
|
+
cursor: var(--cursor-button);
|
|
615
|
+
}
|
|
616
616
|
button {
|
|
617
617
|
all: unset;
|
|
618
618
|
}
|
package/package.json
CHANGED
|
@@ -1,109 +1,109 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@overmap-ai/blocks",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "A collection of React components for building Overmap's UI.",
|
|
5
|
-
"private": false,
|
|
6
|
-
"author": "Wôrdn Inc.",
|
|
7
|
-
"license": "UNLICENSED",
|
|
8
|
-
"type": "module",
|
|
9
|
-
"main": "dist/blocks.umd.cjs",
|
|
10
|
-
"module": "dist/blocks.js",
|
|
11
|
-
"types": "dist/index.d.ts",
|
|
12
|
-
"scripts": {
|
|
13
|
-
"dev": "yarn storybook",
|
|
14
|
-
"storybook": "storybook dev -p 6006",
|
|
15
|
-
"build": "tsc --noEmit && vite build",
|
|
16
|
-
"lint": "eslint src .storybook stories --ext ts,tsx,js,jsx --report-unused-disable-directives --max-warnings 0",
|
|
17
|
-
"lint:fix": "yarn lint --fix",
|
|
18
|
-
"preview": "vite preview",
|
|
19
|
-
"prepare": "husky install",
|
|
20
|
-
"build-storybook": "storybook build"
|
|
21
|
-
},
|
|
22
|
-
"dependencies": {
|
|
23
|
-
"@emotion/react": "^11.11.1",
|
|
24
|
-
"@radix-ui/colors": "^3.0.0",
|
|
25
|
-
"@radix-ui/react-accordion": "^1.1.2",
|
|
26
|
-
"@radix-ui/react-collapsible": "^1.0.3",
|
|
27
|
-
"@radix-ui/react-context-menu": "^2.1.5",
|
|
28
|
-
"@radix-ui/react-dialog": "^1.0.5",
|
|
29
|
-
"@radix-ui/react-dismissable-layer": "^1.0.5",
|
|
30
|
-
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
31
|
-
"@radix-ui/react-icons": "^1.3.0",
|
|
32
|
-
"@radix-ui/react-menu": "^2.0.6",
|
|
33
|
-
"@radix-ui/react-slot": "^1.0.2",
|
|
34
|
-
"@radix-ui/react-toast": "^1.1.5",
|
|
35
|
-
"@radix-ui/react-toggle": "^1.0.3",
|
|
36
|
-
"@radix-ui/react-toggle-group": "^1.0.4",
|
|
37
|
-
"@radix-ui/react-toolbar": "^1.0.4",
|
|
38
|
-
"@radix-ui/themes": "^2.0.0",
|
|
39
|
-
"@react-hook/resize-observer": "^1.2.6",
|
|
40
|
-
"@table-library/react-table-library": "^4.1.7",
|
|
41
|
-
"re-resizable": "^6.9.11",
|
|
42
|
-
"react-device-detect": "^2.2.3",
|
|
43
|
-
"react-error-boundary": "^4.0.13",
|
|
44
|
-
"react-icons": "^5.2.1",
|
|
45
|
-
"react-responsive": "^9.0.2",
|
|
46
|
-
"react-transition-group": "^4.4.5"
|
|
47
|
-
},
|
|
48
|
-
"peerDependencies": {
|
|
49
|
-
"react": "^18.2.0",
|
|
50
|
-
"react-dom": "^18.2.0"
|
|
51
|
-
},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@faker-js/faker": "^8.3.1",
|
|
54
|
-
"@rollup/plugin-commonjs": "^25.0.7",
|
|
55
|
-
"@storybook/addon-a11y": "^7.4.5",
|
|
56
|
-
"@storybook/addon-essentials": "^7.4.3",
|
|
57
|
-
"@storybook/addon-interactions": "^7.4.3",
|
|
58
|
-
"@storybook/addon-links": "^7.4.3",
|
|
59
|
-
"@storybook/blocks": "^7.4.3",
|
|
60
|
-
"@storybook/react": "^7.4.3",
|
|
61
|
-
"@storybook/react-vite": "^7.4.3",
|
|
62
|
-
"@storybook/testing-library": "^0.2.1",
|
|
63
|
-
"@storybook/types": "^7.4.6",
|
|
64
|
-
"@types/node": "^20.8.10",
|
|
65
|
-
"@types/react": "^18.2.15",
|
|
66
|
-
"@types/react-dom": "^18.2.7",
|
|
67
|
-
"@types/react-responsive": "^8.0.7",
|
|
68
|
-
"@types/react-transition-group": "^4.4.8",
|
|
69
|
-
"@types/uuid": "^9.0.8",
|
|
70
|
-
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
71
|
-
"@typescript-eslint/parser": "^6.0.0",
|
|
72
|
-
"@vitejs/plugin-react-swc": "^3.3.2",
|
|
73
|
-
"classnames": "^2.3.2",
|
|
74
|
-
"eslint": "^8.45.0",
|
|
75
|
-
"eslint-config-prettier": "^9.0.0",
|
|
76
|
-
"eslint-plugin-prettier": "^5.0.0",
|
|
77
|
-
"eslint-plugin-react": "^7.33.2",
|
|
78
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
79
|
-
"eslint-plugin-react-refresh": "^0.4.3",
|
|
80
|
-
"eslint-plugin-storybook": "^0.6.13",
|
|
81
|
-
"feather-icons-react": "^0.7.0",
|
|
82
|
-
"husky": "^8.0.3",
|
|
83
|
-
"lint-staged": "^14.0.1",
|
|
84
|
-
"prettier": "^3.0.3",
|
|
85
|
-
"react": "^18.2.0",
|
|
86
|
-
"react-dom": "^18.2.0",
|
|
87
|
-
"rollup-plugin-polyfill-node": "^0.12.0",
|
|
88
|
-
"sass": "^1.68.0",
|
|
89
|
-
"storybook": "^7.4.3",
|
|
90
|
-
"typescript": "^5.0.2",
|
|
91
|
-
"vite": "^4.4.5",
|
|
92
|
-
"vite-plugin-dts": "^3.5.3",
|
|
93
|
-
"vite-plugin-externalize-deps": "^0.7.0"
|
|
94
|
-
},
|
|
95
|
-
"lint-staged": {
|
|
96
|
-
"*.{js,jsx,ts,tsx}": [
|
|
97
|
-
"yarn eslint --fix"
|
|
98
|
-
],
|
|
99
|
-
"*.{css,scss}": [
|
|
100
|
-
"prettier --write"
|
|
101
|
-
]
|
|
102
|
-
},
|
|
103
|
-
"files": [
|
|
104
|
-
"dist"
|
|
105
|
-
],
|
|
106
|
-
"resolutions": {
|
|
107
|
-
"jackspeak": "2.1.1"
|
|
108
|
-
}
|
|
109
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@overmap-ai/blocks",
|
|
3
|
+
"version": "1.0.29-item-stack.0",
|
|
4
|
+
"description": "A collection of React components for building Overmap's UI.",
|
|
5
|
+
"private": false,
|
|
6
|
+
"author": "Wôrdn Inc.",
|
|
7
|
+
"license": "UNLICENSED",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"main": "dist/blocks.umd.cjs",
|
|
10
|
+
"module": "dist/blocks.js",
|
|
11
|
+
"types": "dist/index.d.ts",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "yarn storybook",
|
|
14
|
+
"storybook": "storybook dev -p 6006",
|
|
15
|
+
"build": "tsc --noEmit && vite build",
|
|
16
|
+
"lint": "eslint src .storybook stories --ext ts,tsx,js,jsx --report-unused-disable-directives --max-warnings 0",
|
|
17
|
+
"lint:fix": "yarn lint --fix",
|
|
18
|
+
"preview": "vite preview",
|
|
19
|
+
"prepare": "husky install",
|
|
20
|
+
"build-storybook": "storybook build"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@emotion/react": "^11.11.1",
|
|
24
|
+
"@radix-ui/colors": "^3.0.0",
|
|
25
|
+
"@radix-ui/react-accordion": "^1.1.2",
|
|
26
|
+
"@radix-ui/react-collapsible": "^1.0.3",
|
|
27
|
+
"@radix-ui/react-context-menu": "^2.1.5",
|
|
28
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
29
|
+
"@radix-ui/react-dismissable-layer": "^1.0.5",
|
|
30
|
+
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
31
|
+
"@radix-ui/react-icons": "^1.3.0",
|
|
32
|
+
"@radix-ui/react-menu": "^2.0.6",
|
|
33
|
+
"@radix-ui/react-slot": "^1.0.2",
|
|
34
|
+
"@radix-ui/react-toast": "^1.1.5",
|
|
35
|
+
"@radix-ui/react-toggle": "^1.0.3",
|
|
36
|
+
"@radix-ui/react-toggle-group": "^1.0.4",
|
|
37
|
+
"@radix-ui/react-toolbar": "^1.0.4",
|
|
38
|
+
"@radix-ui/themes": "^2.0.0",
|
|
39
|
+
"@react-hook/resize-observer": "^1.2.6",
|
|
40
|
+
"@table-library/react-table-library": "^4.1.7",
|
|
41
|
+
"re-resizable": "^6.9.11",
|
|
42
|
+
"react-device-detect": "^2.2.3",
|
|
43
|
+
"react-error-boundary": "^4.0.13",
|
|
44
|
+
"react-icons": "^5.2.1",
|
|
45
|
+
"react-responsive": "^9.0.2",
|
|
46
|
+
"react-transition-group": "^4.4.5"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"react": "^18.2.0",
|
|
50
|
+
"react-dom": "^18.2.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@faker-js/faker": "^8.3.1",
|
|
54
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
55
|
+
"@storybook/addon-a11y": "^7.4.5",
|
|
56
|
+
"@storybook/addon-essentials": "^7.4.3",
|
|
57
|
+
"@storybook/addon-interactions": "^7.4.3",
|
|
58
|
+
"@storybook/addon-links": "^7.4.3",
|
|
59
|
+
"@storybook/blocks": "^7.4.3",
|
|
60
|
+
"@storybook/react": "^7.4.3",
|
|
61
|
+
"@storybook/react-vite": "^7.4.3",
|
|
62
|
+
"@storybook/testing-library": "^0.2.1",
|
|
63
|
+
"@storybook/types": "^7.4.6",
|
|
64
|
+
"@types/node": "^20.8.10",
|
|
65
|
+
"@types/react": "^18.2.15",
|
|
66
|
+
"@types/react-dom": "^18.2.7",
|
|
67
|
+
"@types/react-responsive": "^8.0.7",
|
|
68
|
+
"@types/react-transition-group": "^4.4.8",
|
|
69
|
+
"@types/uuid": "^9.0.8",
|
|
70
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
71
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
72
|
+
"@vitejs/plugin-react-swc": "^3.3.2",
|
|
73
|
+
"classnames": "^2.3.2",
|
|
74
|
+
"eslint": "^8.45.0",
|
|
75
|
+
"eslint-config-prettier": "^9.0.0",
|
|
76
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
77
|
+
"eslint-plugin-react": "^7.33.2",
|
|
78
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
79
|
+
"eslint-plugin-react-refresh": "^0.4.3",
|
|
80
|
+
"eslint-plugin-storybook": "^0.6.13",
|
|
81
|
+
"feather-icons-react": "^0.7.0",
|
|
82
|
+
"husky": "^8.0.3",
|
|
83
|
+
"lint-staged": "^14.0.1",
|
|
84
|
+
"prettier": "^3.0.3",
|
|
85
|
+
"react": "^18.2.0",
|
|
86
|
+
"react-dom": "^18.2.0",
|
|
87
|
+
"rollup-plugin-polyfill-node": "^0.12.0",
|
|
88
|
+
"sass": "^1.68.0",
|
|
89
|
+
"storybook": "^7.4.3",
|
|
90
|
+
"typescript": "^5.0.2",
|
|
91
|
+
"vite": "^4.4.5",
|
|
92
|
+
"vite-plugin-dts": "^3.5.3",
|
|
93
|
+
"vite-plugin-externalize-deps": "^0.7.0"
|
|
94
|
+
},
|
|
95
|
+
"lint-staged": {
|
|
96
|
+
"*.{js,jsx,ts,tsx}": [
|
|
97
|
+
"yarn eslint --fix"
|
|
98
|
+
],
|
|
99
|
+
"*.{css,scss}": [
|
|
100
|
+
"prettier --write"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
"files": [
|
|
104
|
+
"dist"
|
|
105
|
+
],
|
|
106
|
+
"resolutions": {
|
|
107
|
+
"jackspeak": "2.1.1"
|
|
108
|
+
}
|
|
109
|
+
}
|