@innovaccer/design-system 3.0.0-12 → 3.0.0-13
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/index.esm.js +6 -6
- package/dist/index.js +4 -6
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/package.json +1 -1
- package/src/components/badge/_stories_/index.story.jsx +1 -3
- package/src/components/button/__stories__/index.story.jsx +1 -3
- package/src/components/paragraph/Paragraph.tsx +2 -2
- package/src/components/paragraph/__tests__/Paragraph.test.tsx +1 -1
- package/src/components/paragraph/__tests__/__snapshots__/Paragraph.test.tsx.snap +5 -5
- package/src/components/pills/__stories__/index.story.jsx +1 -3
- package/src/utils/__tests__/__snapshots__/TS.test.tsx.snap +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
/**
|
|
3
|
-
* Generated on:
|
|
3
|
+
* Generated on: 1653543322667
|
|
4
4
|
* Package: @innovaccer/design-system
|
|
5
|
-
* Version: v3.0.0-
|
|
5
|
+
* Version: v3.0.0-13
|
|
6
6
|
* License: MIT
|
|
7
7
|
* Docs: https://innovaccer.github.io/design-system
|
|
8
8
|
*/
|
|
@@ -3340,14 +3340,14 @@ OutsideClick.displayName = 'OutsideClick';
|
|
|
3340
3340
|
|
|
3341
3341
|
var _excluded$2 = ["appearance", "children", "className"];
|
|
3342
3342
|
var Paragraph = function Paragraph(props) {
|
|
3343
|
+
var _classNames;
|
|
3344
|
+
|
|
3343
3345
|
var appearance = props.appearance,
|
|
3344
3346
|
children = props.children,
|
|
3345
3347
|
className = props.className,
|
|
3346
3348
|
rest = _objectWithoutProperties(props, _excluded$2);
|
|
3347
3349
|
|
|
3348
|
-
var classes = classnames(_defineProperty(
|
|
3349
|
-
Text: true
|
|
3350
|
-
}, "Text--".concat(appearance), appearance), className);
|
|
3350
|
+
var classes = classnames((_classNames = {}, _defineProperty(_classNames, "Mds-Text", true), _defineProperty(_classNames, "Mds-Text--".concat(appearance), appearance), _classNames), className);
|
|
3351
3351
|
return /*#__PURE__*/React.createElement(GenericText, _extends$1({
|
|
3352
3352
|
"data-test": "DesignSystem-Paragraph"
|
|
3353
3353
|
}, rest, {
|
|
@@ -3432,6 +3432,6 @@ Link.defaultProps = {
|
|
|
3432
3432
|
disabled: false
|
|
3433
3433
|
};
|
|
3434
3434
|
|
|
3435
|
-
var version = "3.0.0-
|
|
3435
|
+
var version = "3.0.0-13";
|
|
3436
3436
|
|
|
3437
3437
|
export { Avatar, Badge, Bold, Button, Icon, Italic, Link, OutsideClick, Paragraph, Pills, Popover, Spinner, Strikethrough, Text, Tooltip, Underline, index$2 as Utils, version };
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
/**
|
|
3
|
-
* Generated on:
|
|
3
|
+
* Generated on: 1653543322960
|
|
4
4
|
* Package: @innovaccer/design-system
|
|
5
|
-
* Version: v3.0.0-
|
|
5
|
+
* Version: v3.0.0-13
|
|
6
6
|
* License: MIT
|
|
7
7
|
* Docs: https://innovaccer.github.io/design-system
|
|
8
8
|
*/
|
|
@@ -3121,9 +3121,7 @@
|
|
|
3121
3121
|
className = props.className,
|
|
3122
3122
|
rest = __rest(props, ["appearance", "children", "className"]);
|
|
3123
3123
|
|
|
3124
|
-
var classes = classNames__default["default"]((_a = {
|
|
3125
|
-
Text: true
|
|
3126
|
-
}, _a["Text--".concat(appearance)] = appearance, _a), className);
|
|
3124
|
+
var classes = classNames__default["default"]((_a = {}, _a["Mds-Text"] = true, _a["Mds-Text--".concat(appearance)] = appearance, _a), className);
|
|
3127
3125
|
return /*#__PURE__*/React__namespace.createElement(GenericText, __assign({
|
|
3128
3126
|
"data-test": "DesignSystem-Paragraph"
|
|
3129
3127
|
}, rest, {
|
|
@@ -3203,7 +3201,7 @@
|
|
|
3203
3201
|
disabled: false
|
|
3204
3202
|
};
|
|
3205
3203
|
|
|
3206
|
-
var version = "3.0.0-
|
|
3204
|
+
var version = "3.0.0-13";
|
|
3207
3205
|
|
|
3208
3206
|
exports.Avatar = Avatar;
|
|
3209
3207
|
exports.Badge = Badge;
|