@synerise/ds-icon 1.14.0 → 1.14.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.
- package/CHANGELOG.md +6 -0
- package/dist/DynamicIcon/iconManifest.d.ts +11 -0
- package/dist/DynamicIcon/iconManifest.js +5 -0
- package/dist/icons/L/index.d.ts +35 -35
- package/dist/icons/L/index.js +36 -36
- package/dist/icons/M/index.d.ts +440 -440
- package/dist/icons/M/index.js +440 -440
- package/dist/icons/XL/index.d.ts +50 -50
- package/dist/icons/XL/index.js +50 -50
- package/dist/icons/additional/index.d.ts +55 -55
- package/dist/icons/additional/index.js +55 -55
- package/dist/icons/colorIcons/index.d.ts +6 -6
- package/dist/icons/colorIcons/index.js +6 -6
- package/dist/useIconComponent.d.ts +2 -2
- 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.14.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@1.14.0...@synerise/ds-icon@1.14.1) (2026-02-19)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **icon:** iconName type changed to literal string union ([0d73571](https://github.com/Synerise/synerise-design/commit/0d735719bf44bed1c0ed6844a2d3eb069a40aab5))
|
|
11
|
+
|
|
6
12
|
# [1.14.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@1.13.1...@synerise/ds-icon@1.14.0) (2026-02-12)
|
|
7
13
|
|
|
8
14
|
### Features
|
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
import { type ComponentType, type SVGProps } from 'react';
|
|
2
|
+
import * as large from '../icons/L';
|
|
3
|
+
import * as medium from '../icons/M';
|
|
4
|
+
import * as xlarge from '../icons/XL';
|
|
5
|
+
import * as additional from '../icons/additional';
|
|
6
|
+
import * as color from '../icons/colorIcons';
|
|
2
7
|
type IconComponent = ComponentType<SVGProps<SVGSVGElement>>;
|
|
3
8
|
type IconModule = Record<string, IconComponent>;
|
|
9
|
+
type MediumIconNames = keyof typeof medium;
|
|
10
|
+
type LargeIconNames = keyof typeof large;
|
|
11
|
+
type XLargeIconNames = keyof typeof xlarge;
|
|
12
|
+
type AdditionalIconNames = keyof typeof additional;
|
|
13
|
+
type ColorIconNames = keyof typeof color;
|
|
14
|
+
export type AllIconNames = MediumIconNames | LargeIconNames | XLargeIconNames | AdditionalIconNames | ColorIconNames;
|
|
4
15
|
export declare const iconManifest: Record<string, IconModule>;
|
|
5
16
|
export {};
|
|
@@ -3,6 +3,11 @@ import * as medium from '../icons/M';
|
|
|
3
3
|
import * as xlarge from '../icons/XL';
|
|
4
4
|
import * as additional from '../icons/additional';
|
|
5
5
|
import * as color from '../icons/colorIcons';
|
|
6
|
+
|
|
7
|
+
// Extract icon names from all modules as literal types
|
|
8
|
+
|
|
9
|
+
// Combine all icon names into a single union type
|
|
10
|
+
|
|
6
11
|
var iconSources = [{
|
|
7
12
|
module: medium
|
|
8
13
|
}, {
|
package/dist/icons/L/index.d.ts
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
export { default as WarningL } from './WarningL';
|
|
2
1
|
export { default as TooltipL } from './TooltipL';
|
|
3
2
|
export { default as TextareaL } from './TextareaL';
|
|
3
|
+
export { default as VideoL } from './VideoL';
|
|
4
4
|
export { default as TextL } from './TextL';
|
|
5
|
-
export { default as
|
|
6
|
-
export { default as TimeL } from './TimeL';
|
|
7
|
-
export { default as StackedL } from './StackedL';
|
|
8
|
-
export { default as ShowL } from './ShowL';
|
|
5
|
+
export { default as WarningL } from './WarningL';
|
|
9
6
|
export { default as SliderL } from './SliderL';
|
|
7
|
+
export { default as ShowL } from './ShowL';
|
|
8
|
+
export { default as TimeL } from './TimeL';
|
|
10
9
|
export { default as SectionL } from './SectionL';
|
|
11
10
|
export { default as SelectL } from './SelectL';
|
|
12
|
-
export { default as
|
|
11
|
+
export { default as TableL } from './TableL';
|
|
12
|
+
export { default as StackedL } from './StackedL';
|
|
13
13
|
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
14
|
-
export { default as
|
|
14
|
+
export { default as Section37L } from './Section37L';
|
|
15
15
|
export { default as Section12L } from './Section12L';
|
|
16
|
-
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
17
|
-
export { default as VideoL } from './VideoL';
|
|
18
16
|
export { default as SpinnerL } from './SpinnerL';
|
|
19
|
-
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
20
17
|
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
21
|
-
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
22
|
-
export { default as RadioL } from './RadioL';
|
|
23
|
-
export { default as PieL } from './PieL';
|
|
24
18
|
export { default as QuoteL } from './QuoteL';
|
|
25
|
-
export { default as
|
|
19
|
+
export { default as Section13L } from './Section13L';
|
|
20
|
+
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
21
|
+
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
22
|
+
export { default as RadioL } from './RadioL';
|
|
23
|
+
export { default as NoData } from './NoData';
|
|
26
24
|
export { default as MobileUrlL } from './MobileUrlL';
|
|
27
25
|
export { default as MobileLinkL } from './MobileLinkL';
|
|
26
|
+
export { default as MultilineL } from './MultilineL';
|
|
27
|
+
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
28
|
+
export { default as PieL } from './PieL';
|
|
29
|
+
export { default as NavbarL } from './NavbarL';
|
|
28
30
|
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
29
|
-
export { default as NoData } from './NoData';
|
|
30
|
-
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
31
31
|
export { default as NoPermissionL } from './NoPermissionL';
|
|
32
|
-
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
33
|
-
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
34
|
-
export { default as MobileClickL } from './MobileClickL';
|
|
35
32
|
export { default as LocationL } from './LocationL';
|
|
33
|
+
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
36
34
|
export { default as MobileBlockL } from './MobileBlockL';
|
|
37
|
-
export { default as LineL } from './LineL';
|
|
38
|
-
export { default as MultilineL } from './MultilineL';
|
|
39
35
|
export { default as LinkL } from './LinkL';
|
|
40
|
-
export { default as
|
|
41
|
-
export { default as
|
|
36
|
+
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
37
|
+
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
42
38
|
export { default as LabelL } from './LabelL';
|
|
43
|
-
export { default as InputL } from './InputL';
|
|
44
|
-
export { default as InfoL } from './InfoL';
|
|
45
39
|
export { default as InboxNoResultsL } from './InboxNoResultsL';
|
|
46
|
-
export { default as
|
|
40
|
+
export { default as LineL } from './LineL';
|
|
41
|
+
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
42
|
+
export { default as InfoL } from './InfoL';
|
|
43
|
+
export { default as LandingPageL } from './LandingPageL';
|
|
44
|
+
export { default as InputL } from './InputL';
|
|
47
45
|
export { default as ImageL } from './ImageL';
|
|
46
|
+
export { default as MobileClickL } from './MobileClickL';
|
|
48
47
|
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
49
|
-
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
50
48
|
export { default as HideL } from './HideL';
|
|
51
49
|
export { default as HashL } from './HashL';
|
|
50
|
+
export { default as ImageUrlL } from './ImageUrlL';
|
|
52
51
|
export { default as FormL } from './FormL';
|
|
53
|
-
export { default as
|
|
54
|
-
export { default as FormGroupL } from './FormGroupL';
|
|
52
|
+
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
55
53
|
export { default as FormEditL } from './FormEditL';
|
|
56
54
|
export { default as FolderPredefinedL } from './FolderPredefinedL';
|
|
57
|
-
export { default as
|
|
55
|
+
export { default as FolderPlainL } from './FolderPlainL';
|
|
58
56
|
export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
|
|
59
|
-
export { default as
|
|
57
|
+
export { default as FolderL } from './FolderL';
|
|
60
58
|
export { default as ComboL } from './ComboL';
|
|
61
|
-
export { default as DividerL } from './DividerL';
|
|
62
|
-
export { default as CountdownL } from './CountdownL';
|
|
63
59
|
export { default as CloseL } from './CloseL';
|
|
60
|
+
export { default as FormGroupL } from './FormGroupL';
|
|
64
61
|
export { default as CheckboxL } from './CheckboxL';
|
|
65
62
|
export { default as ColumnL } from './ColumnL';
|
|
66
63
|
export { default as CheckL } from './CheckL';
|
|
67
|
-
export { default as
|
|
68
|
-
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
|
64
|
+
export { default as CountdownL } from './CountdownL';
|
|
69
65
|
export { default as BrowserL } from './BrowserL';
|
|
70
66
|
export { default as AddL } from './AddL';
|
|
67
|
+
export { default as DividerL } from './DividerL';
|
|
68
|
+
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
69
|
+
export { default as ButtonL } from './ButtonL';
|
|
70
|
+
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
package/dist/icons/L/index.js
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
export { default as WarningL } from './WarningL';
|
|
2
1
|
export { default as TooltipL } from './TooltipL';
|
|
3
2
|
export { default as TextareaL } from './TextareaL';
|
|
3
|
+
export { default as VideoL } from './VideoL';
|
|
4
4
|
export { default as TextL } from './TextL';
|
|
5
|
-
export { default as
|
|
6
|
-
export { default as TimeL } from './TimeL';
|
|
7
|
-
export { default as StackedL } from './StackedL';
|
|
8
|
-
export { default as ShowL } from './ShowL';
|
|
5
|
+
export { default as WarningL } from './WarningL';
|
|
9
6
|
export { default as SliderL } from './SliderL';
|
|
7
|
+
export { default as ShowL } from './ShowL';
|
|
8
|
+
export { default as TimeL } from './TimeL';
|
|
10
9
|
export { default as SectionL } from './SectionL';
|
|
11
10
|
export { default as SelectL } from './SelectL';
|
|
12
|
-
export { default as
|
|
11
|
+
export { default as TableL } from './TableL';
|
|
12
|
+
export { default as StackedL } from './StackedL';
|
|
13
13
|
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
14
|
-
export { default as
|
|
14
|
+
export { default as Section37L } from './Section37L';
|
|
15
15
|
export { default as Section12L } from './Section12L';
|
|
16
|
-
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
17
|
-
export { default as VideoL } from './VideoL';
|
|
18
16
|
export { default as SpinnerL } from './SpinnerL';
|
|
19
|
-
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
20
17
|
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
21
|
-
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
22
|
-
export { default as RadioL } from './RadioL';
|
|
23
|
-
export { default as PieL } from './PieL';
|
|
24
18
|
export { default as QuoteL } from './QuoteL';
|
|
25
|
-
export { default as
|
|
19
|
+
export { default as Section13L } from './Section13L';
|
|
20
|
+
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
21
|
+
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
22
|
+
export { default as RadioL } from './RadioL';
|
|
23
|
+
export { default as NoData } from './NoData';
|
|
26
24
|
export { default as MobileUrlL } from './MobileUrlL';
|
|
27
25
|
export { default as MobileLinkL } from './MobileLinkL';
|
|
26
|
+
export { default as MultilineL } from './MultilineL';
|
|
27
|
+
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
28
|
+
export { default as PieL } from './PieL';
|
|
29
|
+
export { default as NavbarL } from './NavbarL';
|
|
28
30
|
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
29
|
-
export { default as NoData } from './NoData';
|
|
30
|
-
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
31
31
|
export { default as NoPermissionL } from './NoPermissionL';
|
|
32
|
-
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
33
|
-
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
34
|
-
export { default as MobileClickL } from './MobileClickL';
|
|
35
32
|
export { default as LocationL } from './LocationL';
|
|
33
|
+
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
36
34
|
export { default as MobileBlockL } from './MobileBlockL';
|
|
37
|
-
export { default as LineL } from './LineL';
|
|
38
|
-
export { default as MultilineL } from './MultilineL';
|
|
39
35
|
export { default as LinkL } from './LinkL';
|
|
40
|
-
export { default as
|
|
41
|
-
export { default as
|
|
36
|
+
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
37
|
+
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
42
38
|
export { default as LabelL } from './LabelL';
|
|
43
|
-
export { default as InputL } from './InputL';
|
|
44
|
-
export { default as InfoL } from './InfoL';
|
|
45
39
|
export { default as InboxNoResultsL } from './InboxNoResultsL';
|
|
46
|
-
export { default as
|
|
40
|
+
export { default as LineL } from './LineL';
|
|
41
|
+
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
42
|
+
export { default as InfoL } from './InfoL';
|
|
43
|
+
export { default as LandingPageL } from './LandingPageL';
|
|
44
|
+
export { default as InputL } from './InputL';
|
|
47
45
|
export { default as ImageL } from './ImageL';
|
|
46
|
+
export { default as MobileClickL } from './MobileClickL';
|
|
48
47
|
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
49
|
-
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
50
48
|
export { default as HideL } from './HideL';
|
|
51
49
|
export { default as HashL } from './HashL';
|
|
50
|
+
export { default as ImageUrlL } from './ImageUrlL';
|
|
52
51
|
export { default as FormL } from './FormL';
|
|
53
|
-
export { default as
|
|
54
|
-
export { default as FormGroupL } from './FormGroupL';
|
|
52
|
+
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
55
53
|
export { default as FormEditL } from './FormEditL';
|
|
56
54
|
export { default as FolderPredefinedL } from './FolderPredefinedL';
|
|
57
|
-
export { default as
|
|
55
|
+
export { default as FolderPlainL } from './FolderPlainL';
|
|
58
56
|
export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
|
|
59
|
-
export { default as
|
|
57
|
+
export { default as FolderL } from './FolderL';
|
|
60
58
|
export { default as ComboL } from './ComboL';
|
|
61
|
-
export { default as DividerL } from './DividerL';
|
|
62
|
-
export { default as CountdownL } from './CountdownL';
|
|
63
59
|
export { default as CloseL } from './CloseL';
|
|
60
|
+
export { default as FormGroupL } from './FormGroupL';
|
|
64
61
|
export { default as CheckboxL } from './CheckboxL';
|
|
65
62
|
export { default as ColumnL } from './ColumnL';
|
|
66
63
|
export { default as CheckL } from './CheckL';
|
|
67
|
-
export { default as
|
|
68
|
-
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
|
64
|
+
export { default as CountdownL } from './CountdownL';
|
|
69
65
|
export { default as BrowserL } from './BrowserL';
|
|
70
|
-
export { default as AddL } from './AddL';
|
|
66
|
+
export { default as AddL } from './AddL';
|
|
67
|
+
export { default as DividerL } from './DividerL';
|
|
68
|
+
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
69
|
+
export { default as ButtonL } from './ButtonL';
|
|
70
|
+
export { default as ButtonSubmitL } from './ButtonSubmitL';
|