@overmap-ai/blocks 1.0.27-custom-table-component.4 → 1.0.27-remix-icon.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/Buttons/index.d.ts +1 -1
- package/dist/Buttons/typings.d.ts +1 -0
- package/dist/CollapsibleTree/CollapsibleTree.d.ts +5 -0
- package/dist/CollapsibleTree/context.d.ts +14 -0
- package/dist/CollapsibleTree/index.d.ts +2 -0
- package/dist/CollapsibleTree/typings.d.ts +71 -0
- package/dist/DialogMenu/Provider.d.ts +6 -0
- package/dist/DialogMenu/components/DialogCommandMenu.d.ts +6 -0
- package/dist/DialogMenu/components/DialogMultiSelectMenu.d.ts +6 -0
- package/dist/DialogMenu/components/DialogSelectMenu.d.ts +7 -0
- package/dist/DialogMenu/components/index.d.ts +3 -0
- package/dist/DialogMenu/constants.d.ts +3 -0
- package/dist/DialogMenu/content/Content.d.ts +8 -0
- package/dist/DialogMenu/content/SubContent.d.ts +5 -0
- package/dist/DialogMenu/content/index.d.ts +2 -0
- package/dist/DialogMenu/context.d.ts +14 -0
- package/dist/DialogMenu/groups/Group.d.ts +3 -0
- package/dist/DialogMenu/groups/MultiSelectGroup.d.ts +3 -0
- package/dist/DialogMenu/groups/SelectGroup.d.ts +3 -0
- package/dist/DialogMenu/groups/index.d.ts +3 -0
- package/dist/DialogMenu/index.d.ts +20 -0
- package/dist/DialogMenu/items/Item.d.ts +3 -0
- package/dist/DialogMenu/items/MultiSelectItem.d.ts +3 -0
- package/dist/DialogMenu/items/SelectItem.d.ts +3 -0
- package/dist/DialogMenu/items/Separator.d.ts +4 -0
- package/dist/DialogMenu/items/SubTrigger.d.ts +3 -0
- package/dist/DialogMenu/items/index.d.ts +5 -0
- package/dist/DialogMenu/root/Root.d.ts +6 -0
- package/dist/DialogMenu/root/index.d.ts +1 -0
- package/dist/DialogMenu/typings.d.ts +59 -0
- package/dist/Dialogs/BaseDialog/BaseDialog.d.ts +3 -0
- package/dist/Dialogs/BaseDialog/index.d.ts +2 -0
- package/dist/Dialogs/BaseDialog/typings.d.ts +31 -0
- package/dist/Dialogs/Overlay/Overlay.d.ts +3 -30
- package/dist/MultiPagePopover/typings.d.ts +1 -0
- package/dist/OvermapInputItem/OvermapInputItem.d.ts +6 -0
- package/dist/OvermapInputItem/index.d.ts +2 -0
- package/dist/OvermapInputItem/typings.d.ts +4 -0
- package/dist/OvermapItem/typings.d.ts +4 -0
- package/dist/OvermapItemGroup/OvermapItemGroup.d.ts +3 -0
- package/dist/OvermapItemGroup/context.d.ts +9 -0
- package/dist/OvermapItemGroup/index.d.ts +3 -0
- package/dist/OvermapItemGroup/typings.d.ts +7 -0
- package/dist/RiIcon/RiIcon.d.ts +7 -0
- package/dist/RiIcon/index.d.ts +1 -0
- package/dist/SelectContext/Provider.d.ts +14 -0
- package/dist/SelectContext/context.d.ts +5 -0
- package/dist/SelectContext/index.d.ts +3 -0
- package/dist/SelectContext/typings.d.ts +10 -0
- package/dist/Table/Table.d.ts +3 -11
- package/dist/Table/typings.d.ts +27 -0
- package/dist/blocks.js +4517 -3761
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +3736 -2984
- package/dist/blocks.umd.cjs.map +1 -1
- package/dist/constants.d.ts +1 -0
- package/dist/index.d.ts +33 -29
- package/dist/style.css +522 -358
- package/package.json +109 -105
- package/dist/Pagination/PaginationControls.d.ts +0 -8
- package/dist/Pagination/hooks.d.ts +0 -2
- package/dist/Pagination/index.d.ts +0 -3
- package/dist/Pagination/typings.d.ts +0 -6
package/package.json
CHANGED
|
@@ -1,105 +1,109 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@overmap-ai/blocks",
|
|
3
|
-
"version": "1.0.27-
|
|
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-
|
|
27
|
-
"@radix-ui/react-
|
|
28
|
-
"@radix-ui/react-
|
|
29
|
-
"@radix-ui/react-
|
|
30
|
-
"@radix-ui/react-
|
|
31
|
-
"@radix-ui/react-
|
|
32
|
-
"@radix-ui/react-
|
|
33
|
-
"@radix-ui/react-
|
|
34
|
-
"@radix-ui/react-
|
|
35
|
-
"@radix-ui/react-toggle
|
|
36
|
-
"@radix-ui/react-
|
|
37
|
-
"@radix-ui/
|
|
38
|
-
"@
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"react-
|
|
44
|
-
"react-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"react": "^
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
56
|
-
"@storybook/addon-
|
|
57
|
-
"@storybook/
|
|
58
|
-
"@storybook/
|
|
59
|
-
"@storybook/
|
|
60
|
-
"@storybook/
|
|
61
|
-
"@storybook/
|
|
62
|
-
"@
|
|
63
|
-
"@
|
|
64
|
-
"@types
|
|
65
|
-
"@types/
|
|
66
|
-
"@types/react
|
|
67
|
-
"@
|
|
68
|
-
"@
|
|
69
|
-
"@
|
|
70
|
-
"
|
|
71
|
-
"eslint": "^
|
|
72
|
-
"eslint
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"eslint
|
|
76
|
-
"eslint-
|
|
77
|
-
"eslint-plugin-
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@overmap-ai/blocks",
|
|
3
|
+
"version": "1.0.27-remix-icon.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
|
+
"feather-icons-react": "^0.6.2",
|
|
42
|
+
"re-resizable": "^6.9.11",
|
|
43
|
+
"react-device-detect": "^2.2.3",
|
|
44
|
+
"react-error-boundary": "^4.0.13",
|
|
45
|
+
"react-icons": "^5.2.1",
|
|
46
|
+
"react-responsive": "^9.0.2",
|
|
47
|
+
"react-transition-group": "^4.4.5"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"react": "^18.2.0",
|
|
51
|
+
"react-dom": "^18.2.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@faker-js/faker": "^8.3.1",
|
|
55
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
56
|
+
"@storybook/addon-a11y": "^7.4.5",
|
|
57
|
+
"@storybook/addon-essentials": "^7.4.3",
|
|
58
|
+
"@storybook/addon-interactions": "^7.4.3",
|
|
59
|
+
"@storybook/addon-links": "^7.4.3",
|
|
60
|
+
"@storybook/blocks": "^7.4.3",
|
|
61
|
+
"@storybook/react": "^7.4.3",
|
|
62
|
+
"@storybook/react-vite": "^7.4.3",
|
|
63
|
+
"@storybook/testing-library": "^0.2.1",
|
|
64
|
+
"@storybook/types": "^7.4.6",
|
|
65
|
+
"@types/node": "^20.8.10",
|
|
66
|
+
"@types/react": "^18.2.15",
|
|
67
|
+
"@types/react-dom": "^18.2.7",
|
|
68
|
+
"@types/react-responsive": "^8.0.7",
|
|
69
|
+
"@types/react-transition-group": "^4.4.8",
|
|
70
|
+
"@types/uuid": "^9.0.8",
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
72
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
73
|
+
"@vitejs/plugin-react-swc": "^3.3.2",
|
|
74
|
+
"classnames": "^2.3.2",
|
|
75
|
+
"eslint": "^8.45.0",
|
|
76
|
+
"eslint-config-prettier": "^9.0.0",
|
|
77
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
78
|
+
"eslint-plugin-react": "^7.33.2",
|
|
79
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
80
|
+
"eslint-plugin-react-refresh": "^0.4.3",
|
|
81
|
+
"eslint-plugin-storybook": "^0.6.13",
|
|
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,8 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { PaginationStatus } from "./typings.ts";
|
|
3
|
-
import { Size } from "../typings.ts";
|
|
4
|
-
type PaginationControlsProps = Pick<PaginationStatus<unknown>, "currentPage" | "setCurrentPage" | "visiblePages"> & {
|
|
5
|
-
size: Size;
|
|
6
|
-
};
|
|
7
|
-
export declare const PaginationControls: import("react").MemoExoticComponent<(props: PaginationControlsProps) => import("react/jsx-runtime").JSX.Element | null>;
|
|
8
|
-
export {};
|