@pingux/astro 2.121.0-alpha.0 → 2.121.0-alpha.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.
Files changed (105) hide show
  1. package/lib/cjs/components/Icon/Icon.js +13 -10
  2. package/lib/cjs/components/IconButton/IconButton.styles.d.ts +37 -0
  3. package/lib/cjs/components/IconButton/IconButton.styles.js +6 -1
  4. package/lib/cjs/components/IconWrapper/iconWrapperAttributes.js +1 -1
  5. package/lib/cjs/components/ListView/ListView.js +5 -0
  6. package/lib/cjs/components/ListView/ListView.stories.d.ts +3 -3
  7. package/lib/cjs/components/ListView/ListView.stories.js +27 -458
  8. package/lib/cjs/components/ListView/ListViewExpandableItem.js +1 -0
  9. package/lib/cjs/components/ListView/ListViewItem.js +4 -1
  10. package/lib/cjs/{styles/themes/next-gen/stories/NextGenListView.chromatic.stories.js → components/ListView/stories/ListView.chromatic.stories.js} +2 -2
  11. package/lib/cjs/components/ListView/stories/ListViewNextGenComponent.js +144 -0
  12. package/lib/cjs/{styles/themeOverrides/nextGenDarkMode/stories/NextGenDarkListView.chromatic.stories.js → components/ListView/stories/ListViewOnyxDark.stories.js} +3 -3
  13. package/lib/cjs/components/ListViewItem/ListViewItem.js +16 -5
  14. package/lib/cjs/components/ListViewItem/ListViewItem.stories.js +40 -3
  15. package/lib/cjs/components/ListViewItem/ListViewItem.styles.js +15 -1
  16. package/lib/cjs/components/ListViewItem/controls/ListViewItemEditButton.js +1 -1
  17. package/lib/cjs/components/ListViewItem/controls/ListViewItemMenu.js +9 -3
  18. package/lib/cjs/components/ListViewItem/controls/ListViewItemMenu.test.js +1 -0
  19. package/lib/cjs/components/ListViewItem/controls/chart/ListViewItemChart.js +5 -1
  20. package/lib/cjs/components/Pagination/Pagination.stories.js +3 -3
  21. package/lib/cjs/components/SearchField/SearchField.js +2 -8
  22. package/lib/cjs/hooks/useExpandableListViewItem/useExpandableListViewItem.js +9 -3
  23. package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +2 -0
  24. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.d.ts +4 -0
  25. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.js +4 -0
  26. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.d.ts +1 -0
  27. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +1 -0
  28. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/nextGenDarkModeOverride.js +2 -0
  29. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/listview.d.ts +58 -0
  30. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/{lsitview.js → listview.js} +37 -2
  31. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/text.d.ts +15 -0
  32. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/text.js +23 -0
  33. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +34 -0
  34. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.js +4 -3
  35. package/lib/cjs/styles/themes/astro/customProperties/icons.d.ts +1 -0
  36. package/lib/cjs/styles/themes/astro/customProperties/icons.js +2 -1
  37. package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +1 -0
  38. package/lib/cjs/styles/themes/next-gen/colors/colors.d.ts +4 -0
  39. package/lib/cjs/styles/themes/next-gen/colors/iconWrapper.d.ts +4 -0
  40. package/lib/cjs/styles/themes/next-gen/colors/iconWrapper.js +4 -0
  41. package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +1 -1
  42. package/lib/cjs/styles/themes/next-gen/customProperties/icons.d.ts +1 -0
  43. package/lib/cjs/styles/themes/next-gen/customProperties/icons.js +2 -1
  44. package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +1 -0
  45. package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +123 -18
  46. package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +24 -0
  47. package/lib/cjs/styles/themes/next-gen/variants/button.js +12 -1
  48. package/lib/cjs/styles/themes/next-gen/variants/listview.d.ts +79 -17
  49. package/lib/cjs/styles/themes/next-gen/variants/listview.js +89 -24
  50. package/lib/cjs/styles/themes/next-gen/variants/text.d.ts +13 -1
  51. package/lib/cjs/styles/themes/next-gen/variants/text.js +16 -4
  52. package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +82 -17
  53. package/lib/cjs/styles/themes/next-gen/variants/variants.js +8 -1
  54. package/lib/cjs/types/iconWrapper.d.ts +1 -1
  55. package/lib/cjs/utils/devUtils/constants/animals.js +449 -1
  56. package/lib/components/Icon/Icon.js +13 -10
  57. package/lib/components/IconButton/IconButton.styles.js +6 -1
  58. package/lib/components/IconWrapper/iconWrapperAttributes.js +1 -1
  59. package/lib/components/ListView/ListView.js +5 -0
  60. package/lib/components/ListView/ListView.stories.js +25 -455
  61. package/lib/components/ListView/ListViewExpandableItem.js +1 -0
  62. package/lib/components/ListView/ListViewItem.js +4 -1
  63. package/lib/{styles/themes/next-gen/stories/NextGenListView.chromatic.stories.js → components/ListView/stories/ListView.chromatic.stories.js} +2 -2
  64. package/lib/components/ListView/stories/ListViewNextGenComponent.js +130 -0
  65. package/lib/{styles/themeOverrides/nextGenDarkMode/stories/NextGenDarkListView.chromatic.stories.js → components/ListView/stories/ListViewOnyxDark.stories.js} +3 -3
  66. package/lib/components/ListViewItem/ListViewItem.js +18 -7
  67. package/lib/components/ListViewItem/ListViewItem.stories.js +40 -3
  68. package/lib/components/ListViewItem/ListViewItem.styles.js +15 -1
  69. package/lib/components/ListViewItem/controls/ListViewItemEditButton.js +1 -1
  70. package/lib/components/ListViewItem/controls/ListViewItemMenu.js +9 -3
  71. package/lib/components/ListViewItem/controls/ListViewItemMenu.test.js +1 -0
  72. package/lib/components/ListViewItem/controls/chart/ListViewItemChart.js +5 -1
  73. package/lib/components/Pagination/Pagination.stories.js +1 -1
  74. package/lib/components/SearchField/SearchField.js +2 -8
  75. package/lib/hooks/useExpandableListViewItem/useExpandableListViewItem.js +9 -3
  76. package/lib/styles/themeOverrides/nextGenDarkMode/colors.js +4 -0
  77. package/lib/styles/themeOverrides/nextGenDarkMode/nextGenDarkModeOverride.js +2 -0
  78. package/lib/styles/themeOverrides/nextGenDarkMode/variants/listview.js +58 -0
  79. package/lib/styles/themeOverrides/nextGenDarkMode/variants/text.js +15 -0
  80. package/lib/styles/themeOverrides/nextGenDarkMode/variants/variants.js +2 -1
  81. package/lib/styles/themes/astro/customProperties/icons.js +2 -1
  82. package/lib/styles/themes/next-gen/colors/iconWrapper.js +4 -0
  83. package/lib/styles/themes/next-gen/convertedComponentList.js +1 -1
  84. package/lib/styles/themes/next-gen/customProperties/icons.js +2 -1
  85. package/lib/styles/themes/next-gen/variants/button.js +12 -1
  86. package/lib/styles/themes/next-gen/variants/listview.js +84 -22
  87. package/lib/styles/themes/next-gen/variants/text.js +16 -4
  88. package/lib/styles/themes/next-gen/variants/variants.js +9 -2
  89. package/lib/utils/devUtils/constants/animals.js +449 -1
  90. package/package.json +1 -1
  91. package/lib/cjs/recipes/NextGen/ListViewNextGen.stories.js +0 -23
  92. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/lsitview.d.ts +0 -24
  93. package/lib/cjs/styles/themes/next-gen/stories/ListViewItemNextGen.d.ts +0 -29
  94. package/lib/cjs/styles/themes/next-gen/stories/ListViewItemNextGen.js +0 -84
  95. package/lib/cjs/styles/themes/next-gen/stories/ListViewNextGenComponent.js +0 -67
  96. package/lib/cjs/styles/themes/next-gen/stories/NextGenListViewItem.stories.d.ts +0 -6
  97. package/lib/cjs/styles/themes/next-gen/stories/NextGenListViewItem.stories.js +0 -35
  98. package/lib/recipes/NextGen/ListViewNextGen.stories.js +0 -13
  99. package/lib/styles/themeOverrides/nextGenDarkMode/variants/lsitview.js +0 -24
  100. package/lib/styles/themes/next-gen/stories/ListViewItemNextGen.js +0 -75
  101. package/lib/styles/themes/next-gen/stories/ListViewNextGenComponent.js +0 -58
  102. package/lib/styles/themes/next-gen/stories/NextGenListViewItem.stories.js +0 -25
  103. /package/lib/cjs/{styles/themeOverrides/nextGenDarkMode/stories/NextGenDarkListView.chromatic.stories.d.ts → components/ListView/stories/ListView.chromatic.stories.d.ts} +0 -0
  104. /package/lib/cjs/{styles/themes/next-gen → components/ListView}/stories/ListViewNextGenComponent.d.ts +0 -0
  105. /package/lib/cjs/{styles/themes/next-gen/stories/NextGenListView.chromatic.stories.d.ts → components/ListView/stories/ListViewOnyxDark.stories.d.ts} +0 -0
@@ -1,11 +1,15 @@
1
+ export declare const focusBoxShadow = "0 0 0 3px inset #1a73e8";
2
+ export declare const borderRadius = "16px";
1
3
  export declare const listViewItem: {
2
4
  rightOfData: {
3
- flexShrink: number;
4
5
  whiteSpace: string;
5
6
  };
6
7
  iconContainer: {
7
8
  ml: string;
8
9
  };
10
+ imageWrapper: {
11
+ ml: string;
12
+ };
9
13
  styledListItem: {
10
14
  bg: string;
11
15
  '&.is-selected': {
@@ -23,10 +27,19 @@ export declare const listViewItem: {
23
27
  boxShadow: string;
24
28
  bg: string;
25
29
  };
30
+ '&.is-first-item': {
31
+ borderTopLeftRadius: string;
32
+ borderTopRightRadius: string;
33
+ };
34
+ '&.is-last-item': {
35
+ borderBottomLeftRadius: string;
36
+ borderBottomRightRadius: string;
37
+ '&.has-separator': {
38
+ border: string;
39
+ };
40
+ };
26
41
  };
27
42
  styledContainer: {
28
- py: string;
29
- px: string;
30
43
  bg: string;
31
44
  '&.is-hovered': {
32
45
  bg: string;
@@ -34,17 +47,58 @@ export declare const listViewItem: {
34
47
  };
35
48
  };
36
49
  expandableStyledListItem: {
37
- pr: string;
38
- pl: number;
50
+ px: string;
51
+ bg: string;
52
+ '&.is-first-item': {
53
+ borderTopLeftRadius: string;
54
+ borderTopRightRadius: string;
55
+ };
56
+ '&.is-last-item': {
57
+ borderBottomLeftRadius: string;
58
+ borderBottomRightRadius: string;
59
+ '&.is-hovered, &.is-expanded': {
60
+ borderBottomLeftRadius: string;
61
+ borderBottomRightRadius: string;
62
+ };
63
+ };
64
+ '&.is-hovered': {
65
+ bg: string;
66
+ };
67
+ '&.is-selected': {
68
+ bg: string;
69
+ };
70
+ '&.is-focused': {
71
+ boxShadow: string;
72
+ bg: string;
73
+ };
39
74
  };
40
75
  expandableItemBody: {
41
76
  px: string;
77
+ outline: string;
78
+ '&.is-last-item-body': {
79
+ borderBottomLeftRadius: string;
80
+ borderBottomRightRadius: string;
81
+ };
82
+ '&.is-focused': {
83
+ boxShadow: string;
84
+ };
42
85
  };
43
86
  expandableRow: {
44
87
  '&.has-separator': {
45
88
  borderBottom: string;
46
89
  borderBottomColor: string;
47
90
  };
91
+ '&.has-separator.is-last-row': {
92
+ border: string;
93
+ };
94
+ };
95
+ editIcon: {
96
+ width: string;
97
+ height: string;
98
+ };
99
+ menuIcon: {
100
+ width: string;
101
+ height: string;
48
102
  };
49
103
  };
50
104
  export declare const listView: {
@@ -52,17 +106,25 @@ export declare const listView: {
52
106
  borderRadius: string;
53
107
  border: string;
54
108
  borderColor: string;
55
- '& > div > div': {
56
- '& > div:first-of-type': {
57
- '& > div > div': {
58
- borderRadius: string;
59
- };
60
- };
61
- '& > div:last-of-type': {
62
- '& > div > div': {
63
- borderRadius: string;
64
- };
65
- };
66
- };
109
+ };
110
+ };
111
+ export declare const lisViewItemChart: {
112
+ title: {
113
+ color: string;
114
+ };
115
+ count: {
116
+ color: string;
117
+ };
118
+ countLabel: {
119
+ color: string;
120
+ };
121
+ chartLabel: {
122
+ color: string;
123
+ };
124
+ trend: {
125
+ color: string;
126
+ };
127
+ chartButton: {
128
+ color: string;
67
129
  };
68
130
  };
@@ -4,14 +4,20 @@ var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/obje
4
4
  _Object$defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
- exports.listViewItem = exports.listView = void 0;
7
+ exports.listViewItem = exports.listView = exports.lisViewItemChart = exports.focusBoxShadow = exports.borderRadius = void 0;
8
+ var focusBoxShadow = '0 0 0 3px inset #1a73e8';
9
+ exports.focusBoxShadow = focusBoxShadow;
10
+ var borderRadius = '16px';
11
+ exports.borderRadius = borderRadius;
8
12
  var listViewItem = {
9
13
  rightOfData: {
10
- flexShrink: 4,
11
14
  whiteSpace: 'nowrap'
12
15
  },
13
16
  iconContainer: {
14
- ml: '0px'
17
+ ml: '0'
18
+ },
19
+ imageWrapper: {
20
+ ml: 'md'
15
21
  },
16
22
  styledListItem: {
17
23
  bg: 'white',
@@ -27,13 +33,22 @@ var listViewItem = {
27
33
  bg: 'gray-100'
28
34
  },
29
35
  '&.is-focused': {
30
- boxShadow: '0 0 0 3px inset #1a73e8',
36
+ boxShadow: focusBoxShadow,
31
37
  bg: 'gray-100'
38
+ },
39
+ '&.is-first-item': {
40
+ borderTopLeftRadius: borderRadius,
41
+ borderTopRightRadius: borderRadius
42
+ },
43
+ '&.is-last-item': {
44
+ borderBottomLeftRadius: borderRadius,
45
+ borderBottomRightRadius: borderRadius,
46
+ '&.has-separator': {
47
+ border: 'none'
48
+ }
32
49
  }
33
50
  },
34
51
  styledContainer: {
35
- py: 'md',
36
- px: 'lg',
37
52
  bg: 'transparent',
38
53
  '&.is-hovered': {
39
54
  bg: 'transparent',
@@ -41,37 +56,87 @@ var listViewItem = {
41
56
  }
42
57
  },
43
58
  expandableStyledListItem: {
44
- pr: '1.25rem',
45
- pl: 0
59
+ px: 'lg',
60
+ bg: 'background.base',
61
+ '&.is-first-item': {
62
+ borderTopLeftRadius: borderRadius,
63
+ borderTopRightRadius: borderRadius
64
+ },
65
+ '&.is-last-item': {
66
+ borderBottomLeftRadius: borderRadius,
67
+ borderBottomRightRadius: borderRadius,
68
+ '&.is-hovered, &.is-expanded': {
69
+ borderBottomLeftRadius: '0',
70
+ borderBottomRightRadius: '0'
71
+ }
72
+ },
73
+ '&.is-hovered': {
74
+ bg: 'gray-100'
75
+ },
76
+ '&.is-selected': {
77
+ bg: 'gray-100'
78
+ },
79
+ '&.is-focused': {
80
+ boxShadow: focusBoxShadow,
81
+ bg: 'gray-100'
82
+ }
46
83
  },
47
84
  expandableItemBody: {
48
- px: '1.5rem'
85
+ px: 'lg',
86
+ outline: 'none',
87
+ '&.is-last-item-body': {
88
+ borderBottomLeftRadius: borderRadius,
89
+ borderBottomRightRadius: borderRadius
90
+ },
91
+ '&.is-focused': {
92
+ boxShadow: focusBoxShadow
93
+ }
49
94
  },
50
95
  expandableRow: {
51
96
  '&.has-separator': {
52
97
  borderBottom: '1px solid',
53
98
  borderBottomColor: 'border.base'
99
+ },
100
+ '&.has-separator.is-last-row': {
101
+ border: 'none'
54
102
  }
103
+ },
104
+ editIcon: {
105
+ width: '1.5rem !important',
106
+ height: '1.5rem !important'
107
+ },
108
+ menuIcon: {
109
+ width: '1.5rem !important',
110
+ height: '1.5rem !important'
55
111
  }
56
112
  };
57
113
  exports.listViewItem = listViewItem;
58
114
  var listView = {
59
115
  container: {
60
- borderRadius: '16px',
116
+ borderRadius: borderRadius,
61
117
  border: '1px solid',
62
- borderColor: '#e7eef4',
63
- '& > div > div': {
64
- '& > div:first-of-type': {
65
- '& > div > div': {
66
- borderRadius: '16px 16px 0 0'
67
- }
68
- },
69
- '& > div:last-of-type': {
70
- '& > div > div': {
71
- borderRadius: ' 0 0 16px 16px'
72
- }
73
- }
74
- }
118
+ borderColor: '#e7eef4'
119
+ }
120
+ };
121
+ exports.listView = listView;
122
+ var lisViewItemChart = {
123
+ title: {
124
+ color: 'gray-900'
125
+ },
126
+ count: {
127
+ color: 'gray-900'
128
+ },
129
+ countLabel: {
130
+ color: 'gray-900'
131
+ },
132
+ chartLabel: {
133
+ color: 'gray-900'
134
+ },
135
+ trend: {
136
+ color: 'gray-900'
137
+ },
138
+ chartButton: {
139
+ color: 'gray-900'
75
140
  }
76
141
  };
77
- exports.listView = listView;
142
+ exports.lisViewItemChart = lisViewItemChart;
@@ -68,14 +68,26 @@ export declare const text: {
68
68
  lineHeight: string;
69
69
  };
70
70
  listViewItemText: {
71
+ fontFamily: string;
71
72
  color: string;
72
73
  fontWeight: number;
74
+ mb: string;
75
+ fontSize: string;
73
76
  };
74
- small: {
77
+ listViewItemSubtext: {
75
78
  fontSize: string;
79
+ lineHeight: string;
76
80
  color: string;
81
+ };
82
+ itemTitle: {
83
+ fontWeight: number;
84
+ color: string;
85
+ };
86
+ small: {
87
+ fontSize: string;
77
88
  fontFamily: string;
78
89
  lineHeight: string;
90
+ color: string;
79
91
  };
80
92
  response: {
81
93
  color: string;
@@ -82,14 +82,26 @@ var text = _objectSpread(_objectSpread({
82
82
  lineHeight: 'body'
83
83
  },
84
84
  listViewItemText: {
85
- color: 'text.secondary',
86
- fontWeight: 2
85
+ fontFamily: 'standard',
86
+ color: 'text.primary',
87
+ fontWeight: 2,
88
+ mb: 'xs',
89
+ fontSize: 'md'
90
+ },
91
+ listViewItemSubtext: {
92
+ fontSize: 'md',
93
+ lineHeight: 'body',
94
+ color: 'gray-700'
95
+ },
96
+ itemTitle: {
97
+ fontWeight: 2,
98
+ color: 'text.primary'
87
99
  },
88
100
  small: {
89
101
  fontSize: 'sm',
90
- color: 'text.primary',
91
102
  fontFamily: 'standard',
92
- lineHeight: 'md'
103
+ lineHeight: 'md',
104
+ color: 'text.primary'
93
105
  },
94
106
  response: {
95
107
  color: 'text.primary',
@@ -605,12 +605,14 @@ declare const _default: {
605
605
  };
606
606
  listViewItem: {
607
607
  rightOfData: {
608
- flexShrink: number;
609
608
  whiteSpace: string;
610
609
  };
611
610
  iconContainer: {
612
611
  ml: string;
613
612
  };
613
+ imageWrapper: {
614
+ ml: string;
615
+ };
614
616
  styledListItem: {
615
617
  bg: string;
616
618
  '&.is-selected': {
@@ -628,10 +630,19 @@ declare const _default: {
628
630
  boxShadow: string;
629
631
  bg: string;
630
632
  };
633
+ '&.is-first-item': {
634
+ borderTopLeftRadius: string;
635
+ borderTopRightRadius: string;
636
+ };
637
+ '&.is-last-item': {
638
+ borderBottomLeftRadius: string;
639
+ borderBottomRightRadius: string;
640
+ '&.has-separator': {
641
+ border: string;
642
+ };
643
+ };
631
644
  };
632
645
  styledContainer: {
633
- py: string;
634
- px: string;
635
646
  bg: string;
636
647
  '&.is-hovered': {
637
648
  bg: string;
@@ -639,17 +650,58 @@ declare const _default: {
639
650
  };
640
651
  };
641
652
  expandableStyledListItem: {
642
- pr: string;
643
- pl: number;
653
+ px: string;
654
+ bg: string;
655
+ '&.is-first-item': {
656
+ borderTopLeftRadius: string;
657
+ borderTopRightRadius: string;
658
+ };
659
+ '&.is-last-item': {
660
+ borderBottomLeftRadius: string;
661
+ borderBottomRightRadius: string;
662
+ '&.is-hovered, &.is-expanded': {
663
+ borderBottomLeftRadius: string;
664
+ borderBottomRightRadius: string;
665
+ };
666
+ };
667
+ '&.is-hovered': {
668
+ bg: string;
669
+ };
670
+ '&.is-selected': {
671
+ bg: string;
672
+ };
673
+ '&.is-focused': {
674
+ boxShadow: string;
675
+ bg: string;
676
+ };
644
677
  };
645
678
  expandableItemBody: {
646
679
  px: string;
680
+ outline: string;
681
+ '&.is-last-item-body': {
682
+ borderBottomLeftRadius: string;
683
+ borderBottomRightRadius: string;
684
+ };
685
+ '&.is-focused': {
686
+ boxShadow: string;
687
+ };
647
688
  };
648
689
  expandableRow: {
649
690
  '&.has-separator': {
650
691
  borderBottom: string;
651
692
  borderBottomColor: string;
652
693
  };
694
+ '&.has-separator.is-last-row': {
695
+ border: string;
696
+ };
697
+ };
698
+ editIcon: {
699
+ width: string;
700
+ height: string;
701
+ };
702
+ menuIcon: {
703
+ width: string;
704
+ height: string;
653
705
  };
654
706
  };
655
707
  progressBar: {
@@ -670,18 +722,26 @@ declare const _default: {
670
722
  borderRadius: string;
671
723
  border: string;
672
724
  borderColor: string;
673
- '& > div > div': {
674
- '& > div:first-of-type': {
675
- '& > div > div': {
676
- borderRadius: string;
677
- };
678
- };
679
- '& > div:last-of-type': {
680
- '& > div > div': {
681
- borderRadius: string;
682
- };
683
- };
684
- };
725
+ };
726
+ };
727
+ lisViewItemChart: {
728
+ title: {
729
+ color: string;
730
+ };
731
+ count: {
732
+ color: string;
733
+ };
734
+ countLabel: {
735
+ color: string;
736
+ };
737
+ chartLabel: {
738
+ color: string;
739
+ };
740
+ trend: {
741
+ color: string;
742
+ };
743
+ chartButton: {
744
+ color: string;
685
745
  };
686
746
  };
687
747
  dataTable: {
@@ -1155,5 +1215,10 @@ declare const _default: {
1155
1215
  };
1156
1216
  };
1157
1217
  };
1218
+ loader: {
1219
+ withinListView: {
1220
+ color: string;
1221
+ };
1222
+ };
1158
1223
  };
1159
1224
  export default _default;
@@ -301,6 +301,11 @@ var overlayPanel = {
301
301
  backgroundColor: 'background.base'
302
302
  }
303
303
  };
304
+ var loader = {
305
+ withinListView: {
306
+ color: 'active'
307
+ }
308
+ };
304
309
  var _default = {
305
310
  attachment: _Attachment["default"],
306
311
  navBar: _navbar.navBar,
@@ -316,6 +321,7 @@ var _default = {
316
321
  listViewItem: _listview.listViewItem,
317
322
  progressBar: progressBar,
318
323
  listView: _listview.listView,
324
+ lisViewItemChart: _listview.lisViewItemChart,
319
325
  dataTable: _dataTable.dataTable,
320
326
  codeView: _codeView["default"],
321
327
  prompt: _prompt["default"],
@@ -326,6 +332,7 @@ var _default = {
326
332
  suggestions: _suggestions["default"],
327
333
  suggestion: _suggestion["default"],
328
334
  response: _response["default"],
329
- skeleton: _Skeleton["default"]
335
+ skeleton: _Skeleton["default"],
336
+ loader: loader
330
337
  };
331
338
  exports["default"] = _default;
@@ -9,7 +9,7 @@ export interface IconWrapperProps extends StyleProps {
9
9
  size: string;
10
10
  className?: string;
11
11
  isCircle?: boolean;
12
- title: {
12
+ title?: {
13
13
  name: string;
14
14
  id?: string;
15
15
  };