@elicecontents/content-ui 0.0.0 → 1.0.0

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 (122) hide show
  1. package/README.ko.md +117 -0
  2. package/README.md +117 -0
  3. package/cjs/_virtual/_rollupPluginBabelHelpers.js +8 -0
  4. package/cjs/components/button/Button.js +7 -3
  5. package/cjs/components/chat/Chat.js +4 -3
  6. package/cjs/components/dotted-pagination/DottedPagination.js +2 -1
  7. package/cjs/components/icon-button/IconButton.d.ts +5 -1
  8. package/cjs/components/icon-button/IconButton.js +13 -5
  9. package/cjs/components/index.d.ts +1 -0
  10. package/cjs/components/index.js +2 -0
  11. package/cjs/components/layout/Footer/LayoutFooterPaging.d.ts +7 -0
  12. package/cjs/components/layout/Footer/LayoutFooterPaging.js +46 -0
  13. package/cjs/components/layout/Footer/LayoutFooterSubmit.d.ts +3 -0
  14. package/cjs/components/layout/Footer/LayoutFooterSubmit.js +22 -0
  15. package/cjs/components/layout/Footer/index.d.ts +3 -0
  16. package/cjs/components/layout/Footer/index.js +9 -0
  17. package/cjs/components/layout/Header/LayoutHeaderSubTitle.d.ts +6 -0
  18. package/cjs/components/layout/Header/LayoutHeaderSubTitle.js +63 -0
  19. package/cjs/components/layout/Header/LayoutHeaderTitle.d.ts +7 -0
  20. package/cjs/components/layout/Header/LayoutHeaderTitle.js +43 -0
  21. package/cjs/components/layout/Header/index.d.ts +4 -0
  22. package/cjs/components/layout/Header/index.js +9 -0
  23. package/cjs/components/layout/Layout.d.ts +27 -12
  24. package/cjs/components/layout/Layout.js +97 -176
  25. package/cjs/components/layout/layout-pagination/LayoutPagination.d.ts +8 -0
  26. package/cjs/components/layout/layout-pagination/LayoutPagination.js +44 -0
  27. package/cjs/components/layout/layout-pagination/index.d.ts +2 -0
  28. package/cjs/components/layout/layout-pagination/index.js +7 -0
  29. package/cjs/components/pagination-button/PaginationButton.d.ts +9 -0
  30. package/cjs/components/pagination-button/PaginationButton.js +40 -0
  31. package/cjs/components/pagination-button/index.d.ts +1 -0
  32. package/cjs/components/pagination-button/index.js +7 -0
  33. package/cjs/components/selection/Selection.d.ts +2 -1
  34. package/cjs/components/selection/Selection.js +19 -14
  35. package/cjs/components/subtitle-button/SubtitleButton.d.ts +7 -0
  36. package/cjs/components/subtitle-button/SubtitleButton.js +45 -0
  37. package/cjs/components/subtitle-button/index.d.ts +1 -0
  38. package/cjs/components/subtitle-button/index.js +7 -0
  39. package/cjs/components/tokenColorTemporary.js +0 -4
  40. package/cjs/components/tooltip/Tooltip.js +1 -1
  41. package/cjs/hooks/index.d.ts +1 -0
  42. package/cjs/hooks/index.js +4 -0
  43. package/cjs/hooks/useAIDTMediaQuery.d.ts +8 -0
  44. package/cjs/hooks/useAIDTMediaQuery.js +24 -0
  45. package/cjs/icons/ArrowLeft.js +4 -4
  46. package/cjs/icons/ArrowRight.js +6 -13
  47. package/cjs/icons/MoreColumn.d.ts +3 -0
  48. package/cjs/icons/MoreColumn.js +28 -0
  49. package/cjs/icons/QuestionBubble.d.ts +3 -0
  50. package/cjs/icons/QuestionBubble.js +28 -0
  51. package/cjs/icons/SearchIcon.d.ts +3 -0
  52. package/cjs/icons/SearchIcon.js +28 -0
  53. package/cjs/icons/_types.d.ts +4 -0
  54. package/cjs/icons/index.d.ts +3 -0
  55. package/cjs/icons/index.js +6 -0
  56. package/cjs/index.d.ts +2 -0
  57. package/cjs/index.js +29 -0
  58. package/cjs/theme/createAIDTTheme.d.ts +17 -0
  59. package/cjs/tokens/breakpoints/breakpoints.d.ts +1 -1
  60. package/cjs/tokens/breakpoints/breakpoints.js +1 -1
  61. package/cjs/typography/typography.d.ts +24 -112
  62. package/cjs/typography/typography.js +54 -135
  63. package/es/_virtual/_rollupPluginBabelHelpers.js +8 -1
  64. package/es/components/button/Button.js +7 -3
  65. package/es/components/icon-button/IconButton.d.ts +5 -1
  66. package/es/components/icon-button/IconButton.js +13 -5
  67. package/es/components/index.d.ts +1 -0
  68. package/es/components/index.js +2 -1
  69. package/es/components/layout/Footer/LayoutFooterPaging.d.ts +7 -0
  70. package/es/components/layout/Footer/LayoutFooterPaging.js +38 -0
  71. package/es/components/layout/Footer/LayoutFooterSubmit.d.ts +3 -0
  72. package/es/components/layout/Footer/LayoutFooterSubmit.js +18 -0
  73. package/es/components/layout/Footer/index.d.ts +3 -0
  74. package/es/components/layout/Footer/index.js +2 -0
  75. package/es/components/layout/Header/LayoutHeaderSubTitle.d.ts +6 -0
  76. package/es/components/layout/Header/LayoutHeaderSubTitle.js +54 -0
  77. package/es/components/layout/Header/LayoutHeaderTitle.d.ts +7 -0
  78. package/es/components/layout/Header/LayoutHeaderTitle.js +35 -0
  79. package/es/components/layout/Header/index.d.ts +4 -0
  80. package/es/components/layout/Header/index.js +2 -0
  81. package/es/components/layout/Layout.d.ts +27 -12
  82. package/es/components/layout/Layout.js +99 -177
  83. package/es/components/layout/layout-pagination/LayoutPagination.d.ts +8 -0
  84. package/es/components/layout/layout-pagination/LayoutPagination.js +36 -0
  85. package/es/components/layout/layout-pagination/index.d.ts +2 -0
  86. package/es/components/layout/layout-pagination/index.js +1 -0
  87. package/es/components/pagination-button/PaginationButton.d.ts +9 -0
  88. package/es/components/pagination-button/PaginationButton.js +31 -0
  89. package/es/components/pagination-button/index.d.ts +1 -0
  90. package/es/components/pagination-button/index.js +1 -0
  91. package/es/components/selection/Selection.d.ts +2 -1
  92. package/es/components/selection/Selection.js +16 -12
  93. package/es/components/subtitle-button/SubtitleButton.d.ts +7 -0
  94. package/es/components/subtitle-button/SubtitleButton.js +41 -0
  95. package/es/components/subtitle-button/index.d.ts +1 -0
  96. package/es/components/subtitle-button/index.js +1 -0
  97. package/es/components/tokenColorTemporary.js +1 -3
  98. package/es/hooks/index.d.ts +1 -0
  99. package/es/hooks/index.js +1 -0
  100. package/es/hooks/useAIDTMediaQuery.d.ts +8 -0
  101. package/es/hooks/useAIDTMediaQuery.js +20 -0
  102. package/es/icons/ArrowLeft.js +4 -4
  103. package/es/icons/ArrowRight.js +6 -13
  104. package/es/icons/MoreColumn.d.ts +3 -0
  105. package/es/icons/MoreColumn.js +24 -0
  106. package/es/icons/QuestionBubble.d.ts +3 -0
  107. package/es/icons/QuestionBubble.js +24 -0
  108. package/es/icons/SearchIcon.d.ts +3 -0
  109. package/es/icons/SearchIcon.js +24 -0
  110. package/es/icons/_types.d.ts +4 -0
  111. package/es/icons/index.d.ts +3 -0
  112. package/es/icons/index.js +3 -0
  113. package/es/index.d.ts +2 -0
  114. package/es/index.js +14 -0
  115. package/es/theme/createAIDTTheme.d.ts +17 -0
  116. package/es/tokens/breakpoints/breakpoints.d.ts +1 -1
  117. package/es/tokens/breakpoints/breakpoints.js +1 -1
  118. package/es/typography/typography.d.ts +24 -112
  119. package/es/typography/typography.js +54 -135
  120. package/package.json +2 -1
  121. package/cjs/components/layout/bg_pattern.png.js +0 -7
  122. package/es/components/layout/bg_pattern.png.js +0 -3
@@ -0,0 +1,24 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var material = require('@mui/material');
6
+ var breakpoints = require('../tokens/breakpoints/breakpoints.js');
7
+
8
+ var useAIDTMediaQuery = function useAIDTMediaQuery() {
9
+ var theme = material.useTheme();
10
+ var isMobile = material.useMediaQuery(theme.breakpoints.down(breakpoints.breakpoints.xs)); // 390px 이하
11
+ var isMiniTablet = material.useMediaQuery(theme.breakpoints.down(breakpoints.breakpoints.sm)); // 512px 이하
12
+ var isTablet = material.useMediaQuery(theme.breakpoints.down(breakpoints.breakpoints.md)); // 768px 이하
13
+ var isNotebook = material.useMediaQuery(theme.breakpoints.down(breakpoints.breakpoints.lg)); // 1024px 이하
14
+ var isDesktop = material.useMediaQuery(theme.breakpoints.up(breakpoints.breakpoints.lg + 1)); // 1025px 이상
15
+ return {
16
+ isMobile: isMobile,
17
+ isMiniTablet: isMiniTablet,
18
+ isTablet: isTablet,
19
+ isNotebook: isNotebook,
20
+ isDesktop: isDesktop
21
+ };
22
+ };
23
+
24
+ exports.default = useAIDTMediaQuery;
@@ -7,19 +7,19 @@ var jsxRuntime = require('react/jsx-runtime');
7
7
 
8
8
  var ArrowLeft = function ArrowLeft(_a) {
9
9
  var _a$size = _a.size,
10
- size = _a$size === void 0 ? 16 : _a$size,
10
+ size = _a$size === void 0 ? 36 : _a$size,
11
11
  _a$color = _a.color,
12
12
  color = _a$color === void 0 ? 'currentColor' : _a$color,
13
13
  other = tslib.__rest(_a, ["size", "color"]);
14
14
  return jsxRuntime.jsx("svg", Object.assign({
15
- height: size,
16
15
  width: size,
17
- viewBox: "0 0 16 16",
16
+ height: size,
17
+ viewBox: "0 0 36 36",
18
18
  fill: "none",
19
19
  xmlns: "http://www.w3.org/2000/svg"
20
20
  }, other, {
21
21
  children: jsxRuntime.jsx("path", {
22
- d: "M10.4986 2.3535C10.6938 2.15826 11.0104 2.15827 11.2056 2.35352L11.4414 2.58924C11.6366 2.7845 11.6366 3.1011 11.4413 3.29636L6.60933 8.12799L11.4414 12.9599C11.6366 13.1551 11.6366 13.4717 11.4414 13.667L11.2057 13.9027C11.0104 14.0979 10.6938 14.0979 10.4986 13.9027L5.19526 8.59939C4.95494 8.35934 4.93645 7.98118 5.1398 7.71965L5.2 7.65133L10.4986 2.3535Z",
22
+ d: "M22.1673 4.21094L24.2886 6.33226L12.621 17.9989L24.2886 29.6662L22.1673 31.7875L9.43934 19.0596C8.89861 18.5195 8.85702 17.6686 9.31456 17.0802L9.45 16.9264L22.1673 4.21094Z",
23
23
  fill: color
24
24
  })
25
25
  }));
@@ -7,27 +7,20 @@ var jsxRuntime = require('react/jsx-runtime');
7
7
 
8
8
  var ArrowRight = function ArrowRight(_a) {
9
9
  var _a$size = _a.size,
10
- size = _a$size === void 0 ? 16 : _a$size,
10
+ size = _a$size === void 0 ? 36 : _a$size,
11
11
  _a$color = _a.color,
12
12
  color = _a$color === void 0 ? 'currentColor' : _a$color,
13
13
  other = tslib.__rest(_a, ["size", "color"]);
14
14
  return jsxRuntime.jsx("svg", Object.assign({
15
- height: size,
16
15
  width: size,
17
- viewBox: "0 0 16 16",
16
+ height: size,
17
+ viewBox: "0 0 36 36",
18
18
  fill: "none",
19
19
  xmlns: "http://www.w3.org/2000/svg"
20
20
  }, other, {
21
- children: jsxRuntime.jsx("svg", {
22
- width: "16",
23
- height: "16",
24
- viewBox: "0 0 16 16",
25
- fill: "none",
26
- xmlns: "http://www.w3.org/2000/svg",
27
- children: jsxRuntime.jsx("path", {
28
- d: "M5.50144 13.7745C5.30617 13.9697 4.98961 13.9697 4.79436 13.7745L4.55865 13.5387C4.36338 13.3435 4.36338 13.0269 4.55866 12.8316L9.39067 7.99998L4.55864 3.1681C4.36338 2.97284 4.36337 2.65625 4.55864 2.46098L4.79433 2.22529C4.9896 2.03003 5.30618 2.03003 5.50144 2.22529L10.8047 7.52859C11.0451 7.76864 11.0635 8.14679 10.8602 8.40832L10.8 8.47665L5.50144 13.7745Z",
29
- fill: color
30
- })
21
+ children: jsxRuntime.jsx("path", {
22
+ d: "M13.8323 31.7875L11.7109 29.6662L23.3785 17.9995L11.7109 6.33226L13.8323 4.21094L26.5602 16.9389C27.1009 17.479 27.1425 18.3298 26.685 18.9183L26.5495 19.072L13.8323 31.7875Z",
23
+ fill: color
31
24
  })
32
25
  }));
33
26
  };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from "./_types";
2
+ declare const MoreColumn: ({ size, color, ...other }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default MoreColumn;
@@ -0,0 +1,28 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var tslib = require('tslib');
6
+ var jsxRuntime = require('react/jsx-runtime');
7
+
8
+ var MoreColumn = function MoreColumn(_a) {
9
+ var _a$size = _a.size,
10
+ size = _a$size === void 0 ? 6 : _a$size,
11
+ _a$color = _a.color,
12
+ color = _a$color === void 0 ? '#072567' : _a$color,
13
+ other = tslib.__rest(_a, ["size", "color"]);
14
+ return jsxRuntime.jsx("svg", Object.assign({
15
+ width: size,
16
+ height: size * (18 / 6),
17
+ viewBox: "0 0 6 18",
18
+ fill: "none",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, other, {
21
+ children: jsxRuntime.jsx("path", {
22
+ d: "M3 13.5625C3.78125 13.5625 4.48438 13.9922 4.875 14.6562C5.26562 15.3594 5.26562 16.1797 4.875 16.8438C4.48438 17.5469 3.78125 17.9375 3 17.9375C2.17969 17.9375 1.47656 17.5469 1.08594 16.8438C0.695312 16.1797 0.695312 15.3594 1.08594 14.6562C1.47656 13.9922 2.17969 13.5625 3 13.5625ZM3 7.3125C3.78125 7.3125 4.48438 7.74219 4.875 8.40625C5.26562 9.10938 5.26562 9.92969 4.875 10.5938C4.48438 11.2969 3.78125 11.6875 3 11.6875C2.17969 11.6875 1.47656 11.2969 1.08594 10.5938C0.695312 9.92969 0.695312 9.10938 1.08594 8.40625C1.47656 7.74219 2.17969 7.3125 3 7.3125ZM5.1875 3.25C5.1875 4.07031 4.75781 4.77344 4.09375 5.16406C3.39062 5.55469 2.57031 5.55469 1.90625 5.16406C1.20312 4.77344 0.8125 4.07031 0.8125 3.25C0.8125 2.46875 1.20312 1.76562 1.90625 1.375C2.57031 0.984375 3.39062 0.984375 4.09375 1.375C4.75781 1.76562 5.1875 2.46875 5.1875 3.25Z",
23
+ fill: color
24
+ })
25
+ }));
26
+ };
27
+
28
+ exports.default = MoreColumn;
@@ -0,0 +1,3 @@
1
+ import { IconProps } from "./_types";
2
+ declare const QuestionBubble: ({ size, color, ...other }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default QuestionBubble;
@@ -0,0 +1,28 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var tslib = require('tslib');
6
+ var jsxRuntime = require('react/jsx-runtime');
7
+
8
+ var QuestionBubble = function QuestionBubble(_a) {
9
+ var _a$size = _a.size,
10
+ size = _a$size === void 0 ? 24 : _a$size,
11
+ _a$color = _a.color,
12
+ color = _a$color === void 0 ? '#072567' : _a$color,
13
+ other = tslib.__rest(_a, ["size", "color"]);
14
+ return jsxRuntime.jsx("svg", Object.assign({
15
+ width: size,
16
+ height: size * (25 / 24),
17
+ viewBox: "0 0 24 25",
18
+ fill: "none",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, other, {
21
+ children: jsxRuntime.jsx("path", {
22
+ d: "M0 3C0 1.35938 1.3125 0 3 0H21C22.6406 0 24 1.35938 24 3V16.5C24 18.1875 22.6406 19.5 21 19.5H14.4844L8.67188 23.8594C8.4375 24.0469 8.15625 24.0469 7.875 23.9531C7.64062 23.8125 7.5 23.5781 7.5 23.25V19.5H3C1.3125 19.5 0 18.1875 0 16.5V3ZM7.92188 5.53125V5.57812C7.73438 6.14062 8.01562 6.79688 8.625 7.03125C9.1875 7.21875 9.84375 6.89062 10.0312 6.32812L10.0781 6.28125C10.125 6.14062 10.2656 6 10.4062 6H13.125C13.5469 6 13.8281 6.32812 13.8281 6.75C13.8281 6.98438 13.7344 7.21875 13.5 7.35938L11.4375 8.53125C11.0625 8.71875 10.8281 9.09375 10.8281 9.51562V10.125C10.8281 10.7812 11.3438 11.25 11.9531 11.25C12.6094 11.25 13.0781 10.7812 13.0781 10.1719L14.625 9.28125C15.5156 8.76562 16.0781 7.78125 16.0781 6.70312C16.0781 5.10938 14.7656 3.75 13.125 3.75H10.4062C9.28125 3.75 8.29688 4.45312 7.92188 5.53125ZM13.5 14.25C13.5 13.4531 12.7969 12.75 12 12.75C11.1562 12.75 10.5 13.4531 10.5 14.25C10.5 15.0938 11.1562 15.75 12 15.75C12.7969 15.75 13.5 15.0938 13.5 14.25Z",
23
+ fill: color
24
+ })
25
+ }));
26
+ };
27
+
28
+ exports.default = QuestionBubble;
@@ -0,0 +1,3 @@
1
+ import { IconProps } from "./_types";
2
+ declare const SearchIcon: ({ size, color, ...other }: IconProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default SearchIcon;
@@ -0,0 +1,28 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var tslib = require('tslib');
6
+ var jsxRuntime = require('react/jsx-runtime');
7
+
8
+ var SearchIcon = function SearchIcon(_a) {
9
+ var _a$size = _a.size,
10
+ size = _a$size === void 0 ? 24 : _a$size,
11
+ _a$color = _a.color,
12
+ color = _a$color === void 0 ? '#072567' : _a$color,
13
+ other = tslib.__rest(_a, ["size", "color"]);
14
+ return jsxRuntime.jsx("svg", Object.assign({
15
+ width: size,
16
+ height: size * (28 / 24),
17
+ viewBox: "0 0 24 28",
18
+ fill: "none",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, other, {
21
+ children: jsxRuntime.jsx("path", {
22
+ d: "M6 2H13.5V8C13.5 8.84375 14.1562 9.5 15 9.5H21V23C21 24.6875 19.6406 26 18 26H6C4.3125 26 3 24.6875 3 23V5C3 3.35938 4.3125 2 6 2ZM15 2L21 8H15V2ZM15.75 16.25C15.75 13.7656 13.7344 11.75 11.25 11.75C8.76562 11.75 6.75 13.7656 6.75 16.25C6.75 18.7344 8.76562 20.75 11.25 20.75C12.0469 20.75 12.8438 20.5625 13.5 20.1406L15.3281 21.9688C15.75 22.3906 16.4531 22.3906 16.9219 21.9688C17.3438 21.5 17.3438 20.7969 16.9219 20.375L15.0938 18.5469C15.5156 17.8906 15.75 17.0938 15.75 16.25ZM11.25 18.5C10.4062 18.5 9.70312 18.0781 9.28125 17.375C8.85938 16.7188 8.85938 15.8281 9.28125 15.125C9.70312 14.4688 10.4062 14 11.25 14C12.0469 14 12.75 14.4688 13.1719 15.125C13.5938 15.8281 13.5938 16.7188 13.1719 17.375C12.75 18.0781 12.0469 18.5 11.25 18.5Z",
23
+ fill: color
24
+ })
25
+ }));
26
+ };
27
+
28
+ exports.default = SearchIcon;
@@ -0,0 +1,4 @@
1
+ export interface IconProps {
2
+ size?: number;
3
+ color?: string;
4
+ }
@@ -8,3 +8,6 @@ export { default as SelectedRadio } from './SelectedRadio';
8
8
  export { default as UnselectedCheckbox } from './UnselectedCheckbox';
9
9
  export { default as UnselectedRadio } from './UnselectedRadio';
10
10
  export { default as Send } from './Send';
11
+ export { default as QuestionBubble } from './QuestionBubble';
12
+ export { default as SearchIcon } from './SearchIcon';
13
+ export { default as MoreColumn } from './MoreColumn';
@@ -10,6 +10,9 @@ var SelectedRadio = require('./SelectedRadio.js');
10
10
  var UnselectedCheckbox = require('./UnselectedCheckbox.js');
11
11
  var UnselectedRadio = require('./UnselectedRadio.js');
12
12
  var Send = require('./Send.js');
13
+ var QuestionBubble = require('./QuestionBubble.js');
14
+ var SearchIcon = require('./SearchIcon.js');
15
+ var MoreColumn = require('./MoreColumn.js');
13
16
 
14
17
 
15
18
 
@@ -23,3 +26,6 @@ exports.SelectedRadio = SelectedRadio.default;
23
26
  exports.UnselectedCheckbox = UnselectedCheckbox.default;
24
27
  exports.UnselectedRadio = UnselectedRadio.default;
25
28
  exports.Send = Send.default;
29
+ exports.QuestionBubble = QuestionBubble.default;
30
+ exports.SearchIcon = SearchIcon.default;
31
+ exports.MoreColumn = MoreColumn.default;
package/cjs/index.d.ts CHANGED
@@ -1,3 +1,5 @@
1
1
  export * from './components';
2
2
  export * from './theme';
3
3
  export * from './tokens';
4
+ export * from './icons';
5
+ export * from './hooks';
package/cjs/index.js CHANGED
@@ -16,9 +16,24 @@ var Textarea = require('./components/textarea/Textarea.js');
16
16
  var Tooltip = require('./components/tooltip/Tooltip.js');
17
17
  var AIDTTypography = require('./components/AIDTTypography/AIDTTypography.js');
18
18
  var AdaptiveImage = require('./components/AdaptiveImage/AdaptiveImage.js');
19
+ var SubtitleButton = require('./components/subtitle-button/SubtitleButton.js');
19
20
  var createAIDTTheme = require('./theme/createAIDTTheme.js');
20
21
  var index = require('./tokens/colors/index.js');
21
22
  var breakpoints = require('./tokens/breakpoints/breakpoints.js');
23
+ var ArrowLeft = require('./icons/ArrowLeft.js');
24
+ var ArrowRight = require('./icons/ArrowRight.js');
25
+ var Close = require('./icons/Close.js');
26
+ var Micro = require('./icons/Micro.js');
27
+ var Reset = require('./icons/Reset.js');
28
+ var SelectedCheckbox = require('./icons/SelectedCheckbox.js');
29
+ var SelectedRadio = require('./icons/SelectedRadio.js');
30
+ var UnselectedCheckbox = require('./icons/UnselectedCheckbox.js');
31
+ var UnselectedRadio = require('./icons/UnselectedRadio.js');
32
+ var Send = require('./icons/Send.js');
33
+ var QuestionBubble = require('./icons/QuestionBubble.js');
34
+ var SearchIcon = require('./icons/SearchIcon.js');
35
+ var MoreColumn = require('./icons/MoreColumn.js');
36
+ require('@mui/material');
22
37
  var mint = require('./tokens/colors/mint.js');
23
38
  var bluepurple = require('./tokens/colors/bluepurple.js');
24
39
  var gray = require('./tokens/colors/gray.js');
@@ -48,9 +63,23 @@ exports.EliceTextarea = Textarea.default;
48
63
  exports.EliceTooltip = Tooltip.default;
49
64
  exports.AIDTTypography = AIDTTypography.default;
50
65
  exports.EliceImage = AdaptiveImage.default;
66
+ exports.EliceSubButton = SubtitleButton.default;
51
67
  exports.createAIDTTheme = createAIDTTheme.createAIDTTheme;
52
68
  exports.colors = index;
53
69
  exports.breakpoints = breakpoints.breakpoints;
70
+ exports.ArrowLeft = ArrowLeft.default;
71
+ exports.ArrowRight = ArrowRight.default;
72
+ exports.Close = Close.default;
73
+ exports.Micro = Micro.default;
74
+ exports.Reset = Reset.default;
75
+ exports.SelectedCheckbox = SelectedCheckbox.default;
76
+ exports.SelectedRadio = SelectedRadio.default;
77
+ exports.UnselectedCheckbox = UnselectedCheckbox.default;
78
+ exports.UnselectedRadio = UnselectedRadio.default;
79
+ exports.Send = Send.default;
80
+ exports.QuestionBubble = QuestionBubble.default;
81
+ exports.SearchIcon = SearchIcon.default;
82
+ exports.MoreColumn = MoreColumn.default;
54
83
  exports.mint = mint.mint;
55
84
  exports.bluepurple = bluepurple.bluepurple;
56
85
  exports.gray = gray.gray;
@@ -1,5 +1,22 @@
1
+ /// <reference types="react" />
1
2
  import type { PaletteMode, PaletteOptions, Theme } from '@mui/material';
2
3
  import type { TypographyFontFamilyType } from '../typography';
4
+ declare module '@mui/material/styles' {
5
+ interface TypographyVariants {
6
+ pagination: React.CSSProperties;
7
+ buttoninput: React.CSSProperties;
8
+ }
9
+ interface TypographyVariantsOptions {
10
+ pagination?: React.CSSProperties;
11
+ buttoninput?: React.CSSProperties;
12
+ }
13
+ }
14
+ declare module '@mui/material/Typography' {
15
+ interface TypographyPropsVariantOverrides {
16
+ pagination: true;
17
+ buttoninput: true;
18
+ }
19
+ }
3
20
  export interface MuiPalette {
4
21
  light: PaletteOptions;
5
22
  dark: PaletteOptions;
@@ -1,5 +1,5 @@
1
1
  export declare const breakpoints: Readonly<{
2
- xs: 0;
2
+ xs: 390;
3
3
  sm: 512;
4
4
  md: 768;
5
5
  lg: 1024;
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  var breakpoints = Object.freeze({
4
- xs: 0,
4
+ xs: 390,
5
5
  sm: 512,
6
6
  md: 768,
7
7
  lg: 1024,
@@ -10,156 +10,68 @@ export declare const createAIDTTypography: (fontFamily: keyof typeof TYPOGRAPHY_
10
10
  }[];
11
11
  h1: {
12
12
  fontSize: string;
13
- "@media (max-width:1279px)": {
14
- fontSize: string;
15
- };
16
- "@media (max-height:800px)": {
17
- fontSize: string;
18
- };
19
- "@media (max-width:1023px)": {
20
- fontSize: string;
21
- };
22
13
  fontWeight: number;
23
- lineHeight: number;
24
- };
25
- h2: {
26
- fontSize: string;
27
- "@media (max-width:1279px)": {
14
+ lineHeight: string;
15
+ "@media (max-width:1200px)": {
28
16
  fontSize: string;
29
17
  };
30
- "@media (max-height:800px)": {
18
+ "@media (max-width:512px)": {
31
19
  fontSize: string;
32
20
  };
33
- "@media (max-width:1023px)": {
34
- fontSize: string;
35
- };
36
- fontWeight: number;
37
- lineHeight: number;
38
21
  };
39
- h3: {
22
+ subtitle1: {
40
23
  fontSize: string;
41
- "@media (max-width:1279px)": {
42
- fontSize: string;
43
- };
44
- "@media (max-height:800px)": {
45
- fontSize: string;
46
- };
47
- "@media (max-width:1023px)": {
48
- fontSize: string;
49
- };
50
24
  fontWeight: number;
51
- lineHeight: number;
52
- };
53
- h4: {
54
- fontSize: string;
55
- "@media (max-width:1279px)": {
56
- fontSize: string;
57
- };
58
- "@media (max-height:800px)": {
25
+ lineHeight: string;
26
+ "@media (max-width:1200px)": {
59
27
  fontSize: string;
60
28
  };
61
- "@media (max-width:1023px)": {
29
+ "@media (max-width:512px)": {
62
30
  fontSize: string;
63
31
  };
64
- fontWeight: number;
65
- lineHeight: number;
66
32
  };
67
- h5: {
33
+ subtitle2: {
68
34
  fontSize: string;
69
- "@media (max-width:1279px)": {
70
- fontSize: string;
71
- };
72
- "@media (max-height:800px)": {
73
- fontSize: string;
74
- };
75
- "@media (max-width:1023px)": {
76
- fontSize: string;
77
- };
78
35
  fontWeight: number;
79
- lineHeight: number;
80
- };
81
- h6: {
82
- fontSize: string;
83
- "@media (max-width:1279px)": {
36
+ lineHeight: string;
37
+ "@media (max-width:1200px)": {
84
38
  fontSize: string;
85
39
  };
86
- "@media (max-height:800px)": {
40
+ "@media (max-width:512px)": {
87
41
  fontSize: string;
88
42
  };
89
- "@media (max-width:1023px)": {
90
- fontSize: string;
91
- };
92
- fontWeight: number;
93
- lineHeight: number;
94
43
  };
95
- subtitle1: {
44
+ body1: {
96
45
  fontSize: string;
97
- "@media (max-width:1279px)": {
98
- fontSize: string;
99
- };
100
- "@media (max-height:800px)": {
101
- fontSize: string;
102
- };
103
- "@media (max-width:1023px)": {
104
- fontSize: string;
105
- };
106
46
  fontWeight: number;
107
- lineHeight: number;
108
- };
109
- subtitle2: {
110
- fontSize: string;
111
- "@media (max-width:1279px)": {
112
- fontSize: string;
113
- };
114
- "@media (max-height:800px)": {
47
+ lineHeight: string;
48
+ "@media (max-width:1200px)": {
115
49
  fontSize: string;
116
50
  };
117
- "@media (max-width:1023px)": {
51
+ "@media (max-width:512px)": {
118
52
  fontSize: string;
119
53
  };
120
- fontWeight: number;
121
- lineHeight: number;
122
54
  };
123
- body1: {
55
+ buttoninput: {
124
56
  fontSize: string;
125
- "@media (max-width:1279px)": {
126
- fontSize: string;
127
- };
128
- "@media (max-height:800px)": {
129
- fontSize: string;
130
- };
131
- "@media (max-width:1023px)": {
132
- fontSize: string;
133
- };
134
57
  fontWeight: number;
135
- lineHeight: number;
136
- };
137
- body2: {
138
- fontSize: string;
139
- "@media (max-width:1279px)": {
140
- fontSize: string;
141
- };
142
- "@media (max-height:800px)": {
58
+ lineHeight: string;
59
+ "@media (max-width:1200px)": {
143
60
  fontSize: string;
144
61
  };
145
- "@media (max-width:1023px)": {
62
+ "@media (max-width:512px)": {
146
63
  fontSize: string;
147
64
  };
148
- fontWeight: number;
149
- lineHeight: number;
150
65
  };
151
- caption: {
66
+ pagination: {
152
67
  fontSize: string;
153
- "@media (max-width:1279px)": {
154
- fontSize: string;
155
- };
156
- "@media (max-height:800px)": {
68
+ fontWeight: number;
69
+ lineHeight: string;
70
+ "@media (max-width:1200px)": {
157
71
  fontSize: string;
158
72
  };
159
- "@media (max-width:1023px)": {
73
+ "@media (max-width:512px)": {
160
74
  fontSize: string;
161
75
  };
162
- fontWeight: number;
163
- lineHeight: number;
164
76
  };
165
77
  };