m2m-components 5.0.1-alpha-2886745.0 → 5.0.1
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/{chunk-4IOVPUT6.mjs → chunk-WN6RHT3S.mjs} +55 -32
- package/chunk-WN6RHT3S.mjs.map +1 -0
- package/feedback/index.js +54 -31
- package/feedback/index.js.map +1 -1
- package/feedback/index.mjs +1 -1
- package/index.mjs +1 -1
- package/package.json +3 -3
- package/chunk-4IOVPUT6.mjs.map +0 -1
|
@@ -6193,17 +6193,17 @@ var init_emotion_styled_base_esm = __esm({
|
|
|
6193
6193
|
tag.charCodeAt(0) > 96 ? testOmitPropsOnStringTag : testOmitPropsOnComponent;
|
|
6194
6194
|
};
|
|
6195
6195
|
composeShouldForwardProps = function composeShouldForwardProps2(tag, options, isReal) {
|
|
6196
|
-
var
|
|
6196
|
+
var shouldForwardProp;
|
|
6197
6197
|
if (options) {
|
|
6198
6198
|
var optionsShouldForwardProp = options.shouldForwardProp;
|
|
6199
|
-
|
|
6199
|
+
shouldForwardProp = tag.__emotion_forwardProp && optionsShouldForwardProp ? function(propName) {
|
|
6200
6200
|
return tag.__emotion_forwardProp(propName) && optionsShouldForwardProp(propName);
|
|
6201
6201
|
} : optionsShouldForwardProp;
|
|
6202
6202
|
}
|
|
6203
|
-
if (typeof
|
|
6204
|
-
|
|
6203
|
+
if (typeof shouldForwardProp !== "function" && isReal) {
|
|
6204
|
+
shouldForwardProp = tag.__emotion_forwardProp;
|
|
6205
6205
|
}
|
|
6206
|
-
return
|
|
6206
|
+
return shouldForwardProp;
|
|
6207
6207
|
};
|
|
6208
6208
|
ILLEGAL_ESCAPE_SEQUENCE_ERROR3 = `You have illegal escape sequence in your template literal, most likely inside content's property value.
|
|
6209
6209
|
Because you write your CSS inside a JavaScript string you actually have to do double escaping, so for example "content: '\\00d7';" should become "content: '\\\\00d7';".
|
|
@@ -6244,8 +6244,8 @@ https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_liter
|
|
|
6244
6244
|
identifierName = options.label;
|
|
6245
6245
|
targetClassName = options.target;
|
|
6246
6246
|
}
|
|
6247
|
-
var
|
|
6248
|
-
var defaultShouldForwardProp =
|
|
6247
|
+
var shouldForwardProp = composeShouldForwardProps(tag, options, isReal);
|
|
6248
|
+
var defaultShouldForwardProp = shouldForwardProp || getDefaultShouldForwardProp(baseTag);
|
|
6249
6249
|
var shouldUseAs = !defaultShouldForwardProp("as");
|
|
6250
6250
|
return function() {
|
|
6251
6251
|
var args = arguments;
|
|
@@ -6291,7 +6291,7 @@ https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_liter
|
|
|
6291
6291
|
if (targetClassName !== void 0) {
|
|
6292
6292
|
className += " " + targetClassName;
|
|
6293
6293
|
}
|
|
6294
|
-
var finalShouldForwardProp = shouldUseAs &&
|
|
6294
|
+
var finalShouldForwardProp = shouldUseAs && shouldForwardProp === void 0 ? getDefaultShouldForwardProp(FinalTag) : defaultShouldForwardProp;
|
|
6295
6295
|
var newProps = {};
|
|
6296
6296
|
for (var _key in props) {
|
|
6297
6297
|
if (shouldUseAs && _key === "as")
|
|
@@ -6316,7 +6316,7 @@ https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_liter
|
|
|
6316
6316
|
Styled.__emotion_real = Styled;
|
|
6317
6317
|
Styled.__emotion_base = baseTag;
|
|
6318
6318
|
Styled.__emotion_styles = styles;
|
|
6319
|
-
Styled.__emotion_forwardProp =
|
|
6319
|
+
Styled.__emotion_forwardProp = shouldForwardProp;
|
|
6320
6320
|
Object.defineProperty(Styled, "toString", {
|
|
6321
6321
|
value: function value() {
|
|
6322
6322
|
if (targetClassName === void 0 && process.env.NODE_ENV !== "production") {
|
|
@@ -6514,7 +6514,7 @@ var init_emotion_styled_esm = __esm({
|
|
|
6514
6514
|
}
|
|
6515
6515
|
});
|
|
6516
6516
|
|
|
6517
|
-
// ../../node_modules/@mui/styled-engine/StyledEngineProvider/StyledEngineProvider.js
|
|
6517
|
+
// ../../node_modules/@mui/icons-material/node_modules/@mui/styled-engine/StyledEngineProvider/StyledEngineProvider.js
|
|
6518
6518
|
import * as React12 from "react";
|
|
6519
6519
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6520
6520
|
function StyledEngineProvider(props) {
|
|
@@ -6529,7 +6529,7 @@ function StyledEngineProvider(props) {
|
|
|
6529
6529
|
}
|
|
6530
6530
|
var import_prop_types2, cache;
|
|
6531
6531
|
var init_StyledEngineProvider = __esm({
|
|
6532
|
-
"../../node_modules/@mui/styled-engine/StyledEngineProvider/StyledEngineProvider.js"() {
|
|
6532
|
+
"../../node_modules/@mui/icons-material/node_modules/@mui/styled-engine/StyledEngineProvider/StyledEngineProvider.js"() {
|
|
6533
6533
|
"use strict";
|
|
6534
6534
|
"use client";
|
|
6535
6535
|
import_prop_types2 = __toESM(require_prop_types());
|
|
@@ -6556,16 +6556,16 @@ var init_StyledEngineProvider = __esm({
|
|
|
6556
6556
|
}
|
|
6557
6557
|
});
|
|
6558
6558
|
|
|
6559
|
-
// ../../node_modules/@mui/styled-engine/StyledEngineProvider/index.js
|
|
6559
|
+
// ../../node_modules/@mui/icons-material/node_modules/@mui/styled-engine/StyledEngineProvider/index.js
|
|
6560
6560
|
var init_StyledEngineProvider2 = __esm({
|
|
6561
|
-
"../../node_modules/@mui/styled-engine/StyledEngineProvider/index.js"() {
|
|
6561
|
+
"../../node_modules/@mui/icons-material/node_modules/@mui/styled-engine/StyledEngineProvider/index.js"() {
|
|
6562
6562
|
"use strict";
|
|
6563
6563
|
"use client";
|
|
6564
6564
|
init_StyledEngineProvider();
|
|
6565
6565
|
}
|
|
6566
6566
|
});
|
|
6567
6567
|
|
|
6568
|
-
// ../../node_modules/@mui/styled-engine/GlobalStyles/GlobalStyles.js
|
|
6568
|
+
// ../../node_modules/@mui/icons-material/node_modules/@mui/styled-engine/GlobalStyles/GlobalStyles.js
|
|
6569
6569
|
import * as React13 from "react";
|
|
6570
6570
|
import { jsx as _jsx2 } from "react/jsx-runtime";
|
|
6571
6571
|
function isEmpty(obj) {
|
|
@@ -6583,7 +6583,7 @@ function GlobalStyles(props) {
|
|
|
6583
6583
|
}
|
|
6584
6584
|
var import_prop_types3;
|
|
6585
6585
|
var init_GlobalStyles = __esm({
|
|
6586
|
-
"../../node_modules/@mui/styled-engine/GlobalStyles/GlobalStyles.js"() {
|
|
6586
|
+
"../../node_modules/@mui/icons-material/node_modules/@mui/styled-engine/GlobalStyles/GlobalStyles.js"() {
|
|
6587
6587
|
"use strict";
|
|
6588
6588
|
"use client";
|
|
6589
6589
|
import_prop_types3 = __toESM(require_prop_types());
|
|
@@ -6595,16 +6595,16 @@ var init_GlobalStyles = __esm({
|
|
|
6595
6595
|
}
|
|
6596
6596
|
});
|
|
6597
6597
|
|
|
6598
|
-
// ../../node_modules/@mui/styled-engine/GlobalStyles/index.js
|
|
6598
|
+
// ../../node_modules/@mui/icons-material/node_modules/@mui/styled-engine/GlobalStyles/index.js
|
|
6599
6599
|
var init_GlobalStyles2 = __esm({
|
|
6600
|
-
"../../node_modules/@mui/styled-engine/GlobalStyles/index.js"() {
|
|
6600
|
+
"../../node_modules/@mui/icons-material/node_modules/@mui/styled-engine/GlobalStyles/index.js"() {
|
|
6601
6601
|
"use strict";
|
|
6602
6602
|
"use client";
|
|
6603
6603
|
init_GlobalStyles();
|
|
6604
6604
|
}
|
|
6605
6605
|
});
|
|
6606
6606
|
|
|
6607
|
-
// ../../node_modules/@mui/styled-engine/index.js
|
|
6607
|
+
// ../../node_modules/@mui/icons-material/node_modules/@mui/styled-engine/index.js
|
|
6608
6608
|
var styled_engine_exports = {};
|
|
6609
6609
|
__export(styled_engine_exports, {
|
|
6610
6610
|
GlobalStyles: () => GlobalStyles,
|
|
@@ -6632,7 +6632,7 @@ function styled(tag, options) {
|
|
|
6632
6632
|
}
|
|
6633
6633
|
var internal_processStyles;
|
|
6634
6634
|
var init_styled_engine = __esm({
|
|
6635
|
-
"../../node_modules/@mui/styled-engine/index.js"() {
|
|
6635
|
+
"../../node_modules/@mui/icons-material/node_modules/@mui/styled-engine/index.js"() {
|
|
6636
6636
|
"use strict";
|
|
6637
6637
|
"use client";
|
|
6638
6638
|
init_emotion_styled_esm();
|
|
@@ -7967,7 +7967,7 @@ var require_createStyled = __commonJS({
|
|
|
7967
7967
|
value: true
|
|
7968
7968
|
});
|
|
7969
7969
|
exports.default = createStyled4;
|
|
7970
|
-
exports.shouldForwardProp =
|
|
7970
|
+
exports.shouldForwardProp = shouldForwardProp;
|
|
7971
7971
|
exports.systemDefaultTheme = void 0;
|
|
7972
7972
|
var _extends22 = _interopRequireDefault(require_extends3());
|
|
7973
7973
|
var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require_objectWithoutPropertiesLoose());
|
|
@@ -8013,7 +8013,7 @@ var require_createStyled = __commonJS({
|
|
|
8013
8013
|
// it's a lowercase character
|
|
8014
8014
|
tag.charCodeAt(0) > 96;
|
|
8015
8015
|
}
|
|
8016
|
-
function
|
|
8016
|
+
function shouldForwardProp(prop) {
|
|
8017
8017
|
return prop !== "ownerState" && prop !== "theme" && prop !== "sx" && prop !== "as";
|
|
8018
8018
|
}
|
|
8019
8019
|
var systemDefaultTheme2 = exports.systemDefaultTheme = (0, _createTheme.default)();
|
|
@@ -8083,8 +8083,8 @@ var require_createStyled = __commonJS({
|
|
|
8083
8083
|
const {
|
|
8084
8084
|
themeId,
|
|
8085
8085
|
defaultTheme: defaultTheme2 = systemDefaultTheme2,
|
|
8086
|
-
rootShouldForwardProp: rootShouldForwardProp2 =
|
|
8087
|
-
slotShouldForwardProp =
|
|
8086
|
+
rootShouldForwardProp: rootShouldForwardProp2 = shouldForwardProp,
|
|
8087
|
+
slotShouldForwardProp: slotShouldForwardProp2 = shouldForwardProp
|
|
8088
8088
|
} = input;
|
|
8089
8089
|
const systemSx = (props) => {
|
|
8090
8090
|
return (0, _styleFunctionSx.default)((0, _extends22.default)({}, props, {
|
|
@@ -8118,11 +8118,11 @@ var require_createStyled = __commonJS({
|
|
|
8118
8118
|
label = `${componentName}-${lowercaseFirstLetter(componentSlot || "Root")}`;
|
|
8119
8119
|
}
|
|
8120
8120
|
}
|
|
8121
|
-
let shouldForwardPropOption =
|
|
8121
|
+
let shouldForwardPropOption = shouldForwardProp;
|
|
8122
8122
|
if (componentSlot === "Root" || componentSlot === "root") {
|
|
8123
8123
|
shouldForwardPropOption = rootShouldForwardProp2;
|
|
8124
8124
|
} else if (componentSlot) {
|
|
8125
|
-
shouldForwardPropOption =
|
|
8125
|
+
shouldForwardPropOption = slotShouldForwardProp2;
|
|
8126
8126
|
} else if (isStringTag(tag)) {
|
|
8127
8127
|
shouldForwardPropOption = void 0;
|
|
8128
8128
|
}
|
|
@@ -8213,8 +8213,31 @@ var require_createStyled = __commonJS({
|
|
|
8213
8213
|
}
|
|
8214
8214
|
});
|
|
8215
8215
|
|
|
8216
|
+
// ../../node_modules/@mui/icons-material/node_modules/@mui/material/styles/slotShouldForwardProp.js
|
|
8217
|
+
function slotShouldForwardProp(prop) {
|
|
8218
|
+
return prop !== "ownerState" && prop !== "theme" && prop !== "sx" && prop !== "as";
|
|
8219
|
+
}
|
|
8220
|
+
var slotShouldForwardProp_default;
|
|
8221
|
+
var init_slotShouldForwardProp = __esm({
|
|
8222
|
+
"../../node_modules/@mui/icons-material/node_modules/@mui/material/styles/slotShouldForwardProp.js"() {
|
|
8223
|
+
"use strict";
|
|
8224
|
+
slotShouldForwardProp_default = slotShouldForwardProp;
|
|
8225
|
+
}
|
|
8226
|
+
});
|
|
8227
|
+
|
|
8228
|
+
// ../../node_modules/@mui/icons-material/node_modules/@mui/material/styles/rootShouldForwardProp.js
|
|
8229
|
+
var rootShouldForwardProp, rootShouldForwardProp_default;
|
|
8230
|
+
var init_rootShouldForwardProp = __esm({
|
|
8231
|
+
"../../node_modules/@mui/icons-material/node_modules/@mui/material/styles/rootShouldForwardProp.js"() {
|
|
8232
|
+
"use strict";
|
|
8233
|
+
init_slotShouldForwardProp();
|
|
8234
|
+
rootShouldForwardProp = (prop) => slotShouldForwardProp_default(prop) && prop !== "classes";
|
|
8235
|
+
rootShouldForwardProp_default = rootShouldForwardProp;
|
|
8236
|
+
}
|
|
8237
|
+
});
|
|
8238
|
+
|
|
8216
8239
|
// ../../node_modules/@mui/icons-material/node_modules/@mui/material/styles/styled.js
|
|
8217
|
-
var import_createStyled,
|
|
8240
|
+
var import_createStyled, styled2, styled_default;
|
|
8218
8241
|
var init_styled = __esm({
|
|
8219
8242
|
"../../node_modules/@mui/icons-material/node_modules/@mui/material/styles/styled.js"() {
|
|
8220
8243
|
"use strict";
|
|
@@ -8222,11 +8245,11 @@ var init_styled = __esm({
|
|
|
8222
8245
|
import_createStyled = __toESM(require_createStyled());
|
|
8223
8246
|
init_defaultTheme();
|
|
8224
8247
|
init_identifier();
|
|
8225
|
-
|
|
8248
|
+
init_rootShouldForwardProp();
|
|
8226
8249
|
styled2 = (0, import_createStyled.default)({
|
|
8227
8250
|
themeId: identifier_default,
|
|
8228
8251
|
defaultTheme: defaultTheme_default,
|
|
8229
|
-
rootShouldForwardProp
|
|
8252
|
+
rootShouldForwardProp: rootShouldForwardProp_default
|
|
8230
8253
|
});
|
|
8231
8254
|
styled_default = styled2;
|
|
8232
8255
|
}
|
|
@@ -8296,7 +8319,7 @@ var init_SvgIcon = __esm({
|
|
|
8296
8319
|
height: "1em",
|
|
8297
8320
|
display: "inline-block",
|
|
8298
8321
|
// the <svg> will define the property that has `currentColor`
|
|
8299
|
-
//
|
|
8322
|
+
// for example heroicons uses fill="none" and stroke="currentColor"
|
|
8300
8323
|
fill: ownerState.hasSvgAsChild ? void 0 : "currentColor",
|
|
8301
8324
|
flexShrink: 0,
|
|
8302
8325
|
transition: (_theme$transitions = theme.transitions) == null || (_theme$transitions$cr = _theme$transitions.create) == null ? void 0 : _theme$transitions$cr.call(_theme$transitions, "fill", {
|
|
@@ -8982,7 +9005,7 @@ react-is/cjs/react-is.development.js:
|
|
|
8982
9005
|
|
|
8983
9006
|
@mui/utils/index.js:
|
|
8984
9007
|
(**
|
|
8985
|
-
* @mui/utils v5.15.
|
|
9008
|
+
* @mui/utils v5.15.14
|
|
8986
9009
|
*
|
|
8987
9010
|
* @license MIT
|
|
8988
9011
|
* This source code is licensed under the MIT license found in the
|
|
@@ -9011,11 +9034,11 @@ react-is/cjs/react-is.development.js:
|
|
|
9011
9034
|
|
|
9012
9035
|
@mui/styled-engine/index.js:
|
|
9013
9036
|
(**
|
|
9014
|
-
* @mui/styled-engine v5.15.
|
|
9037
|
+
* @mui/styled-engine v5.15.14
|
|
9015
9038
|
*
|
|
9016
9039
|
* @license MIT
|
|
9017
9040
|
* This source code is licensed under the MIT license found in the
|
|
9018
9041
|
* LICENSE file in the root directory of this source tree.
|
|
9019
9042
|
*)
|
|
9020
9043
|
*/
|
|
9021
|
-
//# sourceMappingURL=chunk-
|
|
9044
|
+
//# sourceMappingURL=chunk-WN6RHT3S.mjs.map
|