@ogcio/design-system-react 1.30.0 → 1.31.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.
Files changed (70) hide show
  1. package/dist/atoms/DsButton.js +3 -2
  2. package/dist/atoms/InsetText.d.ts +14 -0
  3. package/dist/atoms/InsetText.js +17 -0
  4. package/dist/atoms/icons/Close.js +9 -8
  5. package/dist/atoms/icons/KeyboardArrowDown.js +6 -5
  6. package/dist/atoms/icons/KeyboardArrowUp.js +6 -5
  7. package/dist/atoms/icons/Visibility.js +15 -14
  8. package/dist/atoms/icons/VisibilityOff.js +9 -8
  9. package/dist/atoms/icons/logos/LogoBlack.d.ts +3 -0
  10. package/dist/atoms/icons/logos/LogoBlack.js +327 -0
  11. package/dist/atoms/icons/logos/LogoGoldGreen.d.ts +3 -0
  12. package/dist/atoms/icons/logos/LogoGoldGreen.js +327 -0
  13. package/dist/atoms/icons/logos/LogoGoldWhite.d.ts +3 -0
  14. package/dist/atoms/icons/logos/LogoGoldWhite.js +87 -0
  15. package/dist/atoms/icons/logos/LogoHarpBlack.d.ts +3 -0
  16. package/dist/atoms/icons/logos/LogoHarpBlack.js +68 -0
  17. package/dist/atoms/icons/logos/LogoHarpWhite.d.ts +3 -0
  18. package/dist/{assets/logos/LogoHarpBlack.js → atoms/icons/logos/LogoHarpWhite.js} +33 -31
  19. package/dist/atoms/icons/logos/LogoWhite.d.ts +3 -0
  20. package/dist/atoms/icons/logos/LogoWhite.js +327 -0
  21. package/dist/atoms/icons/logos/index.d.ts +6 -0
  22. package/dist/atoms/icons/logos/index.js +14 -0
  23. package/dist/atoms/icons/types.d.ts +5 -5
  24. package/dist/atoms/index.d.ts +1 -0
  25. package/dist/atoms/index.js +12 -10
  26. package/dist/blockquote/blockquote.d.ts +4 -1
  27. package/dist/blockquote/blockquote.js +18 -4
  28. package/dist/breadcrumbs/breadcrumbs.js +54 -33
  29. package/dist/button-group/button-group.js +31 -28
  30. package/dist/character-count/character-count.js +5 -5
  31. package/dist/chip/chip.js +41 -19
  32. package/dist/combo-box/combo-box.js +6 -13
  33. package/dist/cookie-banner/cookie-banner.js +28 -20
  34. package/dist/details/details.js +43 -23
  35. package/dist/drawer/drawer.js +35 -32
  36. package/dist/footer/footer.js +54 -46
  37. package/dist/header/header-legacy.js +8 -8
  38. package/dist/hooks/use-aria-hider.d.ts +1 -1
  39. package/dist/hooks/use-aria-hider.js +14 -13
  40. package/dist/hooks/use-focus-trap.d.ts +1 -1
  41. package/dist/hooks/use-focus-trap.js +179 -179
  42. package/dist/icons/index.d.ts +1 -0
  43. package/dist/icons/index.js +12 -0
  44. package/dist/index.d.ts +1 -0
  45. package/dist/index.js +144 -142
  46. package/dist/input-file/input-file.js +15 -12
  47. package/dist/logos/index.d.ts +1 -0
  48. package/dist/logos/index.js +14 -0
  49. package/dist/modal/modal.js +125 -128
  50. package/dist/popover/popover.js +67 -64
  51. package/dist/score-select/score-select.js +20 -20
  52. package/dist/select/select-next.js +45 -45
  53. package/dist/styles.css +1 -1
  54. package/dist/table/table-row.js +14 -7
  55. package/dist/tabs/tab-panel.js +6 -6
  56. package/dist/tabs/tabs.js +19 -19
  57. package/package.json +10 -10
  58. package/dist/assets/logos/LogoBlack.d.ts +0 -3
  59. package/dist/assets/logos/LogoBlack.js +0 -322
  60. package/dist/assets/logos/LogoGoldGreen.d.ts +0 -3
  61. package/dist/assets/logos/LogoGoldGreen.js +0 -322
  62. package/dist/assets/logos/LogoGoldWhite.d.ts +0 -3
  63. package/dist/assets/logos/LogoGoldWhite.js +0 -82
  64. package/dist/assets/logos/LogoHarpBlack.d.ts +0 -3
  65. package/dist/assets/logos/LogoHarpWhite.d.ts +0 -3
  66. package/dist/assets/logos/LogoHarpWhite.js +0 -60
  67. package/dist/assets/logos/LogoWhite.d.ts +0 -3
  68. package/dist/assets/logos/LogoWhite.js +0 -322
  69. package/dist/assets/logos/index.d.ts +0 -6
  70. package/dist/assets/logos/index.js +0 -14
@@ -0,0 +1 @@
1
+ export { Close, KeyboardArrowDown, KeyboardArrowUp, Visibility, VisibilityOff, } from '../atoms/icons';
@@ -0,0 +1,12 @@
1
+ import { default as e } from "../atoms/icons/KeyboardArrowDown.js";
2
+ import { default as f } from "../atoms/icons/KeyboardArrowUp.js";
3
+ import { default as i } from "../atoms/icons/Close.js";
4
+ import { default as s } from "../atoms/icons/Visibility.js";
5
+ import { default as p } from "../atoms/icons/VisibilityOff.js";
6
+ export {
7
+ i as Close,
8
+ e as KeyboardArrowDown,
9
+ f as KeyboardArrowUp,
10
+ s as Visibility,
11
+ p as VisibilityOff
12
+ };
package/dist/index.d.ts CHANGED
@@ -59,6 +59,7 @@ export { InputRadio } from './input-radio/input-radio.js';
59
59
  export { InputRadioSizeEnum, type InputRadioProps, type InputRadioSizeType, } from './input-radio/types.js';
60
60
  export { InputText, InputTextTableCell } from './input-text/input-text.js';
61
61
  export type { InputActionButtonProps, InputTextProps, InputTextTableCellProps, } from './input-text/type.js';
62
+ export { default as InsetText, type Props as InsetTextProps, } from './atoms/InsetText.js';
62
63
  export type { LabelTextProps } from './label/types.js';
63
64
  export { Link, type LinkProps } from './link/link.js';
64
65
  export { ListItem, type ListItemProps } from './list-item/list-item.js';
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@ import { Alert as m } from "./alert/alert.js";
4
4
  import { alertVariants as f } from "./alert/variants.js";
5
5
  import { Autocomplete as n, AutocompleteItem as d } from "./autocomplete/autocomplete.js";
6
6
  import { Blockquote as u } from "./blockquote/blockquote.js";
7
- import { BreadcrumbCurrentLink as c, BreadcrumbEllipsis as S, BreadcrumbLink as T, Breadcrumbs as s } from "./breadcrumbs/breadcrumbs.js";
7
+ import { BreadcrumbCurrentLink as c, BreadcrumbEllipsis as T, BreadcrumbLink as S, Breadcrumbs as s } from "./breadcrumbs/breadcrumbs.js";
8
8
  import { ButtonGroup as I, ButtonGroupItem as H } from "./button-group/button-group.js";
9
9
  import { Button as D } from "./button/button.js";
10
10
  import { CardAction as L, CardContainer as g, CardDescription as M, CardHeader as h, CardMedia as k, CardSubtitle as P, CardTag as y, CardTitle as v } from "./card/card-next.js";
@@ -23,7 +23,7 @@ import { FileUpload as pe } from "./file-upload/file-upload.js";
23
23
  import { Footer as xe } from "./footer/footer.js";
24
24
  import { FormFieldWithTag as le } from "./forms/form-field-with-tag/form-field-with-tag.js";
25
25
  import { FormField as de, FormFieldError as ie, FormFieldHint as ue, FormFieldLabel as be } from "./forms/form-field/form-field.js";
26
- import { Form as Se } from "./forms/form.js";
26
+ import { Form as Te } from "./forms/form.js";
27
27
  import { HeaderSearch as se } from "./header/components/header-search.js";
28
28
  import { Header as Ie } from "./header/header.js";
29
29
  import { HeaderNext as Fe, HeaderSlotContainer as De } from "./header/header-next/header-next.js";
@@ -48,63 +48,64 @@ import { InputCheckboxSizeEnum as fr } from "./input-checkbox/types.js";
48
48
  import { InputFile as nr } from "./input-file/input-file.js";
49
49
  import { InputPassword as ir } from "./input-password/input-password.js";
50
50
  import { InputRadioGroup as br } from "./input-radio-group/input-radio-group.js";
51
- import { InputRadio as Sr } from "./input-radio/input-radio.js";
51
+ import { InputRadio as Tr } from "./input-radio/input-radio.js";
52
52
  import { InputRadioSizeEnum as sr } from "./input-radio/types.js";
53
53
  import { InputText as Ir, InputTextTableCell as Hr } from "./input-text/input-text.js";
54
- import { Link as Dr } from "./link/link.js";
55
- import { ListItem as Lr } from "./list-item/list-item.js";
56
- import { List as Mr } from "./list/list.js";
57
- import { Modal as kr, ModalBody as Pr, ModalFooter as yr, ModalTitle as vr, ModalWrapper as wr } from "./modal/modal.js";
58
- import { Pagination as Gr } from "./pagination/pagination.js";
59
- import { Paragraph as Er } from "./paragraph/paragraph.js";
60
- import { PhaseBanner as Wr } from "./phase-banner/phase-banner.js";
61
- import { Popover as Ur } from "./popover/popover.js";
62
- import { ProgressBar as qr } from "./progress-bar/progress-bar.js";
63
- import { StepFillLevel as Jr, StepStatus as Kr } from "./progress-stepper/types.js";
64
- import { ProgressStepper as Qr, Step as Xr, StepItem as Yr } from "./progress-stepper/progress-stepper.js";
65
- import { RadioGroup as _r } from "./radio/radio-group.js";
66
- import { Radio as eo } from "./radio/radio.js";
67
- import { ScoreSelect as oo } from "./score-select/score-select.js";
68
- import { SectionBreak as ao } from "./section-break/section-break.js";
69
- import { Select as mo } from "./select/select.js";
70
- import { SelectGroupItemNext as fo, SelectItemNext as lo, SelectNext as no } from "./select/select-next.js";
71
- import { SideNav as uo, SideNavHeading as bo, SideNavItem as co } from "./side-nav/side-nav.js";
72
- import { Spinner as To } from "./spinner/spinner.js";
73
- import { Stack as Co } from "./stack/stack.js";
74
- import { SummaryListRow as Ho } from "./summary-list/summary-list-row.js";
75
- import { SummaryListAction as Do } from "./summary-list/summary-list-action.js";
76
- import { SummaryListValue as Lo } from "./summary-list/summary-list-value.js";
77
- import { SummaryList as Mo } from "./summary-list/summary-list.js";
78
- import { SummaryListHeader as ko } from "./summary-list/summary-list-header.js";
79
- import { Caption as yo } from "./table/caption.js";
80
- import { ColumnGroup as wo } from "./table/column-group.js";
81
- import { Column as Go } from "./table/column.js";
82
- import { TableBody as Eo } from "./table/table-body.js";
83
- import { TableData as Wo } from "./table/table-data.js";
84
- import { TableFoot as Uo } from "./table/table-foot.js";
85
- import { TableHead as qo } from "./table/table-head.js";
86
- import { TableHeader as Jo } from "./table/table-header.js";
87
- import { TableRow as Oo } from "./table/table-row.js";
88
- import { Table as Xo } from "./table/table.js";
89
- import { TabItem as Zo } from "./tabs/tab-item.js";
90
- import { TabList as $o } from "./tabs/tab-list.js";
91
- import { TabPanel as rt } from "./tabs/tab-panel.js";
92
- import { Tabs as tt } from "./tabs/tabs.js";
93
- import { DataTableFooter as pt, DataTableFooterCenter as mt, DataTableFooterEnd as xt, DataTableFooterStart as ft } from "./data-table/data-table-footer.js";
94
- import { DataTableHeader as nt, DataTableHeaderActions as dt, DataTableHeaderFilter as it, DataTableHeaderFilterActions as ut, DataTableHeaderFilterContent as bt, DataTableHeaderFilterContentTitle as ct, DataTableHeaderFilterList as St, DataTableHeaderSearch as Tt } from "./data-table/data-table-header.js";
95
- import { DataTableSelectedRowsBanner as Ct } from "./data-table/data-table-selected-rows.js";
96
- import { EditableTableCell as Ht } from "./data-table/editable-table-cell.js";
97
- import { Tag as Dt, TagTypeEnum as Bt } from "./tag/tag.js";
98
- import { TextInput as gt } from "./text-input/text-input.js";
99
- import { TextArea as ht } from "./textarea/textarea.js";
100
- import { ToastProvider as Pt, toaster as yt } from "./toast/toast.js";
101
- import { Tooltip as wt } from "./tooltip/tooltip.js";
102
- import { useToggleMap as Gt } from "./hooks/use-toggle-map.js";
103
- import { BrowserSupport as Et } from "./browser-support/browser-support.js";
104
- import { LoadMaterialSymbols as Wt, LoadMaterialSymbols as zt } from "./load-symbols/load-symbols.js";
105
- import { generateSvgPlaceholder as Vt, generateSvgPlaceholderDataUrl as qt } from "./utils/placeholder.js";
106
- import { SelectGroupItem as Jt, SelectItem as Kt, SelectTableCell as Ot } from "./select/select-native.js";
107
- import { i as Xt } from "./i18next-Bfi2-LyH.js";
54
+ import { default as Dr } from "./atoms/InsetText.js";
55
+ import { Link as Lr } from "./link/link.js";
56
+ import { ListItem as Mr } from "./list-item/list-item.js";
57
+ import { List as kr } from "./list/list.js";
58
+ import { Modal as yr, ModalBody as vr, ModalFooter as wr, ModalTitle as Ar, ModalWrapper as Gr } from "./modal/modal.js";
59
+ import { Pagination as Er } from "./pagination/pagination.js";
60
+ import { Paragraph as Wr } from "./paragraph/paragraph.js";
61
+ import { PhaseBanner as Ur } from "./phase-banner/phase-banner.js";
62
+ import { Popover as qr } from "./popover/popover.js";
63
+ import { ProgressBar as Jr } from "./progress-bar/progress-bar.js";
64
+ import { StepFillLevel as Or, StepStatus as Qr } from "./progress-stepper/types.js";
65
+ import { ProgressStepper as Yr, Step as Zr, StepItem as _r } from "./progress-stepper/progress-stepper.js";
66
+ import { RadioGroup as eo } from "./radio/radio-group.js";
67
+ import { Radio as oo } from "./radio/radio.js";
68
+ import { ScoreSelect as ao } from "./score-select/score-select.js";
69
+ import { SectionBreak as mo } from "./section-break/section-break.js";
70
+ import { Select as fo } from "./select/select.js";
71
+ import { SelectGroupItemNext as no, SelectItemNext as io, SelectNext as uo } from "./select/select-next.js";
72
+ import { SideNav as co, SideNavHeading as To, SideNavItem as So } from "./side-nav/side-nav.js";
73
+ import { Spinner as Co } from "./spinner/spinner.js";
74
+ import { Stack as Ho } from "./stack/stack.js";
75
+ import { SummaryListRow as Do } from "./summary-list/summary-list-row.js";
76
+ import { SummaryListAction as Lo } from "./summary-list/summary-list-action.js";
77
+ import { SummaryListValue as Mo } from "./summary-list/summary-list-value.js";
78
+ import { SummaryList as ko } from "./summary-list/summary-list.js";
79
+ import { SummaryListHeader as yo } from "./summary-list/summary-list-header.js";
80
+ import { Caption as wo } from "./table/caption.js";
81
+ import { ColumnGroup as Go } from "./table/column-group.js";
82
+ import { Column as Eo } from "./table/column.js";
83
+ import { TableBody as Wo } from "./table/table-body.js";
84
+ import { TableData as Uo } from "./table/table-data.js";
85
+ import { TableFoot as qo } from "./table/table-foot.js";
86
+ import { TableHead as Jo } from "./table/table-head.js";
87
+ import { TableHeader as Oo } from "./table/table-header.js";
88
+ import { TableRow as Xo } from "./table/table-row.js";
89
+ import { Table as Zo } from "./table/table.js";
90
+ import { TabItem as $o } from "./tabs/tab-item.js";
91
+ import { TabList as rt } from "./tabs/tab-list.js";
92
+ import { TabPanel as tt } from "./tabs/tab-panel.js";
93
+ import { Tabs as pt } from "./tabs/tabs.js";
94
+ import { DataTableFooter as xt, DataTableFooterCenter as ft, DataTableFooterEnd as lt, DataTableFooterStart as nt } from "./data-table/data-table-footer.js";
95
+ import { DataTableHeader as it, DataTableHeaderActions as ut, DataTableHeaderFilter as bt, DataTableHeaderFilterActions as ct, DataTableHeaderFilterContent as Tt, DataTableHeaderFilterContentTitle as St, DataTableHeaderFilterList as st, DataTableHeaderSearch as Ct } from "./data-table/data-table-header.js";
96
+ import { DataTableSelectedRowsBanner as Ht } from "./data-table/data-table-selected-rows.js";
97
+ import { EditableTableCell as Dt } from "./data-table/editable-table-cell.js";
98
+ import { Tag as Lt, TagTypeEnum as gt } from "./tag/tag.js";
99
+ import { TextInput as ht } from "./text-input/text-input.js";
100
+ import { TextArea as Pt } from "./textarea/textarea.js";
101
+ import { ToastProvider as vt, toaster as wt } from "./toast/toast.js";
102
+ import { Tooltip as Gt } from "./tooltip/tooltip.js";
103
+ import { useToggleMap as Et } from "./hooks/use-toggle-map.js";
104
+ import { BrowserSupport as Wt } from "./browser-support/browser-support.js";
105
+ import { LoadMaterialSymbols as Ut, LoadMaterialSymbols as Vt } from "./load-symbols/load-symbols.js";
106
+ import { generateSvgPlaceholder as jt, generateSvgPlaceholderDataUrl as Jt } from "./utils/placeholder.js";
107
+ import { SelectGroupItem as Ot, SelectItem as Qt, SelectTableCell as Xt } from "./select/select-native.js";
108
+ import { i as Zt } from "./i18next-Bfi2-LyH.js";
108
109
  export {
109
110
  a as Accordion,
110
111
  o as AccordionItem,
@@ -113,14 +114,14 @@ export {
113
114
  d as AutocompleteItem,
114
115
  u as Blockquote,
115
116
  c as BreadcrumbCurrentLink,
116
- S as BreadcrumbEllipsis,
117
- T as BreadcrumbLink,
117
+ T as BreadcrumbEllipsis,
118
+ S as BreadcrumbLink,
118
119
  s as Breadcrumbs,
119
- Et as BrowserSupport,
120
+ Wt as BrowserSupport,
120
121
  D as Button,
121
122
  I as ButtonGroup,
122
123
  H as ButtonGroupItem,
123
- yo as Caption,
124
+ wo as Caption,
124
125
  A as Card,
125
126
  L as CardAction,
126
127
  g as CardContainer,
@@ -134,34 +135,34 @@ export {
134
135
  z as Checkbox,
135
136
  N as CheckboxGroup,
136
137
  V as Chip,
137
- Go as Column,
138
- wo as ColumnGroup,
138
+ Eo as Column,
139
+ Go as ColumnGroup,
139
140
  j as Combobox,
140
141
  Q as Container,
141
142
  Y as CookieBanner,
142
- pt as DataTableFooter,
143
- mt as DataTableFooterCenter,
144
- xt as DataTableFooterEnd,
145
- ft as DataTableFooterStart,
146
- nt as DataTableHeader,
147
- dt as DataTableHeaderActions,
148
- it as DataTableHeaderFilter,
149
- ut as DataTableHeaderFilterActions,
150
- bt as DataTableHeaderFilterContent,
151
- ct as DataTableHeaderFilterContentTitle,
152
- St as DataTableHeaderFilterList,
153
- Tt as DataTableHeaderSearch,
154
- Ct as DataTableSelectedRowsBanner,
143
+ xt as DataTableFooter,
144
+ ft as DataTableFooterCenter,
145
+ lt as DataTableFooterEnd,
146
+ nt as DataTableFooterStart,
147
+ it as DataTableHeader,
148
+ ut as DataTableHeaderActions,
149
+ bt as DataTableHeaderFilter,
150
+ ct as DataTableHeaderFilterActions,
151
+ Tt as DataTableHeaderFilterContent,
152
+ St as DataTableHeaderFilterContentTitle,
153
+ st as DataTableHeaderFilterList,
154
+ Ct as DataTableHeaderSearch,
155
+ Ht as DataTableSelectedRowsBanner,
155
156
  _ as Details,
156
157
  ee as Drawer,
157
158
  re as DrawerBody,
158
159
  oe as DrawerFooter,
159
160
  te as DrawerWrapper,
160
161
  K as DropdownItem,
161
- Ht as EditableTableCell,
162
+ Dt as EditableTableCell,
162
163
  pe as FileUpload,
163
164
  xe as Footer,
164
- Se as Form,
165
+ Te as Form,
165
166
  de as FormField,
166
167
  ie as FormFieldError,
167
168
  ue as FormFieldHint,
@@ -191,76 +192,77 @@ export {
191
192
  mr as InputCheckboxTableCell,
192
193
  nr as InputFile,
193
194
  ir as InputPassword,
194
- Sr as InputRadio,
195
+ Tr as InputRadio,
195
196
  br as InputRadioGroup,
196
197
  sr as InputRadioSizeEnum,
197
198
  Ir as InputText,
198
199
  Hr as InputTextTableCell,
199
- Dr as Link,
200
- Mr as List,
201
- Lr as ListItem,
202
- Wt as LoadFonts,
203
- zt as LoadMaterialSymbols,
204
- kr as Modal,
205
- Pr as ModalBody,
206
- yr as ModalFooter,
207
- vr as ModalTitle,
208
- wr as ModalWrapper,
209
- Gr as Pagination,
210
- Er as Paragraph,
211
- Wr as PhaseBanner,
212
- Ur as Popover,
213
- qr as ProgressBar,
214
- Qr as ProgressStepper,
215
- eo as Radio,
216
- _r as RadioGroup,
217
- oo as ScoreSelect,
218
- ao as SectionBreak,
219
- mo as Select,
220
- Jt as SelectGroupItem,
221
- fo as SelectGroupItemNext,
222
- Kt as SelectItem,
223
- lo as SelectItemNext,
224
- no as SelectNext,
225
- Ot as SelectTableCell,
226
- uo as SideNav,
227
- bo as SideNavHeading,
228
- co as SideNavItem,
229
- To as Spinner,
230
- Co as Stack,
231
- Xr as Step,
232
- Jr as StepFillLevel,
233
- Yr as StepItem,
234
- Kr as StepStatus,
235
- Mo as SummaryList,
236
- Do as SummaryListAction,
237
- ko as SummaryListHeader,
238
- Ho as SummaryListRow,
239
- Lo as SummaryListValue,
240
- Zo as TabItem,
241
- $o as TabList,
242
- rt as TabPanel,
243
- Xo as Table,
244
- Eo as TableBody,
245
- Wo as TableData,
246
- Uo as TableFoot,
247
- qo as TableHead,
248
- Jo as TableHeader,
249
- Oo as TableRow,
250
- tt as Tabs,
251
- Dt as Tag,
252
- Bt as TagTypeEnum,
253
- ht as TextArea,
254
- gt as TextInput,
255
- Pt as ToastProvider,
256
- wt as Tooltip,
200
+ Dr as InsetText,
201
+ Lr as Link,
202
+ kr as List,
203
+ Mr as ListItem,
204
+ Ut as LoadFonts,
205
+ Vt as LoadMaterialSymbols,
206
+ yr as Modal,
207
+ vr as ModalBody,
208
+ wr as ModalFooter,
209
+ Ar as ModalTitle,
210
+ Gr as ModalWrapper,
211
+ Er as Pagination,
212
+ Wr as Paragraph,
213
+ Ur as PhaseBanner,
214
+ qr as Popover,
215
+ Jr as ProgressBar,
216
+ Yr as ProgressStepper,
217
+ oo as Radio,
218
+ eo as RadioGroup,
219
+ ao as ScoreSelect,
220
+ mo as SectionBreak,
221
+ fo as Select,
222
+ Ot as SelectGroupItem,
223
+ no as SelectGroupItemNext,
224
+ Qt as SelectItem,
225
+ io as SelectItemNext,
226
+ uo as SelectNext,
227
+ Xt as SelectTableCell,
228
+ co as SideNav,
229
+ To as SideNavHeading,
230
+ So as SideNavItem,
231
+ Co as Spinner,
232
+ Ho as Stack,
233
+ Zr as Step,
234
+ Or as StepFillLevel,
235
+ _r as StepItem,
236
+ Qr as StepStatus,
237
+ ko as SummaryList,
238
+ Lo as SummaryListAction,
239
+ yo as SummaryListHeader,
240
+ Do as SummaryListRow,
241
+ Mo as SummaryListValue,
242
+ $o as TabItem,
243
+ rt as TabList,
244
+ tt as TabPanel,
245
+ Zo as Table,
246
+ Wo as TableBody,
247
+ Uo as TableData,
248
+ qo as TableFoot,
249
+ Jo as TableHead,
250
+ Oo as TableHeader,
251
+ Xo as TableRow,
252
+ pt as Tabs,
253
+ Lt as Tag,
254
+ gt as TagTypeEnum,
255
+ Pt as TextArea,
256
+ ht as TextInput,
257
+ vt as ToastProvider,
258
+ Gt as Tooltip,
257
259
  f as alertVariants,
258
- Vt as generateSvgPlaceholder,
259
- qt as generateSvgPlaceholderDataUrl,
260
- Xt as i18next,
260
+ jt as generateSvgPlaceholder,
261
+ Jt as generateSvgPlaceholderDataUrl,
262
+ Zt as i18next,
261
263
  Xe as initI18n,
262
- yt as toaster,
264
+ wt as toaster,
263
265
  ge as useHeaderContext,
264
266
  we as useHeaderMenuSection,
265
- Gt as useToggleMap
267
+ Et as useToggleMap
266
268
  };
@@ -1,21 +1,24 @@
1
- import { jsx as m } from "react/jsx-runtime";
2
- import { forwardRef as r } from "react";
3
- import { cn as o } from "../cn.js";
4
- import { Input as p } from "../primitives/input.js";
5
- const a = r(
6
- ({ className: i, ...t }, e) => /* @__PURE__ */ m(
7
- p,
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import { forwardRef as o } from "react";
3
+ import { cn as g } from "../cn.js";
4
+ import { Input as a } from "../primitives/input.js";
5
+ const d = o(
6
+ ({ className: t, ...i }, e) => /* @__PURE__ */ r(
7
+ a,
8
8
  {
9
- "data-testid": t.dataTestid,
10
- ...t,
11
- className: o(i, "gi-input-file"),
9
+ "data-testid": i.dataTestid,
10
+ ...i,
11
+ className: g(
12
+ t,
13
+ "gi-rounded-sm xs:gi-text-md gi-text-sm gi-leading-10 xs:gi-leading-5 gi-p-[3px] gi-max-w-[100%] gi-border-transparent gi-flex-initial gi-ml-[-5px] gi-border-sm gi-border-solid gi-box-border gi-focus-state-outline gi-focus-state-border gi-z-1"
14
+ ),
12
15
  type: "file",
13
16
  multiple: !0,
14
17
  ref: e
15
18
  }
16
19
  )
17
20
  );
18
- a.displayName = "InputFile";
21
+ d.displayName = "InputFile";
19
22
  export {
20
- a as InputFile
23
+ d as InputFile
21
24
  };
@@ -0,0 +1 @@
1
+ export { LogoBlack, LogoGoldGreen, LogoGoldWhite, LogoHarpBlack, LogoWhite, LogoHarpWhite, } from '../atoms/icons/logos';
@@ -0,0 +1,14 @@
1
+ import { default as a } from "../atoms/icons/logos/LogoBlack.js";
2
+ import { default as t } from "../atoms/icons/logos/LogoGoldGreen.js";
3
+ import { default as l } from "../atoms/icons/logos/LogoGoldWhite.js";
4
+ import { default as p } from "../atoms/icons/logos/LogoHarpBlack.js";
5
+ import { default as m } from "../atoms/icons/logos/LogoHarpWhite.js";
6
+ import { default as u } from "../atoms/icons/logos/LogoWhite.js";
7
+ export {
8
+ a as LogoBlack,
9
+ t as LogoGoldGreen,
10
+ l as LogoGoldWhite,
11
+ p as LogoHarpBlack,
12
+ m as LogoHarpWhite,
13
+ u as LogoWhite
14
+ };