@hellobetterdigitalnz/betterui 0.0.3-317 → 0.0.3-318
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/dist/Components/Icons/Communication/PaperPlaneTilt/PaperPlaneTilt.d.ts +4 -0
- package/dist/Components/Icons/Media/Image/Image.d.ts +4 -0
- package/dist/Components/Icons/SystemAndDevice/CloudArrowDown/CloudArrowDown.d.ts +4 -0
- package/dist/Components/Icons/SystemAndDevice/DotsSixVertical/DotsSixVertical.d.ts +4 -0
- package/dist/Components/Icons/index.d.ts +6 -3
- package/dist/index.cjs.js +12 -12
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +880 -868
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/Components/DataDisplay/Calendar/Calendar.tsx +2 -2
- package/src/Components/Form/Button/Button.stories.tsx +4 -4
- package/src/Components/Form/DateField/DateField.tsx +2 -2
- package/src/Components/Form/IconButton/IconButton.stories.tsx +4 -4
- package/src/Components/Icons/Communication/PaperPlaneTilt/PaperPlaneTilt.tsx +48 -0
- package/src/Components/Icons/Media/Image/Image.tsx +48 -0
- package/src/Components/Icons/SystemAndDevice/CloudArrowDown/CloudArrowDown.tsx +48 -0
- package/src/Components/Icons/SystemAndDevice/{DotSixVertical/DotSixVertical.tsx → DotsSixVertical/DotsSixVertical.tsx} +2 -2
- package/src/Components/Icons/Time/CalendarBlank/CalendarBlank.tsx +72 -14
- package/src/Components/Icons/index.ts +6 -4
- package/dist/Components/Icons/SystemAndDevice/DotSixVertical/DotSixVertical.d.ts +0 -4
- package/dist/Components/Icons/Time/CalendarBank/CalendarBank.d.ts +0 -4
- package/src/Components/Icons/Time/CalendarBank/CalendarBank.tsx +0 -105
|
@@ -43,6 +43,7 @@ export { default as ChatCentered } from './Communication/ChatCentered/ChatCenter
|
|
|
43
43
|
export { default as ChatCenteredDots } from './Communication/ChatCenteredDots/ChatCenteredDots.tsx';
|
|
44
44
|
export { default as ChatCenteredText } from './Communication/ChatCenteredText/ChatCenteredText.tsx';
|
|
45
45
|
export { default as ChatTearDropDots } from './Communication/ChatTeardropDots/ChatTeardropDots.tsx';
|
|
46
|
+
export { default as PaperPlaneTilt } from './Communication/PaperPlaneTilt/PaperPlaneTilt.tsx';
|
|
46
47
|
export { default as Eye } from './Design/Eye/Eye';
|
|
47
48
|
export { default as EyeSlash } from './Design/EyeSlash/EyeSlash';
|
|
48
49
|
export { default as PencilLine } from './Design/PencilLine/PencilLine.tsx';
|
|
@@ -127,6 +128,7 @@ export { default as ImageSquare } from './Media/ImagesSquare/ImagesSquare.tsx';
|
|
|
127
128
|
export { default as CassetteTape } from './Media/CassetteTape/CassetteTape.tsx';
|
|
128
129
|
export { default as ClosedCaptioning } from './Media/ClosedCaptioning/ClosedCaptioning.tsx';
|
|
129
130
|
export { default as Images } from './Media/Images/Images.tsx';
|
|
131
|
+
export { default as Image } from './Media/Image/Image.tsx';
|
|
130
132
|
export { default as TextAa } from './OfficeAndEditing/TextAa/TextAa.tsx';
|
|
131
133
|
export { default as TextColumns } from './OfficeAndEditing/TextColumns/TextColumns.tsx';
|
|
132
134
|
export { default as Folder } from './OfficeAndEditing/Folder/Folder.tsx';
|
|
@@ -162,7 +164,7 @@ export { default as ShieldCheck } from './SecurityAndWarnings/ShieldCheck/Shield
|
|
|
162
164
|
export { default as SealCheck } from './SecurityAndWarnings/SealCheck/SealCheck.tsx';
|
|
163
165
|
export { default as Bell } from './SystemAndDevice/Bell/Bell';
|
|
164
166
|
export { default as MagnifyingGlass } from './SystemAndDevice/MagnifyingGlass/MagnifyingGlass';
|
|
165
|
-
export { default as DotsSixVertical } from './SystemAndDevice/
|
|
167
|
+
export { default as DotsSixVertical } from './SystemAndDevice/DotsSixVertical/DotsSixVertical.tsx';
|
|
166
168
|
export { default as DotsSix } from './SystemAndDevice/DotsSix/DotsSix.tsx';
|
|
167
169
|
export { default as DotsThree } from './SystemAndDevice/DotsThree/DotsThree.tsx';
|
|
168
170
|
export { default as DotsThreeVertical } from './SystemAndDevice/DotsThreeVertical/DotsThreeVertical.tsx';
|
|
@@ -181,13 +183,14 @@ export { default as Desktop } from './SystemAndDevice/Desktop/Desktop.tsx';
|
|
|
181
183
|
export { default as BellRinging } from './SystemAndDevice/BellRinging/BellRinging.tsx';
|
|
182
184
|
export { default as PlugsConnected } from './SystemAndDevice/PlugsConnected/PlugsConnected.tsx';
|
|
183
185
|
export { default as CloudArrowUp } from './SystemAndDevice/CloudArrowUp/CloudArrowUp.tsx';
|
|
186
|
+
export { default as DesktopTower } from './SystemAndDevice/DesktopTower/DesktopTower.tsx';
|
|
187
|
+
export { default as CloudArrowDown } from './SystemAndDevice/CloudArrowDown/CloudArrowDown.tsx';
|
|
184
188
|
export { default as Calendar } from './Time/Calendar/Calendar';
|
|
185
189
|
export { default as CalendarCheck } from './Time/CalendarCheck/CalendarCheck.tsx';
|
|
186
|
-
export { default as
|
|
190
|
+
export { default as CalendarBlank } from './Time/CalendarBlank/CalendarBlank.tsx';
|
|
187
191
|
export { default as Clock } from './Time/Clock/Clock';
|
|
188
192
|
export { default as ClockCounterClockwise } from './Time/ClockCounterClockwise/ClockCounterClockwise.tsx';
|
|
189
193
|
export { default as Alarm } from './Time/Alarm/Alarm.tsx';
|
|
190
|
-
export { default as CalendarBlank } from './Time/CalendarBlank/CalendarBlank.tsx';
|
|
191
194
|
export { default as CalendarPlus } from './Time/CalendarPlus/CalendarPlus.tsx';
|
|
192
195
|
export { default as CalendarX } from './Time/CalendarX/CalendarX.tsx';
|
|
193
196
|
export { default as ClockAfternoon } from './Time/ClockAfternoon/ClockAfternoon.tsx';
|