@hellobetterdigitalnz/betterui 0.0.3-317 → 0.0.3-319

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 (35) hide show
  1. package/dist/Components/Icons/Arrows/ArrowLineUpRight/ArrowLineUpRight.d.ts +4 -0
  2. package/dist/Components/Icons/Commerce/BowlFood/BowlFood.d.ts +4 -0
  3. package/dist/Components/Icons/Commerce/Storefront/Storefront.d.ts +4 -0
  4. package/dist/Components/Icons/Communication/PaperPlaneTilt/PaperPlaneTilt.d.ts +4 -0
  5. package/dist/Components/Icons/Games/MaskHappy/MaskHappy.d.ts +4 -0
  6. package/dist/Components/Icons/MapAndTravel/Lighthouse/Lighthouse.d.ts +4 -0
  7. package/dist/Components/Icons/MapAndTravel/Train/Train.d.ts +4 -0
  8. package/dist/Components/Icons/Media/Image/Image.d.ts +4 -0
  9. package/dist/Components/Icons/SystemAndDevice/CloudArrowDown/CloudArrowDown.d.ts +4 -0
  10. package/dist/Components/Icons/SystemAndDevice/DotsSixVertical/DotsSixVertical.d.ts +4 -0
  11. package/dist/Components/Icons/index.d.ts +12 -3
  12. package/dist/index.cjs.js +12 -12
  13. package/dist/index.cjs.js.map +1 -1
  14. package/dist/index.es.js +1579 -1543
  15. package/dist/index.es.js.map +1 -1
  16. package/package.json +1 -1
  17. package/src/Components/DataDisplay/Calendar/Calendar.tsx +2 -2
  18. package/src/Components/Form/Button/Button.stories.tsx +4 -4
  19. package/src/Components/Form/DateField/DateField.tsx +2 -2
  20. package/src/Components/Form/IconButton/IconButton.stories.tsx +4 -4
  21. package/src/Components/Icons/Arrows/ArrowLineUpRight/ArrowLineUpRight.tsx +48 -0
  22. package/src/Components/Icons/Commerce/BowlFood/BowlFood.tsx +48 -0
  23. package/src/Components/Icons/Commerce/Storefront/Storefront.tsx +48 -0
  24. package/src/Components/Icons/Communication/PaperPlaneTilt/PaperPlaneTilt.tsx +48 -0
  25. package/src/Components/Icons/Games/MaskHappy/MaskHappy.tsx +48 -0
  26. package/src/Components/Icons/MapAndTravel/Lighthouse/Lighthouse.tsx +48 -0
  27. package/src/Components/Icons/MapAndTravel/Train/Train.tsx +48 -0
  28. package/src/Components/Icons/Media/Image/Image.tsx +48 -0
  29. package/src/Components/Icons/SystemAndDevice/CloudArrowDown/CloudArrowDown.tsx +48 -0
  30. package/src/Components/Icons/SystemAndDevice/{DotSixVertical/DotSixVertical.tsx → DotsSixVertical/DotsSixVertical.tsx} +2 -2
  31. package/src/Components/Icons/Time/CalendarBlank/CalendarBlank.tsx +72 -14
  32. package/src/Components/Icons/index.ts +12 -4
  33. package/dist/Components/Icons/SystemAndDevice/DotSixVertical/DotSixVertical.d.ts +0 -4
  34. package/dist/Components/Icons/Time/CalendarBank/CalendarBank.d.ts +0 -4
  35. package/src/Components/Icons/Time/CalendarBank/CalendarBank.tsx +0 -105
@@ -0,0 +1,4 @@
1
+ import { default as IconProps } from '../../IconProps';
2
+
3
+ declare const ArrowLineUpRight: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default ArrowLineUpRight;
@@ -0,0 +1,4 @@
1
+ import { default as IconProps } from '../../IconProps';
2
+
3
+ declare const BowlFood: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default BowlFood;
@@ -0,0 +1,4 @@
1
+ import { default as IconProps } from '../../IconProps';
2
+
3
+ declare const Storefront: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default Storefront;
@@ -0,0 +1,4 @@
1
+ import { default as IconProps } from '../../IconProps';
2
+
3
+ declare const PaperPlaneTilt: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default PaperPlaneTilt;
@@ -0,0 +1,4 @@
1
+ import { default as IconProps } from '../../IconProps';
2
+
3
+ declare const MaskHappy: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default MaskHappy;
@@ -0,0 +1,4 @@
1
+ import { default as IconProps } from '../../IconProps';
2
+
3
+ declare const Image: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default Image;
@@ -0,0 +1,4 @@
1
+ import { default as IconProps } from '../../IconProps';
2
+
3
+ declare const Train: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default Train;
@@ -0,0 +1,4 @@
1
+ import { default as IconProps } from '../../IconProps';
2
+
3
+ declare const Image: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default Image;
@@ -0,0 +1,4 @@
1
+ import { default as IconProps } from '../../IconProps';
2
+
3
+ declare const CloudArrowDown: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default CloudArrowDown;
@@ -0,0 +1,4 @@
1
+ import { default as IconProps } from '../../IconProps';
2
+
3
+ declare const DotsSixVertical: ({ type }: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default DotsSixVertical;
@@ -8,6 +8,7 @@ export { default as ArrowLeft } from './Arrows/ArrowLeft/ArrowLeft.tsx';
8
8
  export { default as ArrowRight } from './Arrows/ArrowRight/ArrowRight.tsx';
9
9
  export { default as ArrowsDownUp } from './Arrows/ArrowsDownUp/ArrowsDownUp.tsx';
10
10
  export { default as ArrowsOutCardinal } from './Arrows/ArrowsOutCardinal/ArrowsOutCardinal.tsx';
11
+ export { default as ArrowLineUpRight } from './Arrows/ArrowLineUpRight/ArrowLineUpRight.tsx';
11
12
  export { default as WindowsLogo } from './Brands/WindowsLogo/WindowsLogo';
12
13
  export { default as AmazonLogo } from './Brands/AmazonLogo/AmazonLogo';
13
14
  export { default as AngularLogo } from './Brands/AngularLogo/AngularLogo';
@@ -22,6 +23,8 @@ export { default as Ticket } from './Commerce/Ticket/Ticket.tsx';
22
23
  export { default as Tag } from './Commerce/Tag/Tag.tsx';
23
24
  export { default as Buildings } from './Commerce/Buildings/Buildings.tsx';
24
25
  export { default as CurrencyDollar } from './Commerce/CurrencyDollar/CurrencyDollar.tsx';
26
+ export { default as BowlFood } from './Commerce/BowlFood/BowlFood.tsx';
27
+ export { default as Storefront } from './Commerce/Storefront/Storefront.tsx';
25
28
  export { default as AddressBook } from './Communication/AddressBook/AddressBook';
26
29
  export { default as Asterisk } from './Communication/Asterisk/Asterisk';
27
30
  export { default as At } from './Communication/At/At';
@@ -43,6 +46,7 @@ export { default as ChatCentered } from './Communication/ChatCentered/ChatCenter
43
46
  export { default as ChatCenteredDots } from './Communication/ChatCenteredDots/ChatCenteredDots.tsx';
44
47
  export { default as ChatCenteredText } from './Communication/ChatCenteredText/ChatCenteredText.tsx';
45
48
  export { default as ChatTearDropDots } from './Communication/ChatTeardropDots/ChatTeardropDots.tsx';
49
+ export { default as PaperPlaneTilt } from './Communication/PaperPlaneTilt/PaperPlaneTilt.tsx';
46
50
  export { default as Eye } from './Design/Eye/Eye';
47
51
  export { default as EyeSlash } from './Design/EyeSlash/EyeSlash';
48
52
  export { default as PencilLine } from './Design/PencilLine/PencilLine.tsx';
@@ -78,6 +82,7 @@ export { default as CubeFocus } from './Games/CubeFocus/CubeFocus.tsx';
78
82
  export { default as Diamond } from './Games/Diamond/Diamond.tsx';
79
83
  export { default as DiceFive } from './Games/DiceFive/DiceFive.tsx';
80
84
  export { default as DiceFour } from './Games/DiceFour/DiceFour.tsx';
85
+ export { default as MaskHappy } from './Games/MaskHappy/MaskHappy.tsx';
81
86
  export { default as Globe } from './MapAndTravel/Globe/Globe.tsx';
82
87
  export { default as House } from './MapAndTravel/House/House.tsx';
83
88
  export { default as HouseSimple } from './MapAndTravel/HouseSimple/HouseSimple.tsx';
@@ -101,6 +106,8 @@ export { default as Barricade } from './MapAndTravel/Barricade/Barricade.tsx';
101
106
  export { default as Bicycle } from './MapAndTravel/Bicycle/Bicycle.tsx';
102
107
  export { default as Boat } from './MapAndTravel/Boat/Boat.tsx';
103
108
  export { default as GlobeSimple } from './MapAndTravel/GlobeSimple/GlobeSimple.tsx';
109
+ export { default as Lighthouse } from './MapAndTravel/Lighthouse/Lighthouse.tsx';
110
+ export { default as Train } from './MapAndTravel/Train/Train.tsx';
104
111
  export { default as XIcon } from './MathsAndFinance/XIcon/XIcon';
105
112
  export { default as Plus } from './MathsAndFinance/Plus/Plus.tsx';
106
113
  export { default as Minus } from './MathsAndFinance/Minus/Minus.tsx';
@@ -127,6 +134,7 @@ export { default as ImageSquare } from './Media/ImagesSquare/ImagesSquare.tsx';
127
134
  export { default as CassetteTape } from './Media/CassetteTape/CassetteTape.tsx';
128
135
  export { default as ClosedCaptioning } from './Media/ClosedCaptioning/ClosedCaptioning.tsx';
129
136
  export { default as Images } from './Media/Images/Images.tsx';
137
+ export { default as Image } from './Media/Image/Image.tsx';
130
138
  export { default as TextAa } from './OfficeAndEditing/TextAa/TextAa.tsx';
131
139
  export { default as TextColumns } from './OfficeAndEditing/TextColumns/TextColumns.tsx';
132
140
  export { default as Folder } from './OfficeAndEditing/Folder/Folder.tsx';
@@ -162,7 +170,7 @@ export { default as ShieldCheck } from './SecurityAndWarnings/ShieldCheck/Shield
162
170
  export { default as SealCheck } from './SecurityAndWarnings/SealCheck/SealCheck.tsx';
163
171
  export { default as Bell } from './SystemAndDevice/Bell/Bell';
164
172
  export { default as MagnifyingGlass } from './SystemAndDevice/MagnifyingGlass/MagnifyingGlass';
165
- export { default as DotsSixVertical } from './SystemAndDevice/DotSixVertical/DotSixVertical.tsx';
173
+ export { default as DotsSixVertical } from './SystemAndDevice/DotsSixVertical/DotsSixVertical.tsx';
166
174
  export { default as DotsSix } from './SystemAndDevice/DotsSix/DotsSix.tsx';
167
175
  export { default as DotsThree } from './SystemAndDevice/DotsThree/DotsThree.tsx';
168
176
  export { default as DotsThreeVertical } from './SystemAndDevice/DotsThreeVertical/DotsThreeVertical.tsx';
@@ -181,13 +189,14 @@ export { default as Desktop } from './SystemAndDevice/Desktop/Desktop.tsx';
181
189
  export { default as BellRinging } from './SystemAndDevice/BellRinging/BellRinging.tsx';
182
190
  export { default as PlugsConnected } from './SystemAndDevice/PlugsConnected/PlugsConnected.tsx';
183
191
  export { default as CloudArrowUp } from './SystemAndDevice/CloudArrowUp/CloudArrowUp.tsx';
192
+ export { default as DesktopTower } from './SystemAndDevice/DesktopTower/DesktopTower.tsx';
193
+ export { default as CloudArrowDown } from './SystemAndDevice/CloudArrowDown/CloudArrowDown.tsx';
184
194
  export { default as Calendar } from './Time/Calendar/Calendar';
185
195
  export { default as CalendarCheck } from './Time/CalendarCheck/CalendarCheck.tsx';
186
- export { default as CalendarBank } from './Time/CalendarBank/CalendarBank';
196
+ export { default as CalendarBlank } from './Time/CalendarBlank/CalendarBlank.tsx';
187
197
  export { default as Clock } from './Time/Clock/Clock';
188
198
  export { default as ClockCounterClockwise } from './Time/ClockCounterClockwise/ClockCounterClockwise.tsx';
189
199
  export { default as Alarm } from './Time/Alarm/Alarm.tsx';
190
- export { default as CalendarBlank } from './Time/CalendarBlank/CalendarBlank.tsx';
191
200
  export { default as CalendarPlus } from './Time/CalendarPlus/CalendarPlus.tsx';
192
201
  export { default as CalendarX } from './Time/CalendarX/CalendarX.tsx';
193
202
  export { default as ClockAfternoon } from './Time/ClockAfternoon/ClockAfternoon.tsx';