@sebgroup/green-core 2.32.0 → 2.33.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/gds-element.js CHANGED
@@ -12,7 +12,7 @@ class GdsElement extends LitElement {
12
12
  /**
13
13
  * The semantic version of this element. Can be used for troubleshooting to verify the version being used.
14
14
  */
15
- this.semanticVersion = "2.32.0";
15
+ this.semanticVersion = "2.33.0";
16
16
  this._isUsingTransitionalStyles = false;
17
17
  this._dynamicStylesController = new DynamicStylesController(this);
18
18
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-02-18T14:07:27.418Z",
2
+ "generatedAt": "2026-02-19T11:17:04.188Z",
3
3
  "components": [
4
4
  {
5
5
  "name": "gds-alert",
@@ -0,0 +1,15 @@
1
+ # gds-icon-brand-swish-word - Angular
2
+
3
+ ## Import
4
+
5
+ ```typescript
6
+ import { IconBrandSwishWordComponent } from '@sebgroup/green-core-ng'
7
+ ```
8
+
9
+ ## Usage
10
+
11
+ Use the component in your Angular templates:
12
+
13
+ ```html
14
+ <gds-icon-brand-swish-word></gds-icon-brand-swish-word>
15
+ ```
@@ -0,0 +1,28 @@
1
+ # gds-icon-brand-swish-word
2
+
3
+ **Class**: `IconBrandSwishWord`
4
+
5
+ **Tag**: `<gds-icon-brand-swish-word>`
6
+
7
+
8
+ ## Properties
9
+
10
+ | Name | Type | Default | Description |
11
+ |------|------|---------|-------------|
12
+ | `margin` | `string \| undefined` | `-` | Style Expression Property that controls the `margin` property. Only accepts space tokens. |
13
+ | `'margin-inline'` | `string \| undefined` | `-` | Style Expression Property that controls the `margin-inline` property. Only accepts space tokens. |
14
+ | `'margin-block'` | `string \| undefined` | `-` | Style Expression Property that controls the `margin-block` property. Only accepts space tokens. |
15
+ | `'align-self'` | `string \| undefined` | `-` | Style Expression Property that controls the `align-self` property. Supports all valid CSS `align-self` values. |
16
+ | `'justify-self'` | `string \| undefined` | `-` | Style Expression Property that controls the `justify-self` property. Supports all valid CSS `justify-self` values. |
17
+ | `'place-self'` | `string \| undefined` | `-` | Style Expression Property that controls the `place-self` property. Supports all valid CSS `place-self` values. |
18
+ | `'grid-column'` | `string \| undefined` | `-` | Style Expression Property that controls the `grid-column` property. Supports all valid CSS grid-column values. Documentation: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column |
19
+ | `'grid-row'` | `string \| undefined` | `-` | Style Expression Property that controls the `grid-row` property. Supports all valid CSS `grid-row` values. |
20
+ | `'grid-area'` | `string \| undefined` | `-` | Style Expression Property that controls the `grid-area` property. Supports all valid CSS `grid-area` values. |
21
+ | `flex` | `string \| undefined` | `-` | Style Expression Property that controls the `flex` property. Supports all valid CSS `flex` values. |
22
+ | `order` | `string \| undefined` | `-` | Style Expression Property that controls the `order` property. Supports all valid CSS `order` values. |
23
+ | `size` | `string \| undefined` | `-` | This property allow you to set the size of the icon with the token and custom values. If not provided, uses the icon's default size. The size is a shorthand for setting both width and height at once. |
24
+ | `solid` | `boolean` | `-` | When set to true, the solid version of the icon is displayed. When set to false or not provided, the regular version of the icon is displayed. |
25
+ | `stroke` | `number \| undefined` | `-` | When set to true, you can apply custom stroke width to the icon. |
26
+ | `level` | `GdsColorLevel` | `-` | The level of the icon is used to resolve the color tokens from the corresponding level. Check the [Color System documentation page](./?path=/docs/style-colors--docs) for more information. Default for `gds-icon-*` is level 2. |
27
+ | `color` | `string \| undefined` | `-` | Style Expression Property that controls the `color` property. Only accepts color tokens and an optional transparency value, in the format tokenName/transparency. ```html <gds-icon-ai color="neutral-01/0.2"></gds-icon-ai> ``` |
28
+ | `label` | `string` | `-` | This property allow you to set the accessible label of the icon. If not provided, the icon will be presentational. |
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "gds-icon-brand-swish-word",
3
+ "files": {
4
+ "api": "api.md",
5
+ "angular": "angular.md",
6
+ "react": "react.md"
7
+ }
8
+ }
@@ -0,0 +1,15 @@
1
+ # gds-icon-brand-swish-word - React
2
+
3
+ ## Import
4
+
5
+ ```typescript
6
+ import { IconBrandSwishWord } from '@sebgroup/green-core/react'
7
+ ```
8
+
9
+ ## Usage
10
+
11
+ Use the component as a React JSX element:
12
+
13
+ ```tsx
14
+ <GdsIconBrandSwishWord />
15
+ ```
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-02-18T14:07:27.418Z",
2
+ "generatedAt": "2026-02-19T11:17:04.188Z",
3
3
  "icons": [
4
4
  {
5
5
  "name": "gds-icon-ai",
@@ -805,6 +805,18 @@
805
805
  "react"
806
806
  ]
807
807
  },
808
+ {
809
+ "name": "gds-icon-brand-swish-word",
810
+ "tagName": "gds-icon-brand-swish-word",
811
+ "className": "IconBrandSwishWord",
812
+ "description": "",
813
+ "path": "icon-brand-swish-word/",
814
+ "files": [
815
+ "api",
816
+ "angular",
817
+ "react"
818
+ ]
819
+ },
808
820
  {
809
821
  "name": "gds-icon-brand-x",
810
822
  "tagName": "gds-icon-brand-x",
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-02-18T14:07:27.418Z",
2
+ "generatedAt": "2026-02-19T11:17:04.188Z",
3
3
  "instructions": "./INSTRUCTIONS.md",
4
4
  "components": "./components.json",
5
5
  "icons": "./icons.json",
@@ -0,0 +1,393 @@
1
+ import { IconBrandSwishWord as IconBrandSwishWordClass } from '../../../../components/icon/icons/brand-swish-word.component';
2
+ import { getReactComponent } from '../../../../utils/react';
3
+ export declare const IconBrandSwishWord: {
4
+ (props: React.ComponentProps<ReturnType<typeof getReactComponent<IconBrandSwishWordClass>>> & {
5
+ ref?: React.Ref<IconBrandSwishWordClass>;
6
+ }): import("react").ReactElement<Omit<{
7
+ size?: string | undefined;
8
+ solid?: boolean | undefined;
9
+ stroke?: number | undefined;
10
+ level?: import("../../../../utils/helpers").GdsColorLevel | undefined;
11
+ color?: string | undefined;
12
+ label?: string | undefined;
13
+ render?: (() => import("lit-html").TemplateResult<1>) | undefined;
14
+ margin?: string | undefined;
15
+ 'margin-inline'?: string | undefined;
16
+ 'margin-block'?: string | undefined;
17
+ 'align-self'?: string | undefined;
18
+ 'justify-self'?: string | undefined;
19
+ 'place-self'?: string | undefined;
20
+ 'grid-column'?: string | undefined;
21
+ 'grid-row'?: string | undefined;
22
+ 'grid-area'?: string | undefined;
23
+ flex?: string | undefined;
24
+ order?: string | undefined;
25
+ readonly semanticVersion?: "__GDS_SEM_VER__" | undefined;
26
+ gdsElementName?: string | undefined;
27
+ _isUsingTransitionalStyles?: boolean | undefined;
28
+ _dynamicStylesController?: import("../../../../utils/controllers/dynamic-styles-controller").DynamicStylesController | undefined;
29
+ connectedCallback?: (() => void) | undefined;
30
+ disconnectedCallback?: (() => void) | undefined;
31
+ dispatchStandardEvent?: ((name: string, options?: EventInit) => boolean) | undefined;
32
+ dispatchCustomEvent?: (<T>(name: string, options?: CustomEventInit<T>) => boolean) | undefined;
33
+ readonly renderOptions?: import("lit-html").RenderOptions | undefined;
34
+ readonly renderRoot?: HTMLElement | DocumentFragment | undefined;
35
+ isUpdatePending?: boolean | undefined;
36
+ hasUpdated?: boolean | undefined;
37
+ addController?: ((controller: import("lit").ReactiveController) => void) | undefined;
38
+ removeController?: ((controller: import("lit").ReactiveController) => void) | undefined;
39
+ attributeChangedCallback?: ((name: string, _old: string | null, value: string | null) => void) | undefined;
40
+ requestUpdate?: ((name?: PropertyKey, oldValue?: unknown, options?: import("lit").PropertyDeclaration) => void) | undefined;
41
+ readonly updateComplete?: Promise<boolean> | undefined;
42
+ accessKey?: string | undefined;
43
+ readonly accessKeyLabel?: string | undefined;
44
+ autocapitalize?: string | undefined;
45
+ dir?: string | undefined;
46
+ draggable?: boolean | undefined;
47
+ hidden?: boolean | undefined;
48
+ inert?: boolean | undefined;
49
+ innerText?: string | undefined;
50
+ lang?: string | undefined;
51
+ readonly offsetHeight?: number | undefined;
52
+ readonly offsetLeft?: number | undefined;
53
+ readonly offsetParent?: Element | null | undefined;
54
+ readonly offsetTop?: number | undefined;
55
+ readonly offsetWidth?: number | undefined;
56
+ outerText?: string | undefined;
57
+ popover?: string | null | undefined;
58
+ spellcheck?: boolean | undefined;
59
+ title?: string | undefined;
60
+ translate?: boolean | undefined;
61
+ attachInternals?: (() => ElementInternals) | undefined;
62
+ click?: (() => void) | undefined;
63
+ hidePopover?: (() => void) | undefined;
64
+ showPopover?: (() => void) | undefined;
65
+ togglePopover?: ((force?: boolean) => boolean) | undefined;
66
+ addEventListener?: {
67
+ <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
68
+ (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
69
+ } | undefined;
70
+ removeEventListener?: {
71
+ <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
72
+ (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
73
+ } | undefined;
74
+ readonly attributes?: NamedNodeMap | undefined;
75
+ readonly classList?: DOMTokenList | undefined;
76
+ className?: string | undefined;
77
+ readonly clientHeight?: number | undefined;
78
+ readonly clientLeft?: number | undefined;
79
+ readonly clientTop?: number | undefined;
80
+ readonly clientWidth?: number | undefined;
81
+ id?: string | undefined;
82
+ readonly localName?: string | undefined;
83
+ readonly namespaceURI?: string | null | undefined;
84
+ onfullscreenchange?: ((this: Element, ev: Event) => any) | null | undefined;
85
+ onfullscreenerror?: ((this: Element, ev: Event) => any) | null | undefined;
86
+ outerHTML?: string | undefined;
87
+ readonly ownerDocument?: Document | undefined;
88
+ readonly part?: DOMTokenList | undefined;
89
+ readonly prefix?: string | null | undefined;
90
+ readonly scrollHeight?: number | undefined;
91
+ scrollLeft?: number | undefined;
92
+ scrollTop?: number | undefined;
93
+ readonly scrollWidth?: number | undefined;
94
+ readonly shadowRoot?: ShadowRoot | null | undefined;
95
+ slot?: string | undefined;
96
+ readonly tagName?: string | undefined;
97
+ attachShadow?: ((init: ShadowRootInit) => ShadowRoot) | undefined;
98
+ checkVisibility?: ((options?: CheckVisibilityOptions) => boolean) | undefined;
99
+ closest?: {
100
+ <K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
101
+ <K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
102
+ <K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
103
+ <E extends Element = Element>(selectors: string): E | null;
104
+ } | undefined;
105
+ computedStyleMap?: (() => StylePropertyMapReadOnly) | undefined;
106
+ getAttribute?: ((qualifiedName: string) => string | null) | undefined;
107
+ getAttributeNS?: ((namespace: string | null, localName: string) => string | null) | undefined;
108
+ getAttributeNames?: (() => string[]) | undefined;
109
+ getAttributeNode?: ((qualifiedName: string) => Attr | null) | undefined;
110
+ getAttributeNodeNS?: ((namespace: string | null, localName: string) => Attr | null) | undefined;
111
+ getBoundingClientRect?: (() => DOMRect) | undefined;
112
+ getClientRects?: (() => DOMRectList) | undefined;
113
+ getElementsByClassName?: ((classNames: string) => HTMLCollectionOf<Element>) | undefined;
114
+ getElementsByTagName?: {
115
+ <K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
116
+ <K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
117
+ <K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
118
+ <K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
119
+ (qualifiedName: string): HTMLCollectionOf<Element>;
120
+ } | undefined;
121
+ getElementsByTagNameNS?: {
122
+ (namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
123
+ (namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
124
+ (namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
125
+ (namespace: string | null, localName: string): HTMLCollectionOf<Element>;
126
+ } | undefined;
127
+ hasAttribute?: ((qualifiedName: string) => boolean) | undefined;
128
+ hasAttributeNS?: ((namespace: string | null, localName: string) => boolean) | undefined;
129
+ hasAttributes?: (() => boolean) | undefined;
130
+ hasPointerCapture?: ((pointerId: number) => boolean) | undefined;
131
+ insertAdjacentElement?: ((where: InsertPosition, element: Element) => Element | null) | undefined;
132
+ insertAdjacentHTML?: ((position: InsertPosition, text: string) => void) | undefined;
133
+ insertAdjacentText?: ((where: InsertPosition, data: string) => void) | undefined;
134
+ matches?: ((selectors: string) => boolean) | undefined;
135
+ releasePointerCapture?: ((pointerId: number) => void) | undefined;
136
+ removeAttribute?: ((qualifiedName: string) => void) | undefined;
137
+ removeAttributeNS?: ((namespace: string | null, localName: string) => void) | undefined;
138
+ removeAttributeNode?: ((attr: Attr) => Attr) | undefined;
139
+ requestFullscreen?: ((options?: FullscreenOptions) => Promise<void>) | undefined;
140
+ requestPointerLock?: (() => void) | undefined;
141
+ scroll?: {
142
+ (options?: ScrollToOptions): void;
143
+ (x: number, y: number): void;
144
+ } | undefined;
145
+ scrollBy?: {
146
+ (options?: ScrollToOptions): void;
147
+ (x: number, y: number): void;
148
+ } | undefined;
149
+ scrollIntoView?: ((arg?: boolean | ScrollIntoViewOptions) => void) | undefined;
150
+ scrollTo?: {
151
+ (options?: ScrollToOptions): void;
152
+ (x: number, y: number): void;
153
+ } | undefined;
154
+ setAttribute?: ((qualifiedName: string, value: string) => void) | undefined;
155
+ setAttributeNS?: ((namespace: string | null, qualifiedName: string, value: string) => void) | undefined;
156
+ setAttributeNode?: ((attr: Attr) => Attr | null) | undefined;
157
+ setAttributeNodeNS?: ((attr: Attr) => Attr | null) | undefined;
158
+ setHTMLUnsafe?: ((html: string) => void) | undefined;
159
+ setPointerCapture?: ((pointerId: number) => void) | undefined;
160
+ toggleAttribute?: ((qualifiedName: string, force?: boolean) => boolean) | undefined;
161
+ webkitMatchesSelector?: ((selectors: string) => boolean) | undefined;
162
+ readonly baseURI?: string | undefined;
163
+ readonly childNodes?: NodeListOf<ChildNode> | undefined;
164
+ readonly firstChild?: ChildNode | null | undefined;
165
+ readonly isConnected?: boolean | undefined;
166
+ readonly lastChild?: ChildNode | null | undefined;
167
+ readonly nextSibling?: ChildNode | null | undefined;
168
+ readonly nodeName?: string | undefined;
169
+ readonly nodeType?: number | undefined;
170
+ nodeValue?: string | null | undefined;
171
+ readonly parentElement?: HTMLElement | null | undefined;
172
+ readonly parentNode?: ParentNode | null | undefined;
173
+ readonly previousSibling?: ChildNode | null | undefined;
174
+ textContent?: string | null | undefined;
175
+ appendChild?: (<T extends Node>(node: T) => T) | undefined;
176
+ cloneNode?: ((deep?: boolean) => Node) | undefined;
177
+ compareDocumentPosition?: ((other: Node) => number) | undefined;
178
+ contains?: ((other: Node | null) => boolean) | undefined;
179
+ getRootNode?: ((options?: GetRootNodeOptions) => Node) | undefined;
180
+ hasChildNodes?: (() => boolean) | undefined;
181
+ insertBefore?: (<T extends Node>(node: T, child: Node | null) => T) | undefined;
182
+ isDefaultNamespace?: ((namespace: string | null) => boolean) | undefined;
183
+ isEqualNode?: ((otherNode: Node | null) => boolean) | undefined;
184
+ isSameNode?: ((otherNode: Node | null) => boolean) | undefined;
185
+ lookupNamespaceURI?: ((prefix: string | null) => string | null) | undefined;
186
+ lookupPrefix?: ((namespace: string | null) => string | null) | undefined;
187
+ normalize?: (() => void) | undefined;
188
+ removeChild?: (<T extends Node>(child: T) => T) | undefined;
189
+ replaceChild?: (<T extends Node>(node: Node, child: T) => T) | undefined;
190
+ readonly ELEMENT_NODE?: 1 | undefined;
191
+ readonly ATTRIBUTE_NODE?: 2 | undefined;
192
+ readonly TEXT_NODE?: 3 | undefined;
193
+ readonly CDATA_SECTION_NODE?: 4 | undefined;
194
+ readonly ENTITY_REFERENCE_NODE?: 5 | undefined;
195
+ readonly ENTITY_NODE?: 6 | undefined;
196
+ readonly PROCESSING_INSTRUCTION_NODE?: 7 | undefined;
197
+ readonly COMMENT_NODE?: 8 | undefined;
198
+ readonly DOCUMENT_NODE?: 9 | undefined;
199
+ readonly DOCUMENT_TYPE_NODE?: 10 | undefined;
200
+ readonly DOCUMENT_FRAGMENT_NODE?: 11 | undefined;
201
+ readonly NOTATION_NODE?: 12 | undefined;
202
+ readonly DOCUMENT_POSITION_DISCONNECTED?: 1 | undefined;
203
+ readonly DOCUMENT_POSITION_PRECEDING?: 2 | undefined;
204
+ readonly DOCUMENT_POSITION_FOLLOWING?: 4 | undefined;
205
+ readonly DOCUMENT_POSITION_CONTAINS?: 8 | undefined;
206
+ readonly DOCUMENT_POSITION_CONTAINED_BY?: 16 | undefined;
207
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC?: 32 | undefined;
208
+ dispatchEvent?: ((event: Event) => boolean) | undefined;
209
+ ariaAtomic?: string | null | undefined;
210
+ ariaAutoComplete?: string | null | undefined;
211
+ ariaBrailleLabel?: string | null | undefined;
212
+ ariaBrailleRoleDescription?: string | null | undefined;
213
+ ariaBusy?: string | null | undefined;
214
+ ariaChecked?: string | null | undefined;
215
+ ariaColCount?: string | null | undefined;
216
+ ariaColIndex?: string | null | undefined;
217
+ ariaColSpan?: string | null | undefined;
218
+ ariaCurrent?: string | null | undefined;
219
+ ariaDescription?: string | null | undefined;
220
+ ariaDisabled?: string | null | undefined;
221
+ ariaExpanded?: string | null | undefined;
222
+ ariaHasPopup?: string | null | undefined;
223
+ ariaHidden?: string | null | undefined;
224
+ ariaInvalid?: string | null | undefined;
225
+ ariaKeyShortcuts?: string | null | undefined;
226
+ ariaLabel?: string | null | undefined;
227
+ ariaLevel?: string | null | undefined;
228
+ ariaLive?: string | null | undefined;
229
+ ariaModal?: string | null | undefined;
230
+ ariaMultiLine?: string | null | undefined;
231
+ ariaMultiSelectable?: string | null | undefined;
232
+ ariaOrientation?: string | null | undefined;
233
+ ariaPlaceholder?: string | null | undefined;
234
+ ariaPosInSet?: string | null | undefined;
235
+ ariaPressed?: string | null | undefined;
236
+ ariaReadOnly?: string | null | undefined;
237
+ ariaRequired?: string | null | undefined;
238
+ ariaRoleDescription?: string | null | undefined;
239
+ ariaRowCount?: string | null | undefined;
240
+ ariaRowIndex?: string | null | undefined;
241
+ ariaRowSpan?: string | null | undefined;
242
+ ariaSelected?: string | null | undefined;
243
+ ariaSetSize?: string | null | undefined;
244
+ ariaSort?: string | null | undefined;
245
+ ariaValueMax?: string | null | undefined;
246
+ ariaValueMin?: string | null | undefined;
247
+ ariaValueNow?: string | null | undefined;
248
+ ariaValueText?: string | null | undefined;
249
+ role?: string | null | undefined;
250
+ animate?: ((keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions) => Animation) | undefined;
251
+ getAnimations?: ((options?: GetAnimationsOptions) => Animation[]) | undefined;
252
+ after?: ((...nodes: (Node | string)[]) => void) | undefined;
253
+ before?: ((...nodes: (Node | string)[]) => void) | undefined;
254
+ remove?: (() => void) | undefined;
255
+ replaceWith?: ((...nodes: (Node | string)[]) => void) | undefined;
256
+ innerHTML?: string | undefined;
257
+ readonly nextElementSibling?: Element | null | undefined;
258
+ readonly previousElementSibling?: Element | null | undefined;
259
+ readonly childElementCount?: number | undefined;
260
+ readonly children?: HTMLCollection | undefined;
261
+ readonly firstElementChild?: Element | null | undefined;
262
+ readonly lastElementChild?: Element | null | undefined;
263
+ append?: ((...nodes: (Node | string)[]) => void) | undefined;
264
+ prepend?: ((...nodes: (Node | string)[]) => void) | undefined;
265
+ querySelector?: {
266
+ <K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
267
+ <K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
268
+ <K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
269
+ <K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
270
+ <E extends Element = Element>(selectors: string): E | null;
271
+ } | undefined;
272
+ querySelectorAll?: {
273
+ <K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
274
+ <K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
275
+ <K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
276
+ <K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
277
+ <E extends Element = Element>(selectors: string): NodeListOf<E>;
278
+ } | undefined;
279
+ replaceChildren?: ((...nodes: (Node | string)[]) => void) | undefined;
280
+ readonly assignedSlot?: HTMLSlotElement | null | undefined;
281
+ readonly attributeStyleMap?: StylePropertyMap | undefined;
282
+ readonly style?: CSSStyleDeclaration | undefined;
283
+ contentEditable?: string | undefined;
284
+ enterKeyHint?: string | undefined;
285
+ inputMode?: string | undefined;
286
+ readonly isContentEditable?: boolean | undefined;
287
+ onabort?: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null | undefined;
288
+ onanimationcancel?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
289
+ onanimationend?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
290
+ onanimationiteration?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
291
+ onanimationstart?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
292
+ onauxclick?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
293
+ onbeforeinput?: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null | undefined;
294
+ onbeforetoggle?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
295
+ onblur?: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null | undefined;
296
+ oncancel?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
297
+ oncanplay?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
298
+ oncanplaythrough?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
299
+ onchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
300
+ onclick?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
301
+ onclose?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
302
+ oncontextmenu?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
303
+ oncopy?: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null | undefined;
304
+ oncuechange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
305
+ oncut?: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null | undefined;
306
+ ondblclick?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
307
+ ondrag?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
308
+ ondragend?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
309
+ ondragenter?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
310
+ ondragleave?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
311
+ ondragover?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
312
+ ondragstart?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
313
+ ondrop?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
314
+ ondurationchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
315
+ onemptied?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
316
+ onended?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
317
+ onerror?: OnErrorEventHandler | undefined;
318
+ onfocus?: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null | undefined;
319
+ onformdata?: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null | undefined;
320
+ ongotpointercapture?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
321
+ oninput?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
322
+ oninvalid?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
323
+ onkeydown?: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null | undefined;
324
+ onkeypress?: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null | undefined;
325
+ onkeyup?: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null | undefined;
326
+ onload?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
327
+ onloadeddata?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
328
+ onloadedmetadata?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
329
+ onloadstart?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
330
+ onlostpointercapture?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
331
+ onmousedown?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
332
+ onmouseenter?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
333
+ onmouseleave?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
334
+ onmousemove?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
335
+ onmouseout?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
336
+ onmouseover?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
337
+ onmouseup?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
338
+ onpaste?: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null | undefined;
339
+ onpause?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
340
+ onplay?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
341
+ onplaying?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
342
+ onpointercancel?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
343
+ onpointerdown?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
344
+ onpointerenter?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
345
+ onpointerleave?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
346
+ onpointermove?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
347
+ onpointerout?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
348
+ onpointerover?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
349
+ onpointerup?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
350
+ onprogress?: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null | undefined;
351
+ onratechange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
352
+ onreset?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
353
+ onresize?: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null | undefined;
354
+ onscroll?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
355
+ onscrollend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
356
+ onsecuritypolicyviolation?: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null | undefined;
357
+ onseeked?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
358
+ onseeking?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
359
+ onselect?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
360
+ onselectionchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
361
+ onselectstart?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
362
+ onslotchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
363
+ onstalled?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
364
+ onsubmit?: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null | undefined;
365
+ onsuspend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
366
+ ontimeupdate?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
367
+ ontoggle?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
368
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
369
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
370
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
371
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
372
+ ontransitioncancel?: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null | undefined;
373
+ ontransitionend?: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null | undefined;
374
+ ontransitionrun?: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null | undefined;
375
+ ontransitionstart?: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null | undefined;
376
+ onvolumechange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
377
+ onwaiting?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
378
+ onwebkitanimationend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
379
+ onwebkitanimationiteration?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
380
+ onwebkitanimationstart?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
381
+ onwebkittransitionend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
382
+ onwheel?: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null | undefined;
383
+ autofocus?: boolean | undefined;
384
+ readonly dataset?: DOMStringMap | undefined;
385
+ nonce?: string | undefined;
386
+ tabIndex?: number | undefined;
387
+ blur?: (() => void) | undefined;
388
+ focus?: ((options?: FocusOptions) => void) | undefined;
389
+ }, "children"> & {
390
+ children?: import("react").ReactNode;
391
+ } & Omit<import("react").HTMLAttributes<HTMLElement>, "children"> & import("react").RefAttributes<HTMLElement>, string | import("react").JSXElementConstructor<any>>;
392
+ displayName: string;
393
+ };
@@ -0,0 +1,16 @@
1
+ import "../../../../chunks/chunk.QU3DSPNU.js";
2
+ import { createElement } from "react";
3
+ import { IconBrandSwishWord as IconBrandSwishWordClass } from "../../../../components/icon/icons/brand-swish-word.component.js";
4
+ import { getReactComponent } from "../../../../utils/react.js";
5
+ const IconBrandSwishWord = (props) => {
6
+ IconBrandSwishWordClass.define();
7
+ const JSXElement = getReactComponent(
8
+ "gds-icon-brand-swish-word"
9
+ );
10
+ const propsWithClass = { ...props, class: props.className, ref: props.ref };
11
+ return createElement(JSXElement, propsWithClass);
12
+ };
13
+ IconBrandSwishWord.displayName = "IconBrandSwishWord";
14
+ export {
15
+ IconBrandSwishWord
16
+ };
@@ -2,8 +2,8 @@ export * from './alert/index.js';
2
2
  export * from './badge/index.js';
3
3
  export * from './blur/index.js';
4
4
  export * from './breadcrumbs/index.js';
5
- export * from './calendar/index.js';
6
5
  export * from './button/index.js';
6
+ export * from './calendar/index.js';
7
7
  export * from './card/index.js';
8
8
  export * from './card-linked/index.js';
9
9
  export * from './checkbox/index.js';
@@ -43,12 +43,12 @@ export * from './theme/index.js';
43
43
  export * from './video/index.js';
44
44
  export * from './card-pattern-01/index.js';
45
45
  export * from './breadcrumb/index.js';
46
- export * from './checkbox-group/index.js';
47
46
  export * from './icons/icon-details/index.js';
47
+ export * from './formatted-account/index.js';
48
48
  export * from './filter-chip/index.js';
49
+ export * from './checkbox-group/index.js';
49
50
  export * from './formatted-date/index.js';
50
51
  export * from './formatted-number/index.js';
51
- export * from './formatted-account/index.js';
52
52
  export * from './radio-group/index.js';
53
53
  export * from './segment/index.js';
54
54
  export * from './sensitive-account/index.js';
@@ -121,6 +121,7 @@ export * from './icons/icon-brand-rss-feed/index.js';
121
121
  export * from './icons/icon-brand-seb/index.js';
122
122
  export * from './icons/icon-brand-spotify/index.js';
123
123
  export * from './icons/icon-brand-storybook/index.js';
124
+ export * from './icons/icon-brand-swish-word/index.js';
124
125
  export * from './icons/icon-brand-x/index.js';
125
126
  export * from './icons/icon-brush/index.js';
126
127
  export * from './icons/icon-bubble-annotation/index.js';
@@ -2,8 +2,8 @@ export * from "./alert/index.js";
2
2
  export * from "./badge/index.js";
3
3
  export * from "./blur/index.js";
4
4
  export * from "./breadcrumbs/index.js";
5
- export * from "./calendar/index.js";
6
5
  export * from "./button/index.js";
6
+ export * from "./calendar/index.js";
7
7
  export * from "./card/index.js";
8
8
  export * from "./card-linked/index.js";
9
9
  export * from "./checkbox/index.js";
@@ -43,12 +43,12 @@ export * from "./theme/index.js";
43
43
  export * from "./video/index.js";
44
44
  export * from "./card-pattern-01/index.js";
45
45
  export * from "./breadcrumb/index.js";
46
- export * from "./checkbox-group/index.js";
47
46
  export * from "./icons/icon-details/index.js";
47
+ export * from "./formatted-account/index.js";
48
48
  export * from "./filter-chip/index.js";
49
+ export * from "./checkbox-group/index.js";
49
50
  export * from "./formatted-date/index.js";
50
51
  export * from "./formatted-number/index.js";
51
- export * from "./formatted-account/index.js";
52
52
  export * from "./radio-group/index.js";
53
53
  export * from "./segment/index.js";
54
54
  export * from "./sensitive-account/index.js";
@@ -121,6 +121,7 @@ export * from "./icons/icon-brand-rss-feed/index.js";
121
121
  export * from "./icons/icon-brand-seb/index.js";
122
122
  export * from "./icons/icon-brand-spotify/index.js";
123
123
  export * from "./icons/icon-brand-storybook/index.js";
124
+ export * from "./icons/icon-brand-swish-word/index.js";
124
125
  export * from "./icons/icon-brand-x/index.js";
125
126
  export * from "./icons/icon-brush/index.js";
126
127
  export * from "./icons/icon-bubble-annotation/index.js";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sebgroup/green-core",
3
3
  "description": "A carefully crafted set of Web Components, laying the foundation of the Green Design System.",
4
- "version": "2.32.0",
4
+ "version": "2.33.0",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
7
7
  "type": "module",
@@ -386,6 +386,7 @@
386
386
  "./components/icon/icons/bubble-annotation.js",
387
387
  "./components/icon/icons/brush.js",
388
388
  "./components/icon/icons/brand-x.js",
389
+ "./components/icon/icons/brand-swish-word.js",
389
390
  "./components/icon/icons/brand-storybook.js",
390
391
  "./components/icon/icons/brand-spotify.js",
391
392
  "./components/icon/icons/brand-seb.js",
@@ -1,6 +1,6 @@
1
1
  import "../../chunks/chunk.QU3DSPNU.js";
2
2
  import { html as litHtml } from "lit";
3
- const VER_SUFFIX = "-01f2ad";
3
+ const VER_SUFFIX = "-9f19f2";
4
4
  class ScopedElementRegistry {
5
5
  static get instance() {
6
6
  if (!globalThis.__gdsElementLookupTable?.[VER_SUFFIX])