@commercetools-frontend/experimental-components 8.0.4 → 8.0.5
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/commercetools-frontend-experimental-components.cjs.dev.js +971 -790
- package/dist/commercetools-frontend-experimental-components.cjs.prod.js +969 -788
- package/dist/commercetools-frontend-experimental-components.esm.js +970 -788
- package/dist/declarations/src/components/recurrent-interval-picker/recurrent-interval-picker.d.ts +3 -2
- package/package.json +2 -2
- package/test-utils/dist/commercetools-frontend-experimental-components-test-utils.cjs.dev.js +1 -1
- package/test-utils/dist/commercetools-frontend-experimental-components-test-utils.cjs.prod.js +1 -1
- package/test-utils/dist/commercetools-frontend-experimental-components-test-utils.esm.js +1 -1
package/dist/declarations/src/components/recurrent-interval-picker/recurrent-interval-picker.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { TCustomEvent } from '@commercetools-frontend/ui-kit';
|
|
2
2
|
type TRecurrentIntervalPickerProps = {
|
|
3
3
|
name: string;
|
|
4
|
-
value: string;
|
|
4
|
+
value: string | string[];
|
|
5
5
|
onChange: (event: TCustomEvent) => void;
|
|
6
6
|
onBlur?: (event: TCustomEvent) => void;
|
|
7
7
|
onError?: (error: Error) => void;
|
|
8
8
|
isClearable?: boolean;
|
|
9
9
|
isDisabled?: boolean;
|
|
10
10
|
isReadOnly?: boolean;
|
|
11
|
+
isMulti?: boolean;
|
|
11
12
|
};
|
|
12
|
-
declare const RecurrentIntervalPicker: ({ name, value, onChange, onBlur, onError, isClearable, isDisabled, isReadOnly, }: TRecurrentIntervalPickerProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
13
|
+
declare const RecurrentIntervalPicker: ({ name, value, onChange, onBlur, onError, isClearable, isDisabled, isReadOnly, isMulti, }: TRecurrentIntervalPickerProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
13
14
|
export default RecurrentIntervalPicker;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-frontend/experimental-components",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@testing-library/react": "16.3.0",
|
|
66
66
|
"@types/debounce-promise": "3.1.9",
|
|
67
67
|
"@types/jest": "^29.5.2",
|
|
68
|
-
"@types/react": "19.2.
|
|
68
|
+
"@types/react": "19.2.7",
|
|
69
69
|
"@types/testing-library__jest-dom": "^5.14.6",
|
|
70
70
|
"formik": "2.4.6",
|
|
71
71
|
"graphql": "16.11.0",
|
package/test-utils/dist/commercetools-frontend-experimental-components-test-utils.cjs.dev.js
CHANGED
|
@@ -203,7 +203,7 @@ var FetchRoleBasedChannels = { kind: "Document", definitions: [{ kind: "Operatio
|
|
|
203
203
|
const createFetchStoreDistributionChannelsQueryMock = custom => _objectSpread({
|
|
204
204
|
request: {
|
|
205
205
|
variables: {
|
|
206
|
-
where:
|
|
206
|
+
where: "roles contains any (\"ProductDistribution\")",
|
|
207
207
|
limit: 500
|
|
208
208
|
},
|
|
209
209
|
query: FetchRoleBasedChannels
|
package/test-utils/dist/commercetools-frontend-experimental-components-test-utils.cjs.prod.js
CHANGED
|
@@ -203,7 +203,7 @@ var FetchRoleBasedChannels = { kind: "Document", definitions: [{ kind: "Operatio
|
|
|
203
203
|
const createFetchStoreDistributionChannelsQueryMock = custom => _objectSpread({
|
|
204
204
|
request: {
|
|
205
205
|
variables: {
|
|
206
|
-
where:
|
|
206
|
+
where: "roles contains any (\"ProductDistribution\")",
|
|
207
207
|
limit: 500
|
|
208
208
|
},
|
|
209
209
|
query: FetchRoleBasedChannels
|
|
@@ -186,7 +186,7 @@ var FetchRoleBasedChannels = { kind: "Document", definitions: [{ kind: "Operatio
|
|
|
186
186
|
const createFetchStoreDistributionChannelsQueryMock = custom => _objectSpread({
|
|
187
187
|
request: {
|
|
188
188
|
variables: {
|
|
189
|
-
where:
|
|
189
|
+
where: "roles contains any (\"ProductDistribution\")",
|
|
190
190
|
limit: 500
|
|
191
191
|
},
|
|
192
192
|
query: FetchRoleBasedChannels
|