@synerise/ds-icon 1.11.1 → 1.12.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.
- package/CHANGELOG.md +6 -0
- package/README.md +11 -10
- package/dist/DynamicIcon/DynamicIcon.d.ts +15 -5
- package/dist/DynamicIcon/DynamicIcon.js +14 -11
- package/dist/Icon.js +7 -3
- package/dist/Icon.types.d.ts +24 -0
- package/dist/MimeTypeIcon/MimeTypeIcon.js +4 -4
- package/dist/MimeTypeIcon/MimeTypeIcon.utils.d.ts +2 -2
- package/dist/MimeTypeIcon/MimeTypeIcon.utils.js +13 -15
- package/dist/icons/L/index.d.ts +31 -31
- package/dist/icons/L/index.js +32 -32
- package/dist/icons/M/index.d.ts +450 -450
- package/dist/icons/M/index.js +449 -449
- package/dist/icons/XL/index.d.ts +53 -53
- package/dist/icons/XL/index.js +53 -53
- package/dist/icons/additional/index.d.ts +51 -51
- package/dist/icons/additional/index.js +52 -52
- package/dist/icons/colorIcons/index.d.ts +8 -8
- package/dist/icons/colorIcons/index.js +8 -8
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2 -1
- package/dist/useIconComponent.d.ts +7 -0
- package/dist/useIconComponent.js +18 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.12.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@1.11.1...@synerise/ds-icon@1.12.0) (2026-02-10)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **mocks:** add base package structure ([f4e5263](https://github.com/Synerise/synerise-design/commit/f4e5263d21675dbb3d040a3efbe84b726e12ddca))
|
|
11
|
+
|
|
6
12
|
## [1.11.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@1.11.0...@synerise/ds-icon@1.11.1) (2026-02-05)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @synerise/ds-icon
|
package/README.md
CHANGED
|
@@ -23,25 +23,26 @@ yarn add @synerise/ds-icon
|
|
|
23
23
|
|
|
24
24
|
## Usage
|
|
25
25
|
|
|
26
|
-
```
|
|
27
|
-
import Icon
|
|
26
|
+
```tsx
|
|
27
|
+
import Icon from '@synerise/ds-icon'
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
/>
|
|
29
|
+
// Recommended: use iconName prop with icon name as string
|
|
30
|
+
<Icon iconName="AngleLeftM" color="red" size={20} />
|
|
31
|
+
|
|
32
|
+
// Deprecated: using component prop
|
|
33
|
+
import Icon, { AngleLeftM } from '@synerise/ds-icon'
|
|
34
|
+
<Icon component={<AngleLeftM />} color="red" size={20} />
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
## API
|
|
38
38
|
|
|
39
39
|
| Property | Description | Type | Default |
|
|
40
40
|
| --------- | ---------------------------------------------------------- | ---------------- | ------- |
|
|
41
|
+
| iconName | Icon name as string (recommended) | IconName | |
|
|
41
42
|
| color | Define the color used | string | inherit |
|
|
42
43
|
| title | Name icon | string | |
|
|
43
44
|
| size | Define size icon | string or number | 24 |
|
|
44
|
-
| onClick | The callback function that is triggered when click on icon |
|
|
45
|
-
| component |
|
|
45
|
+
| onClick | The callback function that is triggered when click on icon | function | |
|
|
46
|
+
| component | ⚠️ Deprecated - use `iconName` instead | ReactNode | |
|
|
46
47
|
| className | icon className | string | |
|
|
47
48
|
| style | Style properties of icon, like color etc. | CSSProperties | |
|
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
import React, { type ReactNode } from 'react';
|
|
2
2
|
import type { IconProps } from '../Icon.types';
|
|
3
|
-
import {
|
|
4
|
-
export type DynamicIconProps = Omit<IconProps, 'component'> & {
|
|
5
|
-
name:
|
|
3
|
+
import { type IconName } from '../useIconComponent';
|
|
4
|
+
export type DynamicIconProps = Omit<IconProps, 'component' | 'iconName'> & {
|
|
5
|
+
name: IconName;
|
|
6
6
|
fallback?: ReactNode;
|
|
7
7
|
};
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated Use `<Icon iconName="IconName" />` instead of `<DynamicIcon name="IconName" />`.
|
|
10
|
+
* The Icon component now supports dynamic icon loading via the `iconName` prop.
|
|
11
|
+
* @example
|
|
12
|
+
* // Before (deprecated):
|
|
13
|
+
* <DynamicIcon name="InfoM" />
|
|
14
|
+
*
|
|
15
|
+
* // After (recommended):
|
|
16
|
+
* <Icon iconName="InfoM" />
|
|
17
|
+
*/
|
|
18
|
+
export declare const DynamicIcon: ({ name, fallback, ...props }: DynamicIconProps) => string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null;
|
|
10
19
|
export default DynamicIcon;
|
|
20
|
+
export type { IconName as DynamicIconName };
|
|
@@ -1,27 +1,30 @@
|
|
|
1
1
|
var _excluded = ["name", "fallback"];
|
|
2
2
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
3
3
|
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
4
|
-
import React
|
|
4
|
+
import React from 'react';
|
|
5
5
|
import Icon from '../Icon';
|
|
6
|
-
import {
|
|
6
|
+
import { useIconComponent } from '../useIconComponent';
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated Use `<Icon iconName="IconName" />` instead of `<DynamicIcon name="IconName" />`.
|
|
9
|
+
* The Icon component now supports dynamic icon loading via the `iconName` prop.
|
|
10
|
+
* @example
|
|
11
|
+
* // Before (deprecated):
|
|
12
|
+
* <DynamicIcon name="InfoM" />
|
|
13
|
+
*
|
|
14
|
+
* // After (recommended):
|
|
15
|
+
* <Icon iconName="InfoM" />
|
|
16
|
+
*/
|
|
7
17
|
export var DynamicIcon = function DynamicIcon(_ref) {
|
|
8
18
|
var name = _ref.name,
|
|
9
19
|
_ref$fallback = _ref.fallback,
|
|
10
20
|
fallback = _ref$fallback === void 0 ? null : _ref$fallback,
|
|
11
21
|
props = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
12
|
-
var IconComponent =
|
|
13
|
-
var iconModule = iconManifest[name];
|
|
14
|
-
if (!iconModule) {
|
|
15
|
-
return null;
|
|
16
|
-
}
|
|
17
|
-
var component = iconModule[name];
|
|
18
|
-
return component && typeof component === 'function' ? component : null;
|
|
19
|
-
}, [name]);
|
|
22
|
+
var IconComponent = useIconComponent(name);
|
|
20
23
|
if (!IconComponent) {
|
|
21
24
|
return fallback;
|
|
22
25
|
}
|
|
23
26
|
return /*#__PURE__*/React.createElement(Icon, _extends({}, props, {
|
|
24
|
-
|
|
27
|
+
iconName: name
|
|
25
28
|
}));
|
|
26
29
|
};
|
|
27
30
|
export default DynamicIcon;
|
package/dist/Icon.js
CHANGED
|
@@ -1,17 +1,21 @@
|
|
|
1
|
-
var _excluded = ["name", "component", "className"];
|
|
1
|
+
var _excluded = ["name", "iconName", "component", "className"];
|
|
2
2
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
3
3
|
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
4
4
|
import React, { forwardRef } from 'react';
|
|
5
5
|
import * as S from './Icon.styles';
|
|
6
|
+
import { useIconComponent } from './useIconComponent';
|
|
6
7
|
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
7
8
|
var name = _ref.name,
|
|
9
|
+
iconName = _ref.iconName,
|
|
8
10
|
component = _ref.component,
|
|
9
11
|
className = _ref.className,
|
|
10
12
|
rest = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
13
|
+
var IconComponent = useIconComponent(iconName);
|
|
14
|
+
var renderedIcon = IconComponent ? /*#__PURE__*/React.createElement(IconComponent, null) : component;
|
|
11
15
|
return /*#__PURE__*/React.createElement(S.IconContainer, _extends({
|
|
12
16
|
className: "ds-icon " + (className || ''),
|
|
13
|
-
title: name,
|
|
17
|
+
title: name || iconName,
|
|
14
18
|
ref: ref
|
|
15
|
-
}, rest),
|
|
19
|
+
}, rest), renderedIcon);
|
|
16
20
|
});
|
|
17
21
|
export default Icon;
|
package/dist/Icon.types.d.ts
CHANGED
|
@@ -1,11 +1,35 @@
|
|
|
1
1
|
import type { ForwardRefExoticComponent, ReactNode, RefAttributes } from 'react';
|
|
2
2
|
import { type StyledComponent } from 'styled-components';
|
|
3
3
|
import type { WithHTMLAttributes } from '@synerise/ds-utils';
|
|
4
|
+
import type { IconName } from './useIconComponent';
|
|
5
|
+
export type { IconName };
|
|
4
6
|
export type BaseIconProps = {
|
|
5
7
|
color?: string;
|
|
8
|
+
/**
|
|
9
|
+
* Icon name - use this to render an icon by its name (e.g., 'InfoM', 'AddM').
|
|
10
|
+
* This is the recommended way to use icons.
|
|
11
|
+
* @example
|
|
12
|
+
* ```tsx
|
|
13
|
+
* <Icon iconName="InfoM" />
|
|
14
|
+
* <Icon iconName="AddM" size={24} color="blue" />
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
iconName?: IconName;
|
|
18
|
+
/**
|
|
19
|
+
* Display name for the icon (used as title attribute)
|
|
20
|
+
*/
|
|
6
21
|
name?: string;
|
|
7
22
|
size?: string | number;
|
|
8
23
|
stroke?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* @deprecated Use the `iconName` prop instead with the icon name as a string.
|
|
26
|
+
* @example
|
|
27
|
+
* // Before (deprecated):
|
|
28
|
+
* <Icon component={<InfoM />} />
|
|
29
|
+
*
|
|
30
|
+
* // After (recommended):
|
|
31
|
+
* <Icon iconName="InfoM" />
|
|
32
|
+
*/
|
|
9
33
|
component?: ReactNode;
|
|
10
34
|
};
|
|
11
35
|
export type IconProps = WithHTMLAttributes<HTMLDivElement, BaseIconProps>;
|
|
@@ -3,15 +3,15 @@ function _extends() { return _extends = Object.assign ? Object.assign.bind() : f
|
|
|
3
3
|
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
|
|
4
4
|
import React, { useMemo } from 'react';
|
|
5
5
|
import Icon from '../Icon';
|
|
6
|
-
import {
|
|
6
|
+
import { mapMimeTypeToIconName } from './MimeTypeIcon.utils';
|
|
7
7
|
var MimeTypeIcon = function MimeTypeIcon(_ref) {
|
|
8
8
|
var type = _ref.type,
|
|
9
9
|
iconProps = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
10
|
-
var
|
|
11
|
-
return
|
|
10
|
+
var iconName = useMemo(function () {
|
|
11
|
+
return mapMimeTypeToIconName(type);
|
|
12
12
|
}, [type]);
|
|
13
13
|
return /*#__PURE__*/React.createElement(Icon, _extends({}, iconProps, {
|
|
14
|
-
|
|
14
|
+
iconName: iconName
|
|
15
15
|
}));
|
|
16
16
|
};
|
|
17
17
|
export default MimeTypeIcon;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export declare const
|
|
1
|
+
import type { IconName } from '../useIconComponent';
|
|
2
|
+
export declare const mapMimeTypeToIconName: (mimeType: string) => IconName;
|
|
@@ -1,41 +1,39 @@
|
|
|
1
|
-
|
|
2
|
-
import { FileActionM, FileArchiveM, FileCodeM, FileM, FileTypeImageM, FileTypePlainM, FileTypeTableM, FileTypeTextM } from '../icons/M';
|
|
3
|
-
export var mapMimeTypeToIcon = function mapMimeTypeToIcon(mimeType) {
|
|
1
|
+
export var mapMimeTypeToIconName = function mapMimeTypeToIconName(mimeType) {
|
|
4
2
|
switch (mimeType) {
|
|
5
3
|
case 'text/csv':
|
|
6
|
-
return
|
|
4
|
+
return 'FileTypeTableM';
|
|
7
5
|
case 'application/msword':
|
|
8
6
|
case 'application/vnd.openxmlformats-officedocument.wordprocessingml.document':
|
|
9
|
-
return
|
|
7
|
+
return 'FileTypeTextM';
|
|
10
8
|
case 'text/html':
|
|
11
|
-
return
|
|
9
|
+
return 'FileCodeM';
|
|
12
10
|
case 'audio/mp3':
|
|
13
11
|
case 'audio/mpeg3':
|
|
14
|
-
return
|
|
12
|
+
return 'FileActionM';
|
|
15
13
|
case 'application/pdf':
|
|
16
|
-
return
|
|
14
|
+
return 'FileTypeImageM';
|
|
17
15
|
case 'application/mspowerpoint':
|
|
18
16
|
case 'application/vnd.ms-powerpoint':
|
|
19
17
|
case 'application/vnd.openxmlformats-officedocument.presentationml.presentation':
|
|
20
|
-
return
|
|
18
|
+
return 'FileTypePlainM';
|
|
21
19
|
case 'image/svg':
|
|
22
|
-
return
|
|
20
|
+
return 'FileTypeImageM';
|
|
23
21
|
case 'text/plain':
|
|
24
|
-
return
|
|
22
|
+
return 'FileTypeTextM';
|
|
25
23
|
case 'video/avi':
|
|
26
24
|
case 'video/quicktime':
|
|
27
25
|
case 'video/mpeg':
|
|
28
|
-
return
|
|
26
|
+
return 'FileActionM';
|
|
29
27
|
case 'application/excel':
|
|
30
28
|
case 'application/vnd.ms-excel':
|
|
31
29
|
case 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet':
|
|
32
|
-
return
|
|
30
|
+
return 'FileTypeTableM';
|
|
33
31
|
case 'application/zip':
|
|
34
32
|
case 'multipart/x-zip':
|
|
35
33
|
case 'application/x-compressed':
|
|
36
34
|
case 'application/x-zip-compressed':
|
|
37
|
-
return
|
|
35
|
+
return 'FileArchiveM';
|
|
38
36
|
default:
|
|
39
|
-
return
|
|
37
|
+
return 'FileM';
|
|
40
38
|
}
|
|
41
39
|
};
|
package/dist/icons/L/index.d.ts
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
export { default as VideoL } from './VideoL';
|
|
2
1
|
export { default as WarningL } from './WarningL';
|
|
2
|
+
export { default as TableL } from './TableL';
|
|
3
3
|
export { default as TooltipL } from './TooltipL';
|
|
4
|
-
export { default as TextL } from './TextL';
|
|
5
4
|
export { default as TimeL } from './TimeL';
|
|
6
|
-
export { default as TextareaL } from './TextareaL';
|
|
7
|
-
export { default as TableL } from './TableL';
|
|
8
5
|
export { default as StackedL } from './StackedL';
|
|
9
|
-
export { default as
|
|
10
|
-
export { default as
|
|
6
|
+
export { default as SpinnerL } from './SpinnerL';
|
|
7
|
+
export { default as TextL } from './TextL';
|
|
11
8
|
export { default as ShowL } from './ShowL';
|
|
9
|
+
export { default as SliderL } from './SliderL';
|
|
10
|
+
export { default as TextareaL } from './TextareaL';
|
|
12
11
|
export { default as SectionL } from './SectionL';
|
|
12
|
+
export { default as SelectL } from './SelectL';
|
|
13
13
|
export { default as Section13L } from './Section13L';
|
|
14
|
-
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
15
|
-
export { default as SpinnerL } from './SpinnerL';
|
|
16
14
|
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
15
|
+
export { default as Section37L } from './Section37L';
|
|
16
|
+
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
17
|
+
export { default as Section12L } from './Section12L';
|
|
17
18
|
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
18
19
|
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
20
|
+
export { default as NoPermissionL } from './NoPermissionL';
|
|
19
21
|
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
20
|
-
export { default as RadioL } from './RadioL';
|
|
21
|
-
export { default as Section12L } from './Section12L';
|
|
22
|
-
export { default as QuoteL } from './QuoteL';
|
|
23
22
|
export { default as NoData } from './NoData';
|
|
23
|
+
export { default as RadioL } from './RadioL';
|
|
24
24
|
export { default as NavbarL } from './NavbarL';
|
|
25
|
-
export { default as NoPermissionL } from './NoPermissionL';
|
|
26
25
|
export { default as MultilineL } from './MultilineL';
|
|
27
26
|
export { default as MobileUrlL } from './MobileUrlL';
|
|
28
|
-
export { default as
|
|
27
|
+
export { default as PieL } from './PieL';
|
|
29
28
|
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
30
29
|
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
31
|
-
export { default as
|
|
32
|
-
export { default as
|
|
33
|
-
export { default as
|
|
30
|
+
export { default as MobileLinkL } from './MobileLinkL';
|
|
31
|
+
export { default as QuoteL } from './QuoteL';
|
|
32
|
+
export { default as VideoL } from './VideoL';
|
|
34
33
|
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
34
|
+
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
35
35
|
export { default as MobileBlockL } from './MobileBlockL';
|
|
36
36
|
export { default as LineL } from './LineL';
|
|
37
|
+
export { default as MobileClickL } from './MobileClickL';
|
|
38
|
+
export { default as LabelL } from './LabelL';
|
|
37
39
|
export { default as LinkL } from './LinkL';
|
|
38
40
|
export { default as LandingPageL } from './LandingPageL';
|
|
41
|
+
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
39
42
|
export { default as LocationL } from './LocationL';
|
|
40
|
-
export { default as LabelL } from './LabelL';
|
|
41
|
-
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
42
43
|
export { default as InfoL } from './InfoL';
|
|
43
|
-
export { default as
|
|
44
|
+
export { default as InputL } from './InputL';
|
|
44
45
|
export { default as ImageUrlL } from './ImageUrlL';
|
|
45
46
|
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
46
|
-
export { default as
|
|
47
|
+
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
48
|
+
export { default as InboxNoResultsL } from './InboxNoResultsL';
|
|
47
49
|
export { default as ImageL } from './ImageL';
|
|
48
|
-
export { default as FormL } from './FormL';
|
|
49
|
-
export { default as InputL } from './InputL';
|
|
50
50
|
export { default as HideL } from './HideL';
|
|
51
|
+
export { default as HashL } from './HashL';
|
|
52
|
+
export { default as FormL } from './FormL';
|
|
53
|
+
export { default as FormEditL } from './FormEditL';
|
|
51
54
|
export { default as FormGroupL } from './FormGroupL';
|
|
52
|
-
export { default as FolderPlainL } from './FolderPlainL';
|
|
53
55
|
export { default as FolderPredefinedL } from './FolderPredefinedL';
|
|
54
|
-
export { default as
|
|
55
|
-
export { default as HashL } from './HashL';
|
|
56
|
-
export { default as CountdownL } from './CountdownL';
|
|
56
|
+
export { default as FolderPlainL } from './FolderPlainL';
|
|
57
57
|
export { default as FolderL } from './FolderL';
|
|
58
|
+
export { default as ComboL } from './ComboL';
|
|
58
59
|
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
59
|
-
export { default as
|
|
60
|
-
export { default as ColumnL } from './ColumnL';
|
|
60
|
+
export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
|
|
61
61
|
export { default as DividerL } from './DividerL';
|
|
62
|
+
export { default as ColumnL } from './ColumnL';
|
|
63
|
+
export { default as CountdownL } from './CountdownL';
|
|
62
64
|
export { default as CloseL } from './CloseL';
|
|
63
|
-
export { default as ComboL } from './ComboL';
|
|
64
65
|
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
|
65
|
-
export { default as CheckboxL } from './CheckboxL';
|
|
66
66
|
export { default as CheckL } from './CheckL';
|
|
67
67
|
export { default as BrowserL } from './BrowserL';
|
|
68
|
+
export { default as CheckboxL } from './CheckboxL';
|
|
68
69
|
export { default as ButtonL } from './ButtonL';
|
|
69
70
|
export { default as AddL } from './AddL';
|
|
70
|
-
export { default as Section37L } from './Section37L';
|
package/dist/icons/L/index.js
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
export { default as VideoL } from './VideoL';
|
|
2
1
|
export { default as WarningL } from './WarningL';
|
|
2
|
+
export { default as TableL } from './TableL';
|
|
3
3
|
export { default as TooltipL } from './TooltipL';
|
|
4
|
-
export { default as TextL } from './TextL';
|
|
5
4
|
export { default as TimeL } from './TimeL';
|
|
6
|
-
export { default as TextareaL } from './TextareaL';
|
|
7
|
-
export { default as TableL } from './TableL';
|
|
8
5
|
export { default as StackedL } from './StackedL';
|
|
9
|
-
export { default as
|
|
10
|
-
export { default as
|
|
6
|
+
export { default as SpinnerL } from './SpinnerL';
|
|
7
|
+
export { default as TextL } from './TextL';
|
|
11
8
|
export { default as ShowL } from './ShowL';
|
|
9
|
+
export { default as SliderL } from './SliderL';
|
|
10
|
+
export { default as TextareaL } from './TextareaL';
|
|
12
11
|
export { default as SectionL } from './SectionL';
|
|
12
|
+
export { default as SelectL } from './SelectL';
|
|
13
13
|
export { default as Section13L } from './Section13L';
|
|
14
|
-
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
15
|
-
export { default as SpinnerL } from './SpinnerL';
|
|
16
14
|
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
15
|
+
export { default as Section37L } from './Section37L';
|
|
16
|
+
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
17
|
+
export { default as Section12L } from './Section12L';
|
|
17
18
|
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
18
19
|
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
20
|
+
export { default as NoPermissionL } from './NoPermissionL';
|
|
19
21
|
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
20
|
-
export { default as RadioL } from './RadioL';
|
|
21
|
-
export { default as Section12L } from './Section12L';
|
|
22
|
-
export { default as QuoteL } from './QuoteL';
|
|
23
22
|
export { default as NoData } from './NoData';
|
|
23
|
+
export { default as RadioL } from './RadioL';
|
|
24
24
|
export { default as NavbarL } from './NavbarL';
|
|
25
|
-
export { default as NoPermissionL } from './NoPermissionL';
|
|
26
25
|
export { default as MultilineL } from './MultilineL';
|
|
27
26
|
export { default as MobileUrlL } from './MobileUrlL';
|
|
28
|
-
export { default as
|
|
27
|
+
export { default as PieL } from './PieL';
|
|
29
28
|
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
30
29
|
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
31
|
-
export { default as
|
|
32
|
-
export { default as
|
|
33
|
-
export { default as
|
|
30
|
+
export { default as MobileLinkL } from './MobileLinkL';
|
|
31
|
+
export { default as QuoteL } from './QuoteL';
|
|
32
|
+
export { default as VideoL } from './VideoL';
|
|
34
33
|
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
34
|
+
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
35
35
|
export { default as MobileBlockL } from './MobileBlockL';
|
|
36
36
|
export { default as LineL } from './LineL';
|
|
37
|
+
export { default as MobileClickL } from './MobileClickL';
|
|
38
|
+
export { default as LabelL } from './LabelL';
|
|
37
39
|
export { default as LinkL } from './LinkL';
|
|
38
40
|
export { default as LandingPageL } from './LandingPageL';
|
|
41
|
+
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
39
42
|
export { default as LocationL } from './LocationL';
|
|
40
|
-
export { default as LabelL } from './LabelL';
|
|
41
|
-
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
42
43
|
export { default as InfoL } from './InfoL';
|
|
43
|
-
export { default as
|
|
44
|
+
export { default as InputL } from './InputL';
|
|
44
45
|
export { default as ImageUrlL } from './ImageUrlL';
|
|
45
46
|
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
46
|
-
export { default as
|
|
47
|
+
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
48
|
+
export { default as InboxNoResultsL } from './InboxNoResultsL';
|
|
47
49
|
export { default as ImageL } from './ImageL';
|
|
48
|
-
export { default as FormL } from './FormL';
|
|
49
|
-
export { default as InputL } from './InputL';
|
|
50
50
|
export { default as HideL } from './HideL';
|
|
51
|
+
export { default as HashL } from './HashL';
|
|
52
|
+
export { default as FormL } from './FormL';
|
|
53
|
+
export { default as FormEditL } from './FormEditL';
|
|
51
54
|
export { default as FormGroupL } from './FormGroupL';
|
|
52
|
-
export { default as FolderPlainL } from './FolderPlainL';
|
|
53
55
|
export { default as FolderPredefinedL } from './FolderPredefinedL';
|
|
54
|
-
export { default as
|
|
55
|
-
export { default as HashL } from './HashL';
|
|
56
|
-
export { default as CountdownL } from './CountdownL';
|
|
56
|
+
export { default as FolderPlainL } from './FolderPlainL';
|
|
57
57
|
export { default as FolderL } from './FolderL';
|
|
58
|
+
export { default as ComboL } from './ComboL';
|
|
58
59
|
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
59
|
-
export { default as
|
|
60
|
-
export { default as ColumnL } from './ColumnL';
|
|
60
|
+
export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
|
|
61
61
|
export { default as DividerL } from './DividerL';
|
|
62
|
+
export { default as ColumnL } from './ColumnL';
|
|
63
|
+
export { default as CountdownL } from './CountdownL';
|
|
62
64
|
export { default as CloseL } from './CloseL';
|
|
63
|
-
export { default as ComboL } from './ComboL';
|
|
64
65
|
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
|
65
|
-
export { default as CheckboxL } from './CheckboxL';
|
|
66
66
|
export { default as CheckL } from './CheckL';
|
|
67
67
|
export { default as BrowserL } from './BrowserL';
|
|
68
|
+
export { default as CheckboxL } from './CheckboxL';
|
|
68
69
|
export { default as ButtonL } from './ButtonL';
|
|
69
|
-
export { default as AddL } from './AddL';
|
|
70
|
-
export { default as Section37L } from './Section37L';
|
|
70
|
+
export { default as AddL } from './AddL';
|