@overmap-ai/blocks 1.0.7 → 1.0.8
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/ButtonGroup/ButtonList.d.ts +2 -1
- package/dist/blocks.js +8 -37
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +39 -161
- package/dist/blocks.umd.cjs.map +1 -1
- package/dist/index.d.ts +0 -4
- package/dist/style.css +16 -16
- package/package.json +102 -102
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
export * from "@radix-ui/colors";
|
|
2
|
-
export * from "@radix-ui/react-icons";
|
|
3
|
-
export { AccessibleIcon, Box, Grid, Container, Section, Heading, Blockquote, Code, Em, Kbd, Link, Quote, Strong, AspectRatio, Avatar, Callout, Card, HoverCard, TextField, Inset, RadioGroup, ScrollArea, Slider, Tabs, Portal, Slot, VisuallyHidden, } from "@radix-ui/themes";
|
|
4
|
-
export type { Responsive } from "@radix-ui/themes";
|
|
5
1
|
export * from "./Badge";
|
|
6
2
|
export * from "./Breadcrumb";
|
|
7
3
|
export * from "./Buttons";
|
package/dist/style.css
CHANGED
|
@@ -437,22 +437,22 @@
|
|
|
437
437
|
overflow: hidden;
|
|
438
438
|
text-overflow: ellipsis;
|
|
439
439
|
display: block;
|
|
440
|
-
}/*
|
|
441
|
-
Doubling up on the radix-themes class to increase specificity over the default.
|
|
442
|
-
Note: the class name must be "radix-themes" for nested themes to work.
|
|
443
|
-
|
|
444
|
-
See documentation at https://www.radix-ui.com/themes/docs/theme/token-reference
|
|
445
|
-
*/
|
|
446
|
-
.radix-themes.radix-themes {
|
|
447
|
-
--cursor-button: pointer;
|
|
448
|
-
--cursor-menu-item: pointer;
|
|
449
|
-
--cursor-checkbox: pointer;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
.rt-BaseButton {
|
|
453
|
-
/* fix the cursor token only being applied to HTML buttons */
|
|
454
|
-
cursor: var(--cursor-button);
|
|
455
|
-
}
|
|
440
|
+
}/*
|
|
441
|
+
Doubling up on the radix-themes class to increase specificity over the default.
|
|
442
|
+
Note: the class name must be "radix-themes" for nested themes to work.
|
|
443
|
+
|
|
444
|
+
See documentation at https://www.radix-ui.com/themes/docs/theme/token-reference
|
|
445
|
+
*/
|
|
446
|
+
.radix-themes.radix-themes {
|
|
447
|
+
--cursor-button: pointer;
|
|
448
|
+
--cursor-menu-item: pointer;
|
|
449
|
+
--cursor-checkbox: pointer;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.rt-BaseButton {
|
|
453
|
+
/* fix the cursor token only being applied to HTML buttons */
|
|
454
|
+
cursor: var(--cursor-button);
|
|
455
|
+
}
|
|
456
456
|
._light_1u8fs_1 span {
|
|
457
457
|
color: var(--gray-a3);
|
|
458
458
|
}
|
package/package.json
CHANGED
|
@@ -1,102 +1,102 @@
|
|
|
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-context-menu": "^2.1.5",
|
|
27
|
-
"@radix-ui/react-dialog": "^1.0.5",
|
|
28
|
-
"@radix-ui/react-dismissable-layer": "^1.0.5",
|
|
29
|
-
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
30
|
-
"@radix-ui/react-icons": "^1.3.0",
|
|
31
|
-
"@radix-ui/react-menu": "^2.0.6",
|
|
32
|
-
"@radix-ui/react-toast": "^1.1.5",
|
|
33
|
-
"@radix-ui/react-toggle-group": "^1.0.4",
|
|
34
|
-
"@radix-ui/react-toolbar": "^1.0.4",
|
|
35
|
-
"@radix-ui/themes": "^2.0.0",
|
|
36
|
-
"@table-library/react-table-library": "^4.1.7",
|
|
37
|
-
"feather-icons-react": "^0.6.2",
|
|
38
|
-
"re-resizable": "^6.9.11",
|
|
39
|
-
"react-device-detect": "^2.2.3",
|
|
40
|
-
"react-responsive": "^9.0.2",
|
|
41
|
-
"react-transition-group": "^4.4.5"
|
|
42
|
-
},
|
|
43
|
-
"peerDependencies": {
|
|
44
|
-
"react": "^18.2.0",
|
|
45
|
-
"react-dom": "^18.2.0"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@faker-js/faker": "^8.3.1",
|
|
49
|
-
"@rollup/plugin-commonjs": "^25.0.
|
|
50
|
-
"@storybook/addon-a11y": "^7.4.5",
|
|
51
|
-
"@storybook/addon-essentials": "^7.4.3",
|
|
52
|
-
"@storybook/addon-interactions": "^7.4.3",
|
|
53
|
-
"@storybook/addon-links": "^7.4.3",
|
|
54
|
-
"@storybook/blocks": "^7.4.3",
|
|
55
|
-
"@storybook/react": "^7.4.3",
|
|
56
|
-
"@storybook/react-vite": "^7.4.3",
|
|
57
|
-
"@storybook/testing-library": "^0.2.1",
|
|
58
|
-
"@storybook/types": "^7.4.6",
|
|
59
|
-
"@types/node": "^20.8.10",
|
|
60
|
-
"@types/react": "^18.2.15",
|
|
61
|
-
"@types/react-dom": "^18.2.7",
|
|
62
|
-
"@types/react-responsive": "^8.0.7",
|
|
63
|
-
"@types/react-transition-group": "^4.4.8",
|
|
64
|
-
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
65
|
-
"@typescript-eslint/parser": "^6.0.0",
|
|
66
|
-
"@vitejs/plugin-react-swc": "^3.3.2",
|
|
67
|
-
"classnames": "^2.3.2",
|
|
68
|
-
"eslint": "^8.45.0",
|
|
69
|
-
"eslint-config-prettier": "^9.0.0",
|
|
70
|
-
"eslint-plugin-prettier": "^5.0.0",
|
|
71
|
-
"eslint-plugin-react": "^7.33.2",
|
|
72
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
73
|
-
"eslint-plugin-react-refresh": "^0.4.3",
|
|
74
|
-
"eslint-plugin-storybook": "^0.6.13",
|
|
75
|
-
"husky": "^8.0.3",
|
|
76
|
-
"lint-staged": "^14.0.1",
|
|
77
|
-
"prettier": "^3.0.3",
|
|
78
|
-
"react": "^18.2.0",
|
|
79
|
-
"react-dom": "^18.2.0",
|
|
80
|
-
"rollup-plugin-polyfill-node": "^0.12.0",
|
|
81
|
-
"sass": "^1.68.0",
|
|
82
|
-
"storybook": "^7.4.3",
|
|
83
|
-
"typescript": "^5.0.2",
|
|
84
|
-
"vite": "^4.4.5",
|
|
85
|
-
"vite-plugin-dts": "^3.5.3",
|
|
86
|
-
"vite-plugin-externalize-deps": "^0.7.0"
|
|
87
|
-
},
|
|
88
|
-
"lint-staged": {
|
|
89
|
-
"*.{js,jsx,ts,tsx}": [
|
|
90
|
-
"yarn eslint --fix"
|
|
91
|
-
],
|
|
92
|
-
"*.{css,scss}": [
|
|
93
|
-
"prettier --write"
|
|
94
|
-
]
|
|
95
|
-
},
|
|
96
|
-
"files": [
|
|
97
|
-
"dist"
|
|
98
|
-
],
|
|
99
|
-
"resolutions": {
|
|
100
|
-
"jackspeak": "2.1.1"
|
|
101
|
-
}
|
|
102
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@overmap-ai/blocks",
|
|
3
|
+
"version": "1.0.8",
|
|
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-context-menu": "^2.1.5",
|
|
27
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
28
|
+
"@radix-ui/react-dismissable-layer": "^1.0.5",
|
|
29
|
+
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
30
|
+
"@radix-ui/react-icons": "^1.3.0",
|
|
31
|
+
"@radix-ui/react-menu": "^2.0.6",
|
|
32
|
+
"@radix-ui/react-toast": "^1.1.5",
|
|
33
|
+
"@radix-ui/react-toggle-group": "^1.0.4",
|
|
34
|
+
"@radix-ui/react-toolbar": "^1.0.4",
|
|
35
|
+
"@radix-ui/themes": "^2.0.0",
|
|
36
|
+
"@table-library/react-table-library": "^4.1.7",
|
|
37
|
+
"feather-icons-react": "^0.6.2",
|
|
38
|
+
"re-resizable": "^6.9.11",
|
|
39
|
+
"react-device-detect": "^2.2.3",
|
|
40
|
+
"react-responsive": "^9.0.2",
|
|
41
|
+
"react-transition-group": "^4.4.5"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"react": "^18.2.0",
|
|
45
|
+
"react-dom": "^18.2.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@faker-js/faker": "^8.3.1",
|
|
49
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
50
|
+
"@storybook/addon-a11y": "^7.4.5",
|
|
51
|
+
"@storybook/addon-essentials": "^7.4.3",
|
|
52
|
+
"@storybook/addon-interactions": "^7.4.3",
|
|
53
|
+
"@storybook/addon-links": "^7.4.3",
|
|
54
|
+
"@storybook/blocks": "^7.4.3",
|
|
55
|
+
"@storybook/react": "^7.4.3",
|
|
56
|
+
"@storybook/react-vite": "^7.4.3",
|
|
57
|
+
"@storybook/testing-library": "^0.2.1",
|
|
58
|
+
"@storybook/types": "^7.4.6",
|
|
59
|
+
"@types/node": "^20.8.10",
|
|
60
|
+
"@types/react": "^18.2.15",
|
|
61
|
+
"@types/react-dom": "^18.2.7",
|
|
62
|
+
"@types/react-responsive": "^8.0.7",
|
|
63
|
+
"@types/react-transition-group": "^4.4.8",
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
65
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
66
|
+
"@vitejs/plugin-react-swc": "^3.3.2",
|
|
67
|
+
"classnames": "^2.3.2",
|
|
68
|
+
"eslint": "^8.45.0",
|
|
69
|
+
"eslint-config-prettier": "^9.0.0",
|
|
70
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
71
|
+
"eslint-plugin-react": "^7.33.2",
|
|
72
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
73
|
+
"eslint-plugin-react-refresh": "^0.4.3",
|
|
74
|
+
"eslint-plugin-storybook": "^0.6.13",
|
|
75
|
+
"husky": "^8.0.3",
|
|
76
|
+
"lint-staged": "^14.0.1",
|
|
77
|
+
"prettier": "^3.0.3",
|
|
78
|
+
"react": "^18.2.0",
|
|
79
|
+
"react-dom": "^18.2.0",
|
|
80
|
+
"rollup-plugin-polyfill-node": "^0.12.0",
|
|
81
|
+
"sass": "^1.68.0",
|
|
82
|
+
"storybook": "^7.4.3",
|
|
83
|
+
"typescript": "^5.0.2",
|
|
84
|
+
"vite": "^4.4.5",
|
|
85
|
+
"vite-plugin-dts": "^3.5.3",
|
|
86
|
+
"vite-plugin-externalize-deps": "^0.7.0"
|
|
87
|
+
},
|
|
88
|
+
"lint-staged": {
|
|
89
|
+
"*.{js,jsx,ts,tsx}": [
|
|
90
|
+
"yarn eslint --fix"
|
|
91
|
+
],
|
|
92
|
+
"*.{css,scss}": [
|
|
93
|
+
"prettier --write"
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
"files": [
|
|
97
|
+
"dist"
|
|
98
|
+
],
|
|
99
|
+
"resolutions": {
|
|
100
|
+
"jackspeak": "2.1.1"
|
|
101
|
+
}
|
|
102
|
+
}
|