@eui/ecl 22.0.0-alpha.4 → 22.0.0-alpha.5
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/docs/changelog.html +229 -0
- package/docs/components/EclIconComponent.html +1 -1
- package/docs/components/EclSocialMediaFollowItemComponent.html +10 -10
- package/docs/components/EclStoryCardComponent.html +1 -1
- package/docs/directives/EclLinkDirective.html +0 -39
- package/docs/js/search/search_index.js +2 -2
- package/docs/json/EclIconComponent.md +1 -1
- package/docs/json/documentation.json +60 -93
- package/docs/llms.txt +3 -4
- package/docs/properties.html +1 -1
- package/fesm2022/eui-ecl-components-ecl-icon.mjs.map +1 -1
- package/fesm2022/eui-ecl-components-ecl-link.mjs +10 -13
- package/fesm2022/eui-ecl-components-ecl-link.mjs.map +1 -1
- package/fesm2022/eui-ecl-components-ecl-menu.mjs.map +1 -1
- package/fesm2022/eui-ecl-components-ecl-site-footer.mjs +2 -2
- package/fesm2022/eui-ecl-components-ecl-site-footer.mjs.map +1 -1
- package/fesm2022/eui-ecl-components-ecl-social-media-follow.mjs +6 -6
- package/fesm2022/eui-ecl-components-ecl-social-media-follow.mjs.map +1 -1
- package/fesm2022/eui-ecl-components-ecl-story-card.mjs +2 -2
- package/fesm2022/eui-ecl-components-ecl-story-card.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eui-ecl-components-ecl-link.d.ts +2 -4
- package/types/eui-ecl-components-ecl-link.d.ts.map +1 -1
- package/types/eui-ecl-components-ecl-social-media-follow.d.ts +3 -3
- package/types/eui-ecl-components-ecl-social-media-follow.d.ts.map +1 -1
|
@@ -16,7 +16,7 @@ Integrates with ECL theming and supports accessibility options.
|
|
|
16
16
|
- **color**: `'inverted' | 'primary' | null` - Applies color styling to the icon. Use `'inverted'` for icons on dark backgrounds, or `'primary'` for emphasis.
|
|
17
17
|
- **focusable**: `boolean` - Controls whether the icon is focusable via keyboard. Defaults to `false`.
|
|
18
18
|
- **icon**: `string` - Name of the icon to render from the selected set.
|
|
19
|
-
- **iconSet**: `'default' | 'social' | 'social-media' | 'social-media-color' | 'flag' | 'flag-non-members' | 'phosphor' | string` - Defines the icon set to use. Available sets: `default`, `social`, `social-media`, `flag`, or a custom URL prefix. Defaults to `'default'`.
|
|
19
|
+
- **iconSet**: `'default' | 'social' | 'social-media' | 'social-media-color' | 'flag' | 'flag-non-members' | 'phosphor' | 'phosphor-fill' | string` - Defines the icon set to use. Available sets: `default`, `social`, `social-media`, `flag`, or a custom URL prefix. Defaults to `'default'`.
|
|
20
20
|
- **isFlipHorizontal**: `boolean` - Flips the icon horizontally if set to `true`.
|
|
21
21
|
- **role**: `string` - ARIA role of the icon. If a `title` is provided and no role is defined, defaults to `'img'`.
|
|
22
22
|
- **size**: `'2xs' | 'xs' | 's' | 'm' | 'l' | 'xl' | '2xl' | 'fluid' | string` - Size of the icon. Supported values: `'2xs'`, `'xs'`, `'s'`, `'m'`, `'l'`, `'xl'`, `'2xl'`, `'fluid'`. Defaults to `'xs'`.
|