@carto/ps-react-ui 5.0.0-widgets.10 → 5.0.0-widgets.12
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/types/widgets/actions/lock-selection/types.d.ts +0 -2
- package/dist/types/widgets/category/style.d.ts +0 -1
- package/dist/widgets/actions.js +417 -420
- package/dist/widgets/actions.js.map +1 -1
- package/dist/widgets/category.js +233 -273
- package/dist/widgets/category.js.map +1 -1
- package/dist/widgets/wrapper.js.map +1 -1
- package/package.json +1 -1
|
@@ -7,8 +7,6 @@ import { BaseWidgetState } from '../../stores/types';
|
|
|
7
7
|
export interface LockSelectionStateProps {
|
|
8
8
|
/** Whether the selection is currently locked */
|
|
9
9
|
isLocked?: boolean;
|
|
10
|
-
/** The items that are locked (by name) */
|
|
11
|
-
lockedItems?: string[];
|
|
12
10
|
}
|
|
13
11
|
/**
|
|
14
12
|
* Widget state extension for lock selection functionality.
|