@frontend_zz/icon 0.2.0 → 0.4.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.json +70 -0
- package/CHANGELOG.md +30 -1
- package/Icon.collection.d.ts +6 -6
- package/Icon.collection.js +113 -88
- package/Icon.css.d.ts +2 -2
- package/Icon.css.js +76 -40
- package/Icon.d.ts +15 -12
- package/Icon.js +39 -33
- package/Icon.register.d.ts +6 -6
- package/Icon.register.js +4 -4
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,76 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontend_zz/icon",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.4.0",
|
|
6
|
+
"tag": "@frontend_zz/icon_v0.4.0",
|
|
7
|
+
"date": "Wed, 27 Sep 2023 15:03:43 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"minor": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Add new icons"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "Add 'send email' icon"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"comment": "Add 'sustainable' icon"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"comment": "Add new icons: 'chat', 'healthcareProvider, 'payment', 'reimbursement'"
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"patch": [
|
|
24
|
+
{
|
|
25
|
+
"comment": "Add icons for alternative medicine and dentistry"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"comment": "Add care usage icons"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"comment": "Add 'punctuation' icon and swap out small 'Tip' icons for their large counterpart"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"comment": "Add size property"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"comment": "Update logout icon"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"comment": "Organise and document specific block type"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"comment": "Add feedbackBubble icon"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"comment": "Update dependencies"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"comment": "Update close icon"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"none": [
|
|
53
|
+
{
|
|
54
|
+
"comment": "Upgrade dependencies"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"comment": "Version bump dependencies"
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"version": "0.3.0",
|
|
64
|
+
"tag": "@frontend_zz/icon_v0.3.0",
|
|
65
|
+
"date": "Mon, 17 Apr 2023 15:55:43 GMT",
|
|
66
|
+
"comments": {
|
|
67
|
+
"minor": [
|
|
68
|
+
{
|
|
69
|
+
"comment": "Add new large icons"
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
}
|
|
73
|
+
},
|
|
4
74
|
{
|
|
5
75
|
"version": "0.2.0",
|
|
6
76
|
"tag": "@frontend_zz/icon_v0.2.0",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
# Change Log - @frontend_zz/icon
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 27 Sep 2023 15:03:43 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.4.0
|
|
6
|
+
Wed, 27 Sep 2023 15:03:43 GMT
|
|
7
|
+
|
|
8
|
+
### Minor changes
|
|
9
|
+
|
|
10
|
+
- Add new icons
|
|
11
|
+
- Add 'send email' icon
|
|
12
|
+
- Add 'sustainable' icon
|
|
13
|
+
- Add new icons: 'chat', 'healthcareProvider, 'payment', 'reimbursement'
|
|
14
|
+
|
|
15
|
+
### Patches
|
|
16
|
+
|
|
17
|
+
- Add icons for alternative medicine and dentistry
|
|
18
|
+
- Add care usage icons
|
|
19
|
+
- Add 'punctuation' icon and swap out small 'Tip' icons for their large counterpart
|
|
20
|
+
- Add size property
|
|
21
|
+
- Update logout icon
|
|
22
|
+
- Organise and document specific block type
|
|
23
|
+
- Add feedbackBubble icon
|
|
24
|
+
- Update dependencies
|
|
25
|
+
- Update close icon
|
|
26
|
+
|
|
27
|
+
## 0.3.0
|
|
28
|
+
Mon, 17 Apr 2023 15:55:43 GMT
|
|
29
|
+
|
|
30
|
+
### Minor changes
|
|
31
|
+
|
|
32
|
+
- Add new large icons
|
|
4
33
|
|
|
5
34
|
## 0.2.0
|
|
6
35
|
Fri, 17 Mar 2023 13:38:19 GMT
|
package/Icon.collection.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export type IconName = 'alertDiamond' | 'alertTriangle' | 'attachment' | 'buitenland' | 'invoice' | 'invoiceSmall' | 'check' | 'checkCircle' | 'chevronDown' | 'chevronDownMini' | 'chevronLeft' | 'chevronLeftDouble' | 'chevronRight' | 'chevronRightDouble' | 'chevronRightMini' | 'close' | 'closeCircleMini' | 'closeMini' | 'contact' | 'cost' | 'coveredCosts' | 'declaratie' | 'declaratieFilled' | 'declaratieIndienen' | 'document' | 'documentArrow' | 'documentCheck' | 'documentMagnify' | 'documentStack' | 'download' | 'externalLink' | 'facturen' | 'facturenFilled' | 'farmaceutisch' | 'fileUpload' | 'folder' | 'geneesmiddelen' | 'gebruiker' | 'gebruikerFilled' | 'heartBeat' | 'heartInCircle' | 'heartInRectangle' | 'heartWithArrow' | 'home' | 'homeFilled' | 'huisarts' | 'hulpmiddelen' | 'iDEAL' | 'infoCircle' | 'insurance' | 'kraamzorg' | 'locationPin' | 'lockClosed' | 'logout' | 'medicalServices' | 'messageBubbleHeart' | '
|
|
2
|
-
export type IconMap = {
|
|
3
|
-
[key in IconName]: string;
|
|
4
|
-
};
|
|
5
|
-
export declare const icons: IconMap;
|
|
6
|
-
export declare const iconOptions: {};
|
|
1
|
+
export type IconName = 'addFamilyMember' | 'alarmCentrePhone' | 'alertDiamond' | 'alertTriangle' | 'alternativeMedicine' | 'alternativeMedicineSmall' | 'attachment' | 'buitenland' | 'invoice' | 'invoiceSmall' | 'chat' | 'check' | 'checkCircle' | 'chevronDown' | 'chevronDownMini' | 'chevronLeft' | 'chevronLeftDouble' | 'chevronRight' | 'chevronRightDouble' | 'chevronRightMini' | 'close' | 'closeCircleMini' | 'closeMini' | 'contact' | 'contactSmall' | 'cost' | 'coveredCosts' | 'declaratie' | 'declaratieFilled' | 'declaratieIndienen' | 'dentistry' | 'dentistrySmall' | 'document' | 'documentArrow' | 'documentCheck' | 'documentMagnify' | 'documentStack' | 'download' | 'edit' | 'emailSend' | 'exerciseTherapy' | 'exerciseTherapySmall' | 'externalLink' | 'ergoAndPhysiotherapy' | 'ergoAndPhysiotherapySmall' | 'facturen' | 'facturenFilled' | 'farmaceutisch' | 'feedbackBubble' | 'fileUpload' | 'folder' | 'geneesmiddelen' | 'gebruiker' | 'gebruikerFilled' | 'glassesAndLenses' | 'glassesAndLensesSmall' | 'healthcareProvider' | 'heartBeat' | 'heartInCircle' | 'heartInRectangle' | 'heartWithArrow' | 'home' | 'homeFilled' | 'huisarts' | 'hulpmiddelen' | 'iDEAL' | 'infoCircle' | 'insurance' | 'insuranceSmall' | 'kraamzorg' | 'locationPin' | 'lockClosed' | 'logout' | 'medicalServices' | 'messageBubbleHeart' | 'more' | 'moreFilled' | 'orthodontics' | 'orthodonticsSmall' | 'payment' | 'pencil' | 'plus' | 'psychologischeZorg' | 'punctuation' | 'question' | 'reimbursement' | 'sale' | 'searchZoom' | 'settings' | 'spellingCheck' | 'sun' | 'sustainable' | 'trash' | 'travelWithSuitcaseSmall' | 'upload' | 'users' | 'verloskunde' | 'vervoer' | 'wallet' | 'warningCircle' | 'wijkverpleging' | 'zandloper' | 'ziekenhuis' | 'zorggebruik' | 'zorgpas' | 'zorgpasSmall' | 'zorgpasFilled' | 'zorgpasWeb' | 'zorgpasPhone';
|
|
2
|
+
export type IconMap = {
|
|
3
|
+
[key in IconName]: string;
|
|
4
|
+
};
|
|
5
|
+
export declare const icons: IconMap;
|
|
6
|
+
export declare const iconOptions: {};
|