@sebgroup/green-core 3.6.3 → 3.8.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/assets/icons/regular/arrows-repeat-right.svg +1 -0
- package/assets/icons/regular/asterisk.svg +1 -1
- package/assets/icons/regular/calendar-repeat.svg +3 -0
- package/assets/icons/solid/arrows-repeat-right.svg +2 -0
- package/assets/icons/solid/calendar-repeat.svg +3 -0
- package/assets/icons/solid/credit-card-add.svg +2 -2
- package/components/avatar/avatar-group/avatar-group.component.d.ts +21 -0
- package/components/avatar/avatar-group/avatar-group.component.js +32 -0
- package/components/avatar/avatar-group/avatar-group.d.ts +2 -0
- package/components/avatar/avatar-group/avatar-group.js +6 -0
- package/components/avatar/avatar-group/avatar-group.styles.d.ts +2 -0
- package/components/avatar/avatar-group/avatar-group.styles.js +21 -0
- package/components/avatar/avatar-group/index.d.ts +1 -0
- package/components/avatar/avatar-group/index.js +1 -0
- package/components/avatar/avatar.component.d.ts +51 -0
- package/components/avatar/avatar.component.js +100 -0
- package/components/avatar/avatar.d.ts +2 -0
- package/components/avatar/avatar.js +6 -0
- package/components/avatar/avatar.styles.d.ts +2 -0
- package/components/avatar/avatar.styles.js +124 -0
- package/components/avatar/index.d.ts +2 -0
- package/components/avatar/index.js +2 -0
- package/components/details/details.styles.js +0 -1
- package/components/icon/icons/arrows-repeat-right.component.d.ts +18 -0
- package/components/icon/icons/arrows-repeat-right.component.js +25 -0
- package/components/icon/icons/arrows-repeat-right.d.ts +2 -0
- package/components/icon/icons/arrows-repeat-right.js +6 -0
- package/components/icon/icons/asterisk.component.js +1 -1
- package/components/icon/icons/calendar-repeat.component.d.ts +18 -0
- package/components/icon/icons/calendar-repeat.component.js +25 -0
- package/components/icon/icons/calendar-repeat.d.ts +2 -0
- package/components/icon/icons/calendar-repeat.js +6 -0
- package/components/icon/icons/credit-card-add.component.js +1 -1
- package/components/icon/icons/index.d.ts +2 -0
- package/components/icon/icons/index.js +2 -0
- package/components/icon/icons/pure.d.ts +2 -0
- package/components/icon/icons/pure.js +2 -0
- package/components/index.d.ts +1 -0
- package/components/index.js +1 -0
- package/custom-elements.json +12273 -9763
- package/gds-element.js +1 -1
- package/generated/mcp/avatar/angular.md +17 -0
- package/generated/mcp/avatar/api.md +49 -0
- package/generated/mcp/avatar/guidelines.md +40 -0
- package/generated/mcp/avatar/index.json +9 -0
- package/generated/mcp/avatar/react.md +17 -0
- package/generated/mcp/avatar-group/angular.md +17 -0
- package/generated/mcp/avatar-group/api.md +38 -0
- package/generated/mcp/avatar-group/index.json +8 -0
- package/generated/mcp/avatar-group/react.md +17 -0
- package/generated/mcp/components.json +26 -1
- package/generated/mcp/concepts/architecture.md +40 -5
- package/generated/mcp/guides/installing.md +10 -69
- package/generated/mcp/icon-arrows-repeat-right/angular.md +15 -0
- package/generated/mcp/icon-arrows-repeat-right/api.md +31 -0
- package/generated/mcp/icon-arrows-repeat-right/index.json +8 -0
- package/generated/mcp/icon-arrows-repeat-right/react.md +15 -0
- package/generated/mcp/icon-calendar-repeat/angular.md +15 -0
- package/generated/mcp/icon-calendar-repeat/api.md +31 -0
- package/generated/mcp/icon-calendar-repeat/index.json +8 -0
- package/generated/mcp/icon-calendar-repeat/react.md +15 -0
- package/generated/mcp/icons.json +25 -1
- package/generated/mcp/index.json +1 -1
- package/generated/mcp/switch/guidelines.md +2 -2
- package/generated/mcp/tokens.json +1 -1
- package/generated/react/avatar/index.d.ts +681 -0
- package/generated/react/avatar/index.js +14 -0
- package/generated/react/avatar-group/index.d.ts +671 -0
- package/generated/react/avatar-group/index.js +14 -0
- package/generated/react/card-pattern-01/index.d.ts +1 -1
- package/generated/react/icons/icon-arrows-repeat-right/index.d.ts +672 -0
- package/generated/react/icons/icon-arrows-repeat-right/index.js +16 -0
- package/generated/react/icons/icon-calendar-repeat/index.d.ts +672 -0
- package/generated/react/icons/icon-calendar-repeat/index.js +16 -0
- package/generated/react/index.d.ts +11 -7
- package/generated/react/index.js +11 -7
- package/package.json +7 -1
- package/patterns/card-pattern-01/card-pattern-01.component.js +0 -1
- package/pure.d.ts +2 -0
- package/pure.js +2 -0
- package/utils/helpers/custom-element-scoping.js +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import "../../../../chunks/chunk.CAV4X6PU.js";
|
|
2
|
+
import { createElement } from "react";
|
|
3
|
+
import { IconCalendarRepeat as IconCalendarRepeatClass } from "../../../../components/icon/icons/calendar-repeat.component.js";
|
|
4
|
+
import { getReactComponent } from "../../../../utils/react.js";
|
|
5
|
+
const IconCalendarRepeat = (props) => {
|
|
6
|
+
IconCalendarRepeatClass.define();
|
|
7
|
+
const JSXElement = getReactComponent(
|
|
8
|
+
"gds-icon-calendar-repeat"
|
|
9
|
+
);
|
|
10
|
+
const propsWithClass = { ...props, class: props.className, ref: props.ref };
|
|
11
|
+
return createElement(JSXElement, propsWithClass);
|
|
12
|
+
};
|
|
13
|
+
IconCalendarRepeat.displayName = "IconCalendarRepeat";
|
|
14
|
+
export {
|
|
15
|
+
IconCalendarRepeat
|
|
16
|
+
};
|
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
export * from './alert/index.js';
|
|
2
|
+
export * from './avatar/index.js';
|
|
2
3
|
export * from './badge/index.js';
|
|
3
|
-
export * from './breadcrumbs/index.js';
|
|
4
4
|
export * from './blur/index.js';
|
|
5
|
+
export * from './breadcrumbs/index.js';
|
|
5
6
|
export * from './button/index.js';
|
|
6
7
|
export * from './calendar/index.js';
|
|
7
8
|
export * from './card/index.js';
|
|
8
|
-
export * from './card-linked/index.js';
|
|
9
9
|
export * from './checkbox/index.js';
|
|
10
|
+
export * from './card-linked/index.js';
|
|
10
11
|
export * from './coachmark/index.js';
|
|
11
12
|
export * from './context-menu/index.js';
|
|
13
|
+
export * from './dialog/index.js';
|
|
14
|
+
export * from './div/index.js';
|
|
12
15
|
export * from './datepicker/index.js';
|
|
13
16
|
export * from './details/index.js';
|
|
14
|
-
export * from './dialog/index.js';
|
|
15
17
|
export * from './divider/index.js';
|
|
16
18
|
export * from './dropdown/index.js';
|
|
17
|
-
export * from './div/index.js';
|
|
18
19
|
export * from './fab/index.js';
|
|
19
20
|
export * from './filter-chips/index.js';
|
|
20
21
|
export * from './flex/index.js';
|
|
@@ -25,12 +26,12 @@ export * from './list-item/index.js';
|
|
|
25
26
|
export * from './img/index.js';
|
|
26
27
|
export * from './input/index.js';
|
|
27
28
|
export * from './link/index.js';
|
|
28
|
-
export * from './menu-button/index.js';
|
|
29
29
|
export * from './mask/index.js';
|
|
30
|
+
export * from './menu-button/index.js';
|
|
30
31
|
export * from './pagination/index.js';
|
|
32
|
+
export * from './radio/index.js';
|
|
31
33
|
export * from './backdrop/index.js';
|
|
32
34
|
export * from './popover/index.js';
|
|
33
|
-
export * from './radio/index.js';
|
|
34
35
|
export * from './rich-text/index.js';
|
|
35
36
|
export * from './segmented-control/index.js';
|
|
36
37
|
export * from './select/index.js';
|
|
@@ -43,6 +44,7 @@ export * from './textarea/index.js';
|
|
|
43
44
|
export * from './theme/index.js';
|
|
44
45
|
export * from './video/index.js';
|
|
45
46
|
export * from './card-pattern-01/index.js';
|
|
47
|
+
export * from './avatar-group/index.js';
|
|
46
48
|
export * from './breadcrumb/index.js';
|
|
47
49
|
export * from './checkbox-group/index.js';
|
|
48
50
|
export * from './icons/icon-details/index.js';
|
|
@@ -52,8 +54,8 @@ export * from './formatted-date/index.js';
|
|
|
52
54
|
export * from './formatted-number/index.js';
|
|
53
55
|
export * from './radio-group/index.js';
|
|
54
56
|
export * from './segment/index.js';
|
|
55
|
-
export * from './sensitive-account/index.js';
|
|
56
57
|
export * from './sensitive-date/index.js';
|
|
58
|
+
export * from './sensitive-account/index.js';
|
|
57
59
|
export * from './sensitive-number/index.js';
|
|
58
60
|
export * from './icons/icon-ai/index.js';
|
|
59
61
|
export * from './icons/icon-airplane-up/index.js';
|
|
@@ -84,6 +86,7 @@ export * from './icons/icon-arrow-wall-left/index.js';
|
|
|
84
86
|
export * from './icons/icon-arrow-wall-right/index.js';
|
|
85
87
|
export * from './icons/icon-arrow-wall-up/index.js';
|
|
86
88
|
export * from './icons/icon-arrow/index.js';
|
|
89
|
+
export * from './icons/icon-arrows-repeat-right/index.js';
|
|
87
90
|
export * from './icons/icon-asterisk/index.js';
|
|
88
91
|
export * from './icons/icon-at/index.js';
|
|
89
92
|
export * from './icons/icon-back/index.js';
|
|
@@ -131,6 +134,7 @@ export * from './icons/icon-buildings/index.js';
|
|
|
131
134
|
export * from './icons/icon-bullet-list/index.js';
|
|
132
135
|
export * from './icons/icon-calculator/index.js';
|
|
133
136
|
export * from './icons/icon-calendar-check/index.js';
|
|
137
|
+
export * from './icons/icon-calendar-repeat/index.js';
|
|
134
138
|
export * from './icons/icon-calendar/index.js';
|
|
135
139
|
export * from './icons/icon-calender-add/index.js';
|
|
136
140
|
export * from './icons/icon-call/index.js';
|
package/generated/react/index.js
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
export * from "./alert/index.js";
|
|
2
|
+
export * from "./avatar/index.js";
|
|
2
3
|
export * from "./badge/index.js";
|
|
3
|
-
export * from "./breadcrumbs/index.js";
|
|
4
4
|
export * from "./blur/index.js";
|
|
5
|
+
export * from "./breadcrumbs/index.js";
|
|
5
6
|
export * from "./button/index.js";
|
|
6
7
|
export * from "./calendar/index.js";
|
|
7
8
|
export * from "./card/index.js";
|
|
8
|
-
export * from "./card-linked/index.js";
|
|
9
9
|
export * from "./checkbox/index.js";
|
|
10
|
+
export * from "./card-linked/index.js";
|
|
10
11
|
export * from "./coachmark/index.js";
|
|
11
12
|
export * from "./context-menu/index.js";
|
|
13
|
+
export * from "./dialog/index.js";
|
|
14
|
+
export * from "./div/index.js";
|
|
12
15
|
export * from "./datepicker/index.js";
|
|
13
16
|
export * from "./details/index.js";
|
|
14
|
-
export * from "./dialog/index.js";
|
|
15
17
|
export * from "./divider/index.js";
|
|
16
18
|
export * from "./dropdown/index.js";
|
|
17
|
-
export * from "./div/index.js";
|
|
18
19
|
export * from "./fab/index.js";
|
|
19
20
|
export * from "./filter-chips/index.js";
|
|
20
21
|
export * from "./flex/index.js";
|
|
@@ -25,12 +26,12 @@ export * from "./list-item/index.js";
|
|
|
25
26
|
export * from "./img/index.js";
|
|
26
27
|
export * from "./input/index.js";
|
|
27
28
|
export * from "./link/index.js";
|
|
28
|
-
export * from "./menu-button/index.js";
|
|
29
29
|
export * from "./mask/index.js";
|
|
30
|
+
export * from "./menu-button/index.js";
|
|
30
31
|
export * from "./pagination/index.js";
|
|
32
|
+
export * from "./radio/index.js";
|
|
31
33
|
export * from "./backdrop/index.js";
|
|
32
34
|
export * from "./popover/index.js";
|
|
33
|
-
export * from "./radio/index.js";
|
|
34
35
|
export * from "./rich-text/index.js";
|
|
35
36
|
export * from "./segmented-control/index.js";
|
|
36
37
|
export * from "./select/index.js";
|
|
@@ -43,6 +44,7 @@ export * from "./textarea/index.js";
|
|
|
43
44
|
export * from "./theme/index.js";
|
|
44
45
|
export * from "./video/index.js";
|
|
45
46
|
export * from "./card-pattern-01/index.js";
|
|
47
|
+
export * from "./avatar-group/index.js";
|
|
46
48
|
export * from "./breadcrumb/index.js";
|
|
47
49
|
export * from "./checkbox-group/index.js";
|
|
48
50
|
export * from "./icons/icon-details/index.js";
|
|
@@ -52,8 +54,8 @@ export * from "./formatted-date/index.js";
|
|
|
52
54
|
export * from "./formatted-number/index.js";
|
|
53
55
|
export * from "./radio-group/index.js";
|
|
54
56
|
export * from "./segment/index.js";
|
|
55
|
-
export * from "./sensitive-account/index.js";
|
|
56
57
|
export * from "./sensitive-date/index.js";
|
|
58
|
+
export * from "./sensitive-account/index.js";
|
|
57
59
|
export * from "./sensitive-number/index.js";
|
|
58
60
|
export * from "./icons/icon-ai/index.js";
|
|
59
61
|
export * from "./icons/icon-airplane-up/index.js";
|
|
@@ -84,6 +86,7 @@ export * from "./icons/icon-arrow-wall-left/index.js";
|
|
|
84
86
|
export * from "./icons/icon-arrow-wall-right/index.js";
|
|
85
87
|
export * from "./icons/icon-arrow-wall-up/index.js";
|
|
86
88
|
export * from "./icons/icon-arrow/index.js";
|
|
89
|
+
export * from "./icons/icon-arrows-repeat-right/index.js";
|
|
87
90
|
export * from "./icons/icon-asterisk/index.js";
|
|
88
91
|
export * from "./icons/icon-at/index.js";
|
|
89
92
|
export * from "./icons/icon-back/index.js";
|
|
@@ -131,6 +134,7 @@ export * from "./icons/icon-buildings/index.js";
|
|
|
131
134
|
export * from "./icons/icon-bullet-list/index.js";
|
|
132
135
|
export * from "./icons/icon-calculator/index.js";
|
|
133
136
|
export * from "./icons/icon-calendar-check/index.js";
|
|
137
|
+
export * from "./icons/icon-calendar-repeat/index.js";
|
|
134
138
|
export * from "./icons/icon-calendar/index.js";
|
|
135
139
|
export * from "./icons/icon-calender-add/index.js";
|
|
136
140
|
export * from "./icons/icon-call/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": "3.
|
|
4
|
+
"version": "3.8.0",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.js",
|
|
7
7
|
"type": "module",
|
|
@@ -353,6 +353,7 @@
|
|
|
353
353
|
"./components/icon/icons/call.js",
|
|
354
354
|
"./components/icon/icons/calender-add.js",
|
|
355
355
|
"./components/icon/icons/calendar.js",
|
|
356
|
+
"./components/icon/icons/calendar-repeat.js",
|
|
356
357
|
"./components/icon/icons/calendar-check.js",
|
|
357
358
|
"./components/icon/icons/calculator.js",
|
|
358
359
|
"./components/icon/icons/bullet-list.js",
|
|
@@ -400,6 +401,7 @@
|
|
|
400
401
|
"./components/icon/icons/back.js",
|
|
401
402
|
"./components/icon/icons/at.js",
|
|
402
403
|
"./components/icon/icons/asterisk.js",
|
|
404
|
+
"./components/icon/icons/arrows-repeat-right.js",
|
|
403
405
|
"./components/icon/icons/arrow.js",
|
|
404
406
|
"./components/icon/icons/arrow-wall-up.js",
|
|
405
407
|
"./components/icon/icons/arrow-wall-right.js",
|
|
@@ -499,6 +501,10 @@
|
|
|
499
501
|
"./components/blur/blur.js",
|
|
500
502
|
"./components/badge/index.js",
|
|
501
503
|
"./components/badge/badge.js",
|
|
504
|
+
"./components/avatar/index.js",
|
|
505
|
+
"./components/avatar/avatar.js",
|
|
506
|
+
"./components/avatar/avatar-group/index.js",
|
|
507
|
+
"./components/avatar/avatar-group/avatar-group.js",
|
|
502
508
|
"./components/alert/index.js",
|
|
503
509
|
"./components/alert/alert.js",
|
|
504
510
|
"./patterns/index.js",
|
package/pure.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ export * from './primitives/listbox/option.component';
|
|
|
2
2
|
export * from './primitives/menu/menu-heading.component';
|
|
3
3
|
export * from './primitives/menu/menu-item.component';
|
|
4
4
|
export * from './components/alert/alert.component';
|
|
5
|
+
export * from './components/avatar/avatar.component';
|
|
6
|
+
export * from './components/avatar/avatar-group/avatar-group.component';
|
|
5
7
|
export * from './components/badge/badge.component';
|
|
6
8
|
export * from './components/blur/blur.component';
|
|
7
9
|
export * from './components/breadcrumbs/breadcrumbs.component';
|
package/pure.js
CHANGED
|
@@ -2,6 +2,8 @@ export * from "./primitives/listbox/option.component.js";
|
|
|
2
2
|
export * from "./primitives/menu/menu-heading.component.js";
|
|
3
3
|
export * from "./primitives/menu/menu-item.component.js";
|
|
4
4
|
export * from "./components/alert/alert.component.js";
|
|
5
|
+
export * from "./components/avatar/avatar.component.js";
|
|
6
|
+
export * from "./components/avatar/avatar-group/avatar-group.component.js";
|
|
5
7
|
export * from "./components/badge/badge.component.js";
|
|
6
8
|
export * from "./components/blur/blur.component.js";
|
|
7
9
|
export * from "./components/breadcrumbs/breadcrumbs.component.js";
|