@sebgroup/green-core 2.19.0 → 2.20.0-rc.20251215154321804

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 (64) hide show
  1. package/components/badge/badge.component.d.ts +0 -23
  2. package/components/badge/badge.component.js +18 -105
  3. package/components/badge/badge.styles.js +96 -2
  4. package/components/checkbox/checkbox.component.js +24 -22
  5. package/components/checkbox/checkbox.styles.js +0 -8
  6. package/components/dropdown/dropdown.component.js +4 -1
  7. package/components/index.d.ts +2 -0
  8. package/components/index.js +2 -0
  9. package/components/input/input.styles.js +10 -1
  10. package/components/pagination/index.d.ts +1 -0
  11. package/components/pagination/index.js +1 -0
  12. package/components/pagination/pagination.component.d.ts +82 -0
  13. package/components/pagination/pagination.component.js +441 -0
  14. package/components/pagination/pagination.d.ts +2 -0
  15. package/components/pagination/pagination.js +6 -0
  16. package/components/pagination/pagination.styles.d.ts +1 -0
  17. package/components/pagination/pagination.styles.js +19 -0
  18. package/components/table/index.d.ts +2 -0
  19. package/components/table/index.js +6 -0
  20. package/components/table/table.component.d.ts +140 -0
  21. package/components/table/table.component.js +1090 -0
  22. package/components/table/table.d.ts +2 -0
  23. package/components/table/table.imports.d.ts +6 -0
  24. package/components/table/table.imports.js +63 -0
  25. package/components/table/table.js +6 -0
  26. package/components/table/table.stories.data.d.ts +53 -0
  27. package/components/table/table.stories.data.js +401 -0
  28. package/components/table/table.styles.d.ts +1 -0
  29. package/components/table/table.styles.js +788 -0
  30. package/components/table/table.types.d.ts +155 -0
  31. package/components/table/table.types.js +24 -0
  32. package/custom-elements.json +12280 -10492
  33. package/gds-element.js +1 -1
  34. package/generated/locales/da.d.ts +32 -0
  35. package/generated/locales/da.js +32 -0
  36. package/generated/locales/de.d.ts +32 -0
  37. package/generated/locales/de.js +32 -0
  38. package/generated/locales/fi.d.ts +32 -0
  39. package/generated/locales/fi.js +32 -0
  40. package/generated/locales/fr.d.ts +32 -0
  41. package/generated/locales/fr.js +32 -0
  42. package/generated/locales/it.d.ts +32 -0
  43. package/generated/locales/it.js +32 -0
  44. package/generated/locales/nl.d.ts +32 -0
  45. package/generated/locales/nl.js +32 -0
  46. package/generated/locales/no.d.ts +32 -0
  47. package/generated/locales/no.js +33 -1
  48. package/generated/locales/sv.d.ts +32 -0
  49. package/generated/locales/sv.js +32 -0
  50. package/generated/react/index.d.ts +8 -6
  51. package/generated/react/index.js +8 -6
  52. package/generated/react/input/index.d.ts +1 -1
  53. package/generated/react/pagination/index.d.ts +395 -0
  54. package/generated/react/pagination/index.js +13 -0
  55. package/generated/react/table/index.d.ts +395 -0
  56. package/generated/react/table/index.js +13 -0
  57. package/package.json +8 -1
  58. package/primitives/field-base/field-base.component.d.ts +1 -0
  59. package/primitives/field-base/field-base.component.js +8 -0
  60. package/primitives/field-base/field-base.styles.js +9 -1
  61. package/pure.d.ts +2 -0
  62. package/pure.js +2 -0
  63. package/shared-styles/rbcb-toggle.style.js +41 -12
  64. package/utils/helpers/custom-element-scoping.js +1 -1
@@ -27,14 +27,16 @@ export * from './input/index.js';
27
27
  export * from './link/index.js';
28
28
  export * from './mask/index.js';
29
29
  export * from './menu-button/index.js';
30
- export * from './backdrop/index.js';
31
- export * from './popover/index.js';
30
+ export * from './pagination/index.js';
32
31
  export * from './radio/index.js';
33
32
  export * from './rich-text/index.js';
33
+ export * from './backdrop/index.js';
34
+ export * from './popover/index.js';
34
35
  export * from './segmented-control/index.js';
35
36
  export * from './select/index.js';
36
37
  export * from './signal/index.js';
37
38
  export * from './spinner/index.js';
39
+ export * from './table/index.js';
38
40
  export * from './text/index.js';
39
41
  export * from './textarea/index.js';
40
42
  export * from './theme/index.js';
@@ -52,10 +54,6 @@ export * from './filter-chip/index.js';
52
54
  export * from './formatted-account/index.js';
53
55
  export * from './formatted-date/index.js';
54
56
  export * from './formatted-number/index.js';
55
- export * from './radio-group/index.js';
56
- export * from './sensitive-account/index.js';
57
- export * from './sensitive-date/index.js';
58
- export * from './segment/index.js';
59
57
  export * from './icons/icon-ai/index.js';
60
58
  export * from './icons/icon-airplane-up/index.js';
61
59
  export * from './icons/icon-archive/index.js';
@@ -389,4 +387,8 @@ export * from './icons/icon-youtube/index.js';
389
387
  export * from './icons/icon-zap/index.js';
390
388
  export * from './icons/icon-zoom-in/index.js';
391
389
  export * from './icons/icon-zoom-out/index.js';
390
+ export * from './radio-group/index.js';
391
+ export * from './segment/index.js';
392
+ export * from './sensitive-account/index.js';
393
+ export * from './sensitive-date/index.js';
392
394
  export * from './sensitive-number/index.js';
@@ -27,14 +27,16 @@ export * from "./input/index.js";
27
27
  export * from "./link/index.js";
28
28
  export * from "./mask/index.js";
29
29
  export * from "./menu-button/index.js";
30
- export * from "./backdrop/index.js";
31
- export * from "./popover/index.js";
30
+ export * from "./pagination/index.js";
32
31
  export * from "./radio/index.js";
33
32
  export * from "./rich-text/index.js";
33
+ export * from "./backdrop/index.js";
34
+ export * from "./popover/index.js";
34
35
  export * from "./segmented-control/index.js";
35
36
  export * from "./select/index.js";
36
37
  export * from "./signal/index.js";
37
38
  export * from "./spinner/index.js";
39
+ export * from "./table/index.js";
38
40
  export * from "./text/index.js";
39
41
  export * from "./textarea/index.js";
40
42
  export * from "./theme/index.js";
@@ -52,10 +54,6 @@ export * from "./filter-chip/index.js";
52
54
  export * from "./formatted-account/index.js";
53
55
  export * from "./formatted-date/index.js";
54
56
  export * from "./formatted-number/index.js";
55
- export * from "./radio-group/index.js";
56
- export * from "./sensitive-account/index.js";
57
- export * from "./sensitive-date/index.js";
58
- export * from "./segment/index.js";
59
57
  export * from "./icons/icon-ai/index.js";
60
58
  export * from "./icons/icon-airplane-up/index.js";
61
59
  export * from "./icons/icon-archive/index.js";
@@ -389,4 +387,8 @@ export * from "./icons/icon-youtube/index.js";
389
387
  export * from "./icons/icon-zap/index.js";
390
388
  export * from "./icons/icon-zoom-in/index.js";
391
389
  export * from "./icons/icon-zoom-out/index.js";
390
+ export * from "./radio-group/index.js";
391
+ export * from "./segment/index.js";
392
+ export * from "./sensitive-account/index.js";
393
+ export * from "./sensitive-date/index.js";
392
394
  export * from "./sensitive-number/index.js";
@@ -24,7 +24,7 @@ export declare const GdsInput: (props: React.ComponentProps<ReturnType<typeof ge
24
24
  maxlength?: number | undefined;
25
25
  size?: "small" | "large" | undefined;
26
26
  plain?: boolean | undefined;
27
- type?: "number" | "search" | "time" | "text" | "date" | "email" | "tel" | "url" | "datetime-local" | "password" | undefined;
27
+ type?: "number" | "search" | "time" | "text" | "date" | "email" | "datetime-local" | "password" | "tel" | "url" | undefined;
28
28
  min?: (number | string) | undefined;
29
29
  max?: (number | string) | undefined;
30
30
  step?: (number | "any") | undefined;
@@ -0,0 +1,395 @@
1
+ import { getReactComponent } from "../../../utils/react";
2
+ import { GdsPagination as GdsPaginationClass } from "../../../components/pagination/pagination.component";
3
+ export declare const GdsPagination: (props: React.ComponentProps<ReturnType<typeof getReactComponent<GdsPaginationClass>>>) => import("react").ReactElement<Omit<{
4
+ page?: number | undefined;
5
+ rows?: number | undefined;
6
+ total?: number | undefined;
7
+ options?: number[] | undefined;
8
+ jump?: boolean | undefined;
9
+ density?: "compact" | "comfortable" | "spacious" | undefined;
10
+ label?: string | undefined;
11
+ render?: (() => any) | undefined;
12
+ margin?: string | undefined;
13
+ 'margin-inline'?: string | undefined;
14
+ 'margin-block'?: string | undefined;
15
+ width?: string | undefined;
16
+ 'min-width'?: string | undefined;
17
+ 'max-width'?: string | undefined;
18
+ 'inline-size'?: string | undefined;
19
+ 'min-inline-size'?: string | undefined;
20
+ 'max-inline-size'?: string | undefined;
21
+ 'align-self'?: string | undefined;
22
+ 'justify-self'?: string | undefined;
23
+ 'place-self'?: string | undefined;
24
+ 'grid-column'?: string | undefined;
25
+ 'grid-row'?: string | undefined;
26
+ 'grid-area'?: string | undefined;
27
+ flex?: string | undefined;
28
+ order?: string | undefined;
29
+ readonly semanticVersion?: "__GDS_SEM_VER__" | undefined;
30
+ gdsElementName?: string | undefined;
31
+ _isUsingTransitionalStyles?: boolean | undefined;
32
+ _dynamicStylesController?: import("../../../utils/controllers/dynamic-styles-controller").DynamicStylesController | undefined;
33
+ connectedCallback?: (() => void) | undefined;
34
+ disconnectedCallback?: (() => void) | undefined;
35
+ dispatchStandardEvent?: ((name: string, options?: EventInit) => boolean) | undefined;
36
+ dispatchCustomEvent?: (<T>(name: string, options?: CustomEventInit<T>) => boolean) | undefined;
37
+ readonly renderOptions?: import("lit-html").RenderOptions | undefined;
38
+ readonly renderRoot?: HTMLElement | DocumentFragment | undefined;
39
+ isUpdatePending?: boolean | undefined;
40
+ hasUpdated?: boolean | undefined;
41
+ addController?: ((controller: import("lit").ReactiveController) => void) | undefined;
42
+ removeController?: ((controller: import("lit").ReactiveController) => void) | undefined;
43
+ attributeChangedCallback?: ((name: string, _old: string | null, value: string | null) => void) | undefined;
44
+ requestUpdate?: ((name?: PropertyKey, oldValue?: unknown, options?: import("lit").PropertyDeclaration) => void) | undefined;
45
+ readonly updateComplete?: Promise<boolean> | undefined;
46
+ accessKey?: string | undefined;
47
+ readonly accessKeyLabel?: string | undefined;
48
+ autocapitalize?: string | undefined;
49
+ dir?: string | undefined;
50
+ draggable?: boolean | undefined;
51
+ hidden?: boolean | undefined;
52
+ inert?: boolean | undefined;
53
+ innerText?: string | undefined;
54
+ lang?: string | undefined;
55
+ readonly offsetHeight?: number | undefined;
56
+ readonly offsetLeft?: number | undefined;
57
+ readonly offsetParent?: Element | null | undefined;
58
+ readonly offsetTop?: number | undefined;
59
+ readonly offsetWidth?: number | undefined;
60
+ outerText?: string | undefined;
61
+ popover?: string | null | undefined;
62
+ spellcheck?: boolean | undefined;
63
+ title?: string | undefined;
64
+ translate?: boolean | undefined;
65
+ attachInternals?: (() => ElementInternals) | undefined;
66
+ click?: (() => void) | undefined;
67
+ hidePopover?: (() => void) | undefined;
68
+ showPopover?: (() => void) | undefined;
69
+ togglePopover?: ((force?: boolean) => boolean) | undefined;
70
+ addEventListener?: {
71
+ <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
72
+ (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
73
+ } | undefined;
74
+ removeEventListener?: {
75
+ <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
76
+ (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
77
+ } | undefined;
78
+ readonly attributes?: NamedNodeMap | undefined;
79
+ readonly classList?: DOMTokenList | undefined;
80
+ className?: string | undefined;
81
+ readonly clientHeight?: number | undefined;
82
+ readonly clientLeft?: number | undefined;
83
+ readonly clientTop?: number | undefined;
84
+ readonly clientWidth?: number | undefined;
85
+ id?: string | undefined;
86
+ readonly localName?: string | undefined;
87
+ readonly namespaceURI?: string | null | undefined;
88
+ onfullscreenchange?: ((this: Element, ev: Event) => any) | null | undefined;
89
+ onfullscreenerror?: ((this: Element, ev: Event) => any) | null | undefined;
90
+ outerHTML?: string | undefined;
91
+ readonly ownerDocument?: Document | undefined;
92
+ readonly part?: DOMTokenList | undefined;
93
+ readonly prefix?: string | null | undefined;
94
+ readonly scrollHeight?: number | undefined;
95
+ scrollLeft?: number | undefined;
96
+ scrollTop?: number | undefined;
97
+ readonly scrollWidth?: number | undefined;
98
+ readonly shadowRoot?: ShadowRoot | null | undefined;
99
+ slot?: string | undefined;
100
+ readonly tagName?: string | undefined;
101
+ attachShadow?: ((init: ShadowRootInit) => ShadowRoot) | undefined;
102
+ checkVisibility?: ((options?: CheckVisibilityOptions) => boolean) | undefined;
103
+ closest?: {
104
+ <K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
105
+ <K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
106
+ <K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
107
+ <E extends Element = Element>(selectors: string): E | null;
108
+ } | undefined;
109
+ computedStyleMap?: (() => StylePropertyMapReadOnly) | undefined;
110
+ getAttribute?: ((qualifiedName: string) => string | null) | undefined;
111
+ getAttributeNS?: ((namespace: string | null, localName: string) => string | null) | undefined;
112
+ getAttributeNames?: (() => string[]) | undefined;
113
+ getAttributeNode?: ((qualifiedName: string) => Attr | null) | undefined;
114
+ getAttributeNodeNS?: ((namespace: string | null, localName: string) => Attr | null) | undefined;
115
+ getBoundingClientRect?: (() => DOMRect) | undefined;
116
+ getClientRects?: (() => DOMRectList) | undefined;
117
+ getElementsByClassName?: ((classNames: string) => HTMLCollectionOf<Element>) | undefined;
118
+ getElementsByTagName?: {
119
+ <K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
120
+ <K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
121
+ <K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
122
+ <K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
123
+ (qualifiedName: string): HTMLCollectionOf<Element>;
124
+ } | undefined;
125
+ getElementsByTagNameNS?: {
126
+ (namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
127
+ (namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
128
+ (namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
129
+ (namespace: string | null, localName: string): HTMLCollectionOf<Element>;
130
+ } | undefined;
131
+ hasAttribute?: ((qualifiedName: string) => boolean) | undefined;
132
+ hasAttributeNS?: ((namespace: string | null, localName: string) => boolean) | undefined;
133
+ hasAttributes?: (() => boolean) | undefined;
134
+ hasPointerCapture?: ((pointerId: number) => boolean) | undefined;
135
+ insertAdjacentElement?: ((where: InsertPosition, element: Element) => Element | null) | undefined;
136
+ insertAdjacentHTML?: ((position: InsertPosition, text: string) => void) | undefined;
137
+ insertAdjacentText?: ((where: InsertPosition, data: string) => void) | undefined;
138
+ matches?: ((selectors: string) => boolean) | undefined;
139
+ releasePointerCapture?: ((pointerId: number) => void) | undefined;
140
+ removeAttribute?: ((qualifiedName: string) => void) | undefined;
141
+ removeAttributeNS?: ((namespace: string | null, localName: string) => void) | undefined;
142
+ removeAttributeNode?: ((attr: Attr) => Attr) | undefined;
143
+ requestFullscreen?: ((options?: FullscreenOptions) => Promise<void>) | undefined;
144
+ requestPointerLock?: (() => void) | undefined;
145
+ scroll?: {
146
+ (options?: ScrollToOptions): void;
147
+ (x: number, y: number): void;
148
+ } | undefined;
149
+ scrollBy?: {
150
+ (options?: ScrollToOptions): void;
151
+ (x: number, y: number): void;
152
+ } | undefined;
153
+ scrollIntoView?: ((arg?: boolean | ScrollIntoViewOptions) => void) | undefined;
154
+ scrollTo?: {
155
+ (options?: ScrollToOptions): void;
156
+ (x: number, y: number): void;
157
+ } | undefined;
158
+ setAttribute?: ((qualifiedName: string, value: string) => void) | undefined;
159
+ setAttributeNS?: ((namespace: string | null, qualifiedName: string, value: string) => void) | undefined;
160
+ setAttributeNode?: ((attr: Attr) => Attr | null) | undefined;
161
+ setAttributeNodeNS?: ((attr: Attr) => Attr | null) | undefined;
162
+ setHTMLUnsafe?: ((html: string) => void) | undefined;
163
+ setPointerCapture?: ((pointerId: number) => void) | undefined;
164
+ toggleAttribute?: ((qualifiedName: string, force?: boolean) => boolean) | undefined;
165
+ webkitMatchesSelector?: ((selectors: string) => boolean) | undefined;
166
+ readonly baseURI?: string | undefined;
167
+ readonly childNodes?: NodeListOf<ChildNode> | undefined;
168
+ readonly firstChild?: ChildNode | null | undefined;
169
+ readonly isConnected?: boolean | undefined;
170
+ readonly lastChild?: ChildNode | null | undefined;
171
+ readonly nextSibling?: ChildNode | null | undefined;
172
+ readonly nodeName?: string | undefined;
173
+ readonly nodeType?: number | undefined;
174
+ nodeValue?: string | null | undefined;
175
+ readonly parentElement?: HTMLElement | null | undefined;
176
+ readonly parentNode?: ParentNode | null | undefined;
177
+ readonly previousSibling?: ChildNode | null | undefined;
178
+ textContent?: string | null | undefined;
179
+ appendChild?: (<T extends Node>(node: T) => T) | undefined;
180
+ cloneNode?: ((deep?: boolean) => Node) | undefined;
181
+ compareDocumentPosition?: ((other: Node) => number) | undefined;
182
+ contains?: ((other: Node | null) => boolean) | undefined;
183
+ getRootNode?: ((options?: GetRootNodeOptions) => Node) | undefined;
184
+ hasChildNodes?: (() => boolean) | undefined;
185
+ insertBefore?: (<T extends Node>(node: T, child: Node | null) => T) | undefined;
186
+ isDefaultNamespace?: ((namespace: string | null) => boolean) | undefined;
187
+ isEqualNode?: ((otherNode: Node | null) => boolean) | undefined;
188
+ isSameNode?: ((otherNode: Node | null) => boolean) | undefined;
189
+ lookupNamespaceURI?: ((prefix: string | null) => string | null) | undefined;
190
+ lookupPrefix?: ((namespace: string | null) => string | null) | undefined;
191
+ normalize?: (() => void) | undefined;
192
+ removeChild?: (<T extends Node>(child: T) => T) | undefined;
193
+ replaceChild?: (<T extends Node>(node: Node, child: T) => T) | undefined;
194
+ readonly ELEMENT_NODE?: 1 | undefined;
195
+ readonly ATTRIBUTE_NODE?: 2 | undefined;
196
+ readonly TEXT_NODE?: 3 | undefined;
197
+ readonly CDATA_SECTION_NODE?: 4 | undefined;
198
+ readonly ENTITY_REFERENCE_NODE?: 5 | undefined;
199
+ readonly ENTITY_NODE?: 6 | undefined;
200
+ readonly PROCESSING_INSTRUCTION_NODE?: 7 | undefined;
201
+ readonly COMMENT_NODE?: 8 | undefined;
202
+ readonly DOCUMENT_NODE?: 9 | undefined;
203
+ readonly DOCUMENT_TYPE_NODE?: 10 | undefined;
204
+ readonly DOCUMENT_FRAGMENT_NODE?: 11 | undefined;
205
+ readonly NOTATION_NODE?: 12 | undefined;
206
+ readonly DOCUMENT_POSITION_DISCONNECTED?: 1 | undefined;
207
+ readonly DOCUMENT_POSITION_PRECEDING?: 2 | undefined;
208
+ readonly DOCUMENT_POSITION_FOLLOWING?: 4 | undefined;
209
+ readonly DOCUMENT_POSITION_CONTAINS?: 8 | undefined;
210
+ readonly DOCUMENT_POSITION_CONTAINED_BY?: 16 | undefined;
211
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC?: 32 | undefined;
212
+ dispatchEvent?: ((event: Event) => boolean) | undefined;
213
+ ariaAtomic?: string | null | undefined;
214
+ ariaAutoComplete?: string | null | undefined;
215
+ ariaBrailleLabel?: string | null | undefined;
216
+ ariaBrailleRoleDescription?: string | null | undefined;
217
+ ariaBusy?: string | null | undefined;
218
+ ariaChecked?: string | null | undefined;
219
+ ariaColCount?: string | null | undefined;
220
+ ariaColIndex?: string | null | undefined;
221
+ ariaColSpan?: string | null | undefined;
222
+ ariaCurrent?: string | null | undefined;
223
+ ariaDescription?: string | null | undefined;
224
+ ariaDisabled?: string | null | undefined;
225
+ ariaExpanded?: string | null | undefined;
226
+ ariaHasPopup?: string | null | undefined;
227
+ ariaHidden?: string | null | undefined;
228
+ ariaInvalid?: string | null | undefined;
229
+ ariaKeyShortcuts?: string | null | undefined;
230
+ ariaLabel?: string | null | undefined;
231
+ ariaLevel?: string | null | undefined;
232
+ ariaLive?: string | null | undefined;
233
+ ariaModal?: string | null | undefined;
234
+ ariaMultiLine?: string | null | undefined;
235
+ ariaMultiSelectable?: string | null | undefined;
236
+ ariaOrientation?: string | null | undefined;
237
+ ariaPlaceholder?: string | null | undefined;
238
+ ariaPosInSet?: string | null | undefined;
239
+ ariaPressed?: string | null | undefined;
240
+ ariaReadOnly?: string | null | undefined;
241
+ ariaRequired?: string | null | undefined;
242
+ ariaRoleDescription?: string | null | undefined;
243
+ ariaRowCount?: string | null | undefined;
244
+ ariaRowIndex?: string | null | undefined;
245
+ ariaRowSpan?: string | null | undefined;
246
+ ariaSelected?: string | null | undefined;
247
+ ariaSetSize?: string | null | undefined;
248
+ ariaSort?: string | null | undefined;
249
+ ariaValueMax?: string | null | undefined;
250
+ ariaValueMin?: string | null | undefined;
251
+ ariaValueNow?: string | null | undefined;
252
+ ariaValueText?: string | null | undefined;
253
+ role?: string | null | undefined;
254
+ animate?: ((keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions) => Animation) | undefined;
255
+ getAnimations?: ((options?: GetAnimationsOptions) => Animation[]) | undefined;
256
+ after?: ((...nodes: (Node | string)[]) => void) | undefined;
257
+ before?: ((...nodes: (Node | string)[]) => void) | undefined;
258
+ remove?: (() => void) | undefined;
259
+ replaceWith?: ((...nodes: (Node | string)[]) => void) | undefined;
260
+ innerHTML?: string | undefined;
261
+ readonly nextElementSibling?: Element | null | undefined;
262
+ readonly previousElementSibling?: Element | null | undefined;
263
+ readonly childElementCount?: number | undefined;
264
+ readonly children?: HTMLCollection | undefined;
265
+ readonly firstElementChild?: Element | null | undefined;
266
+ readonly lastElementChild?: Element | null | undefined;
267
+ append?: ((...nodes: (Node | string)[]) => void) | undefined;
268
+ prepend?: ((...nodes: (Node | string)[]) => void) | undefined;
269
+ querySelector?: {
270
+ <K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
271
+ <K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
272
+ <K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
273
+ <K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
274
+ <E extends Element = Element>(selectors: string): E | null;
275
+ } | undefined;
276
+ querySelectorAll?: {
277
+ <K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
278
+ <K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
279
+ <K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
280
+ <K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
281
+ <E extends Element = Element>(selectors: string): NodeListOf<E>;
282
+ } | undefined;
283
+ replaceChildren?: ((...nodes: (Node | string)[]) => void) | undefined;
284
+ readonly assignedSlot?: HTMLSlotElement | null | undefined;
285
+ readonly attributeStyleMap?: StylePropertyMap | undefined;
286
+ readonly style?: CSSStyleDeclaration | undefined;
287
+ contentEditable?: string | undefined;
288
+ enterKeyHint?: string | undefined;
289
+ inputMode?: string | undefined;
290
+ readonly isContentEditable?: boolean | undefined;
291
+ onabort?: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null | undefined;
292
+ onanimationcancel?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
293
+ onanimationend?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
294
+ onanimationiteration?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
295
+ onanimationstart?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
296
+ onauxclick?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
297
+ onbeforeinput?: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null | undefined;
298
+ onbeforetoggle?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
299
+ onblur?: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null | undefined;
300
+ oncancel?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
301
+ oncanplay?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
302
+ oncanplaythrough?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
303
+ onchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
304
+ onclick?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
305
+ onclose?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
306
+ oncontextmenu?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
307
+ oncopy?: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null | undefined;
308
+ oncuechange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
309
+ oncut?: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null | undefined;
310
+ ondblclick?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
311
+ ondrag?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
312
+ ondragend?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
313
+ ondragenter?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
314
+ ondragleave?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
315
+ ondragover?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
316
+ ondragstart?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
317
+ ondrop?: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null | undefined;
318
+ ondurationchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
319
+ onemptied?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
320
+ onended?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
321
+ onerror?: OnErrorEventHandler | undefined;
322
+ onfocus?: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null | undefined;
323
+ onformdata?: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null | undefined;
324
+ ongotpointercapture?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
325
+ oninput?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
326
+ oninvalid?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
327
+ onkeydown?: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null | undefined;
328
+ onkeypress?: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null | undefined;
329
+ onkeyup?: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null | undefined;
330
+ onload?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
331
+ onloadeddata?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
332
+ onloadedmetadata?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
333
+ onloadstart?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
334
+ onlostpointercapture?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
335
+ onmousedown?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
336
+ onmouseenter?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
337
+ onmouseleave?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
338
+ onmousemove?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
339
+ onmouseout?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
340
+ onmouseover?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
341
+ onmouseup?: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null | undefined;
342
+ onpaste?: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null | undefined;
343
+ onpause?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
344
+ onplay?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
345
+ onplaying?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
346
+ onpointercancel?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
347
+ onpointerdown?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
348
+ onpointerenter?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
349
+ onpointerleave?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
350
+ onpointermove?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
351
+ onpointerout?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
352
+ onpointerover?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
353
+ onpointerup?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
354
+ onprogress?: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null | undefined;
355
+ onratechange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
356
+ onreset?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
357
+ onresize?: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null | undefined;
358
+ onscroll?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
359
+ onscrollend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
360
+ onsecuritypolicyviolation?: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null | undefined;
361
+ onseeked?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
362
+ onseeking?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
363
+ onselect?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
364
+ onselectionchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
365
+ onselectstart?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
366
+ onslotchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
367
+ onstalled?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
368
+ onsubmit?: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null | undefined;
369
+ onsuspend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
370
+ ontimeupdate?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
371
+ ontoggle?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
372
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
373
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
374
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
375
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
376
+ ontransitioncancel?: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null | undefined;
377
+ ontransitionend?: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null | undefined;
378
+ ontransitionrun?: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null | undefined;
379
+ ontransitionstart?: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null | undefined;
380
+ onvolumechange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
381
+ onwaiting?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
382
+ onwebkitanimationend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
383
+ onwebkitanimationiteration?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
384
+ onwebkitanimationstart?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
385
+ onwebkittransitionend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
386
+ onwheel?: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null | undefined;
387
+ autofocus?: boolean | undefined;
388
+ readonly dataset?: DOMStringMap | undefined;
389
+ nonce?: string | undefined;
390
+ tabIndex?: number | undefined;
391
+ blur?: (() => void) | undefined;
392
+ focus?: ((options?: FocusOptions) => void) | undefined;
393
+ }, "children"> & {
394
+ children?: import("react").ReactNode;
395
+ } & Omit<import("react").HTMLAttributes<HTMLElement>, "children"> & import("react").RefAttributes<HTMLElement>, string | import("react").JSXElementConstructor<any>>;
@@ -0,0 +1,13 @@
1
+ import "../../../chunks/chunk.QU3DSPNU.js";
2
+ import { getReactComponent } from "../../../utils/react.js";
3
+ import { GdsPagination as GdsPaginationClass } from "../../../components/pagination/pagination.component.js";
4
+ import { createElement } from "react";
5
+ const GdsPagination = (props) => {
6
+ GdsPaginationClass.define();
7
+ const JSXElement = getReactComponent("gds-pagination");
8
+ const propsWithClass = { ...props, class: props.className };
9
+ return createElement(JSXElement, propsWithClass);
10
+ };
11
+ export {
12
+ GdsPagination
13
+ };