nzk-react-components 3.0.5 → 3.0.7

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 (79) hide show
  1. package/dist/cjs/icons/AppArrowDown.js +1 -0
  2. package/dist/cjs/icons/AppArrowLeft.js +1 -0
  3. package/dist/cjs/icons/AppArrowRight.js +1 -0
  4. package/dist/cjs/icons/AppArrowUp.js +1 -0
  5. package/dist/cjs/icons/AppDoubleArrowRight.js +1 -0
  6. package/dist/cjs/icons/AppLeaveSign.js +1 -0
  7. package/dist/cjs/icons/AppMinus.js +1 -0
  8. package/dist/cjs/icons/AppPencil.js +1 -0
  9. package/dist/cjs/icons/AppPlus.js +1 -0
  10. package/dist/cjs/icons/AppRecycle.js +1 -0
  11. package/dist/cjs/icons/AppRefresh.js +1 -0
  12. package/dist/cjs/icons/AppReplaySign.js +1 -0
  13. package/dist/cjs/icons/Bell.js +1 -0
  14. package/dist/cjs/icons/DiaryEntries.js +1 -0
  15. package/dist/cjs/icons/Explanations.js +1 -0
  16. package/dist/cjs/icons/Instructions.js +1 -0
  17. package/dist/cjs/icons/Leave.js +1 -0
  18. package/dist/cjs/icons/LetterWriting.js +1 -0
  19. package/dist/cjs/icons/Live.js +1 -0
  20. package/dist/cjs/icons/Profile.js +1 -0
  21. package/dist/cjs/icons/Pursuasive.js +1 -0
  22. package/dist/cjs/icons/Recounts.js +1 -0
  23. package/dist/cjs/icons/Reorder.js +1 -0
  24. package/dist/cjs/icons/Replay.js +1 -0
  25. package/dist/cjs/icons/Time.js +1 -0
  26. package/dist/cjs/index.js +1 -1
  27. package/dist/esm/icons/AppArrowDown.js +1 -0
  28. package/dist/esm/icons/AppArrowLeft.js +1 -0
  29. package/dist/esm/icons/AppArrowRight.js +1 -0
  30. package/dist/esm/icons/AppArrowUp.js +1 -0
  31. package/dist/esm/icons/AppDoubleArrowRight.js +1 -0
  32. package/dist/esm/icons/AppLeaveSign.js +1 -0
  33. package/dist/esm/icons/AppMinus.js +1 -0
  34. package/dist/esm/icons/AppPencil.js +1 -0
  35. package/dist/esm/icons/AppPlus.js +1 -0
  36. package/dist/esm/icons/AppRecycle.js +1 -0
  37. package/dist/esm/icons/AppRefresh.js +1 -0
  38. package/dist/esm/icons/AppReplaySign.js +1 -0
  39. package/dist/esm/icons/Bell.js +1 -0
  40. package/dist/esm/icons/DiaryEntries.js +1 -0
  41. package/dist/esm/icons/Explanations.js +1 -0
  42. package/dist/esm/icons/Instructions.js +1 -0
  43. package/dist/esm/icons/Leave.js +1 -0
  44. package/dist/esm/icons/LetterWriting.js +1 -0
  45. package/dist/esm/icons/Live.js +1 -0
  46. package/dist/esm/icons/Profile.js +1 -0
  47. package/dist/esm/icons/Pursuasive.js +1 -0
  48. package/dist/esm/icons/Recounts.js +1 -0
  49. package/dist/esm/icons/Reorder.js +1 -0
  50. package/dist/esm/icons/Replay.js +1 -0
  51. package/dist/esm/icons/Time.js +1 -0
  52. package/dist/esm/index.js +1 -1
  53. package/dist/icons/AppArrowDown.d.ts +4 -0
  54. package/dist/icons/AppArrowLeft.d.ts +4 -0
  55. package/dist/icons/AppArrowRight.d.ts +4 -0
  56. package/dist/icons/AppArrowUp.d.ts +4 -0
  57. package/dist/icons/AppDoubleArrowRight.d.ts +4 -0
  58. package/dist/icons/AppLeaveSign.d.ts +4 -0
  59. package/dist/icons/AppMinus.d.ts +4 -0
  60. package/dist/icons/AppPencil.d.ts +4 -0
  61. package/dist/icons/AppPlus.d.ts +4 -0
  62. package/dist/icons/AppRecycle.d.ts +4 -0
  63. package/dist/icons/AppRefresh.d.ts +4 -0
  64. package/dist/icons/AppReplaySign.d.ts +4 -0
  65. package/dist/icons/Bell.d.ts +4 -0
  66. package/dist/icons/DiaryEntries.d.ts +4 -0
  67. package/dist/icons/Explanations.d.ts +4 -0
  68. package/dist/icons/Instructions.d.ts +4 -0
  69. package/dist/icons/Leave.d.ts +4 -0
  70. package/dist/icons/LetterWriting.d.ts +4 -0
  71. package/dist/icons/Live.d.ts +4 -0
  72. package/dist/icons/Profile.d.ts +4 -0
  73. package/dist/icons/Pursuasive.d.ts +4 -0
  74. package/dist/icons/Recounts.d.ts +4 -0
  75. package/dist/icons/Reorder.d.ts +4 -0
  76. package/dist/icons/Replay.d.ts +4 -0
  77. package/dist/icons/Time.d.ts +4 -0
  78. package/dist/icons/index.d.ts +25 -0
  79. package/package.json +1 -1
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ declare const SvgLeave: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgLeave;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ declare const SvgLetterWriting: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgLetterWriting;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ declare const SvgLive: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgLive;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ declare const SvgProfile: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgProfile;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ declare const SvgPursuasive: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgPursuasive;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ declare const SvgRecounts: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgRecounts;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ declare const SvgReorder: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgReorder;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ declare const SvgReplay: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgReplay;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ declare const SvgTime: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgTime;
@@ -7,23 +7,35 @@ export { default as AddChapter } from "./AddChapter";
7
7
  export { default as AddFriend } from "./AddFriend";
8
8
  export { default as AdvancedTutoring } from "./AdvancedTutoring";
9
9
  export { default as Ant } from "./Ant";
10
+ export { default as AppArrowDown } from "./AppArrowDown";
11
+ export { default as AppArrowLeft } from "./AppArrowLeft";
12
+ export { default as AppArrowRight } from "./AppArrowRight";
13
+ export { default as AppArrowUp } from "./AppArrowUp";
10
14
  export { default as AppClose } from "./AppClose";
11
15
  export { default as AppCreate } from "./AppCreate";
12
16
  export { default as AppDiaryEntries } from "./AppDiaryEntries";
17
+ export { default as AppDoubleArrowRight } from "./AppDoubleArrowRight";
13
18
  export { default as AppDraft } from "./AppDraft";
14
19
  export { default as AppExplanations } from "./AppExplanations";
15
20
  export { default as AppFlag } from "./AppFlag";
16
21
  export { default as AppGames } from "./AppGames";
17
22
  export { default as AppInstructions } from "./AppInstructions";
18
23
  export { default as AppItems } from "./AppItems";
24
+ export { default as AppLeaveSign } from "./AppLeaveSign";
19
25
  export { default as AppLetterWriting } from "./AppLetterWriting";
20
26
  export { default as AppMenu } from "./AppMenu";
27
+ export { default as AppMinus } from "./AppMinus";
21
28
  export { default as AppNews } from "./AppNews";
29
+ export { default as AppPencil } from "./AppPencil";
22
30
  export { default as AppPlayscript } from "./AppPlayscript";
31
+ export { default as AppPlus } from "./AppPlus";
23
32
  export { default as AppPoetry } from "./AppPoetry";
24
33
  export { default as AppPursuasive } from "./AppPursuasive";
25
34
  export { default as AppRecounts } from "./AppRecounts";
35
+ export { default as AppRecycle } from "./AppRecycle";
36
+ export { default as AppRefresh } from "./AppRefresh";
26
37
  export { default as AppReorder } from "./AppReorder";
38
+ export { default as AppReplaySign } from "./AppReplaySign";
27
39
  export { default as AppReport } from "./AppReport";
28
40
  export { default as AppSettings } from "./AppSettings";
29
41
  export { default as AppTeamwork } from "./AppTeamwork";
@@ -42,6 +54,7 @@ export { default as Awards } from "./Awards";
42
54
  export { default as Back } from "./Back";
43
55
  export { default as Bear } from "./Bear";
44
56
  export { default as Beaver } from "./Beaver";
57
+ export { default as Bell } from "./Bell";
45
58
  export { default as Bertie } from "./Bertie";
46
59
  export { default as Biography } from "./Biography";
47
60
  export { default as Book } from "./Book";
@@ -63,6 +76,7 @@ export { default as Create } from "./Create";
63
76
  export { default as Customise } from "./Customise";
64
77
  export { default as Date } from "./Date";
65
78
  export { default as Dens } from "./Dens";
79
+ export { default as DiaryEntries } from "./DiaryEntries";
66
80
  export { default as Dice } from "./Dice";
67
81
  export { default as Dictionary } from "./Dictionary";
68
82
  export { default as Doug } from "./Doug";
@@ -96,6 +110,7 @@ export { default as Electro } from "./Electro";
96
110
  export { default as Enclosure } from "./Enclosure";
97
111
  export { default as ExclamationGrey } from "./ExclamationGrey";
98
112
  export { default as Exclamation } from "./Exclamation";
113
+ export { default as Explanations } from "./Explanations";
99
114
  export { default as Eye } from "./Eye";
100
115
  export { default as Facebook } from "./Facebook";
101
116
  export { default as Featured } from "./Featured";
@@ -119,12 +134,16 @@ export { default as Heroes } from "./Heroes";
119
134
  export { default as IdeaCreator } from "./IdeaCreator";
120
135
  export { default as Info } from "./Info";
121
136
  export { default as Instagram } from "./Instagram";
137
+ export { default as Instructions } from "./Instructions";
122
138
  export { default as Items } from "./Items";
123
139
  export { default as Keyboard } from "./Keyboard";
124
140
  export { default as Layers } from "./Layers";
141
+ export { default as Leave } from "./Leave";
125
142
  export { default as Lessons } from "./Lessons";
143
+ export { default as LetterWriting } from "./LetterWriting";
126
144
  export { default as Link } from "./Link";
127
145
  export { default as List } from "./List";
146
+ export { default as Live } from "./Live";
128
147
  export { default as Locations } from "./Locations";
129
148
  export { default as Lock } from "./Lock";
130
149
  export { default as Logout } from "./Logout";
@@ -164,15 +183,20 @@ export { default as Playscript } from "./Playscript";
164
183
  export { default as Plus } from "./Plus";
165
184
  export { default as Poetry } from "./Poetry";
166
185
  export { default as Private } from "./Private";
186
+ export { default as Profile } from "./Profile";
167
187
  export { default as Progress } from "./Progress";
168
188
  export { default as Projects } from "./Projects";
169
189
  export { default as Prompt } from "./Prompt";
170
190
  export { default as PurpleMegaphone } from "./PurpleMegaphone";
191
+ export { default as Pursuasive } from "./Pursuasive";
171
192
  export { default as Question } from "./Question";
172
193
  export { default as QuestsCompass } from "./QuestsCompass";
173
194
  export { default as Quests } from "./Quests";
174
195
  export { default as ReadingLight } from "./ReadingLight";
196
+ export { default as Recounts } from "./Recounts";
175
197
  export { default as Refresh } from "./Refresh";
198
+ export { default as Reorder } from "./Reorder";
199
+ export { default as Replay } from "./Replay";
176
200
  export { default as Report } from "./Report";
177
201
  export { default as Rewards } from "./Rewards";
178
202
  export { default as Ryan } from "./Ryan";
@@ -213,6 +237,7 @@ export { default as TextToSpeech } from "./TextToSpeech";
213
237
  export { default as ThumbsDown } from "./ThumbsDown";
214
238
  export { default as ThumbsUp } from "./ThumbsUp";
215
239
  export { default as Tick } from "./Tick";
240
+ export { default as Time } from "./Time";
216
241
  export { default as Torch } from "./Torch";
217
242
  export { default as Transfer } from "./Transfer";
218
243
  export { default as TrashCopy } from "./TrashCopy";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nzk-react-components",
3
- "version": "3.0.5",
3
+ "version": "3.0.7",
4
4
  "license": "MIT",
5
5
  "main": "dist/cjs/index.js",
6
6
  "files": [