@plasmicapp/react-web 0.2.286 → 0.2.288
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/dist/all.d.ts +3 -0
- package/package.json +24 -24
package/dist/all.d.ts
CHANGED
|
@@ -13505,6 +13505,8 @@ interface MultipleSelectionManager extends FocusState {
|
|
|
13505
13505
|
isDisabled(key: Key): boolean;
|
|
13506
13506
|
/** Sets the selection behavior for the collection. */
|
|
13507
13507
|
setSelectionBehavior(selectionBehavior: SelectionBehavior): void;
|
|
13508
|
+
/** Returns whether the given key is a hyperlink. */
|
|
13509
|
+
isLink(key: Key): boolean;
|
|
13508
13510
|
}
|
|
13509
13511
|
interface SelectionManagerOptions {
|
|
13510
13512
|
allowsCellSelection?: boolean;
|
|
@@ -13608,6 +13610,7 @@ declare class SelectionManager implements MultipleSelectionManager {
|
|
|
13608
13610
|
isSelectionEqual(selection: Set<Key>): boolean;
|
|
13609
13611
|
canSelectItem(key: Key): boolean;
|
|
13610
13612
|
isDisabled(key: Key): boolean;
|
|
13613
|
+
isLink(key: Key): boolean;
|
|
13611
13614
|
}
|
|
13612
13615
|
|
|
13613
13616
|
interface ListState<T> {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/react-web",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.288",
|
|
4
4
|
"description": "plasmic library for rendering in the presentational style",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -87,30 +87,30 @@
|
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
89
|
"@plasmicapp/auth-react": "0.0.15",
|
|
90
|
-
"@plasmicapp/data-sources": "0.1.
|
|
90
|
+
"@plasmicapp/data-sources": "0.1.134",
|
|
91
91
|
"@plasmicapp/data-sources-context": "0.1.17",
|
|
92
92
|
"@plasmicapp/host": "1.0.177",
|
|
93
93
|
"@plasmicapp/loader-splits": "1.0.44",
|
|
94
94
|
"@plasmicapp/prepass": "1.0.10",
|
|
95
95
|
"@plasmicapp/query": "0.1.74",
|
|
96
|
-
"@react-aria/checkbox": "^3.
|
|
97
|
-
"@react-aria/focus": "^3.
|
|
98
|
-
"@react-aria/interactions": "^3.
|
|
99
|
-
"@react-aria/listbox": "^3.
|
|
100
|
-
"@react-aria/menu": "^3.
|
|
101
|
-
"@react-aria/overlays": "^3.
|
|
102
|
-
"@react-aria/select": "^3.
|
|
103
|
-
"@react-aria/separator": "^3.
|
|
104
|
-
"@react-aria/ssr": "^3.
|
|
105
|
-
"@react-aria/switch": "^3.
|
|
106
|
-
"@react-aria/visually-hidden": "^3.
|
|
107
|
-
"@react-stately/collections": "^3.
|
|
108
|
-
"@react-stately/list": "^3.
|
|
109
|
-
"@react-stately/menu": "^3.
|
|
110
|
-
"@react-stately/overlays": "^3.
|
|
111
|
-
"@react-stately/select": "^3.
|
|
112
|
-
"@react-stately/toggle": "^3.
|
|
113
|
-
"@react-stately/tree": "^3.3
|
|
96
|
+
"@react-aria/checkbox": "^3.11.2",
|
|
97
|
+
"@react-aria/focus": "^3.14.3",
|
|
98
|
+
"@react-aria/interactions": "^3.19.1",
|
|
99
|
+
"@react-aria/listbox": "^3.11.1",
|
|
100
|
+
"@react-aria/menu": "^3.11.1",
|
|
101
|
+
"@react-aria/overlays": "^3.18.1",
|
|
102
|
+
"@react-aria/select": "^3.13.1",
|
|
103
|
+
"@react-aria/separator": "^3.3.7",
|
|
104
|
+
"@react-aria/ssr": "^3.8.0",
|
|
105
|
+
"@react-aria/switch": "^3.5.6",
|
|
106
|
+
"@react-aria/visually-hidden": "^3.8.6",
|
|
107
|
+
"@react-stately/collections": "^3.10.2",
|
|
108
|
+
"@react-stately/list": "^3.10.0",
|
|
109
|
+
"@react-stately/menu": "^3.5.6",
|
|
110
|
+
"@react-stately/overlays": "^3.6.3",
|
|
111
|
+
"@react-stately/select": "^3.5.5",
|
|
112
|
+
"@react-stately/toggle": "^3.6.3",
|
|
113
|
+
"@react-stately/tree": "^3.7.3",
|
|
114
114
|
"classnames": "^2.2.6",
|
|
115
115
|
"clone": "^2.1.2",
|
|
116
116
|
"dlv": "^1.1.3",
|
|
@@ -122,9 +122,9 @@
|
|
|
122
122
|
"@babel/preset-env": "^7.22.15",
|
|
123
123
|
"@babel/preset-react": "^7.22.15",
|
|
124
124
|
"@babel/preset-typescript": "^7.22.15",
|
|
125
|
-
"@react-types/overlays": "^3.
|
|
126
|
-
"@react-types/select": "^3.
|
|
127
|
-
"@react-types/shared": "^3.
|
|
125
|
+
"@react-types/overlays": "^3.8.3",
|
|
126
|
+
"@react-types/select": "^3.8.4",
|
|
127
|
+
"@react-types/shared": "^3.21.0",
|
|
128
128
|
"@rollup/plugin-commonjs": "^25.0.2",
|
|
129
129
|
"@rollup/plugin-json": "^6.0.0",
|
|
130
130
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
@@ -157,5 +157,5 @@
|
|
|
157
157
|
"react": ">=16.8.0",
|
|
158
158
|
"react-dom": ">=16.8.0"
|
|
159
159
|
},
|
|
160
|
-
"gitHead": "
|
|
160
|
+
"gitHead": "fe1b10634d5b307b30405e16449f99d724427adc"
|
|
161
161
|
}
|