@innovaccer/design-system 2.23.0 → 2.23.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.
@@ -6,7 +6,7 @@
6
6
  src: url(MaterialSymbolsRounded.woff2) format('woff2');
7
7
  }
8
8
 
9
- .material-icons {
9
+ .material-symbols {
10
10
  font-family: 'Material Symbols Rounded';
11
11
  font-weight: normal;
12
12
  font-style: normal;
@@ -22,10 +22,36 @@
22
22
  -webkit-font-smoothing: antialiased;
23
23
  }
24
24
 
25
- .material-icons-rounded {
26
- font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
25
+ .material-symbols-rounded {
26
+ font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
27
+ font-family: 'Material Symbols Rounded';
28
+ font-weight: normal;
29
+ font-style: normal;
30
+ font-size: 24px;
31
+ line-height: 1;
32
+ letter-spacing: normal;
33
+ text-transform: none;
34
+ display: inline-block;
35
+ white-space: nowrap;
36
+ word-wrap: normal;
37
+ direction: ltr;
38
+ -webkit-font-feature-settings: 'liga';
39
+ -webkit-font-smoothing: antialiased;
27
40
  }
28
41
 
29
- .material-icons-outlined {
30
- font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
42
+ .material-symbols-outlined {
43
+ font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
44
+ font-family: 'Material Symbols Rounded';
45
+ font-weight: normal;
46
+ font-style: normal;
47
+ font-size: 24px;
48
+ line-height: 1;
49
+ letter-spacing: normal;
50
+ text-transform: none;
51
+ display: inline-block;
52
+ white-space: nowrap;
53
+ word-wrap: normal;
54
+ direction: ltr;
55
+ -webkit-font-feature-settings: 'liga';
56
+ -webkit-font-smoothing: antialiased;
31
57
  }
@@ -422,7 +422,7 @@
422
422
  "affectsGlobalScope": false
423
423
  },
424
424
  "../../core/components/atoms/icon/Icon.tsx": {
425
- "version": "76fab90ff6fdc52fe80a963ffec364e1500af3152fc0aa82cc84ca233c818cde",
425
+ "version": "5fdd66d217b0000f23101b7ff2778b27ae054e2f3bfba627047ae0d7bf13e81c",
426
426
  "signature": "13c7197912e4415f8e45669697f035b60956612e8dde3f1141f305805fb2b45d",
427
427
  "affectsGlobalScope": false
428
428
  },
@@ -507,7 +507,7 @@
507
507
  "affectsGlobalScope": false
508
508
  },
509
509
  "../../core/components/organisms/datePicker/DatePicker.tsx": {
510
- "version": "b1b68a5868e4d29387c601f01fcffd3a7fe2b4215884fa20043da8eaba581ef4",
510
+ "version": "eaffa8f30bc98a3b0229ae1dfc399bc47b20c882043f026d6f7e52b589126488",
511
511
  "signature": "60130413fd988c89f00840e237722c22c1cb6827bc0da4d672949b9d941e2f9b",
512
512
  "affectsGlobalScope": false
513
513
  },
package/dist/index.esm.js CHANGED
@@ -1,8 +1,8 @@
1
1
 
2
2
  /**
3
- * Generated on: 1697533162404
3
+ * Generated on: 1698057092920
4
4
  * Package: @innovaccer/design-system
5
- * Version: v2.23.0
5
+ * Version: v2.23.1
6
6
  * License: MIT
7
7
  * Docs: https://innovaccer.github.io/design-system
8
8
  */
@@ -2780,7 +2780,7 @@ var Icon = function Icon(props) {
2780
2780
  };
2781
2781
 
2782
2782
  var color = appearance && appearance.includes('_') ? getIconAppearance(appearance) : appearance;
2783
- var iconClass = classnames((_classNames = {}, _defineProperty$1(_classNames, 'material-icons', true), _defineProperty$1(_classNames, 'material-icons-rounded', type === 'rounded'), _defineProperty$1(_classNames, 'material-icons-outlined', type === 'outlined'), _defineProperty$1(_classNames, 'Icon', true), _defineProperty$1(_classNames, "Icon--".concat(color), appearance), _defineProperty$1(_classNames, "".concat(className), className), _classNames));
2783
+ var iconClass = classnames((_classNames = {}, _defineProperty$1(_classNames, 'material-symbols', true), _defineProperty$1(_classNames, 'material-symbols-rounded', type === 'rounded'), _defineProperty$1(_classNames, 'material-symbols-outlined', type === 'outlined'), _defineProperty$1(_classNames, 'Icon', true), _defineProperty$1(_classNames, "Icon--".concat(color), appearance), _defineProperty$1(_classNames, "".concat(className), className), _classNames));
2784
2784
  var styles = {
2785
2785
  fontSize: "".concat(size, "px"),
2786
2786
  width: "".concat(size, "px")
@@ -3500,9 +3500,9 @@ var DatePicker = /*#__PURE__*/function (_React$Component) {
3500
3500
  if (currDate && dateDisabledBefore && dateDisabledAfter) {
3501
3501
  isTodayDateDisabled = currDate > dateDisabledBefore && currDate < dateDisabledAfter;
3502
3502
  } else if (currDate && dateDisabledBefore) {
3503
- isTodayDateDisabled = currDate < dateDisabledBefore;
3503
+ isTodayDateDisabled = currDate > dateDisabledBefore;
3504
3504
  } else if (currDate && dateDisabledAfter) {
3505
- isTodayDateDisabled = currDate > dateDisabledAfter;
3505
+ isTodayDateDisabled = currDate < dateDisabledAfter;
3506
3506
  }
3507
3507
 
3508
3508
  return !isTodayDateDisabled;
@@ -22294,6 +22294,6 @@ SelectionCard.defaultProps = {
22294
22294
  SelectionCard.useMultiSelect = useMultiSelect;
22295
22295
  SelectionCard.useSingleSelect = useSingleSelect;
22296
22296
 
22297
- var version = "2.23.0";
22297
+ var version = "2.23.1";
22298
22298
 
22299
22299
  export { ActionCard, Avatar, AvatarGroup, Backdrop, Badge, Breadcrumbs, Button, Calendar, Caption, Card, CardBody, CardFooter, CardHeader, CardSubdued, ChatMessage, Checkbox, Chip, ChipGroup, ChipInput, ChoiceList, Collapsible, Column, DatePicker, DateRangePicker, Dialog, Divider, Dropdown, Dropzone, EditableChipInput, EditableDropdown, EditableInput, EmptyState, FileList, FileUploader, FileUploaderList, FullscreenModal, Grid, GridCell, Heading, HelpText, HorizontalNav, Icon, InlineMessage, Input, X as InputMask, Label, Legend, Link, LinkButton, List, Message, MetaList, MetricInput, Modal, ModalBody, ModalDescription, ModalFooter, ModalHeader, MultiSlider, Navigation, OutsideClick, PageHeader, Pagination, Paragraph, Pills, Placeholder, PlaceholderImage, PlaceholderParagraph, Popover, ProgressBar, ProgressRing, Radio, RangeSlider, Row, SelectionCard, Sidesheet, Slider, Spinner, StatusHint, Stepper, Subheading, Switch, Tab, Table, Tabs, TabsWrapper, Text, Textarea, TimePicker, Toast, Tooltip, index as Utils, VerificationCodeInput, VerticalNav, version };
package/dist/index.js CHANGED
@@ -1,8 +1,8 @@
1
1
 
2
2
  /**
3
- * Generated on: 1697533162690
3
+ * Generated on: 1698057093268
4
4
  * Package: @innovaccer/design-system
5
- * Version: v2.23.0
5
+ * Version: v2.23.1
6
6
  * License: MIT
7
7
  * Docs: https://innovaccer.github.io/design-system
8
8
  */
@@ -2396,7 +2396,7 @@
2396
2396
  };
2397
2397
 
2398
2398
  var color = appearance && appearance.includes('_') ? getIconAppearance(appearance) : appearance;
2399
- var iconClass = classNames__default["default"]((_a = {}, _a['material-icons'] = true, _a['material-icons-rounded'] = type === 'rounded', _a['material-icons-outlined'] = type === 'outlined', _a['Icon'] = true, _a["Icon--" + color] = appearance, _a["" + className] = className, _a));
2399
+ var iconClass = classNames__default["default"]((_a = {}, _a['material-symbols'] = true, _a['material-symbols-rounded'] = type === 'rounded', _a['material-symbols-outlined'] = type === 'outlined', _a['Icon'] = true, _a["Icon--" + color] = appearance, _a["" + className] = className, _a));
2400
2400
  var styles = {
2401
2401
  fontSize: size + "px",
2402
2402
  width: size + "px"
@@ -3095,9 +3095,9 @@
3095
3095
  if (currDate && dateDisabledBefore && dateDisabledAfter) {
3096
3096
  isTodayDateDisabled = currDate > dateDisabledBefore && currDate < dateDisabledAfter;
3097
3097
  } else if (currDate && dateDisabledBefore) {
3098
- isTodayDateDisabled = currDate < dateDisabledBefore;
3098
+ isTodayDateDisabled = currDate > dateDisabledBefore;
3099
3099
  } else if (currDate && dateDisabledAfter) {
3100
- isTodayDateDisabled = currDate > dateDisabledAfter;
3100
+ isTodayDateDisabled = currDate < dateDisabledAfter;
3101
3101
  }
3102
3102
 
3103
3103
  return !isTodayDateDisabled;
@@ -16578,7 +16578,7 @@
16578
16578
  SelectionCard.useMultiSelect = useMultiSelect;
16579
16579
  SelectionCard.useSingleSelect = useSingleSelect;
16580
16580
 
16581
- var version = "2.23.0";
16581
+ var version = "2.23.1";
16582
16582
 
16583
16583
  exports.ActionCard = ActionCard;
16584
16584
  exports.Avatar = Avatar;