braid-design-system 33.5.0 → 33.6.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.md +35 -0
- package/dist/index.cjs +14 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +14 -0
- package/dist/lib/components/icons/IconBold/IconBold.cjs +7 -0
- package/dist/lib/components/icons/IconBold/IconBold.mjs +8 -0
- package/dist/lib/components/icons/IconBold/IconBoldSvg.cjs +20 -0
- package/dist/lib/components/icons/IconBold/IconBoldSvg.mjs +21 -0
- package/dist/lib/components/icons/IconBulletList/IconBulletList.cjs +7 -0
- package/dist/lib/components/icons/IconBulletList/IconBulletList.mjs +8 -0
- package/dist/lib/components/icons/IconBulletList/IconBulletListSvg.cjs +20 -0
- package/dist/lib/components/icons/IconBulletList/IconBulletListSvg.mjs +21 -0
- package/dist/lib/components/icons/IconHeart/IconHeartActiveSvg.cjs +1 -1
- package/dist/lib/components/icons/IconHeart/IconHeartActiveSvg.mjs +1 -1
- package/dist/lib/components/icons/IconHeart/IconHeartSvg.cjs +1 -1
- package/dist/lib/components/icons/IconHeart/IconHeartSvg.mjs +1 -1
- package/dist/lib/components/icons/IconItalic/IconItalic.cjs +7 -0
- package/dist/lib/components/icons/IconItalic/IconItalic.mjs +8 -0
- package/dist/lib/components/icons/IconItalic/IconItalicSvg.cjs +20 -0
- package/dist/lib/components/icons/IconItalic/IconItalicSvg.mjs +21 -0
- package/dist/lib/components/icons/IconLink/IconLinkSvg.cjs +4 -4
- package/dist/lib/components/icons/IconLink/IconLinkSvg.mjs +4 -4
- package/dist/lib/components/icons/IconLinkBroken/IconLinkBrokenSvg.cjs +3 -4
- package/dist/lib/components/icons/IconLinkBroken/IconLinkBrokenSvg.mjs +3 -4
- package/dist/lib/components/icons/IconList/IconList.cjs +19 -1
- package/dist/lib/components/icons/IconList/IconList.mjs +17 -1
- package/dist/lib/components/icons/IconNumberedList/IconNumberedList.cjs +7 -0
- package/dist/lib/components/icons/IconNumberedList/IconNumberedList.mjs +8 -0
- package/dist/lib/components/icons/IconNumberedList/IconNumberedListSvg.cjs +20 -0
- package/dist/lib/components/icons/IconNumberedList/IconNumberedListSvg.mjs +21 -0
- package/dist/lib/components/icons/IconRedo/IconRedo.cjs +7 -0
- package/dist/lib/components/icons/IconRedo/IconRedo.mjs +8 -0
- package/dist/lib/components/icons/IconRedo/IconRedoSvg.cjs +20 -0
- package/dist/lib/components/icons/IconRedo/IconRedoSvg.mjs +21 -0
- package/dist/lib/components/icons/IconTitle/IconTitle.cjs +7 -0
- package/dist/lib/components/icons/IconTitle/IconTitle.mjs +8 -0
- package/dist/lib/components/icons/IconTitle/IconTitleSvg.cjs +21 -0
- package/dist/lib/components/icons/IconTitle/IconTitleSvg.mjs +22 -0
- package/dist/lib/components/icons/IconUndo/IconUndo.cjs +7 -0
- package/dist/lib/components/icons/IconUndo/IconUndo.mjs +8 -0
- package/dist/lib/components/icons/IconUndo/IconUndoSvg.cjs +20 -0
- package/dist/lib/components/icons/IconUndo/IconUndoSvg.mjs +21 -0
- package/dist/playroom/components.cjs +14 -0
- package/dist/playroom/components.d.mts +1 -1
- package/dist/playroom/components.d.ts +1 -1
- package/dist/playroom/components.mjs +14 -0
- package/dist/wireframe.chunk.d.ts +23 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# braid-design-system
|
|
2
2
|
|
|
3
|
+
## 33.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Add new icons to represent other list types. ([#1711](https://github.com/seek-oss/braid-design-system/pull/1711))
|
|
8
|
+
Sits alongside `IconChecklist` which already exists.
|
|
9
|
+
|
|
10
|
+
```tsx
|
|
11
|
+
<IconBulletList />
|
|
12
|
+
<IconNumberedList />
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
As a result we have deprecated `IconList` in favour of the more specific list types. `IconList` will be removed in a future major version.
|
|
16
|
+
|
|
17
|
+
### MIGRATION GUIDE
|
|
18
|
+
|
|
19
|
+
```diff
|
|
20
|
+
-<IconList />
|
|
21
|
+
+<IconBulletList />
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
- Add new icons to support rich text editors and formatting. ([#1711](https://github.com/seek-oss/braid-design-system/pull/1711))
|
|
25
|
+
|
|
26
|
+
```tsx
|
|
27
|
+
<IconBold />
|
|
28
|
+
<IconItalic />
|
|
29
|
+
<IconTitle />
|
|
30
|
+
<IconRedo />
|
|
31
|
+
<IconUndo />
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- **IconHeart, IconLink, IconLinkBroken:** Update design ([#1711](https://github.com/seek-oss/braid-design-system/pull/1711))
|
|
37
|
+
|
|
3
38
|
## 33.5.0
|
|
4
39
|
|
|
5
40
|
### Minor Changes
|
package/dist/index.cjs
CHANGED
|
@@ -89,7 +89,9 @@ const lib_components_icons_IconAdd_IconAdd_cjs = require("./lib/components/icons
|
|
|
89
89
|
const lib_components_icons_IconArrow_IconArrow_cjs = require("./lib/components/icons/IconArrow/IconArrow.cjs");
|
|
90
90
|
const lib_components_icons_IconAttachment_IconAttachment_cjs = require("./lib/components/icons/IconAttachment/IconAttachment.cjs");
|
|
91
91
|
const lib_components_icons_IconBluetooth_IconBluetooth_cjs = require("./lib/components/icons/IconBluetooth/IconBluetooth.cjs");
|
|
92
|
+
const lib_components_icons_IconBold_IconBold_cjs = require("./lib/components/icons/IconBold/IconBold.cjs");
|
|
92
93
|
const lib_components_icons_IconBookmark_IconBookmark_cjs = require("./lib/components/icons/IconBookmark/IconBookmark.cjs");
|
|
94
|
+
const lib_components_icons_IconBulletList_IconBulletList_cjs = require("./lib/components/icons/IconBulletList/IconBulletList.cjs");
|
|
93
95
|
const lib_components_icons_IconCareer_IconCareer_cjs = require("./lib/components/icons/IconCareer/IconCareer.cjs");
|
|
94
96
|
const lib_components_icons_IconCategory_IconCategory_cjs = require("./lib/components/icons/IconCategory/IconCategory.cjs");
|
|
95
97
|
const lib_components_icons_IconCaution_IconCaution_cjs = require("./lib/components/icons/IconCaution/IconCaution.cjs");
|
|
@@ -126,6 +128,7 @@ const lib_components_icons_IconHome_IconHome_cjs = require("./lib/components/ico
|
|
|
126
128
|
const lib_components_icons_IconImage_IconImage_cjs = require("./lib/components/icons/IconImage/IconImage.cjs");
|
|
127
129
|
const lib_components_icons_IconInfo_IconInfo_cjs = require("./lib/components/icons/IconInfo/IconInfo.cjs");
|
|
128
130
|
const lib_components_icons_IconInvoice_IconInvoice_cjs = require("./lib/components/icons/IconInvoice/IconInvoice.cjs");
|
|
131
|
+
const lib_components_icons_IconItalic_IconItalic_cjs = require("./lib/components/icons/IconItalic/IconItalic.cjs");
|
|
129
132
|
const lib_components_icons_IconLanguage_IconLanguage_cjs = require("./lib/components/icons/IconLanguage/IconLanguage.cjs");
|
|
130
133
|
const lib_components_icons_IconLicence_IconLicence_cjs = require("./lib/components/icons/IconLicence/IconLicence.cjs");
|
|
131
134
|
const lib_components_icons_IconLink_IconLink_cjs = require("./lib/components/icons/IconLink/IconLink.cjs");
|
|
@@ -140,6 +143,7 @@ const lib_components_icons_IconMoney_IconMoney_cjs = require("./lib/components/i
|
|
|
140
143
|
const lib_components_icons_IconNewWindow_IconNewWindow_cjs = require("./lib/components/icons/IconNewWindow/IconNewWindow.cjs");
|
|
141
144
|
const lib_components_icons_IconNote_IconNote_cjs = require("./lib/components/icons/IconNote/IconNote.cjs");
|
|
142
145
|
const lib_components_icons_IconNotification_IconNotification_cjs = require("./lib/components/icons/IconNotification/IconNotification.cjs");
|
|
146
|
+
const lib_components_icons_IconNumberedList_IconNumberedList_cjs = require("./lib/components/icons/IconNumberedList/IconNumberedList.cjs");
|
|
143
147
|
const lib_components_icons_IconOverflow_IconOverflow_cjs = require("./lib/components/icons/IconOverflow/IconOverflow.cjs");
|
|
144
148
|
const lib_components_icons_IconPeople_IconPeople_cjs = require("./lib/components/icons/IconPeople/IconPeople.cjs");
|
|
145
149
|
const lib_components_icons_IconPersonAdd_IconPersonAdd_cjs = require("./lib/components/icons/IconPersonAdd/IconPersonAdd.cjs");
|
|
@@ -153,6 +157,7 @@ const lib_components_icons_IconProfile_IconProfile_cjs = require("./lib/componen
|
|
|
153
157
|
const lib_components_icons_IconPromote_IconPromote_cjs = require("./lib/components/icons/IconPromote/IconPromote.cjs");
|
|
154
158
|
const lib_components_icons_IconQR_IconQR_cjs = require("./lib/components/icons/IconQR/IconQR.cjs");
|
|
155
159
|
const lib_components_icons_IconRecommended_IconRecommended_cjs = require("./lib/components/icons/IconRecommended/IconRecommended.cjs");
|
|
160
|
+
const lib_components_icons_IconRedo_IconRedo_cjs = require("./lib/components/icons/IconRedo/IconRedo.cjs");
|
|
156
161
|
const lib_components_icons_IconRefresh_IconRefresh_cjs = require("./lib/components/icons/IconRefresh/IconRefresh.cjs");
|
|
157
162
|
const lib_components_icons_IconResume_IconResume_cjs = require("./lib/components/icons/IconResume/IconResume.cjs");
|
|
158
163
|
const lib_components_icons_IconRocket_IconRocket_cjs = require("./lib/components/icons/IconRocket/IconRocket.cjs");
|
|
@@ -180,6 +185,8 @@ const lib_components_icons_IconThumb_IconThumb_cjs = require("./lib/components/i
|
|
|
180
185
|
const lib_components_icons_IconTick_IconTick_cjs = require("./lib/components/icons/IconTick/IconTick.cjs");
|
|
181
186
|
const lib_components_icons_IconTime_IconTime_cjs = require("./lib/components/icons/IconTime/IconTime.cjs");
|
|
182
187
|
const lib_components_icons_IconTip_IconTip_cjs = require("./lib/components/icons/IconTip/IconTip.cjs");
|
|
188
|
+
const lib_components_icons_IconTitle_IconTitle_cjs = require("./lib/components/icons/IconTitle/IconTitle.cjs");
|
|
189
|
+
const lib_components_icons_IconUndo_IconUndo_cjs = require("./lib/components/icons/IconUndo/IconUndo.cjs");
|
|
183
190
|
const lib_components_icons_IconUpload_IconUpload_cjs = require("./lib/components/icons/IconUpload/IconUpload.cjs");
|
|
184
191
|
const lib_components_icons_IconVideo_IconVideo_cjs = require("./lib/components/icons/IconVideo/IconVideo.cjs");
|
|
185
192
|
const lib_components_icons_IconVisibility_IconVisibility_cjs = require("./lib/components/icons/IconVisibility/IconVisibility.cjs");
|
|
@@ -278,7 +285,9 @@ exports.IconAdd = lib_components_icons_IconAdd_IconAdd_cjs.IconAdd;
|
|
|
278
285
|
exports.IconArrow = lib_components_icons_IconArrow_IconArrow_cjs.IconArrow;
|
|
279
286
|
exports.IconAttachment = lib_components_icons_IconAttachment_IconAttachment_cjs.IconAttachment;
|
|
280
287
|
exports.IconBluetooth = lib_components_icons_IconBluetooth_IconBluetooth_cjs.IconBluetooth;
|
|
288
|
+
exports.IconBold = lib_components_icons_IconBold_IconBold_cjs.IconBold;
|
|
281
289
|
exports.IconBookmark = lib_components_icons_IconBookmark_IconBookmark_cjs.IconBookmark;
|
|
290
|
+
exports.IconBulletList = lib_components_icons_IconBulletList_IconBulletList_cjs.IconBulletList;
|
|
282
291
|
exports.IconCareer = lib_components_icons_IconCareer_IconCareer_cjs.IconCareer;
|
|
283
292
|
exports.IconCategory = lib_components_icons_IconCategory_IconCategory_cjs.IconCategory;
|
|
284
293
|
exports.IconCaution = lib_components_icons_IconCaution_IconCaution_cjs.IconCaution;
|
|
@@ -315,6 +324,7 @@ exports.IconHome = lib_components_icons_IconHome_IconHome_cjs.IconHome;
|
|
|
315
324
|
exports.IconImage = lib_components_icons_IconImage_IconImage_cjs.IconImage;
|
|
316
325
|
exports.IconInfo = lib_components_icons_IconInfo_IconInfo_cjs.IconInfo;
|
|
317
326
|
exports.IconInvoice = lib_components_icons_IconInvoice_IconInvoice_cjs.IconInvoice;
|
|
327
|
+
exports.IconItalic = lib_components_icons_IconItalic_IconItalic_cjs.IconItalic;
|
|
318
328
|
exports.IconLanguage = lib_components_icons_IconLanguage_IconLanguage_cjs.IconLanguage;
|
|
319
329
|
exports.IconLicence = lib_components_icons_IconLicence_IconLicence_cjs.IconLicence;
|
|
320
330
|
exports.IconLink = lib_components_icons_IconLink_IconLink_cjs.IconLink;
|
|
@@ -329,6 +339,7 @@ exports.IconMoney = lib_components_icons_IconMoney_IconMoney_cjs.IconMoney;
|
|
|
329
339
|
exports.IconNewWindow = lib_components_icons_IconNewWindow_IconNewWindow_cjs.IconNewWindow;
|
|
330
340
|
exports.IconNote = lib_components_icons_IconNote_IconNote_cjs.IconNote;
|
|
331
341
|
exports.IconNotification = lib_components_icons_IconNotification_IconNotification_cjs.IconNotification;
|
|
342
|
+
exports.IconNumberedList = lib_components_icons_IconNumberedList_IconNumberedList_cjs.IconNumberedList;
|
|
332
343
|
exports.IconOverflow = lib_components_icons_IconOverflow_IconOverflow_cjs.IconOverflow;
|
|
333
344
|
exports.IconPeople = lib_components_icons_IconPeople_IconPeople_cjs.IconPeople;
|
|
334
345
|
exports.IconPersonAdd = lib_components_icons_IconPersonAdd_IconPersonAdd_cjs.IconPersonAdd;
|
|
@@ -342,6 +353,7 @@ exports.IconProfile = lib_components_icons_IconProfile_IconProfile_cjs.IconProfi
|
|
|
342
353
|
exports.IconPromote = lib_components_icons_IconPromote_IconPromote_cjs.IconPromote;
|
|
343
354
|
exports.IconQR = lib_components_icons_IconQR_IconQR_cjs.IconQR;
|
|
344
355
|
exports.IconRecommended = lib_components_icons_IconRecommended_IconRecommended_cjs.IconRecommended;
|
|
356
|
+
exports.IconRedo = lib_components_icons_IconRedo_IconRedo_cjs.IconRedo;
|
|
345
357
|
exports.IconRefresh = lib_components_icons_IconRefresh_IconRefresh_cjs.IconRefresh;
|
|
346
358
|
exports.IconResume = lib_components_icons_IconResume_IconResume_cjs.IconResume;
|
|
347
359
|
exports.IconRocket = lib_components_icons_IconRocket_IconRocket_cjs.IconRocket;
|
|
@@ -369,6 +381,8 @@ exports.IconThumb = lib_components_icons_IconThumb_IconThumb_cjs.IconThumb;
|
|
|
369
381
|
exports.IconTick = lib_components_icons_IconTick_IconTick_cjs.IconTick;
|
|
370
382
|
exports.IconTime = lib_components_icons_IconTime_IconTime_cjs.IconTime;
|
|
371
383
|
exports.IconTip = lib_components_icons_IconTip_IconTip_cjs.IconTip;
|
|
384
|
+
exports.IconTitle = lib_components_icons_IconTitle_IconTitle_cjs.IconTitle;
|
|
385
|
+
exports.IconUndo = lib_components_icons_IconUndo_IconUndo_cjs.IconUndo;
|
|
372
386
|
exports.IconUpload = lib_components_icons_IconUpload_IconUpload_cjs.IconUpload;
|
|
373
387
|
exports.IconVideo = lib_components_icons_IconVideo_IconVideo_cjs.IconVideo;
|
|
374
388
|
exports.IconVisibility = lib_components_icons_IconVisibility_IconVisibility_cjs.IconVisibility;
|
package/dist/index.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Accordion, AccordionItem, Actions, Alert, Autosuggest, Badge, Bleed, PublicBox as Box, BoxRenderer, BraidPortal, BraidProvider, Button, ButtonIcon, ButtonLink, Card, Checkbox, CheckboxStandalone, Column, Columns, ContentBlock, Dialog, Disclosure, Divider, Drawer, Dropdown, FieldLabel, FieldMessage, Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBookmark, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline, Link, LinkComponent, List, Loader, MenuItem, MenuItemCheckbox, MenuItemDivider, MenuItemLink, MenuRenderer, MonthPicker, Notice, OverflowMenu, Page, PageBlock, Pagination, PasswordField, RadioGroup, RadioItem, Rating, Secondary, Spread, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast } from './wireframe.chunk.js';
|
|
1
|
+
export { Accordion, AccordionItem, Actions, Alert, Autosuggest, Badge, Bleed, PublicBox as Box, BoxRenderer, BraidPortal, BraidProvider, Button, ButtonIcon, ButtonLink, Card, Checkbox, CheckboxStandalone, Column, Columns, ContentBlock, Dialog, Disclosure, Divider, Drawer, Dropdown, FieldLabel, FieldMessage, Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline, Link, LinkComponent, List, Loader, MenuItem, MenuItemCheckbox, MenuItemDivider, MenuItemLink, MenuRenderer, MonthPicker, Notice, OverflowMenu, Page, PageBlock, Pagination, PasswordField, RadioGroup, RadioItem, Rating, Secondary, Spread, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast } from './wireframe.chunk.js';
|
package/dist/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Accordion, AccordionItem, Actions, Alert, Autosuggest, Badge, Bleed, PublicBox as Box, BoxRenderer, BraidPortal, BraidProvider, Button, ButtonIcon, ButtonLink, Card, Checkbox, CheckboxStandalone, Column, Columns, ContentBlock, Dialog, Disclosure, Divider, Drawer, Dropdown, FieldLabel, FieldMessage, Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBookmark, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline, Link, LinkComponent, List, Loader, MenuItem, MenuItemCheckbox, MenuItemDivider, MenuItemLink, MenuRenderer, MonthPicker, Notice, OverflowMenu, Page, PageBlock, Pagination, PasswordField, RadioGroup, RadioItem, Rating, Secondary, Spread, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast } from './wireframe.chunk.js';
|
|
1
|
+
export { Accordion, AccordionItem, Actions, Alert, Autosuggest, Badge, Bleed, PublicBox as Box, BoxRenderer, BraidPortal, BraidProvider, Button, ButtonIcon, ButtonLink, Card, Checkbox, CheckboxStandalone, Column, Columns, ContentBlock, Dialog, Disclosure, Divider, Drawer, Dropdown, FieldLabel, FieldMessage, Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline, Link, LinkComponent, List, Loader, MenuItem, MenuItemCheckbox, MenuItemDivider, MenuItemLink, MenuRenderer, MonthPicker, Notice, OverflowMenu, Page, PageBlock, Pagination, PasswordField, RadioGroup, RadioItem, Rating, Secondary, Spread, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast } from './wireframe.chunk.js';
|
package/dist/index.mjs
CHANGED
|
@@ -87,7 +87,9 @@ import { IconAdd } from "./lib/components/icons/IconAdd/IconAdd.mjs";
|
|
|
87
87
|
import { IconArrow } from "./lib/components/icons/IconArrow/IconArrow.mjs";
|
|
88
88
|
import { IconAttachment } from "./lib/components/icons/IconAttachment/IconAttachment.mjs";
|
|
89
89
|
import { IconBluetooth } from "./lib/components/icons/IconBluetooth/IconBluetooth.mjs";
|
|
90
|
+
import { IconBold } from "./lib/components/icons/IconBold/IconBold.mjs";
|
|
90
91
|
import { IconBookmark } from "./lib/components/icons/IconBookmark/IconBookmark.mjs";
|
|
92
|
+
import { IconBulletList } from "./lib/components/icons/IconBulletList/IconBulletList.mjs";
|
|
91
93
|
import { IconCareer } from "./lib/components/icons/IconCareer/IconCareer.mjs";
|
|
92
94
|
import { IconCategory } from "./lib/components/icons/IconCategory/IconCategory.mjs";
|
|
93
95
|
import { IconCaution } from "./lib/components/icons/IconCaution/IconCaution.mjs";
|
|
@@ -124,6 +126,7 @@ import { IconHome } from "./lib/components/icons/IconHome/IconHome.mjs";
|
|
|
124
126
|
import { IconImage } from "./lib/components/icons/IconImage/IconImage.mjs";
|
|
125
127
|
import { IconInfo } from "./lib/components/icons/IconInfo/IconInfo.mjs";
|
|
126
128
|
import { IconInvoice } from "./lib/components/icons/IconInvoice/IconInvoice.mjs";
|
|
129
|
+
import { IconItalic } from "./lib/components/icons/IconItalic/IconItalic.mjs";
|
|
127
130
|
import { IconLanguage } from "./lib/components/icons/IconLanguage/IconLanguage.mjs";
|
|
128
131
|
import { IconLicence } from "./lib/components/icons/IconLicence/IconLicence.mjs";
|
|
129
132
|
import { IconLink } from "./lib/components/icons/IconLink/IconLink.mjs";
|
|
@@ -138,6 +141,7 @@ import { IconMoney } from "./lib/components/icons/IconMoney/IconMoney.mjs";
|
|
|
138
141
|
import { IconNewWindow } from "./lib/components/icons/IconNewWindow/IconNewWindow.mjs";
|
|
139
142
|
import { IconNote } from "./lib/components/icons/IconNote/IconNote.mjs";
|
|
140
143
|
import { IconNotification } from "./lib/components/icons/IconNotification/IconNotification.mjs";
|
|
144
|
+
import { IconNumberedList } from "./lib/components/icons/IconNumberedList/IconNumberedList.mjs";
|
|
141
145
|
import { IconOverflow } from "./lib/components/icons/IconOverflow/IconOverflow.mjs";
|
|
142
146
|
import { IconPeople } from "./lib/components/icons/IconPeople/IconPeople.mjs";
|
|
143
147
|
import { IconPersonAdd } from "./lib/components/icons/IconPersonAdd/IconPersonAdd.mjs";
|
|
@@ -151,6 +155,7 @@ import { IconProfile } from "./lib/components/icons/IconProfile/IconProfile.mjs"
|
|
|
151
155
|
import { IconPromote } from "./lib/components/icons/IconPromote/IconPromote.mjs";
|
|
152
156
|
import { IconQR } from "./lib/components/icons/IconQR/IconQR.mjs";
|
|
153
157
|
import { IconRecommended } from "./lib/components/icons/IconRecommended/IconRecommended.mjs";
|
|
158
|
+
import { IconRedo } from "./lib/components/icons/IconRedo/IconRedo.mjs";
|
|
154
159
|
import { IconRefresh } from "./lib/components/icons/IconRefresh/IconRefresh.mjs";
|
|
155
160
|
import { IconResume } from "./lib/components/icons/IconResume/IconResume.mjs";
|
|
156
161
|
import { IconRocket } from "./lib/components/icons/IconRocket/IconRocket.mjs";
|
|
@@ -178,6 +183,8 @@ import { IconThumb } from "./lib/components/icons/IconThumb/IconThumb.mjs";
|
|
|
178
183
|
import { IconTick } from "./lib/components/icons/IconTick/IconTick.mjs";
|
|
179
184
|
import { IconTime } from "./lib/components/icons/IconTime/IconTime.mjs";
|
|
180
185
|
import { IconTip } from "./lib/components/icons/IconTip/IconTip.mjs";
|
|
186
|
+
import { IconTitle } from "./lib/components/icons/IconTitle/IconTitle.mjs";
|
|
187
|
+
import { IconUndo } from "./lib/components/icons/IconUndo/IconUndo.mjs";
|
|
181
188
|
import { IconUpload } from "./lib/components/icons/IconUpload/IconUpload.mjs";
|
|
182
189
|
import { IconVideo } from "./lib/components/icons/IconVideo/IconVideo.mjs";
|
|
183
190
|
import { IconVisibility } from "./lib/components/icons/IconVisibility/IconVisibility.mjs";
|
|
@@ -220,7 +227,9 @@ export {
|
|
|
220
227
|
IconArrow,
|
|
221
228
|
IconAttachment,
|
|
222
229
|
IconBluetooth,
|
|
230
|
+
IconBold,
|
|
223
231
|
IconBookmark,
|
|
232
|
+
IconBulletList,
|
|
224
233
|
IconCareer,
|
|
225
234
|
IconCategory,
|
|
226
235
|
IconCaution,
|
|
@@ -257,6 +266,7 @@ export {
|
|
|
257
266
|
IconImage,
|
|
258
267
|
IconInfo,
|
|
259
268
|
IconInvoice,
|
|
269
|
+
IconItalic,
|
|
260
270
|
IconLanguage,
|
|
261
271
|
IconLicence,
|
|
262
272
|
IconLink,
|
|
@@ -271,6 +281,7 @@ export {
|
|
|
271
281
|
IconNewWindow,
|
|
272
282
|
IconNote,
|
|
273
283
|
IconNotification,
|
|
284
|
+
IconNumberedList,
|
|
274
285
|
IconOverflow,
|
|
275
286
|
IconPeople,
|
|
276
287
|
IconPersonAdd,
|
|
@@ -284,6 +295,7 @@ export {
|
|
|
284
295
|
IconPromote,
|
|
285
296
|
IconQR,
|
|
286
297
|
IconRecommended,
|
|
298
|
+
IconRedo,
|
|
287
299
|
IconRefresh,
|
|
288
300
|
IconRenderer,
|
|
289
301
|
IconResume,
|
|
@@ -312,6 +324,8 @@ export {
|
|
|
312
324
|
IconTick,
|
|
313
325
|
IconTime,
|
|
314
326
|
IconTip,
|
|
327
|
+
IconTitle,
|
|
328
|
+
IconUndo,
|
|
315
329
|
IconUpload,
|
|
316
330
|
IconVideo,
|
|
317
331
|
IconVisibility,
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const lib_components_Box_Box_cjs = require("../../Box/Box.cjs");
|
|
4
|
+
const lib_components_icons_IconContainer_cjs = require("../IconContainer.cjs");
|
|
5
|
+
const lib_components_icons_IconBold_IconBoldSvg_cjs = require("./IconBoldSvg.cjs");
|
|
6
|
+
const IconBold = (props) => /* @__PURE__ */ jsxRuntime.jsx(lib_components_icons_IconContainer_cjs.IconContainer, { ...props, children: (svgProps) => /* @__PURE__ */ jsxRuntime.jsx(lib_components_Box_Box_cjs.Box, { component: lib_components_icons_IconBold_IconBoldSvg_cjs.IconBoldSvg, ...svgProps }) });
|
|
7
|
+
exports.IconBold = IconBold;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Box } from "../../Box/Box.mjs";
|
|
3
|
+
import { IconContainer } from "../IconContainer.mjs";
|
|
4
|
+
import { IconBoldSvg } from "./IconBoldSvg.mjs";
|
|
5
|
+
const IconBold = (props) => /* @__PURE__ */ jsx(IconContainer, { ...props, children: (svgProps) => /* @__PURE__ */ jsx(Box, { component: IconBoldSvg, ...svgProps }) });
|
|
6
|
+
export {
|
|
7
|
+
IconBold
|
|
8
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const IconBoldSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
focusable: "false",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
width: 16,
|
|
11
|
+
height: 16,
|
|
12
|
+
"aria-labelledby": titleId,
|
|
13
|
+
...props,
|
|
14
|
+
children: [
|
|
15
|
+
title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
|
|
16
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.909 11.08A4.95 4.95 0 0 0 19 8c0-2.757-2.243-5-5-5H6.5A1.5 1.5 0 0 0 5 4.5v15A1.5 1.5 0 0 0 6.5 21h8.259A5.248 5.248 0 0 0 20 15.759v-.518c0-1.703-.83-3.203-2.091-4.161ZM8 6h6c1.103 0 2 .897 2 2s-.897 2-2 2H8V6Zm9 9.759A2.244 2.244 0 0 1 14.759 18H8v-5h6.759A2.244 2.244 0 0 1 17 15.241v.518Z" })
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
exports.IconBoldSvg = IconBoldSvg;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const IconBoldSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
focusable: "false",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
"aria-labelledby": titleId,
|
|
12
|
+
...props,
|
|
13
|
+
children: [
|
|
14
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
15
|
+
/* @__PURE__ */ jsx("path", { d: "M17.909 11.08A4.95 4.95 0 0 0 19 8c0-2.757-2.243-5-5-5H6.5A1.5 1.5 0 0 0 5 4.5v15A1.5 1.5 0 0 0 6.5 21h8.259A5.248 5.248 0 0 0 20 15.759v-.518c0-1.703-.83-3.203-2.091-4.161ZM8 6h6c1.103 0 2 .897 2 2s-.897 2-2 2H8V6Zm9 9.759A2.244 2.244 0 0 1 14.759 18H8v-5h6.759A2.244 2.244 0 0 1 17 15.241v.518Z" })
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
export {
|
|
20
|
+
IconBoldSvg
|
|
21
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const lib_components_Box_Box_cjs = require("../../Box/Box.cjs");
|
|
4
|
+
const lib_components_icons_IconContainer_cjs = require("../IconContainer.cjs");
|
|
5
|
+
const lib_components_icons_IconBulletList_IconBulletListSvg_cjs = require("./IconBulletListSvg.cjs");
|
|
6
|
+
const IconBulletList = (props) => /* @__PURE__ */ jsxRuntime.jsx(lib_components_icons_IconContainer_cjs.IconContainer, { ...props, children: (svgProps) => /* @__PURE__ */ jsxRuntime.jsx(lib_components_Box_Box_cjs.Box, { component: lib_components_icons_IconBulletList_IconBulletListSvg_cjs.IconBulletListSvg, ...svgProps }) });
|
|
7
|
+
exports.IconBulletList = IconBulletList;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Box } from "../../Box/Box.mjs";
|
|
3
|
+
import { IconContainer } from "../IconContainer.mjs";
|
|
4
|
+
import { IconBulletListSvg } from "./IconBulletListSvg.mjs";
|
|
5
|
+
const IconBulletList = (props) => /* @__PURE__ */ jsx(IconContainer, { ...props, children: (svgProps) => /* @__PURE__ */ jsx(Box, { component: IconBulletListSvg, ...svgProps }) });
|
|
6
|
+
export {
|
|
7
|
+
IconBulletList
|
|
8
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const IconBulletListSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
focusable: "false",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
width: 16,
|
|
11
|
+
height: 16,
|
|
12
|
+
"aria-labelledby": titleId,
|
|
13
|
+
...props,
|
|
14
|
+
children: [
|
|
15
|
+
title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
|
|
16
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 14a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0-8a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm13 3h-7a1 1 0 1 1 0-2h7a1 1 0 1 1 0 2Zm0 8h-7a1 1 0 1 1 0-2h7a1 1 0 1 1 0 2Z" })
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
exports.IconBulletListSvg = IconBulletListSvg;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const IconBulletListSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
focusable: "false",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
"aria-labelledby": titleId,
|
|
12
|
+
...props,
|
|
13
|
+
children: [
|
|
14
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
15
|
+
/* @__PURE__ */ jsx("path", { d: "M6 14a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0-8a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm13 3h-7a1 1 0 1 1 0-2h7a1 1 0 1 1 0 2Zm0 8h-7a1 1 0 1 1 0-2h7a1 1 0 1 1 0 2Z" })
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
export {
|
|
20
|
+
IconBulletListSvg
|
|
21
|
+
};
|
|
@@ -13,7 +13,7 @@ const IconHeartActiveSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsx
|
|
|
13
13
|
...props,
|
|
14
14
|
children: [
|
|
15
15
|
title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
|
|
16
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.
|
|
16
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.5 2A6.5 6.5 0 0 0 12 3.815 6.5 6.5 0 0 0 7.5 2 6.508 6.508 0 0 0 1 8.5C1 15.535 10.443 22 12 22s11-6.465 11-13.5C23 4.916 20.084 2 16.5 2Z" })
|
|
17
17
|
]
|
|
18
18
|
}
|
|
19
19
|
);
|
|
@@ -12,7 +12,7 @@ const IconHeartActiveSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsx
|
|
|
12
12
|
...props,
|
|
13
13
|
children: [
|
|
14
14
|
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
15
|
-
/* @__PURE__ */ jsx("path", { d: "M16.
|
|
15
|
+
/* @__PURE__ */ jsx("path", { d: "M16.5 2A6.5 6.5 0 0 0 12 3.815 6.5 6.5 0 0 0 7.5 2 6.508 6.508 0 0 0 1 8.5C1 15.535 10.443 22 12 22s11-6.465 11-13.5C23 4.916 20.084 2 16.5 2Z" })
|
|
16
16
|
]
|
|
17
17
|
}
|
|
18
18
|
);
|
|
@@ -13,7 +13,7 @@ const IconHeartSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntim
|
|
|
13
13
|
...props,
|
|
14
14
|
children: [
|
|
15
15
|
title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
|
|
16
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12
|
|
16
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 22C10.444 22 1 15.535 1 8.5 1 4.916 3.916 2 7.5 2A6.5 6.5 0 0 1 12 3.815 6.5 6.5 0 0 1 16.5 2C20.084 2 23 4.916 23 8.5 23 15.535 13.557 22 12 22Zm.125-1.987Zm-.25 0ZM7.5 4A4.505 4.505 0 0 0 3 8.5c0 5.491 7.441 10.862 9 11.47 1.559-.608 9-5.979 9-11.47C21 6.019 18.981 4 16.5 4c-1.46 0-2.838.717-3.682 1.919-.375.533-1.261.533-1.636 0A4.506 4.506 0 0 0 7.5 4Z" })
|
|
17
17
|
]
|
|
18
18
|
}
|
|
19
19
|
);
|
|
@@ -12,7 +12,7 @@ const IconHeartSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
|
|
|
12
12
|
...props,
|
|
13
13
|
children: [
|
|
14
14
|
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
15
|
-
/* @__PURE__ */ jsx("path", { d: "M12
|
|
15
|
+
/* @__PURE__ */ jsx("path", { d: "M12 22C10.444 22 1 15.535 1 8.5 1 4.916 3.916 2 7.5 2A6.5 6.5 0 0 1 12 3.815 6.5 6.5 0 0 1 16.5 2C20.084 2 23 4.916 23 8.5 23 15.535 13.557 22 12 22Zm.125-1.987Zm-.25 0ZM7.5 4A4.505 4.505 0 0 0 3 8.5c0 5.491 7.441 10.862 9 11.47 1.559-.608 9-5.979 9-11.47C21 6.019 18.981 4 16.5 4c-1.46 0-2.838.717-3.682 1.919-.375.533-1.261.533-1.636 0A4.506 4.506 0 0 0 7.5 4Z" })
|
|
16
16
|
]
|
|
17
17
|
}
|
|
18
18
|
);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const lib_components_Box_Box_cjs = require("../../Box/Box.cjs");
|
|
4
|
+
const lib_components_icons_IconContainer_cjs = require("../IconContainer.cjs");
|
|
5
|
+
const lib_components_icons_IconItalic_IconItalicSvg_cjs = require("./IconItalicSvg.cjs");
|
|
6
|
+
const IconItalic = (props) => /* @__PURE__ */ jsxRuntime.jsx(lib_components_icons_IconContainer_cjs.IconContainer, { ...props, children: (svgProps) => /* @__PURE__ */ jsxRuntime.jsx(lib_components_Box_Box_cjs.Box, { component: lib_components_icons_IconItalic_IconItalicSvg_cjs.IconItalicSvg, ...svgProps }) });
|
|
7
|
+
exports.IconItalic = IconItalic;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Box } from "../../Box/Box.mjs";
|
|
3
|
+
import { IconContainer } from "../IconContainer.mjs";
|
|
4
|
+
import { IconItalicSvg } from "./IconItalicSvg.mjs";
|
|
5
|
+
const IconItalic = (props) => /* @__PURE__ */ jsx(IconContainer, { ...props, children: (svgProps) => /* @__PURE__ */ jsx(Box, { component: IconItalicSvg, ...svgProps }) });
|
|
6
|
+
export {
|
|
7
|
+
IconItalic
|
|
8
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const IconItalicSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
viewBox: "0 0 24 24",
|
|
8
|
+
focusable: "false",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
width: 16,
|
|
11
|
+
height: 16,
|
|
12
|
+
"aria-labelledby": titleId,
|
|
13
|
+
...props,
|
|
14
|
+
children: [
|
|
15
|
+
title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
|
|
16
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 3H9a1 1 0 1 0 0 2h3.72l-3.5 14H6a1 1 0 1 0 0 2h9a1 1 0 1 0 0-2h-3.72l3.5-14H18a1 1 0 1 0 0-2Z" })
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
exports.IconItalicSvg = IconItalicSvg;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const IconItalicSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
viewBox: "0 0 24 24",
|
|
7
|
+
focusable: "false",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
"aria-labelledby": titleId,
|
|
12
|
+
...props,
|
|
13
|
+
children: [
|
|
14
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
15
|
+
/* @__PURE__ */ jsx("path", { d: "M18 3H9a1 1 0 1 0 0 2h3.72l-3.5 14H6a1 1 0 1 0 0 2h9a1 1 0 1 0 0-2h-3.72l3.5-14H18a1 1 0 1 0 0-2Z" })
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
export {
|
|
20
|
+
IconItalicSvg
|
|
21
|
+
};
|
|
@@ -4,17 +4,17 @@ const IconLinkSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime
|
|
|
4
4
|
"svg",
|
|
5
5
|
{
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
width: 16,
|
|
8
|
-
height: 16,
|
|
9
7
|
viewBox: "0 0 24 24",
|
|
10
8
|
focusable: "false",
|
|
11
9
|
fill: "currentColor",
|
|
10
|
+
width: 16,
|
|
11
|
+
height: 16,
|
|
12
12
|
"aria-labelledby": titleId,
|
|
13
13
|
...props,
|
|
14
14
|
children: [
|
|
15
15
|
title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
|
|
16
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "
|
|
17
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "
|
|
16
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.054 21.946a4.965 4.965 0 0 1-3.535-1.465c-.945-.943-1.465-2.199-1.465-3.535s.52-2.592 1.465-3.535l3.239-3.24a1 1 0 1 1 1.414 1.415l-3.24 3.24c-.566.566-.878 1.319-.878 2.12s.312 1.555.879 2.121c1.132 1.133 3.109 1.133 4.242 0l3.24-3.239a1 1 0 1 1 1.413 1.414l-3.24 3.24a4.964 4.964 0 0 1-3.534 1.464Zm9.481-7.825a1 1 0 0 1-.707-1.707l3.24-3.238a3.005 3.005 0 0 0 0-4.243 3.007 3.007 0 0 0-4.244 0l-3.238 3.239a1 1 0 1 1-1.414-1.414l3.238-3.24a5.006 5.006 0 0 1 7.071 0 5.008 5.008 0 0 1 0 7.072l-3.239 3.238a.997.997 0 0 1-.707.293Z" }),
|
|
17
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8.172 16.828a1 1 0 0 1-.707-1.707l7.656-7.656a1 1 0 1 1 1.414 1.414L8.88 16.535a.997.997 0 0 1-.707.293Z" })
|
|
18
18
|
]
|
|
19
19
|
}
|
|
20
20
|
);
|
|
@@ -3,17 +3,17 @@ const IconLinkSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
|
|
|
3
3
|
"svg",
|
|
4
4
|
{
|
|
5
5
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: 16,
|
|
7
|
-
height: 16,
|
|
8
6
|
viewBox: "0 0 24 24",
|
|
9
7
|
focusable: "false",
|
|
10
8
|
fill: "currentColor",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
11
|
"aria-labelledby": titleId,
|
|
12
12
|
...props,
|
|
13
13
|
children: [
|
|
14
14
|
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
15
|
-
/* @__PURE__ */ jsx("path", { d: "
|
|
16
|
-
/* @__PURE__ */ jsx("path", { d: "
|
|
15
|
+
/* @__PURE__ */ jsx("path", { d: "M7.054 21.946a4.965 4.965 0 0 1-3.535-1.465c-.945-.943-1.465-2.199-1.465-3.535s.52-2.592 1.465-3.535l3.239-3.24a1 1 0 1 1 1.414 1.415l-3.24 3.24c-.566.566-.878 1.319-.878 2.12s.312 1.555.879 2.121c1.132 1.133 3.109 1.133 4.242 0l3.24-3.239a1 1 0 1 1 1.413 1.414l-3.24 3.24a4.964 4.964 0 0 1-3.534 1.464Zm9.481-7.825a1 1 0 0 1-.707-1.707l3.24-3.238a3.005 3.005 0 0 0 0-4.243 3.007 3.007 0 0 0-4.244 0l-3.238 3.239a1 1 0 1 1-1.414-1.414l3.238-3.24a5.006 5.006 0 0 1 7.071 0 5.008 5.008 0 0 1 0 7.072l-3.239 3.238a.997.997 0 0 1-.707.293Z" }),
|
|
16
|
+
/* @__PURE__ */ jsx("path", { d: "M8.172 16.828a1 1 0 0 1-.707-1.707l7.656-7.656a1 1 0 1 1 1.414 1.414L8.88 16.535a.997.997 0 0 1-.707.293Z" })
|
|
17
17
|
]
|
|
18
18
|
}
|
|
19
19
|
);
|
|
@@ -4,17 +4,16 @@ const IconLinkBrokenSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxR
|
|
|
4
4
|
"svg",
|
|
5
5
|
{
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
-
width: 16,
|
|
8
|
-
height: 16,
|
|
9
7
|
viewBox: "0 0 24 24",
|
|
10
8
|
focusable: "false",
|
|
11
9
|
fill: "currentColor",
|
|
10
|
+
width: 16,
|
|
11
|
+
height: 16,
|
|
12
12
|
"aria-labelledby": titleId,
|
|
13
13
|
...props,
|
|
14
14
|
children: [
|
|
15
15
|
title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
|
|
16
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "
|
|
17
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.15 6.664a6.214 6.214 0 0 1 1.476.2l1.932-1.932a3.188 3.188 0 1 1 4.508 4.508l-2.96 2.961a3.208 3.208 0 0 1-4.51 0 1 1 0 0 0-1.413 1.414 5.205 5.205 0 0 0 6.831.413 5.101 5.101 0 0 0 .506-.413l2.96-2.96a5.188 5.188 0 0 0-7.336-7.337L9.85 6.812a6.226 6.226 0 0 1 1.298-.148Zm-5.736-.25a.997.997 0 0 1-.707-.293L3.293 4.707a1 1 0 0 1 1.414-1.414l1.414 1.414a1 1 0 0 1-.707 1.707ZM3.736 9.321a.994.994 0 0 1-.26-.034l-1.93-.517a1 1 0 0 1 .518-1.932l1.931.517a1 1 0 0 1-.258 1.966ZM8.32 4.735a.999.999 0 0 1-.965-.74l-.517-1.933a1 1 0 0 1 1.932-.517l.517 1.932a1 1 0 0 1-.967 1.258Z" })
|
|
16
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7.054 21.946a4.965 4.965 0 0 1-3.535-1.465c-.945-.943-1.465-2.199-1.465-3.535s.52-2.592 1.465-3.535l3.239-3.24a1 1 0 1 1 1.414 1.415l-3.24 3.24c-.566.566-.878 1.319-.878 2.12s.312 1.555.879 2.121c1.132 1.133 3.109 1.133 4.242 0l3.24-3.239a1 1 0 1 1 1.413 1.414l-3.24 3.24a4.964 4.964 0 0 1-3.534 1.464Zm9.481-7.825a1 1 0 0 1-.707-1.707l3.24-3.238a3.005 3.005 0 0 0 0-4.243 3.007 3.007 0 0 0-4.244 0l-3.238 3.239a1 1 0 1 1-1.414-1.414l3.238-3.24a5.006 5.006 0 0 1 7.071 0 5.008 5.008 0 0 1 0 7.072l-3.239 3.238a.997.997 0 0 1-.707.293ZM5.574 6.587a.997.997 0 0 1-.707-.293L3.453 4.879a1 1 0 1 1 1.414-1.414L6.281 4.88a1 1 0 0 1-.707 1.707ZM3.896 9.494a.994.994 0 0 1-.26-.034l-1.93-.518a1 1 0 0 1 .517-1.931l1.931.517a1 1 0 0 1-.258 1.966ZM8.48 4.908a.999.999 0 0 1-.964-.741l-.518-1.932a1 1 0 0 1 1.932-.517l.517 1.931a1 1 0 0 1-.967 1.26Zm11.36 15.92a.997.997 0 0 1-.707-.293l-1.414-1.415a1 1 0 1 1 1.414-1.414l1.414 1.415a1 1 0 0 1-.707 1.707Zm2.197-3.805a.994.994 0 0 1-.26-.034l-1.931-.517a1 1 0 0 1 .517-1.932l1.932.518a1 1 0 0 1-.258 1.965Zm-6.002 6a.999.999 0 0 1-.965-.74l-.517-1.932a1 1 0 0 1 1.931-.518l.518 1.932a1 1 0 0 1-.967 1.258Z" })
|
|
18
17
|
]
|
|
19
18
|
}
|
|
20
19
|
);
|
|
@@ -3,17 +3,16 @@ const IconLinkBrokenSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs
|
|
|
3
3
|
"svg",
|
|
4
4
|
{
|
|
5
5
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
width: 16,
|
|
7
|
-
height: 16,
|
|
8
6
|
viewBox: "0 0 24 24",
|
|
9
7
|
focusable: "false",
|
|
10
8
|
fill: "currentColor",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
11
|
"aria-labelledby": titleId,
|
|
12
12
|
...props,
|
|
13
13
|
children: [
|
|
14
14
|
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
15
|
-
/* @__PURE__ */ jsx("path", { d: "
|
|
16
|
-
/* @__PURE__ */ jsx("path", { d: "M11.15 6.664a6.214 6.214 0 0 1 1.476.2l1.932-1.932a3.188 3.188 0 1 1 4.508 4.508l-2.96 2.961a3.208 3.208 0 0 1-4.51 0 1 1 0 0 0-1.413 1.414 5.205 5.205 0 0 0 6.831.413 5.101 5.101 0 0 0 .506-.413l2.96-2.96a5.188 5.188 0 0 0-7.336-7.337L9.85 6.812a6.226 6.226 0 0 1 1.298-.148Zm-5.736-.25a.997.997 0 0 1-.707-.293L3.293 4.707a1 1 0 0 1 1.414-1.414l1.414 1.414a1 1 0 0 1-.707 1.707ZM3.736 9.321a.994.994 0 0 1-.26-.034l-1.93-.517a1 1 0 0 1 .518-1.932l1.931.517a1 1 0 0 1-.258 1.966ZM8.32 4.735a.999.999 0 0 1-.965-.74l-.517-1.933a1 1 0 0 1 1.932-.517l.517 1.932a1 1 0 0 1-.967 1.258Z" })
|
|
15
|
+
/* @__PURE__ */ jsx("path", { d: "M7.054 21.946a4.965 4.965 0 0 1-3.535-1.465c-.945-.943-1.465-2.199-1.465-3.535s.52-2.592 1.465-3.535l3.239-3.24a1 1 0 1 1 1.414 1.415l-3.24 3.24c-.566.566-.878 1.319-.878 2.12s.312 1.555.879 2.121c1.132 1.133 3.109 1.133 4.242 0l3.24-3.239a1 1 0 1 1 1.413 1.414l-3.24 3.24a4.964 4.964 0 0 1-3.534 1.464Zm9.481-7.825a1 1 0 0 1-.707-1.707l3.24-3.238a3.005 3.005 0 0 0 0-4.243 3.007 3.007 0 0 0-4.244 0l-3.238 3.239a1 1 0 1 1-1.414-1.414l3.238-3.24a5.006 5.006 0 0 1 7.071 0 5.008 5.008 0 0 1 0 7.072l-3.239 3.238a.997.997 0 0 1-.707.293ZM5.574 6.587a.997.997 0 0 1-.707-.293L3.453 4.879a1 1 0 1 1 1.414-1.414L6.281 4.88a1 1 0 0 1-.707 1.707ZM3.896 9.494a.994.994 0 0 1-.26-.034l-1.93-.518a1 1 0 0 1 .517-1.931l1.931.517a1 1 0 0 1-.258 1.966ZM8.48 4.908a.999.999 0 0 1-.964-.741l-.518-1.932a1 1 0 0 1 1.932-.517l.517 1.931a1 1 0 0 1-.967 1.26Zm11.36 15.92a.997.997 0 0 1-.707-.293l-1.414-1.415a1 1 0 1 1 1.414-1.414l1.414 1.415a1 1 0 0 1-.707 1.707Zm2.197-3.805a.994.994 0 0 1-.26-.034l-1.931-.517a1 1 0 0 1 .517-1.932l1.932.518a1 1 0 0 1-.258 1.965Zm-6.002 6a.999.999 0 0 1-.965-.74l-.517-1.932a1 1 0 0 1 1.931-.518l.518 1.932a1 1 0 0 1-.967 1.258Z" })
|
|
17
16
|
]
|
|
18
17
|
}
|
|
19
18
|
);
|