@webiny/ui 5.40.6-beta.2 → 5.40.6-beta.3
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.
|
@@ -116,7 +116,7 @@ var DelayedOnChange = exports.DelayedOnChange = function DelayedOnChange(_ref) {
|
|
|
116
116
|
if (ev.key === "Tab") {
|
|
117
117
|
applyValue(ev.target.value);
|
|
118
118
|
realOnKeyDown(ev);
|
|
119
|
-
} else if (ev.key === "Enter"
|
|
119
|
+
} else if (ev.key === "Enter") {
|
|
120
120
|
applyValue(ev.target.value);
|
|
121
121
|
realOnKeyDown(ev);
|
|
122
122
|
} else {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_isEqual","_interopRequireDefault","_excluded","emptyFunction","undefined","DelayedOnChange","exports","_ref","children","other","_objectWithoutProperties2","default","firstMount","useRef","onChange","_other$delay","delay","initialValue","value","_useState","useState","_useState2","_slicedToArray2","setValue","useEffect","isEqual","localTimeout","React","applyValue","current","clearTimeout","onChangeLocal","useCallback","onValueStateChanged","nextValue","setTimeout","newProps","_objectSpread2","renderProp","child","cloneElement","props","realOnKeyDown","onKeyDown","realOnBlur","onBlur","ev","persist","target","key"],"sources":["DelayedOnChange.ts"],"sourcesContent":["import React, { useEffect, useRef, useState } from \"react\";\nimport isEqual from \"lodash/isEqual\";\n\nconst emptyFunction = (): undefined => {\n return undefined;\n};\n\nexport interface ApplyValueCb<TValue> {\n (value: TValue): void;\n}\n/**\n * This component is used to wrap Input and Textarea components to optimize form re-render.\n * These 2 are the only components that trigger form model change on each character input.\n * This means, whenever you type a letter an entire form re-renders.\n * On complex forms you will feel and see a significant delay if this component is not used.\n *\n * The logic behind this component is to serve as a middleware between Form and Input/Textarea, and only notify form of a change when\n * a user stops typing for given period of time (400ms by default).\n */\n\nexport interface OnChangeCallable<TValue = any> {\n (value: TValue, cb?: ApplyValueCb<TValue>): void;\n}\n\ninterface OnBlurCallable {\n (ev: React.SyntheticEvent): void;\n}\n\ninterface OnKeyDownCallable {\n (ev: React.KeyboardEvent<HTMLInputElement>): void;\n}\n\ninterface ChildrenCallableParams<TValue> {\n value: TValue;\n onChange: OnChangeCallable<TValue>;\n}\n\ninterface ChildrenCallable<TValue> {\n (params: ChildrenCallableParams<TValue>): React.ReactElement;\n}\n\nexport interface DelayedOnChangeProps<TValue> {\n value?: TValue;\n delay?: number;\n onChange?: OnChangeCallable<TValue>;\n onBlur?: OnBlurCallable;\n onKeyDown?: OnKeyDownCallable;\n children: React.ReactNode | ChildrenCallable<TValue | undefined>;\n}\n\nexport const DelayedOnChange = <TValue = any>({\n children,\n ...other\n}: DelayedOnChangeProps<TValue>) => {\n const firstMount = useRef(true);\n const { onChange, delay = 400, value: initialValue } = other;\n const [value, setValue] = useState<TValue | undefined>(initialValue);\n // Sync state and props\n useEffect(() => {\n // Do not update local state, if the incoming value is the same as the local state.\n // This is primarily an optimization for non-scalar values (objects).\n if (isEqual(initialValue, value)) {\n return;\n }\n\n setValue(initialValue);\n }, [initialValue]);\n\n const localTimeout = React.useRef<number | null>(null);\n\n const applyValue = (value: TValue | undefined) => {\n localTimeout.current && clearTimeout(localTimeout.current);\n localTimeout.current = null;\n if (!onChange) {\n return;\n }\n onChange(value as NonNullable<TValue>);\n };\n\n const onChangeLocal = React.useCallback((value: TValue | undefined) => {\n setValue(value);\n }, []);\n\n // this is fired upon change value state\n const onValueStateChanged = (nextValue: TValue | undefined) => {\n // We don't want to execute callbacks, if the value hasn't changed.\n if (isEqual(nextValue, initialValue)) {\n return;\n }\n\n localTimeout.current && clearTimeout(localTimeout.current);\n localTimeout.current = null;\n localTimeout.current = setTimeout(() => applyValue(nextValue), delay) as unknown as number;\n };\n\n // need to clear the timeout when unmounting the component\n useEffect(() => {\n return () => {\n if (!localTimeout.current) {\n return;\n }\n clearTimeout(localTimeout.current);\n localTimeout.current = null;\n };\n }, []);\n\n useEffect(() => {\n if (firstMount.current) {\n firstMount.current = false;\n return;\n }\n\n onValueStateChanged(value);\n }, [value]);\n\n const newProps = {\n ...other,\n value: value,\n onChange: onChangeLocal\n };\n\n const renderProp =\n typeof children === \"function\" ? (children as ChildrenCallable<TValue | undefined>) : null;\n const child = renderProp\n ? renderProp(newProps)\n : React.cloneElement(children as unknown as React.ReactElement, newProps);\n\n const props = { ...child.props };\n const realOnKeyDown = props.onKeyDown || emptyFunction;\n const realOnBlur = props.onBlur || emptyFunction;\n\n // Need to apply value if input lost focus\n const onBlur: OnBlurCallable = ev => {\n if (!ev[\"persist\"]) {\n return;\n }\n ev.persist();\n applyValue((ev.target as HTMLInputElement).value as any as TValue);\n realOnBlur(ev);\n };\n\n // Need to listen for TAB key to apply new value immediately, without delay. Otherwise validation will be triggered with old value.\n const onKeyDown: OnKeyDownCallable = ev => {\n ev.persist();\n if (ev.key === \"Tab\") {\n applyValue((ev.target as HTMLInputElement).value as any as TValue);\n realOnKeyDown(ev);\n } else if (ev.key === \"Enter\"
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_isEqual","_interopRequireDefault","_excluded","emptyFunction","undefined","DelayedOnChange","exports","_ref","children","other","_objectWithoutProperties2","default","firstMount","useRef","onChange","_other$delay","delay","initialValue","value","_useState","useState","_useState2","_slicedToArray2","setValue","useEffect","isEqual","localTimeout","React","applyValue","current","clearTimeout","onChangeLocal","useCallback","onValueStateChanged","nextValue","setTimeout","newProps","_objectSpread2","renderProp","child","cloneElement","props","realOnKeyDown","onKeyDown","realOnBlur","onBlur","ev","persist","target","key"],"sources":["DelayedOnChange.ts"],"sourcesContent":["import React, { useEffect, useRef, useState } from \"react\";\nimport isEqual from \"lodash/isEqual\";\n\nconst emptyFunction = (): undefined => {\n return undefined;\n};\n\nexport interface ApplyValueCb<TValue> {\n (value: TValue): void;\n}\n\n/**\n * This component is used to wrap Input and Textarea components to optimize form re-render.\n * These 2 are the only components that trigger form model change on each character input.\n * This means, whenever you type a letter an entire form re-renders.\n * On complex forms you will feel and see a significant delay if this component is not used.\n *\n * The logic behind this component is to serve as a middleware between Form and Input/Textarea, and only notify form of a change when\n * a user stops typing for given period of time (400ms by default).\n */\n\nexport interface OnChangeCallable<TValue = any> {\n (value: TValue, cb?: ApplyValueCb<TValue>): void;\n}\n\ninterface OnBlurCallable {\n (ev: React.SyntheticEvent): void;\n}\n\ninterface OnKeyDownCallable {\n (ev: React.KeyboardEvent<HTMLInputElement>): void;\n}\n\ninterface ChildrenCallableParams<TValue> {\n value: TValue;\n onChange: OnChangeCallable<TValue>;\n}\n\ninterface ChildrenCallable<TValue> {\n (params: ChildrenCallableParams<TValue>): React.ReactElement;\n}\n\nexport interface DelayedOnChangeProps<TValue> {\n value?: TValue;\n delay?: number;\n onChange?: OnChangeCallable<TValue>;\n onBlur?: OnBlurCallable;\n onKeyDown?: OnKeyDownCallable;\n children: React.ReactNode | ChildrenCallable<TValue | undefined>;\n}\n\nexport const DelayedOnChange = <TValue = any>({\n children,\n ...other\n}: DelayedOnChangeProps<TValue>) => {\n const firstMount = useRef(true);\n const { onChange, delay = 400, value: initialValue } = other;\n const [value, setValue] = useState<TValue | undefined>(initialValue);\n // Sync state and props\n useEffect(() => {\n // Do not update local state, if the incoming value is the same as the local state.\n // This is primarily an optimization for non-scalar values (objects).\n if (isEqual(initialValue, value)) {\n return;\n }\n\n setValue(initialValue);\n }, [initialValue]);\n\n const localTimeout = React.useRef<number | null>(null);\n\n const applyValue = (value: TValue | undefined) => {\n localTimeout.current && clearTimeout(localTimeout.current);\n localTimeout.current = null;\n if (!onChange) {\n return;\n }\n onChange(value as NonNullable<TValue>);\n };\n\n const onChangeLocal = React.useCallback((value: TValue | undefined) => {\n setValue(value);\n }, []);\n\n // this is fired upon change value state\n const onValueStateChanged = (nextValue: TValue | undefined) => {\n // We don't want to execute callbacks, if the value hasn't changed.\n if (isEqual(nextValue, initialValue)) {\n return;\n }\n\n localTimeout.current && clearTimeout(localTimeout.current);\n localTimeout.current = null;\n localTimeout.current = setTimeout(() => applyValue(nextValue), delay) as unknown as number;\n };\n\n // need to clear the timeout when unmounting the component\n useEffect(() => {\n return () => {\n if (!localTimeout.current) {\n return;\n }\n clearTimeout(localTimeout.current);\n localTimeout.current = null;\n };\n }, []);\n\n useEffect(() => {\n if (firstMount.current) {\n firstMount.current = false;\n return;\n }\n\n onValueStateChanged(value);\n }, [value]);\n\n const newProps = {\n ...other,\n value: value,\n onChange: onChangeLocal\n };\n\n const renderProp =\n typeof children === \"function\" ? (children as ChildrenCallable<TValue | undefined>) : null;\n const child = renderProp\n ? renderProp(newProps)\n : React.cloneElement(children as unknown as React.ReactElement, newProps);\n\n const props = { ...child.props };\n const realOnKeyDown = props.onKeyDown || emptyFunction;\n const realOnBlur = props.onBlur || emptyFunction;\n\n // Need to apply value if input lost focus\n const onBlur: OnBlurCallable = ev => {\n if (!ev[\"persist\"]) {\n return;\n }\n ev.persist();\n applyValue((ev.target as HTMLInputElement).value as any as TValue);\n realOnBlur(ev);\n };\n\n // Need to listen for TAB key to apply new value immediately, without delay. Otherwise validation will be triggered with old value.\n const onKeyDown: OnKeyDownCallable = ev => {\n ev.persist();\n if (ev.key === \"Tab\") {\n applyValue((ev.target as HTMLInputElement).value as any as TValue);\n realOnKeyDown(ev);\n } else if (ev.key === \"Enter\") {\n applyValue((ev.target as HTMLInputElement).value as any as TValue);\n realOnKeyDown(ev);\n } else {\n realOnKeyDown(ev);\n }\n };\n\n return React.cloneElement(child, { ...props, onBlur, onKeyDown });\n};\n"],"mappings":";;;;;;;;;;;AAAA,IAAAA,MAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,QAAA,GAAAC,sBAAA,CAAAF,OAAA;AAAqC,IAAAG,SAAA;AAErC,IAAMC,aAAa,GAAG,SAAhBA,aAAaA,CAAA,EAAoB;EACnC,OAAOC,SAAS;AACpB,CAAC;;AAMD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAgCO,IAAMC,eAAe,GAAAC,OAAA,CAAAD,eAAA,GAAG,SAAlBA,eAAeA,CAAAE,IAAA,EAGQ;EAAA,IAFhCC,QAAQ,GAAAD,IAAA,CAARC,QAAQ;IACLC,KAAK,OAAAC,yBAAA,CAAAC,OAAA,EAAAJ,IAAA,EAAAL,SAAA;EAER,IAAMU,UAAU,GAAG,IAAAC,aAAM,EAAC,IAAI,CAAC;EAC/B,IAAQC,QAAQ,GAAuCL,KAAK,CAApDK,QAAQ;IAAAC,YAAA,GAAuCN,KAAK,CAA1CO,KAAK;IAALA,KAAK,GAAAD,YAAA,cAAG,GAAG,GAAAA,YAAA;IAASE,YAAY,GAAKR,KAAK,CAA7BS,KAAK;EACpC,IAAAC,SAAA,GAA0B,IAAAC,eAAQ,EAAqBH,YAAY,CAAC;IAAAI,UAAA,OAAAC,eAAA,CAAAX,OAAA,EAAAQ,SAAA;IAA7DD,KAAK,GAAAG,UAAA;IAAEE,QAAQ,GAAAF,UAAA;EACtB;EACA,IAAAG,gBAAS,EAAC,YAAM;IACZ;IACA;IACA,IAAI,IAAAC,gBAAO,EAACR,YAAY,EAAEC,KAAK,CAAC,EAAE;MAC9B;IACJ;IAEAK,QAAQ,CAACN,YAAY,CAAC;EAC1B,CAAC,EAAE,CAACA,YAAY,CAAC,CAAC;EAElB,IAAMS,YAAY,GAAGC,cAAK,CAACd,MAAM,CAAgB,IAAI,CAAC;EAEtD,IAAMe,UAAU,GAAG,SAAbA,UAAUA,CAAIV,KAAyB,EAAK;IAC9CQ,YAAY,CAACG,OAAO,IAAIC,YAAY,CAACJ,YAAY,CAACG,OAAO,CAAC;IAC1DH,YAAY,CAACG,OAAO,GAAG,IAAI;IAC3B,IAAI,CAACf,QAAQ,EAAE;MACX;IACJ;IACAA,QAAQ,CAACI,KAA4B,CAAC;EAC1C,CAAC;EAED,IAAMa,aAAa,GAAGJ,cAAK,CAACK,WAAW,CAAC,UAACd,KAAyB,EAAK;IACnEK,QAAQ,CAACL,KAAK,CAAC;EACnB,CAAC,EAAE,EAAE,CAAC;;EAEN;EACA,IAAMe,mBAAmB,GAAG,SAAtBA,mBAAmBA,CAAIC,SAA6B,EAAK;IAC3D;IACA,IAAI,IAAAT,gBAAO,EAACS,SAAS,EAAEjB,YAAY,CAAC,EAAE;MAClC;IACJ;IAEAS,YAAY,CAACG,OAAO,IAAIC,YAAY,CAACJ,YAAY,CAACG,OAAO,CAAC;IAC1DH,YAAY,CAACG,OAAO,GAAG,IAAI;IAC3BH,YAAY,CAACG,OAAO,GAAGM,UAAU,CAAC;MAAA,OAAMP,UAAU,CAACM,SAAS,CAAC;IAAA,GAAElB,KAAK,CAAsB;EAC9F,CAAC;;EAED;EACA,IAAAQ,gBAAS,EAAC,YAAM;IACZ,OAAO,YAAM;MACT,IAAI,CAACE,YAAY,CAACG,OAAO,EAAE;QACvB;MACJ;MACAC,YAAY,CAACJ,YAAY,CAACG,OAAO,CAAC;MAClCH,YAAY,CAACG,OAAO,GAAG,IAAI;IAC/B,CAAC;EACL,CAAC,EAAE,EAAE,CAAC;EAEN,IAAAL,gBAAS,EAAC,YAAM;IACZ,IAAIZ,UAAU,CAACiB,OAAO,EAAE;MACpBjB,UAAU,CAACiB,OAAO,GAAG,KAAK;MAC1B;IACJ;IAEAI,mBAAmB,CAACf,KAAK,CAAC;EAC9B,CAAC,EAAE,CAACA,KAAK,CAAC,CAAC;EAEX,IAAMkB,QAAQ,OAAAC,cAAA,CAAA1B,OAAA,MAAA0B,cAAA,CAAA1B,OAAA,MACPF,KAAK;IACRS,KAAK,EAAEA,KAAK;IACZJ,QAAQ,EAAEiB;EAAa,EAC1B;EAED,IAAMO,UAAU,GACZ,OAAO9B,QAAQ,KAAK,UAAU,GAAIA,QAAQ,GAA4C,IAAI;EAC9F,IAAM+B,KAAK,GAAGD,UAAU,GAClBA,UAAU,CAACF,QAAQ,CAAC,gBACpBT,cAAK,CAACa,YAAY,CAAChC,QAAQ,EAAmC4B,QAAQ,CAAC;EAE7E,IAAMK,KAAK,OAAAJ,cAAA,CAAA1B,OAAA,MAAQ4B,KAAK,CAACE,KAAK,CAAE;EAChC,IAAMC,aAAa,GAAGD,KAAK,CAACE,SAAS,IAAIxC,aAAa;EACtD,IAAMyC,UAAU,GAAGH,KAAK,CAACI,MAAM,IAAI1C,aAAa;;EAEhD;EACA,IAAM0C,MAAsB,GAAG,SAAzBA,MAAsBA,CAAGC,EAAE,EAAI;IACjC,IAAI,CAACA,EAAE,CAAC,SAAS,CAAC,EAAE;MAChB;IACJ;IACAA,EAAE,CAACC,OAAO,CAAC,CAAC;IACZnB,UAAU,CAAEkB,EAAE,CAACE,MAAM,CAAsB9B,KAAsB,CAAC;IAClE0B,UAAU,CAACE,EAAE,CAAC;EAClB,CAAC;;EAED;EACA,IAAMH,SAA4B,GAAG,SAA/BA,SAA4BA,CAAGG,EAAE,EAAI;IACvCA,EAAE,CAACC,OAAO,CAAC,CAAC;IACZ,IAAID,EAAE,CAACG,GAAG,KAAK,KAAK,EAAE;MAClBrB,UAAU,CAAEkB,EAAE,CAACE,MAAM,CAAsB9B,KAAsB,CAAC;MAClEwB,aAAa,CAACI,EAAE,CAAC;IACrB,CAAC,MAAM,IAAIA,EAAE,CAACG,GAAG,KAAK,OAAO,EAAE;MAC3BrB,UAAU,CAAEkB,EAAE,CAACE,MAAM,CAAsB9B,KAAsB,CAAC;MAClEwB,aAAa,CAACI,EAAE,CAAC;IACrB,CAAC,MAAM;MACHJ,aAAa,CAACI,EAAE,CAAC;IACrB;EACJ,CAAC;EAED,oBAAOnB,cAAK,CAACa,YAAY,CAACD,KAAK,MAAAF,cAAA,CAAA1B,OAAA,MAAA0B,cAAA,CAAA1B,OAAA,MAAO8B,KAAK;IAAEI,MAAM,EAANA,MAAM;IAAEF,SAAS,EAATA;EAAS,EAAE,CAAC;AACrE,CAAC","ignoreList":[]}
|
package/Select/styled.js
CHANGED
|
@@ -11,7 +11,7 @@ var _templateObject, _templateObject2;
|
|
|
11
11
|
/**
|
|
12
12
|
* @type {string}
|
|
13
13
|
*/
|
|
14
|
-
var webinySelect = exports.webinySelect = (0, _emotion.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n display: grid;\n background-color: transparent;\n border-color: transparent;\n color: var(--webiny-theme-color-primary);\n
|
|
14
|
+
var webinySelect = exports.webinySelect = (0, _emotion.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n display: grid;\n background-color: transparent;\n border-color: transparent;\n color: var(--webiny-theme-color-primary);\n width: 100%;\n\n .rmwc-select__native-control {\n opacity: 0;\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n }\n\n > .mdc-select__anchor {\n width: auto !important;\n }\n\n &.webiny-ui-select--size-medium {\n &.mdc-select,\n .mdc-select__anchor {\n height: 40px;\n .mdc-select__selected-text {\n font-size: 0.95rem;\n }\n }\n }\n\n &.webiny-ui-select--size-small {\n &.mdc-select,\n .mdc-select__anchor {\n height: 30px;\n .mdc-select__native-control {\n padding-top: 0;\n }\n .mdc-select__selected-text {\n font-size: 0.9rem;\n }\n }\n }\n"])));
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
17
|
* @type {string}
|
package/Select/styled.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_emotion","require","_templateObject","_templateObject2","webinySelect","exports","css","_taggedTemplateLiteral2","default","noLabel"],"sources":["styled.tsx"],"sourcesContent":["import { css } from \"emotion\";\n\n/**\n * @type {string}\n */\nexport const webinySelect = css`\n display: grid;\n background-color: transparent;\n border-color: transparent;\n color: var(--webiny-theme-color-primary);\n
|
|
1
|
+
{"version":3,"names":["_emotion","require","_templateObject","_templateObject2","webinySelect","exports","css","_taggedTemplateLiteral2","default","noLabel"],"sources":["styled.tsx"],"sourcesContent":["import { css } from \"emotion\";\n\n/**\n * @type {string}\n */\nexport const webinySelect = css`\n display: grid;\n background-color: transparent;\n border-color: transparent;\n color: var(--webiny-theme-color-primary);\n width: 100%;\n\n .rmwc-select__native-control {\n opacity: 0;\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n }\n\n > .mdc-select__anchor {\n width: auto !important;\n }\n\n &.webiny-ui-select--size-medium {\n &.mdc-select,\n .mdc-select__anchor {\n height: 40px;\n .mdc-select__selected-text {\n font-size: 0.95rem;\n }\n }\n }\n\n &.webiny-ui-select--size-small {\n &.mdc-select,\n .mdc-select__anchor {\n height: 30px;\n .mdc-select__native-control {\n padding-top: 0;\n }\n .mdc-select__selected-text {\n font-size: 0.9rem;\n }\n }\n }\n`;\n\n/**\n * @type {string}\n */\nexport const noLabel = css`\n &.mdc-select {\n height: 35px;\n .mdc-select__native-control {\n padding-top: 0;\n }\n &.mdc-select--box {\n .mdc-select__native-control {\n height: 35px;\n padding-top: 5px;\n }\n }\n`;\n"],"mappings":";;;;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AAA8B,IAAAC,eAAA,EAAAC,gBAAA;AAE9B;AACA;AACA;AACO,IAAMC,YAAY,GAAAC,OAAA,CAAAD,YAAA,OAAGE,YAAG,EAAAJ,eAAA,KAAAA,eAAA,OAAAK,uBAAA,CAAAC,OAAA,i8BA0C9B;;AAED;AACA;AACA;AACO,IAAMC,OAAO,GAAAJ,OAAA,CAAAI,OAAA,OAAGH,YAAG,EAAAH,gBAAA,KAAAA,gBAAA,OAAAI,uBAAA,CAAAC,OAAA,iRAYzB","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/ui",
|
|
3
|
-
"version": "5.40.6-beta.
|
|
3
|
+
"version": "5.40.6-beta.3",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -81,10 +81,10 @@
|
|
|
81
81
|
"@types/react-custom-scrollbars": "4.0.10",
|
|
82
82
|
"@types/react-transition-group": "4.4.5",
|
|
83
83
|
"@types/shortid": "0.0.29",
|
|
84
|
-
"@webiny/cli": "5.40.6-beta.
|
|
85
|
-
"@webiny/form": "5.40.6-beta.
|
|
86
|
-
"@webiny/project-utils": "5.40.6-beta.
|
|
87
|
-
"@webiny/validation": "5.40.6-beta.
|
|
84
|
+
"@webiny/cli": "5.40.6-beta.3",
|
|
85
|
+
"@webiny/form": "5.40.6-beta.3",
|
|
86
|
+
"@webiny/project-utils": "5.40.6-beta.3",
|
|
87
|
+
"@webiny/validation": "5.40.6-beta.3",
|
|
88
88
|
"babel-loader": "9.1.2",
|
|
89
89
|
"execa": "5.1.1",
|
|
90
90
|
"jest-dom": "3.5.0",
|
|
@@ -123,5 +123,5 @@
|
|
|
123
123
|
]
|
|
124
124
|
}
|
|
125
125
|
},
|
|
126
|
-
"gitHead": "
|
|
126
|
+
"gitHead": "f9da84b373e62f9f269599c4301e5e4418a98d51"
|
|
127
127
|
}
|