braid-design-system 32.16.3 → 32.17.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 +20 -0
- package/README.md +0 -4
- package/dist/index.cjs +18 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +18 -0
- package/dist/lib/components/icons/IconAI/IconAI.cjs +10 -0
- package/dist/lib/components/icons/IconAI/IconAI.mjs +11 -0
- package/dist/lib/components/icons/IconAI/IconAISvg.cjs +20 -0
- package/dist/lib/components/icons/IconAI/IconAISvg.mjs +21 -0
- package/dist/lib/components/icons/IconCareer/IconCareer.cjs +17 -0
- package/dist/lib/components/icons/IconCareer/IconCareer.mjs +18 -0
- package/dist/lib/components/icons/IconCareer/IconCareerActiveSvg.cjs +21 -0
- package/dist/lib/components/icons/IconCareer/IconCareerActiveSvg.mjs +22 -0
- package/dist/lib/components/icons/IconCareer/IconCareerSvg.cjs +21 -0
- package/dist/lib/components/icons/IconCareer/IconCareerSvg.mjs +22 -0
- package/dist/lib/components/icons/IconCategory/IconCategory.cjs +10 -0
- package/dist/lib/components/icons/IconCategory/IconCategory.mjs +11 -0
- package/dist/lib/components/icons/IconCategory/IconCategorySvg.cjs +20 -0
- package/dist/lib/components/icons/IconCategory/IconCategorySvg.mjs +21 -0
- package/dist/lib/components/icons/IconCritical/IconCriticalSvg.cjs +5 -6
- package/dist/lib/components/icons/IconCritical/IconCriticalSvg.mjs +5 -6
- package/dist/lib/components/icons/IconExperience/IconExperience.cjs +10 -0
- package/dist/lib/components/icons/IconExperience/IconExperience.mjs +11 -0
- package/dist/lib/components/icons/IconExperience/IconExperienceSvg.cjs +20 -0
- package/dist/lib/components/icons/IconExperience/IconExperienceSvg.mjs +21 -0
- package/dist/lib/components/icons/IconGift/IconGift.cjs +10 -0
- package/dist/lib/components/icons/IconGift/IconGift.mjs +11 -0
- package/dist/lib/components/icons/IconGift/IconGiftSvg.cjs +20 -0
- package/dist/lib/components/icons/IconGift/IconGiftSvg.mjs +21 -0
- package/dist/lib/components/icons/IconGlobe/IconGlobe.cjs +10 -0
- package/dist/lib/components/icons/IconGlobe/IconGlobe.mjs +11 -0
- package/dist/lib/components/icons/IconGlobe/IconGlobeSvg.cjs +20 -0
- package/dist/lib/components/icons/IconGlobe/IconGlobeSvg.mjs +21 -0
- package/dist/lib/components/icons/IconLanguage/IconLanguageSvg.cjs +1 -1
- package/dist/lib/components/icons/IconLanguage/IconLanguageSvg.mjs +1 -1
- package/dist/lib/components/icons/IconRocket/IconRocket.cjs +10 -0
- package/dist/lib/components/icons/IconRocket/IconRocket.mjs +11 -0
- package/dist/lib/components/icons/IconRocket/IconRocketSvg.cjs +20 -0
- package/dist/lib/components/icons/IconRocket/IconRocketSvg.mjs +21 -0
- package/dist/lib/components/icons/IconSentiment/IconSentiment.cjs +26 -0
- package/dist/lib/components/icons/IconSentiment/IconSentiment.mjs +27 -0
- package/dist/lib/components/icons/IconSentiment/IconSentimentNegativeSvg.cjs +27 -0
- package/dist/lib/components/icons/IconSentiment/IconSentimentNegativeSvg.mjs +28 -0
- package/dist/lib/components/icons/IconSentiment/IconSentimentPositiveSvg.cjs +27 -0
- package/dist/lib/components/icons/IconSentiment/IconSentimentPositiveSvg.mjs +28 -0
- package/dist/lib/components/icons/IconSentiment/IconSentimentSvg.cjs +23 -0
- package/dist/lib/components/icons/IconSentiment/IconSentimentSvg.mjs +24 -0
- package/dist/lib/components/icons/IconSkills/IconSkills.cjs +10 -0
- package/dist/lib/components/icons/IconSkills/IconSkills.mjs +11 -0
- package/dist/lib/components/icons/IconSkills/IconSkillsSvg.cjs +20 -0
- package/dist/lib/components/icons/IconSkills/IconSkillsSvg.mjs +21 -0
- package/dist/playroom/components.cjs +18 -0
- package/dist/playroom/components.d.mts +1 -1
- package/dist/playroom/components.d.ts +1 -1
- package/dist/playroom/components.mjs +18 -0
- package/dist/wireframe.chunk.d.ts +33 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# braid-design-system
|
|
2
2
|
|
|
3
|
+
## 32.17.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Update semantic icon assets. ([#1481](https://github.com/seek-oss/braid-design-system/pull/1481))
|
|
8
|
+
|
|
9
|
+
`IconCritical`: Move from circle to diamond outline. Increase the visual distinction from `IconInfo`.
|
|
10
|
+
`IconLanguage`: Move from globe to characters. Better represents the concept of language. Previous asset available as `IconGlobe`.
|
|
11
|
+
|
|
12
|
+
**MIGRATION GUIDE**
|
|
13
|
+
|
|
14
|
+
As the above are updates to semantics icons, consumers are unaffected if their usage follows the icon's semantic intent.
|
|
15
|
+
For those choosing the icon based on its visual appearance, please review the usage and consider decoupling from the semantic system icon for safer upgrades.
|
|
16
|
+
|
|
17
|
+
- Add new icons to the library ([#1481](https://github.com/seek-oss/braid-design-system/pull/1481))
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Update Capsize dependencies ([#1477](https://github.com/seek-oss/braid-design-system/pull/1477))
|
|
22
|
+
|
|
3
23
|
## 32.16.3
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -82,10 +82,6 @@ export const App = () => (
|
|
|
82
82
|
);
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
-
## Style Guide Migration
|
|
86
|
-
|
|
87
|
-
If you're migrating from an existing style guide, please refer to the [Style Guide Migration](./docs/Style%20Guide%20Migration.md) guide.
|
|
88
|
-
|
|
89
85
|
## Local Development
|
|
90
86
|
|
|
91
87
|
This project uses [pnpm](https://pnpm.io/) for development dependencies.
|
package/dist/index.cjs
CHANGED
|
@@ -79,9 +79,12 @@ const lib_components_Tiles_Tiles_cjs = require("./lib/components/Tiles/Tiles.cjs
|
|
|
79
79
|
const lib_components_Toggle_Toggle_cjs = require("./lib/components/Toggle/Toggle.cjs");
|
|
80
80
|
const lib_components_useToast_ToastContext_cjs = require("./lib/components/useToast/ToastContext.cjs");
|
|
81
81
|
const lib_components_TooltipRenderer_TooltipRenderer_cjs = require("./lib/components/TooltipRenderer/TooltipRenderer.cjs");
|
|
82
|
+
const lib_components_icons_IconAI_IconAI_cjs = require("./lib/components/icons/IconAI/IconAI.cjs");
|
|
82
83
|
const lib_components_icons_IconAdd_IconAdd_cjs = require("./lib/components/icons/IconAdd/IconAdd.cjs");
|
|
83
84
|
const lib_components_icons_IconArrow_IconArrow_cjs = require("./lib/components/icons/IconArrow/IconArrow.cjs");
|
|
84
85
|
const lib_components_icons_IconBookmark_IconBookmark_cjs = require("./lib/components/icons/IconBookmark/IconBookmark.cjs");
|
|
86
|
+
const lib_components_icons_IconCareer_IconCareer_cjs = require("./lib/components/icons/IconCareer/IconCareer.cjs");
|
|
87
|
+
const lib_components_icons_IconCategory_IconCategory_cjs = require("./lib/components/icons/IconCategory/IconCategory.cjs");
|
|
85
88
|
const lib_components_icons_IconCaution_IconCaution_cjs = require("./lib/components/icons/IconCaution/IconCaution.cjs");
|
|
86
89
|
const lib_components_icons_IconChevron_IconChevron_cjs = require("./lib/components/icons/IconChevron/IconChevron.cjs");
|
|
87
90
|
const lib_components_icons_IconClear_IconClear_cjs = require("./lib/components/icons/IconClear/IconClear.cjs");
|
|
@@ -99,8 +102,11 @@ const lib_components_icons_IconDownload_IconDownload_cjs = require("./lib/compon
|
|
|
99
102
|
const lib_components_icons_IconEdit_IconEdit_cjs = require("./lib/components/icons/IconEdit/IconEdit.cjs");
|
|
100
103
|
const lib_components_icons_IconEducation_IconEducation_cjs = require("./lib/components/icons/IconEducation/IconEducation.cjs");
|
|
101
104
|
const lib_components_icons_IconEnlarge_IconEnlarge_cjs = require("./lib/components/icons/IconEnlarge/IconEnlarge.cjs");
|
|
105
|
+
const lib_components_icons_IconExperience_IconExperience_cjs = require("./lib/components/icons/IconExperience/IconExperience.cjs");
|
|
102
106
|
const lib_components_icons_IconFilter_IconFilter_cjs = require("./lib/components/icons/IconFilter/IconFilter.cjs");
|
|
103
107
|
const lib_components_icons_IconFlag_IconFlag_cjs = require("./lib/components/icons/IconFlag/IconFlag.cjs");
|
|
108
|
+
const lib_components_icons_IconGift_IconGift_cjs = require("./lib/components/icons/IconGift/IconGift.cjs");
|
|
109
|
+
const lib_components_icons_IconGlobe_IconGlobe_cjs = require("./lib/components/icons/IconGlobe/IconGlobe.cjs");
|
|
104
110
|
const lib_components_icons_IconGrid_IconGrid_cjs = require("./lib/components/icons/IconGrid/IconGrid.cjs");
|
|
105
111
|
const lib_components_icons_IconHeart_IconHeart_cjs = require("./lib/components/icons/IconHeart/IconHeart.cjs");
|
|
106
112
|
const lib_components_icons_IconHelp_IconHelp_cjs = require("./lib/components/icons/IconHelp/IconHelp.cjs");
|
|
@@ -136,12 +142,15 @@ const lib_components_icons_IconPromote_IconPromote_cjs = require("./lib/componen
|
|
|
136
142
|
const lib_components_icons_IconRecommended_IconRecommended_cjs = require("./lib/components/icons/IconRecommended/IconRecommended.cjs");
|
|
137
143
|
const lib_components_icons_IconRefresh_IconRefresh_cjs = require("./lib/components/icons/IconRefresh/IconRefresh.cjs");
|
|
138
144
|
const lib_components_icons_IconResume_IconResume_cjs = require("./lib/components/icons/IconResume/IconResume.cjs");
|
|
145
|
+
const lib_components_icons_IconRocket_IconRocket_cjs = require("./lib/components/icons/IconRocket/IconRocket.cjs");
|
|
139
146
|
const lib_components_icons_IconSearch_IconSearch_cjs = require("./lib/components/icons/IconSearch/IconSearch.cjs");
|
|
140
147
|
const lib_components_icons_IconSecurity_IconSecurity_cjs = require("./lib/components/icons/IconSecurity/IconSecurity.cjs");
|
|
141
148
|
const lib_components_icons_IconSend_IconSend_cjs = require("./lib/components/icons/IconSend/IconSend.cjs");
|
|
142
149
|
const lib_components_icons_IconSent_IconSent_cjs = require("./lib/components/icons/IconSent/IconSent.cjs");
|
|
150
|
+
const lib_components_icons_IconSentiment_IconSentiment_cjs = require("./lib/components/icons/IconSentiment/IconSentiment.cjs");
|
|
143
151
|
const lib_components_icons_IconSettings_IconSettings_cjs = require("./lib/components/icons/IconSettings/IconSettings.cjs");
|
|
144
152
|
const lib_components_icons_IconShare_IconShare_cjs = require("./lib/components/icons/IconShare/IconShare.cjs");
|
|
153
|
+
const lib_components_icons_IconSkills_IconSkills_cjs = require("./lib/components/icons/IconSkills/IconSkills.cjs");
|
|
145
154
|
const lib_components_icons_IconSocialFacebook_IconSocialFacebook_cjs = require("./lib/components/icons/IconSocialFacebook/IconSocialFacebook.cjs");
|
|
146
155
|
const lib_components_icons_IconSocialGitHub_IconSocialGitHub_cjs = require("./lib/components/icons/IconSocialGitHub/IconSocialGitHub.cjs");
|
|
147
156
|
const lib_components_icons_IconSocialInstagram_IconSocialInstagram_cjs = require("./lib/components/icons/IconSocialInstagram/IconSocialInstagram.cjs");
|
|
@@ -246,9 +255,12 @@ exports.Toggle = lib_components_Toggle_Toggle_cjs.Toggle;
|
|
|
246
255
|
exports.ToastProvider = lib_components_useToast_ToastContext_cjs.ToastProvider;
|
|
247
256
|
exports.useToast = lib_components_useToast_ToastContext_cjs.useToast;
|
|
248
257
|
exports.TooltipRenderer = lib_components_TooltipRenderer_TooltipRenderer_cjs.TooltipRenderer;
|
|
258
|
+
exports.IconAI = lib_components_icons_IconAI_IconAI_cjs.IconAI;
|
|
249
259
|
exports.IconAdd = lib_components_icons_IconAdd_IconAdd_cjs.IconAdd;
|
|
250
260
|
exports.IconArrow = lib_components_icons_IconArrow_IconArrow_cjs.IconArrow;
|
|
251
261
|
exports.IconBookmark = lib_components_icons_IconBookmark_IconBookmark_cjs.IconBookmark;
|
|
262
|
+
exports.IconCareer = lib_components_icons_IconCareer_IconCareer_cjs.IconCareer;
|
|
263
|
+
exports.IconCategory = lib_components_icons_IconCategory_IconCategory_cjs.IconCategory;
|
|
252
264
|
exports.IconCaution = lib_components_icons_IconCaution_IconCaution_cjs.IconCaution;
|
|
253
265
|
exports.IconChevron = lib_components_icons_IconChevron_IconChevron_cjs.IconChevron;
|
|
254
266
|
exports.IconClear = lib_components_icons_IconClear_IconClear_cjs.IconClear;
|
|
@@ -266,8 +278,11 @@ exports.IconDownload = lib_components_icons_IconDownload_IconDownload_cjs.IconDo
|
|
|
266
278
|
exports.IconEdit = lib_components_icons_IconEdit_IconEdit_cjs.IconEdit;
|
|
267
279
|
exports.IconEducation = lib_components_icons_IconEducation_IconEducation_cjs.IconEducation;
|
|
268
280
|
exports.IconEnlarge = lib_components_icons_IconEnlarge_IconEnlarge_cjs.IconEnlarge;
|
|
281
|
+
exports.IconExperience = lib_components_icons_IconExperience_IconExperience_cjs.IconExperience;
|
|
269
282
|
exports.IconFilter = lib_components_icons_IconFilter_IconFilter_cjs.IconFilter;
|
|
270
283
|
exports.IconFlag = lib_components_icons_IconFlag_IconFlag_cjs.IconFlag;
|
|
284
|
+
exports.IconGift = lib_components_icons_IconGift_IconGift_cjs.IconGift;
|
|
285
|
+
exports.IconGlobe = lib_components_icons_IconGlobe_IconGlobe_cjs.IconGlobe;
|
|
271
286
|
exports.IconGrid = lib_components_icons_IconGrid_IconGrid_cjs.IconGrid;
|
|
272
287
|
exports.IconHeart = lib_components_icons_IconHeart_IconHeart_cjs.IconHeart;
|
|
273
288
|
exports.IconHelp = lib_components_icons_IconHelp_IconHelp_cjs.IconHelp;
|
|
@@ -303,12 +318,15 @@ exports.IconPromote = lib_components_icons_IconPromote_IconPromote_cjs.IconPromo
|
|
|
303
318
|
exports.IconRecommended = lib_components_icons_IconRecommended_IconRecommended_cjs.IconRecommended;
|
|
304
319
|
exports.IconRefresh = lib_components_icons_IconRefresh_IconRefresh_cjs.IconRefresh;
|
|
305
320
|
exports.IconResume = lib_components_icons_IconResume_IconResume_cjs.IconResume;
|
|
321
|
+
exports.IconRocket = lib_components_icons_IconRocket_IconRocket_cjs.IconRocket;
|
|
306
322
|
exports.IconSearch = lib_components_icons_IconSearch_IconSearch_cjs.IconSearch;
|
|
307
323
|
exports.IconSecurity = lib_components_icons_IconSecurity_IconSecurity_cjs.IconSecurity;
|
|
308
324
|
exports.IconSend = lib_components_icons_IconSend_IconSend_cjs.IconSend;
|
|
309
325
|
exports.IconSent = lib_components_icons_IconSent_IconSent_cjs.IconSent;
|
|
326
|
+
exports.IconSentiment = lib_components_icons_IconSentiment_IconSentiment_cjs.IconSentiment;
|
|
310
327
|
exports.IconSettings = lib_components_icons_IconSettings_IconSettings_cjs.IconSettings;
|
|
311
328
|
exports.IconShare = lib_components_icons_IconShare_IconShare_cjs.IconShare;
|
|
329
|
+
exports.IconSkills = lib_components_icons_IconSkills_IconSkills_cjs.IconSkills;
|
|
312
330
|
exports.IconSocialFacebook = lib_components_icons_IconSocialFacebook_IconSocialFacebook_cjs.IconSocialFacebook;
|
|
313
331
|
exports.IconSocialGitHub = lib_components_icons_IconSocialGitHub_IconSocialGitHub_cjs.IconSocialGitHub;
|
|
314
332
|
exports.IconSocialInstagram = lib_components_icons_IconSocialInstagram_IconSocialInstagram_cjs.IconSocialInstagram;
|
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, IconAdd, IconArrow, IconBookmark, IconCaution, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconFilter, IconFlag, IconGrid, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconLanguage, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconRecommended, IconRefresh, IconRenderer, IconResume, IconSearch, IconSecurity, IconSend, IconSent, IconSettings, IconShare, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTwitter, 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, Radio, RadioGroup, RadioItem, Rating, Secondary, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useBreakpoint, 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, IconBookmark, IconCareer, IconCategory, IconCaution, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconLanguage, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconRecommended, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTwitter, 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, Radio, RadioGroup, RadioItem, Rating, Secondary, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useBreakpoint, 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, IconAdd, IconArrow, IconBookmark, IconCaution, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconFilter, IconFlag, IconGrid, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconLanguage, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconRecommended, IconRefresh, IconRenderer, IconResume, IconSearch, IconSecurity, IconSend, IconSent, IconSettings, IconShare, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTwitter, 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, Radio, RadioGroup, RadioItem, Rating, Secondary, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useBreakpoint, 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, IconBookmark, IconCareer, IconCategory, IconCaution, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconLanguage, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconRecommended, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTwitter, 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, Radio, RadioGroup, RadioItem, Rating, Secondary, Stack, Step, Stepper, Strong, Tab, TabPanel, TabPanels, Tabs, TabsProvider, Tag, Text, TextDropdown, TextField, TextLink, TextLinkButton, Textarea, ThemeNameConsumer, Tiles, ToastProvider, Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useBreakpoint, useColor, useResponsiveValue, useSpace, useThemeName, useToast } from './wireframe.chunk.js';
|
package/dist/index.mjs
CHANGED
|
@@ -77,9 +77,12 @@ import { Tiles } from "./lib/components/Tiles/Tiles.mjs";
|
|
|
77
77
|
import { Toggle } from "./lib/components/Toggle/Toggle.mjs";
|
|
78
78
|
import { ToastProvider, useToast } from "./lib/components/useToast/ToastContext.mjs";
|
|
79
79
|
import { TooltipRenderer } from "./lib/components/TooltipRenderer/TooltipRenderer.mjs";
|
|
80
|
+
import { IconAI } from "./lib/components/icons/IconAI/IconAI.mjs";
|
|
80
81
|
import { IconAdd } from "./lib/components/icons/IconAdd/IconAdd.mjs";
|
|
81
82
|
import { IconArrow } from "./lib/components/icons/IconArrow/IconArrow.mjs";
|
|
82
83
|
import { IconBookmark } from "./lib/components/icons/IconBookmark/IconBookmark.mjs";
|
|
84
|
+
import { IconCareer } from "./lib/components/icons/IconCareer/IconCareer.mjs";
|
|
85
|
+
import { IconCategory } from "./lib/components/icons/IconCategory/IconCategory.mjs";
|
|
83
86
|
import { IconCaution } from "./lib/components/icons/IconCaution/IconCaution.mjs";
|
|
84
87
|
import { IconChevron } from "./lib/components/icons/IconChevron/IconChevron.mjs";
|
|
85
88
|
import { IconClear } from "./lib/components/icons/IconClear/IconClear.mjs";
|
|
@@ -97,8 +100,11 @@ import { IconDownload } from "./lib/components/icons/IconDownload/IconDownload.m
|
|
|
97
100
|
import { IconEdit } from "./lib/components/icons/IconEdit/IconEdit.mjs";
|
|
98
101
|
import { IconEducation } from "./lib/components/icons/IconEducation/IconEducation.mjs";
|
|
99
102
|
import { IconEnlarge } from "./lib/components/icons/IconEnlarge/IconEnlarge.mjs";
|
|
103
|
+
import { IconExperience } from "./lib/components/icons/IconExperience/IconExperience.mjs";
|
|
100
104
|
import { IconFilter } from "./lib/components/icons/IconFilter/IconFilter.mjs";
|
|
101
105
|
import { IconFlag } from "./lib/components/icons/IconFlag/IconFlag.mjs";
|
|
106
|
+
import { IconGift } from "./lib/components/icons/IconGift/IconGift.mjs";
|
|
107
|
+
import { IconGlobe } from "./lib/components/icons/IconGlobe/IconGlobe.mjs";
|
|
102
108
|
import { IconGrid } from "./lib/components/icons/IconGrid/IconGrid.mjs";
|
|
103
109
|
import { IconHeart } from "./lib/components/icons/IconHeart/IconHeart.mjs";
|
|
104
110
|
import { IconHelp } from "./lib/components/icons/IconHelp/IconHelp.mjs";
|
|
@@ -134,12 +140,15 @@ import { IconPromote } from "./lib/components/icons/IconPromote/IconPromote.mjs"
|
|
|
134
140
|
import { IconRecommended } from "./lib/components/icons/IconRecommended/IconRecommended.mjs";
|
|
135
141
|
import { IconRefresh } from "./lib/components/icons/IconRefresh/IconRefresh.mjs";
|
|
136
142
|
import { IconResume } from "./lib/components/icons/IconResume/IconResume.mjs";
|
|
143
|
+
import { IconRocket } from "./lib/components/icons/IconRocket/IconRocket.mjs";
|
|
137
144
|
import { IconSearch } from "./lib/components/icons/IconSearch/IconSearch.mjs";
|
|
138
145
|
import { IconSecurity } from "./lib/components/icons/IconSecurity/IconSecurity.mjs";
|
|
139
146
|
import { IconSend } from "./lib/components/icons/IconSend/IconSend.mjs";
|
|
140
147
|
import { IconSent } from "./lib/components/icons/IconSent/IconSent.mjs";
|
|
148
|
+
import { IconSentiment } from "./lib/components/icons/IconSentiment/IconSentiment.mjs";
|
|
141
149
|
import { IconSettings } from "./lib/components/icons/IconSettings/IconSettings.mjs";
|
|
142
150
|
import { IconShare } from "./lib/components/icons/IconShare/IconShare.mjs";
|
|
151
|
+
import { IconSkills } from "./lib/components/icons/IconSkills/IconSkills.mjs";
|
|
143
152
|
import { IconSocialFacebook } from "./lib/components/icons/IconSocialFacebook/IconSocialFacebook.mjs";
|
|
144
153
|
import { IconSocialGitHub } from "./lib/components/icons/IconSocialGitHub/IconSocialGitHub.mjs";
|
|
145
154
|
import { IconSocialInstagram } from "./lib/components/icons/IconSocialInstagram/IconSocialInstagram.mjs";
|
|
@@ -194,9 +203,12 @@ export {
|
|
|
194
203
|
Heading,
|
|
195
204
|
Hidden,
|
|
196
205
|
HiddenVisually,
|
|
206
|
+
IconAI,
|
|
197
207
|
IconAdd,
|
|
198
208
|
IconArrow,
|
|
199
209
|
IconBookmark,
|
|
210
|
+
IconCareer,
|
|
211
|
+
IconCategory,
|
|
200
212
|
IconCaution,
|
|
201
213
|
IconChevron,
|
|
202
214
|
IconClear,
|
|
@@ -214,8 +226,11 @@ export {
|
|
|
214
226
|
IconEdit,
|
|
215
227
|
IconEducation,
|
|
216
228
|
IconEnlarge,
|
|
229
|
+
IconExperience,
|
|
217
230
|
IconFilter,
|
|
218
231
|
IconFlag,
|
|
232
|
+
IconGift,
|
|
233
|
+
IconGlobe,
|
|
219
234
|
IconGrid,
|
|
220
235
|
IconHeart,
|
|
221
236
|
IconHelp,
|
|
@@ -252,12 +267,15 @@ export {
|
|
|
252
267
|
IconRefresh,
|
|
253
268
|
IconRenderer,
|
|
254
269
|
IconResume,
|
|
270
|
+
IconRocket,
|
|
255
271
|
IconSearch,
|
|
256
272
|
IconSecurity,
|
|
257
273
|
IconSend,
|
|
258
274
|
IconSent,
|
|
275
|
+
IconSentiment,
|
|
259
276
|
IconSettings,
|
|
260
277
|
IconShare,
|
|
278
|
+
IconSkills,
|
|
261
279
|
IconSocialFacebook,
|
|
262
280
|
IconSocialGitHub,
|
|
263
281
|
IconSocialInstagram,
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const lib_components_Box_Box_cjs = require("../../Box/Box.cjs");
|
|
4
|
+
const lib_hooks_useIcon_index_cjs = require("../../../hooks/useIcon/index.cjs");
|
|
5
|
+
const lib_components_icons_IconAI_IconAISvg_cjs = require("./IconAISvg.cjs");
|
|
6
|
+
const IconAI = (props) => {
|
|
7
|
+
const iconProps = lib_hooks_useIcon_index_cjs.useIcon(props);
|
|
8
|
+
return /* @__PURE__ */ jsxRuntime.jsx(lib_components_Box_Box_cjs.Box, { component: lib_components_icons_IconAI_IconAISvg_cjs.IconAISvg, ...iconProps });
|
|
9
|
+
};
|
|
10
|
+
exports.IconAI = IconAI;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Box } from "../../Box/Box.mjs";
|
|
3
|
+
import { useIcon } from "../../../hooks/useIcon/index.mjs";
|
|
4
|
+
import { IconAISvg } from "./IconAISvg.mjs";
|
|
5
|
+
const IconAI = (props) => {
|
|
6
|
+
const iconProps = useIcon(props);
|
|
7
|
+
return /* @__PURE__ */ jsx(Box, { component: IconAISvg, ...iconProps });
|
|
8
|
+
};
|
|
9
|
+
export {
|
|
10
|
+
IconAI
|
|
11
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const IconAISvg = ({ 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: "M12 20a1 1 0 0 1-.895-.553l-2.183-4.369-4.37-2.183a1 1 0 0 1 0-1.79l4.37-2.183 2.183-4.37c.34-.677 1.45-.677 1.79 0l2.183 4.37 4.37 2.183a1 1 0 0 1 0 1.79l-4.37 2.183-2.183 4.37A1 1 0 0 1 12 20Zm-4.764-8 2.878 1.438c.194.097.35.254.448.448L12 16.764l1.438-2.878c.097-.194.254-.35.448-.448L16.764 12l-2.878-1.438a1.001 1.001 0 0 1-.448-.448L12 7.236l-1.438 2.878c-.097.194-.254.35-.448.448L7.236 12Zm2.431-2.333h.01-.01ZM3.985 3.912l1-2 1 2 2 1-2 1-1 2-1-2-2-1 2-1Z" })
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
exports.IconAISvg = IconAISvg;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const IconAISvg = ({ 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: "M12 20a1 1 0 0 1-.895-.553l-2.183-4.369-4.37-2.183a1 1 0 0 1 0-1.79l4.37-2.183 2.183-4.37c.34-.677 1.45-.677 1.79 0l2.183 4.37 4.37 2.183a1 1 0 0 1 0 1.79l-4.37 2.183-2.183 4.37A1 1 0 0 1 12 20Zm-4.764-8 2.878 1.438c.194.097.35.254.448.448L12 16.764l1.438-2.878c.097-.194.254-.35.448-.448L16.764 12l-2.878-1.438a1.001 1.001 0 0 1-.448-.448L12 7.236l-1.438 2.878c-.097.194-.254.35-.448.448L7.236 12Zm2.431-2.333h.01-.01ZM3.985 3.912l1-2 1 2 2 1-2 1-1 2-1-2-2-1 2-1Z" })
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
export {
|
|
20
|
+
IconAISvg
|
|
21
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const lib_components_Box_Box_cjs = require("../../Box/Box.cjs");
|
|
4
|
+
const lib_hooks_useIcon_index_cjs = require("../../../hooks/useIcon/index.cjs");
|
|
5
|
+
const lib_components_icons_IconCareer_IconCareerSvg_cjs = require("./IconCareerSvg.cjs");
|
|
6
|
+
const lib_components_icons_IconCareer_IconCareerActiveSvg_cjs = require("./IconCareerActiveSvg.cjs");
|
|
7
|
+
const IconCareer = ({ active = false, ...props }) => {
|
|
8
|
+
const iconProps = lib_hooks_useIcon_index_cjs.useIcon(props);
|
|
9
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
10
|
+
lib_components_Box_Box_cjs.Box,
|
|
11
|
+
{
|
|
12
|
+
component: active ? lib_components_icons_IconCareer_IconCareerActiveSvg_cjs.IconCareerActiveSvg : lib_components_icons_IconCareer_IconCareerSvg_cjs.IconCareerSvg,
|
|
13
|
+
...iconProps
|
|
14
|
+
}
|
|
15
|
+
);
|
|
16
|
+
};
|
|
17
|
+
exports.IconCareer = IconCareer;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Box } from "../../Box/Box.mjs";
|
|
3
|
+
import { useIcon } from "../../../hooks/useIcon/index.mjs";
|
|
4
|
+
import { IconCareerSvg } from "./IconCareerSvg.mjs";
|
|
5
|
+
import { IconCareerActiveSvg } from "./IconCareerActiveSvg.mjs";
|
|
6
|
+
const IconCareer = ({ active = false, ...props }) => {
|
|
7
|
+
const iconProps = useIcon(props);
|
|
8
|
+
return /* @__PURE__ */ jsx(
|
|
9
|
+
Box,
|
|
10
|
+
{
|
|
11
|
+
component: active ? IconCareerActiveSvg : IconCareerSvg,
|
|
12
|
+
...iconProps
|
|
13
|
+
}
|
|
14
|
+
);
|
|
15
|
+
};
|
|
16
|
+
export {
|
|
17
|
+
IconCareer
|
|
18
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const IconCareerActiveSvg = ({ 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: "M12 1C5.935 1 1 5.935 1 12s4.935 11 11 11 11-4.935 11-11S18.065 1 12 1Zm5.459 6.198-3.01 6.99a.5.5 0 0 1-.261.26l-6.99 3.011a.499.499 0 0 1-.656-.658l3.034-6.966a.493.493 0 0 1 .259-.259l6.966-3.034a.501.501 0 0 1 .658.656Z" }),
|
|
17
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M13 12.002a.993.993 0 0 1-.077.38.998.998 0 0 1-.24.341.994.994 0 0 1-1.066.2 1 1 0 0 1-.34-.241.998.998 0 0 1-.2-.3.996.996 0 0 1-.075-.373v-.015c0-.134.027-.26.075-.377a1 1 0 0 1 .25-.347c.09-.081.185-.15.29-.193a.994.994 0 0 1 .766 0 1 1 0 0 1 .346.249 1 1 0 0 1 .194.291A.996.996 0 0 1 13 12v.002Z" })
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
);
|
|
21
|
+
exports.IconCareerActiveSvg = IconCareerActiveSvg;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const IconCareerActiveSvg = ({ 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: "M12 1C5.935 1 1 5.935 1 12s4.935 11 11 11 11-4.935 11-11S18.065 1 12 1Zm5.459 6.198-3.01 6.99a.5.5 0 0 1-.261.26l-6.99 3.011a.499.499 0 0 1-.656-.658l3.034-6.966a.493.493 0 0 1 .259-.259l6.966-3.034a.501.501 0 0 1 .658.656Z" }),
|
|
16
|
+
/* @__PURE__ */ jsx("path", { d: "M13 12.002a.993.993 0 0 1-.077.38.998.998 0 0 1-.24.341.994.994 0 0 1-1.066.2 1 1 0 0 1-.34-.241.998.998 0 0 1-.2-.3.996.996 0 0 1-.075-.373v-.015c0-.134.027-.26.075-.377a1 1 0 0 1 .25-.347c.09-.081.185-.15.29-.193a.994.994 0 0 1 .766 0 1 1 0 0 1 .346.249 1 1 0 0 1 .194.291A.996.996 0 0 1 13 12v.002Z" })
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
IconCareerActiveSvg
|
|
22
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const IconCareerSvg = ({ 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: "M12 1C5.935 1 1 5.935 1 12s4.935 11 11 11 11-4.935 11-11S18.065 1 12 1Zm0 20c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9Z" }),
|
|
17
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16.8 6.542 9.836 9.576a.493.493 0 0 0-.259.259l-3.034 6.966a.5.5 0 0 0 .656.658l6.99-3.01a.5.5 0 0 0 .26-.261l3.011-6.99a.5.5 0 0 0-.658-.656Zm-3.8 5.46a.993.993 0 0 1-.077.38.998.998 0 0 1-.24.341.994.994 0 0 1-1.066.2 1 1 0 0 1-.34-.241.998.998 0 0 1-.2-.3.996.996 0 0 1-.075-.373v-.015c0-.134.027-.26.075-.377a1 1 0 0 1 .25-.347c.09-.081.185-.15.29-.193a.994.994 0 0 1 .766 0 1 1 0 0 1 .346.249 1 1 0 0 1 .194.291A.996.996 0 0 1 13 12v.002Z" })
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
);
|
|
21
|
+
exports.IconCareerSvg = IconCareerSvg;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const IconCareerSvg = ({ 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: "M12 1C5.935 1 1 5.935 1 12s4.935 11 11 11 11-4.935 11-11S18.065 1 12 1Zm0 20c-4.963 0-9-4.037-9-9s4.037-9 9-9 9 4.037 9 9-4.037 9-9 9Z" }),
|
|
16
|
+
/* @__PURE__ */ jsx("path", { d: "M16.8 6.542 9.836 9.576a.493.493 0 0 0-.259.259l-3.034 6.966a.5.5 0 0 0 .656.658l6.99-3.01a.5.5 0 0 0 .26-.261l3.011-6.99a.5.5 0 0 0-.658-.656Zm-3.8 5.46a.993.993 0 0 1-.077.38.998.998 0 0 1-.24.341.994.994 0 0 1-1.066.2 1 1 0 0 1-.34-.241.998.998 0 0 1-.2-.3.996.996 0 0 1-.075-.373v-.015c0-.134.027-.26.075-.377a1 1 0 0 1 .25-.347c.09-.081.185-.15.29-.193a.994.994 0 0 1 .766 0 1 1 0 0 1 .346.249 1 1 0 0 1 .194.291A.996.996 0 0 1 13 12v.002Z" })
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
IconCareerSvg
|
|
22
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const lib_components_Box_Box_cjs = require("../../Box/Box.cjs");
|
|
4
|
+
const lib_hooks_useIcon_index_cjs = require("../../../hooks/useIcon/index.cjs");
|
|
5
|
+
const lib_components_icons_IconCategory_IconCategorySvg_cjs = require("./IconCategorySvg.cjs");
|
|
6
|
+
const IconCategory = (props) => {
|
|
7
|
+
const iconProps = lib_hooks_useIcon_index_cjs.useIcon(props);
|
|
8
|
+
return /* @__PURE__ */ jsxRuntime.jsx(lib_components_Box_Box_cjs.Box, { component: lib_components_icons_IconCategory_IconCategorySvg_cjs.IconCategorySvg, ...iconProps });
|
|
9
|
+
};
|
|
10
|
+
exports.IconCategory = IconCategory;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Box } from "../../Box/Box.mjs";
|
|
3
|
+
import { useIcon } from "../../../hooks/useIcon/index.mjs";
|
|
4
|
+
import { IconCategorySvg } from "./IconCategorySvg.mjs";
|
|
5
|
+
const IconCategory = (props) => {
|
|
6
|
+
const iconProps = useIcon(props);
|
|
7
|
+
return /* @__PURE__ */ jsx(Box, { component: IconCategorySvg, ...iconProps });
|
|
8
|
+
};
|
|
9
|
+
export {
|
|
10
|
+
IconCategory
|
|
11
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const IconCategorySvg = ({ 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: "M9 22H4c-1.103 0-2-.897-2-2v-5c0-1.103.897-2 2-2h5c1.103 0 2 .897 2 2v5c0 1.103-.897 2-2 2Zm-5-7v5h5.002L9 15H4Zm12-4H8a1 1 0 0 1-.868-1.496l4-7c.355-.623 1.38-.623 1.736 0l4 7A1 1 0 0 1 16 11ZM9.724 9h4.552L12 5.016 9.724 9ZM17.5 22c-2.481 0-4.5-2.019-4.5-4.5s2.019-4.5 4.5-4.5 4.5 2.019 4.5 4.5-2.019 4.5-4.5 4.5Zm0-7c-1.379 0-2.5 1.121-2.5 2.5s1.121 2.5 2.5 2.5 2.5-1.121 2.5-2.5-1.121-2.5-2.5-2.5Z" })
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
exports.IconCategorySvg = IconCategorySvg;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const IconCategorySvg = ({ 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: "M9 22H4c-1.103 0-2-.897-2-2v-5c0-1.103.897-2 2-2h5c1.103 0 2 .897 2 2v5c0 1.103-.897 2-2 2Zm-5-7v5h5.002L9 15H4Zm12-4H8a1 1 0 0 1-.868-1.496l4-7c.355-.623 1.38-.623 1.736 0l4 7A1 1 0 0 1 16 11ZM9.724 9h4.552L12 5.016 9.724 9ZM17.5 22c-2.481 0-4.5-2.019-4.5-4.5s2.019-4.5 4.5-4.5 4.5 2.019 4.5 4.5-2.019 4.5-4.5 4.5Zm0-7c-1.379 0-2.5 1.121-2.5 2.5s1.121 2.5 2.5 2.5 2.5-1.121 2.5-2.5-1.121-2.5-2.5-2.5Z" })
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
export {
|
|
20
|
+
IconCategorySvg
|
|
21
|
+
};
|
|
@@ -4,19 +4,18 @@ const IconCriticalSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRun
|
|
|
4
4
|
"svg",
|
|
5
5
|
{
|
|
6
6
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: 16,
|
|
8
|
+
height: 16,
|
|
7
9
|
viewBox: "0 0 24 24",
|
|
8
|
-
xmlSpace: "preserve",
|
|
9
10
|
focusable: "false",
|
|
10
11
|
fill: "currentColor",
|
|
11
|
-
width: 16,
|
|
12
|
-
height: 16,
|
|
13
12
|
"aria-labelledby": titleId,
|
|
14
13
|
...props,
|
|
15
14
|
children: [
|
|
16
15
|
title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
|
|
17
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12
|
|
18
|
-
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 12, cy:
|
|
19
|
-
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "
|
|
16
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 22.997a2.977 2.977 0 0 1-2.121-.877h-.001L1.88 14.121c-.566-.564-.877-1.317-.877-2.121s.311-1.557.877-2.122L9.879 1.88c1.129-1.131 3.112-1.131 4.243 0l7.998 7.999c.566.564.877 1.317.877 2.121s-.311 1.557-.877 2.122l-7.999 7.998a2.975 2.975 0 0 1-2.121.877Zm0-19.994a.988.988 0 0 0-.706.29l-8 8c-.188.187-.291.438-.291.707s.103.52.291.706l7.999 8h.001c.373.375 1.039.375 1.412 0l8-7.999c.188-.187.291-.438.291-.707s-.103-.52-.29-.706l-8-8A.992.992 0 0 0 12 3.003Z" }),
|
|
17
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: 12, cy: 16, r: 1 }),
|
|
18
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11.978 13a1 1 0 0 1-1-1V8a1 1 0 1 1 2 0v4a1 1 0 0 1-1 1Z" })
|
|
20
19
|
]
|
|
21
20
|
}
|
|
22
21
|
);
|
|
@@ -3,19 +3,18 @@ const IconCriticalSvg = ({ 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,
|
|
6
8
|
viewBox: "0 0 24 24",
|
|
7
|
-
xmlSpace: "preserve",
|
|
8
9
|
focusable: "false",
|
|
9
10
|
fill: "currentColor",
|
|
10
|
-
width: 16,
|
|
11
|
-
height: 16,
|
|
12
11
|
"aria-labelledby": titleId,
|
|
13
12
|
...props,
|
|
14
13
|
children: [
|
|
15
14
|
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
16
|
-
/* @__PURE__ */ jsx("path", { d: "M12
|
|
17
|
-
/* @__PURE__ */ jsx("circle", { cx: 12, cy:
|
|
18
|
-
/* @__PURE__ */ jsx("path", { d: "
|
|
15
|
+
/* @__PURE__ */ jsx("path", { d: "M12 22.997a2.977 2.977 0 0 1-2.121-.877h-.001L1.88 14.121c-.566-.564-.877-1.317-.877-2.121s.311-1.557.877-2.122L9.879 1.88c1.129-1.131 3.112-1.131 4.243 0l7.998 7.999c.566.564.877 1.317.877 2.121s-.311 1.557-.877 2.122l-7.999 7.998a2.975 2.975 0 0 1-2.121.877Zm0-19.994a.988.988 0 0 0-.706.29l-8 8c-.188.187-.291.438-.291.707s.103.52.291.706l7.999 8h.001c.373.375 1.039.375 1.412 0l8-7.999c.188-.187.291-.438.291-.707s-.103-.52-.29-.706l-8-8A.992.992 0 0 0 12 3.003Z" }),
|
|
16
|
+
/* @__PURE__ */ jsx("circle", { cx: 12, cy: 16, r: 1 }),
|
|
17
|
+
/* @__PURE__ */ jsx("path", { d: "M11.978 13a1 1 0 0 1-1-1V8a1 1 0 1 1 2 0v4a1 1 0 0 1-1 1Z" })
|
|
19
18
|
]
|
|
20
19
|
}
|
|
21
20
|
);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const lib_components_Box_Box_cjs = require("../../Box/Box.cjs");
|
|
4
|
+
const lib_hooks_useIcon_index_cjs = require("../../../hooks/useIcon/index.cjs");
|
|
5
|
+
const lib_components_icons_IconExperience_IconExperienceSvg_cjs = require("./IconExperienceSvg.cjs");
|
|
6
|
+
const IconExperience = (props) => {
|
|
7
|
+
const iconProps = lib_hooks_useIcon_index_cjs.useIcon(props);
|
|
8
|
+
return /* @__PURE__ */ jsxRuntime.jsx(lib_components_Box_Box_cjs.Box, { component: lib_components_icons_IconExperience_IconExperienceSvg_cjs.IconExperienceSvg, ...iconProps });
|
|
9
|
+
};
|
|
10
|
+
exports.IconExperience = IconExperience;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Box } from "../../Box/Box.mjs";
|
|
3
|
+
import { useIcon } from "../../../hooks/useIcon/index.mjs";
|
|
4
|
+
import { IconExperienceSvg } from "./IconExperienceSvg.mjs";
|
|
5
|
+
const IconExperience = (props) => {
|
|
6
|
+
const iconProps = useIcon(props);
|
|
7
|
+
return /* @__PURE__ */ jsx(Box, { component: IconExperienceSvg, ...iconProps });
|
|
8
|
+
};
|
|
9
|
+
export {
|
|
10
|
+
IconExperience
|
|
11
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
3
|
+
const IconExperienceSvg = ({ 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: "m22.832 8.445-4-6A1 1 0 0 0 18 2H6a1 1 0 0 0-.832.445l-4 6a1 1 0 0 0 .063 1.196l10 12c.01.01.025.015.034.026a.984.984 0 0 0 .231.177c.034.02.06.05.097.065A.99.99 0 0 0 12 22a.99.99 0 0 0 .407-.09c.036-.017.063-.045.097-.065a.985.985 0 0 0 .23-.178c.01-.01.025-.015.035-.026l10-12a1 1 0 0 0 .063-1.196ZM20.132 8H16.72l-1.333-4h2.078l2.667 4ZM13.28 4l1.333 4H9.387l1.333-4h2.56ZM11 10v8.238L4.135 10H11Zm2 0h6.865L13 18.238V10ZM6.535 4h2.078L7.28 8H3.868l2.667-4Z" })
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
exports.IconExperienceSvg = IconExperienceSvg;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const IconExperienceSvg = ({ 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: "m22.832 8.445-4-6A1 1 0 0 0 18 2H6a1 1 0 0 0-.832.445l-4 6a1 1 0 0 0 .063 1.196l10 12c.01.01.025.015.034.026a.984.984 0 0 0 .231.177c.034.02.06.05.097.065A.99.99 0 0 0 12 22a.99.99 0 0 0 .407-.09c.036-.017.063-.045.097-.065a.985.985 0 0 0 .23-.178c.01-.01.025-.015.035-.026l10-12a1 1 0 0 0 .063-1.196ZM20.132 8H16.72l-1.333-4h2.078l2.667 4ZM13.28 4l1.333 4H9.387l1.333-4h2.56ZM11 10v8.238L4.135 10H11Zm2 0h6.865L13 18.238V10ZM6.535 4h2.078L7.28 8H3.868l2.667-4Z" })
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
export {
|
|
20
|
+
IconExperienceSvg
|
|
21
|
+
};
|