@guardian/stand 0.0.17 → 0.0.19

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 (66) hide show
  1. package/dist/avatarButton.cjs +7 -0
  2. package/dist/avatarButton.js +1 -0
  3. package/dist/avatarLink.cjs +7 -0
  4. package/dist/avatarLink.js +1 -0
  5. package/dist/components/avatar/styles.cjs +24 -0
  6. package/dist/components/avatar/styles.js +24 -0
  7. package/dist/components/avatar-button/AvatarButton.cjs +14 -0
  8. package/dist/components/avatar-button/AvatarButton.js +12 -0
  9. package/dist/components/avatar-button/styles.cjs +29 -0
  10. package/dist/components/avatar-button/styles.js +26 -0
  11. package/dist/components/avatar-link/AvatarLink.cjs +14 -0
  12. package/dist/components/avatar-link/AvatarLink.js +12 -0
  13. package/dist/components/avatar-link/styles.cjs +24 -0
  14. package/dist/components/avatar-link/styles.js +21 -0
  15. package/dist/components/inline-message/InlineMessage.cjs +56 -0
  16. package/dist/components/inline-message/InlineMessage.js +27 -0
  17. package/dist/components/inline-message/styles.cjs +17 -0
  18. package/dist/components/inline-message/styles.js +14 -0
  19. package/dist/components/select/Select.cjs +67 -0
  20. package/dist/components/select/Select.js +33 -0
  21. package/dist/components/select/styles.cjs +126 -0
  22. package/dist/components/select/styles.js +117 -0
  23. package/dist/index.cjs +4 -0
  24. package/dist/index.js +2 -0
  25. package/dist/inline-message.cjs +9 -0
  26. package/dist/inline-message.js +2 -0
  27. package/dist/select.cjs +9 -0
  28. package/dist/select.js +2 -0
  29. package/dist/styleD/build/css/component/avatar.css +31 -0
  30. package/dist/styleD/build/css/component/inlineMessage.css +17 -0
  31. package/dist/styleD/build/css/component/select.css +57 -0
  32. package/dist/styleD/build/css/semantic/typography.css +38 -0
  33. package/dist/styleD/build/typescript/component/avatar.cjs +95 -12
  34. package/dist/styleD/build/typescript/component/avatar.js +95 -12
  35. package/dist/styleD/build/typescript/component/inlineMessage.cjs +28 -0
  36. package/dist/styleD/build/typescript/component/inlineMessage.js +26 -0
  37. package/dist/styleD/build/typescript/component/select.cjs +88 -0
  38. package/dist/styleD/build/typescript/component/select.js +86 -0
  39. package/dist/styleD/build/typescript/semantic/typography.cjs +50 -0
  40. package/dist/styleD/build/typescript/semantic/typography.js +50 -0
  41. package/dist/types/avatar-button.d.ts +18 -0
  42. package/dist/types/avatar-link.d.ts +18 -0
  43. package/dist/types/components/avatar-button/AvatarButton.d.ts +2 -0
  44. package/dist/types/components/avatar-button/sandbox.d.ts +5 -0
  45. package/dist/types/components/avatar-button/styles.d.ts +6 -0
  46. package/dist/types/components/avatar-button/types.d.ts +3 -0
  47. package/dist/types/components/avatar-link/AvatarLink.d.ts +2 -0
  48. package/dist/types/components/avatar-link/sandbox.d.ts +5 -0
  49. package/dist/types/components/avatar-link/styles.d.ts +6 -0
  50. package/dist/types/components/avatar-link/types.d.ts +3 -0
  51. package/dist/types/components/inline-message/InlineMessage.d.ts +2 -0
  52. package/dist/types/components/inline-message/sandbox.d.ts +5 -0
  53. package/dist/types/components/inline-message/styles.d.ts +8 -0
  54. package/dist/types/components/inline-message/types.d.ts +21 -0
  55. package/dist/types/components/select/Select.d.ts +3 -0
  56. package/dist/types/components/select/sandbox.d.ts +5 -0
  57. package/dist/types/components/select/styles.d.ts +13 -0
  58. package/dist/types/components/select/types.d.ts +21 -0
  59. package/dist/types/index.d.ts +4 -0
  60. package/dist/types/inline-message.d.ts +19 -0
  61. package/dist/types/select.d.ts +20 -0
  62. package/dist/types/styleD/build/typescript/component/avatar.d.ts +83 -0
  63. package/dist/types/styleD/build/typescript/component/inlineMessage.d.ts +28 -0
  64. package/dist/types/styleD/build/typescript/component/select.d.ts +88 -0
  65. package/dist/types/styleD/build/typescript/semantic/typography.d.ts +50 -0
  66. package/package.json +39 -5
@@ -0,0 +1,5 @@
1
+ export declare const componentName = "Select";
2
+ export declare const componentTsx = "import { Select } from '@guardian/stand/select';\n\nexport const Component = () => (\n\t<Select label=\"Select\">\n\t\t<Option>Option 1</Option>\n\t\t<Option>Option 2</Option>\n\t</Select>\n);\n";
3
+ export declare const componentCss = "\n/* import the select styles */\n@import '@guardian/stand/component/select.css';\n\n.stand-select-container {\n\tdisplay: var(--component-select-shared-display);\n\tflex-direction: var(--component-select-shared-flex-direction);\n\tgap: var(--component-select-shared-gap);\n\n\tmax-width: var(--component-select-shared-maxWidth);\n\twidth: var(--component-select-shared-width);\n}\n\n.stand-select {\n\t\tdisplay: var(--component-select-button-display);\n\t\tjustify-content: var(--component-select-button-justify-content);\n\t\talign-items: var(--component-select-button-align-items);\n\t\tbackground-color: var(--component-select-button-background-color);\n\t\tborder: var(--component-select-button-border);\n\t\tborder-radius: var(--component-select-button-border-radius);\n\t\theight: var(--component-select-button-height);\n\t\tpadding-left: var(--component-select-button-padding-left);\n\t\tpadding-right: var(--component-select-button-padding-right);\n\t\tmargin-top: var(--component-select-button-margin-top);\n\t\tcolor: var(--component-select-button-color);\n\n\t\tfont: var(--component-select-button-body-md-typography-font);\n\t\tletter-spacing: var(--component-select-button-body-md-typography-letter-spacing);\n\t\tfont-variation-settings: \"wdth\" var(--component-select-button-body-md-typography-font-width);\n\n\n\t\t&:hover {\n\t\t\tbackground: var(--component-select-shared-hover-background-color);\n\t\t}\n\n\t\t&:active {\n\t\t\tbackground: var(--component-select-shared-active-background-color);\n\t\t}\n\n\t\t&:focus-visible {\n\t\t\toutline: var(--component-select-button-focused-outline);\n\t\t\toutline-offset: var(--component-select-button-focused-outline-offset);\n\t\t}\n\n\t\t&:disabled {\n\t\t\tcursor: var(--component-select-button-disabled-cursor);\n\t\t\tbackground-color: var(--component-select-button-disabled-background-color);\n\t\t\tcolor: var(--component-select-button-disabled-color);\n\t\t\tborder: var(--component-select-button-disabled-border);\n\t\t}\n}\n";
4
+ export declare const componentHtml = "<div class=\"container\">\n\t<div class=\"stand-select-container\">\n\t\t<label>Select</label>\n\t\t<select class=\"stand-select\">\n\t\t\t<option>Option 1</option>\n\t\t\t<option>Option 2</option>\n\t\t</select>\n\t</div>\n</div>\n";
5
+ export declare const componentJs = "\nimport { componentSelect } from \"@guardian/stand\";\n\n// example of creating a stylesheet in js\nconst sheet = new CSSStyleSheet();\n\n// apply the rules to the sheet\nsheet.replaceSync(`\n\n.js-stand-select-container {\n\tdisplay: ${componentSelect.shared.display};\n\tflex-direction: ${componentSelect.shared.flexDirection};\n\tgap: ${componentSelect.shared.gap};\n\n\tmax-width: ${componentSelect.shared.maxWidth};\n\twidth: ${componentSelect.shared.width};\n}\n\n.js-stand-select {\n\tdisplay: ${componentSelect.button.display};\n\tjustify-content: ${componentSelect.button.justifyContent};\n\talign-items: ${componentSelect.button.alignItems};\n\tbackground-color: ${componentSelect.button.backgroundColor};\n\tborder: ${componentSelect.button.border};\n\tborder-radius: ${componentSelect.button.borderRadius};\n\theight: ${componentSelect.button.height};\n\tpadding-left: ${componentSelect.button.paddingLeft};\n\tpadding-right: ${componentSelect.button.paddingRight};\n\tmargin-top: ${componentSelect.button.marginTop};\n\tcolor: ${componentSelect.button.color};\n\n\tfont: ${componentSelect.button.typography.font};\n\tletter-spacing: ${componentSelect.button.typography.letterSpacing};\n\tfont-variation-settings: \"wdth\" ${componentSelect.button.typography.fontWidth};\n\n\t&:hover {\n\t\tbackground: ${componentSelect.shared.hover.backgroundColor};\n\t}\n\n\t&:active {\n\t\tbackground: ${componentSelect.shared.pressed.backgroundColor};\n\t}\n\n\t&:focus-visible {\n\t\toutline: ${componentSelect.button.focused.outline};\n\t\toutline-offset: ${componentSelect.button.focused['outline-offset']};\n\t}\n\n\t&:disabled {\n\t\tcursor: ${componentSelect.button.disabled.cursor};\n\t\tbackground-color: ${componentSelect.button.disabled.backgroundColor};\n\t\tcolor: ${componentSelect.button.disabled.color};\n\t\tborder: ${componentSelect.button.disabled.border};\n\t}\n}\n`);\n\n// update the document with the sheet\ndocument.adoptedStyleSheets.push(sheet);\n\ndocument.getElementById(\"app\").innerHTML = `\n\t<div class=\"js-stand-select-container\">\n\t\t<label>Select</label>\n\t\t<select class=\"js-stand-select\">\n\t\t\t<option>Option 1</option>\n\t\t\t<option>Option 2</option>\n\t\t</select>\n\t</div>\n`;\n";
@@ -0,0 +1,13 @@
1
+ import type { SerializedStyles } from '@emotion/react';
2
+ import type { ComponentSelect } from '../../styleD/build/typescript/component/select';
3
+ import type { DeepPartial, Prettify } from '../../util/types';
4
+ export type SelectTheme = Prettify<ComponentSelect>;
5
+ export type PartialSelectTheme = DeepPartial<SelectTheme>;
6
+ export declare const defaultSelectTheme: SelectTheme;
7
+ export declare const selectStyles: (theme: SelectTheme) => SerializedStyles;
8
+ export declare const popoverStyles: (theme: SelectTheme) => SerializedStyles;
9
+ export declare const listBoxItemStyles: (theme: SelectTheme) => SerializedStyles;
10
+ export declare const listBoxStyles: (theme: SelectTheme) => SerializedStyles;
11
+ export declare const labelStyles: (theme: SelectTheme) => SerializedStyles;
12
+ export declare const helpTextStyles: (theme: SelectTheme) => SerializedStyles;
13
+ export declare const buttonStyles: (theme: SelectTheme, isInvalid?: boolean) => SerializedStyles;
@@ -0,0 +1,21 @@
1
+ import type { ListBoxItemProps as RACListBoxItemProps, ListBoxProps as RACListBoxProps, SelectProps as RACSelectProps } from 'react-aria-components';
2
+ import type { DefaultPropsWithChildren } from '../../util/types';
3
+ import type { SelectTheme } from './styles';
4
+ export interface OptionProps extends DefaultPropsWithChildren<SelectTheme, RACListBoxItemProps['className']>, Omit<RACListBoxItemProps, 'children'> {
5
+ }
6
+ export interface ListBoxProps extends DefaultPropsWithChildren<SelectTheme, RACListBoxProps<object>['className']>, Omit<RACListBoxProps<object>, 'children'> {
7
+ }
8
+ export interface SelectProps extends DefaultPropsWithChildren<SelectTheme, RACSelectProps<object>['className']>, Omit<RACSelectProps<object>, 'children'> {
9
+ /**
10
+ * The label text of the select box
11
+ */
12
+ label: string;
13
+ /**
14
+ * Validation error message
15
+ */
16
+ errorMessage?: string;
17
+ /**
18
+ * Optional contextual help text
19
+ */
20
+ contextualHelpText?: string;
21
+ }
@@ -26,6 +26,10 @@ export { componentIcon } from './styleD/build/typescript/component/icon';
26
26
  export type { ComponentIcon } from './styleD/build/typescript/component/icon';
27
27
  export { componentFavicon } from './styleD/build/typescript/component/favicon';
28
28
  export type { ComponentFavicon } from './styleD/build/typescript/component/favicon';
29
+ export { componentInlineMessage } from './styleD/build/typescript/component/inlineMessage';
30
+ export type { ComponentInlineMessage } from './styleD/build/typescript/component/inlineMessage';
31
+ export { componentSelect } from './styleD/build/typescript/component/select';
32
+ export type { ComponentSelect } from './styleD/build/typescript/component/select';
29
33
  export { componentMenu } from './styleD/build/typescript/component/menu';
30
34
  export type { ComponentMenu } from './styleD/build/typescript/component/menu';
31
35
  export { componentTopBar } from './styleD/build/typescript/component/TopBar';
@@ -0,0 +1,19 @@
1
+ /**
2
+ * InlineMessage component entry point
3
+ *
4
+ * Peer dependencies required to use these components:
5
+ * - `@emotion/react`
6
+ * - `react`
7
+ * - `react-dom`
8
+ * - `typescript`
9
+ *
10
+ * See the `peerDependencies` section of package.json for compatible versions.
11
+ *
12
+ * If you only need the built CSS (./component/inlineMessage.css),
13
+ * you don't need to install these.
14
+ */
15
+ export { InlineMessage } from './components/inline-message/InlineMessage';
16
+ export type { InlineMessageProps } from './components/inline-message/types';
17
+ export type { PartialInlineMessageTheme as InlineMessageTheme } from './components/inline-message/styles';
18
+ export { componentInlineMessage } from './styleD/build/typescript/component/inlineMessage';
19
+ export type { ComponentInlineMessage } from './styleD/build/typescript/component/inlineMessage';
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Select component entry point
3
+ *
4
+ * Peer dependencies required to use these components:
5
+ * - `@emotion/react`
6
+ * - `react`
7
+ * - `react-dom`
8
+ * - `react-aria-components`
9
+ * - `typescript`
10
+ *
11
+ * See the `peerDependencies` section of package.json for compatible versions.
12
+ *
13
+ * If you only need the built CSS (./component/select.css),
14
+ * you don't need to install these.
15
+ */
16
+ export { Select } from './components/select/Select';
17
+ export type { SelectProps } from './components/select/types';
18
+ export type { PartialSelectTheme as SelectTheme } from './components/select/styles';
19
+ export { componentSelect } from './styleD/build/typescript/component/select';
20
+ export type { ComponentSelect } from './styleD/build/typescript/component/select';
@@ -8,56 +8,122 @@ export declare const componentAvatar: {
8
8
  text: string;
9
9
  background: string;
10
10
  border: string;
11
+ ':hover': {
12
+ background: string;
13
+ };
14
+ ':active': {
15
+ background: string;
16
+ };
11
17
  };
12
18
  blue: {
13
19
  text: string;
14
20
  background: string;
15
21
  border: string;
22
+ ':hover': {
23
+ background: string;
24
+ };
25
+ ':active': {
26
+ background: string;
27
+ };
16
28
  };
17
29
  red: {
18
30
  text: string;
19
31
  background: string;
20
32
  border: string;
33
+ ':hover': {
34
+ background: string;
35
+ };
36
+ ':active': {
37
+ background: string;
38
+ };
21
39
  };
22
40
  cyan: {
23
41
  text: string;
24
42
  background: string;
25
43
  border: string;
44
+ ':hover': {
45
+ background: string;
46
+ };
47
+ ':active': {
48
+ background: string;
49
+ };
26
50
  };
27
51
  teal: {
28
52
  text: string;
29
53
  background: string;
30
54
  border: string;
55
+ ':hover': {
56
+ background: string;
57
+ };
58
+ ':active': {
59
+ background: string;
60
+ };
31
61
  };
32
62
  'cool-purple': {
33
63
  text: string;
34
64
  background: string;
35
65
  border: string;
66
+ ':hover': {
67
+ background: string;
68
+ };
69
+ ':active': {
70
+ background: string;
71
+ };
36
72
  };
37
73
  'warm-purple': {
38
74
  text: string;
39
75
  background: string;
40
76
  border: string;
77
+ ':hover': {
78
+ background: string;
79
+ };
80
+ ':active': {
81
+ background: string;
82
+ };
41
83
  };
42
84
  magenta: {
43
85
  text: string;
44
86
  background: string;
45
87
  border: string;
88
+ ':hover': {
89
+ background: string;
90
+ };
91
+ ':active': {
92
+ background: string;
93
+ };
46
94
  };
47
95
  orange: {
48
96
  text: string;
49
97
  background: string;
50
98
  border: string;
99
+ ':hover': {
100
+ background: string;
101
+ };
102
+ ':active': {
103
+ background: string;
104
+ };
51
105
  };
52
106
  yellow: {
53
107
  text: string;
54
108
  background: string;
55
109
  border: string;
110
+ ':hover': {
111
+ background: string;
112
+ };
113
+ ':active': {
114
+ background: string;
115
+ };
56
116
  };
57
117
  outlined: {
58
118
  text: string;
59
119
  background: string;
60
120
  border: string;
121
+ ':hover': {
122
+ background: string;
123
+ };
124
+ ':active': {
125
+ background: string;
126
+ };
61
127
  };
62
128
  };
63
129
  display: string;
@@ -67,6 +133,23 @@ export declare const componentAvatar: {
67
133
  'flex-shrink': string;
68
134
  'border-radius': string;
69
135
  'user-select': string;
136
+ link: {
137
+ width: string;
138
+ ':focus-visible': {
139
+ outline: string;
140
+ 'outline-offset': string;
141
+ };
142
+ 'text-decoration': string;
143
+ };
144
+ button: {
145
+ background: string;
146
+ border: string;
147
+ padding: string;
148
+ cursor: string;
149
+ ':disabled': {
150
+ cursor: string;
151
+ };
152
+ };
70
153
  };
71
154
  sm: {
72
155
  size: string;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export declare const componentInlineMessage: {
5
+ shared: {
6
+ display: string;
7
+ gap: string;
8
+ 'align-items': string;
9
+ icon: {
10
+ size: string;
11
+ };
12
+ typography: {
13
+ font: string;
14
+ letterSpacing: string;
15
+ fontWidth: number;
16
+ };
17
+ };
18
+ error: {
19
+ color: string;
20
+ };
21
+ success: {
22
+ color: string;
23
+ };
24
+ information: {
25
+ color: string;
26
+ };
27
+ };
28
+ export type ComponentInlineMessage = typeof componentInlineMessage;
@@ -0,0 +1,88 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export declare const componentSelect: {
5
+ shared: {
6
+ display: string;
7
+ flexDirection: string;
8
+ gap: string;
9
+ maxWidth: string;
10
+ width: string;
11
+ hover: {
12
+ backgroundColor: string;
13
+ outline: string;
14
+ };
15
+ pressed: {
16
+ backgroundColor: string;
17
+ };
18
+ };
19
+ label: {
20
+ color: string;
21
+ typography: {
22
+ font: string;
23
+ letterSpacing: string;
24
+ fontWidth: number;
25
+ };
26
+ };
27
+ helpText: {
28
+ color: string;
29
+ typography: {
30
+ font: string;
31
+ letterSpacing: string;
32
+ fontWidth: number;
33
+ };
34
+ };
35
+ button: {
36
+ display: string;
37
+ justifyContent: string;
38
+ alignItems: string;
39
+ marginTop: string;
40
+ backgroundColor: string;
41
+ border: string;
42
+ borderRadius: string;
43
+ height: string;
44
+ paddingLeft: string;
45
+ paddingRight: string;
46
+ color: string;
47
+ typography: {
48
+ font: string;
49
+ letterSpacing: string;
50
+ fontWidth: number;
51
+ };
52
+ focused: {
53
+ outline: string;
54
+ 'outline-offset': string;
55
+ };
56
+ disabled: {
57
+ backgroundColor: string;
58
+ cursor: string;
59
+ color: string;
60
+ border: string;
61
+ };
62
+ error: {
63
+ border: string;
64
+ };
65
+ };
66
+ option: {
67
+ paddingLeft: string;
68
+ paddingRight: string;
69
+ paddingTop: string;
70
+ paddingBottom: string;
71
+ focused: {
72
+ outline: string;
73
+ 'outline-offset': string;
74
+ backgroundColor: string;
75
+ };
76
+ };
77
+ listBox: {
78
+ typography: {
79
+ font: string;
80
+ letterSpacing: string;
81
+ fontWidth: number;
82
+ };
83
+ border: string;
84
+ backgroundColor: string;
85
+ shadow: string;
86
+ };
87
+ };
88
+ export type ComponentSelect = typeof componentSelect;
@@ -207,5 +207,55 @@ export declare const semanticTypography: {
207
207
  letterSpacing: string;
208
208
  fontWidth: number;
209
209
  };
210
+ 'label-form-sm': {
211
+ font: string;
212
+ letterSpacing: string;
213
+ fontWidth: number;
214
+ };
215
+ 'label-form-md': {
216
+ font: string;
217
+ letterSpacing: string;
218
+ fontWidth: number;
219
+ };
220
+ 'label-form-inline-sm': {
221
+ font: string;
222
+ letterSpacing: string;
223
+ fontWidth: number;
224
+ };
225
+ 'label-form-inline-md': {
226
+ font: string;
227
+ letterSpacing: string;
228
+ fontWidth: number;
229
+ };
230
+ 'label-form-compact-sm': {
231
+ font: string;
232
+ letterSpacing: string;
233
+ fontWidth: number;
234
+ };
235
+ 'label-form-compact-md': {
236
+ font: string;
237
+ letterSpacing: string;
238
+ fontWidth: number;
239
+ };
240
+ 'label-form-inline-compact-sm': {
241
+ font: string;
242
+ letterSpacing: string;
243
+ fontWidth: number;
244
+ };
245
+ 'label-form-inline-compact-md': {
246
+ font: string;
247
+ letterSpacing: string;
248
+ fontWidth: number;
249
+ };
250
+ 'help-text-form-md': {
251
+ font: string;
252
+ letterSpacing: string;
253
+ fontWidth: number;
254
+ };
255
+ 'help-text-form-compact-md': {
256
+ font: string;
257
+ letterSpacing: string;
258
+ fontWidth: number;
259
+ };
210
260
  };
211
261
  export type SemanticTypography = typeof semanticTypography;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guardian/stand",
3
- "version": "0.0.17",
3
+ "version": "0.0.19",
4
4
  "type": "module",
5
5
  "//exports": "Each component has its own entry point for optimal tree-shaking. Main entry point only includes design tokens and utilities. New components/foundations should follow the same pattern.",
6
6
  "exports": {
@@ -14,6 +14,16 @@
14
14
  "import": "./dist/avatar.js",
15
15
  "require": "./dist/avatar.cjs"
16
16
  },
17
+ "./AvatarLink": {
18
+ "types": "./dist/types/avatarLink.d.ts",
19
+ "import": "./dist/avatarLink.js",
20
+ "require": "./dist/avatarLink.cjs"
21
+ },
22
+ "./AvatarButton": {
23
+ "types": "./dist/types/avatarButton.d.ts",
24
+ "import": "./dist/avatarButton.js",
25
+ "require": "./dist/avatarButton.cjs"
26
+ },
17
27
  "./button": {
18
28
  "types": "./dist/types/button.d.ts",
19
29
  "import": "./dist/button.js",
@@ -59,6 +69,16 @@
59
69
  "import": "./dist/TopBar.js",
60
70
  "require": "./dist/TopBar.cjs"
61
71
  },
72
+ "./inline-message": {
73
+ "types": "./dist/types/inline-message.d.ts",
74
+ "import": "./dist/inline-message.js",
75
+ "require": "./dist/inline-message.cjs"
76
+ },
77
+ "./select": {
78
+ "types": "./dist/types/select.d.ts",
79
+ "import": "./dist/select.js",
80
+ "require": "./dist/select.cjs"
81
+ },
62
82
  "./byline": {
63
83
  "types": "./dist/types/byline.d.ts",
64
84
  "import": "./dist/byline.js",
@@ -103,7 +123,9 @@
103
123
  "./component/icon.css": "./dist/styleD/build/css/component/icon.css",
104
124
  "./component/favicon.css": "./dist/styleD/build/css/component/favicon.css",
105
125
  "./component/menu.css": "./dist/styleD/build/css/component/menu.css",
106
- "./component/TopBar.css": "./dist/styleD/build/css/component/TopBar.css"
126
+ "./component/TopBar.css": "./dist/styleD/build/css/component/TopBar.css",
127
+ "./component/inlineMessage.css": "./dist/styleD/build/css/component/inlineMessage.css",
128
+ "./component/select.css": "./dist/styleD/build/css/component/select.css"
107
129
  },
108
130
  "//typesVersions": "Provides backward compatibility for TypeScript moduleResolution: node - maps subpath imports to correct type definition files. When adding new components with their own entry points, ensure to add them here.",
109
131
  "typesVersions": {
@@ -111,6 +133,12 @@
111
133
  "avatar": [
112
134
  "./dist/types/avatar.d.ts"
113
135
  ],
136
+ "AvatarButton": [
137
+ "./dist/types/avatarButton.d.ts"
138
+ ],
139
+ "AvatarLink": [
140
+ "./dist/types/avatarLink.d.ts"
141
+ ],
114
142
  "button": [
115
143
  "./dist/types/button.d.ts"
116
144
  ],
@@ -149,6 +177,12 @@
149
177
  ],
150
178
  "menu": [
151
179
  "./dist/types/menu.d.ts"
180
+ ],
181
+ "inline-message": [
182
+ "./dist/types/inline-message.d.ts"
183
+ ],
184
+ "select": [
185
+ "./dist/types/select.d.ts"
152
186
  ]
153
187
  }
154
188
  },
@@ -203,7 +237,7 @@
203
237
  "react-dom": "17.0.2",
204
238
  "remark-gfm": "^4.0.1",
205
239
  "rimraf": "6.1.3",
206
- "rollup": "4.60.0",
240
+ "rollup": "4.60.1",
207
241
  "rollup-plugin-copy": "^3.5.0",
208
242
  "rollup-plugin-esbuild": "6.2.1",
209
243
  "rollup-plugin-import-css": "^4.2.0",
@@ -213,8 +247,8 @@
213
247
  "ts-jest": "29.4.6",
214
248
  "tslib": "2.8.1",
215
249
  "typescript": "5.1.3",
216
- "vite": "^8.0.2",
217
- "vite-plugin-svgr": "^4.5.0"
250
+ "vite": "^8.0.3",
251
+ "vite-plugin-svgr": "^5.0.0"
218
252
  },
219
253
  "peerDependencies": {
220
254
  "@emotion/react": ">=11.11.4 <=11.14.0",