@sebgroup/green-core 2.10.0 → 2.10.1
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.
|
@@ -38,12 +38,11 @@ const defaultStyles = css`
|
|
|
38
38
|
|
|
39
39
|
p,
|
|
40
40
|
li {
|
|
41
|
-
font: var(--gds-sys-text-body-
|
|
41
|
+
font: var(--gds-sys-text-body-regular-m);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
strong {
|
|
45
|
-
font: var(--gds-sys-text-body-
|
|
46
|
-
font-weight: var(--gds-sys-text-weight-medium);
|
|
45
|
+
font: var(--gds-sys-text-body-medium-m);
|
|
47
46
|
}
|
|
48
47
|
}
|
|
49
48
|
`;
|
package/gds-element.js
CHANGED
|
@@ -14,7 +14,7 @@ class GdsElement extends LitElement {
|
|
|
14
14
|
/**
|
|
15
15
|
* The semantic version of this element. Can be used for troubleshooting to verify the version being used.
|
|
16
16
|
*/
|
|
17
|
-
this.semanticVersion = "2.10.
|
|
17
|
+
this.semanticVersion = "2.10.1";
|
|
18
18
|
this._isUsingTransitionalStyles = false;
|
|
19
19
|
this._dynamicStylesController = new DynamicStylesController(this);
|
|
20
20
|
}
|
|
@@ -16,8 +16,8 @@ export * from './divider/index.js';
|
|
|
16
16
|
export * from './dropdown/index.js';
|
|
17
17
|
export * from './fab/index.js';
|
|
18
18
|
export * from './filter-chips/index.js';
|
|
19
|
-
export * from './flex/index.js';
|
|
20
19
|
export * from './form-summary/index.js';
|
|
20
|
+
export * from './flex/index.js';
|
|
21
21
|
export * from './grid/index.js';
|
|
22
22
|
export * from './grouped-list/index.js';
|
|
23
23
|
export * from './list-item/index.js';
|
|
@@ -52,6 +52,9 @@ export * from './formatted-date/index.js';
|
|
|
52
52
|
export * from './formatted-number/index.js';
|
|
53
53
|
export * from './radio-group/index.js';
|
|
54
54
|
export * from './segment/index.js';
|
|
55
|
+
export * from './sensitive-account/index.js';
|
|
56
|
+
export * from './sensitive-date/index.js';
|
|
57
|
+
export * from './sensitive-number/index.js';
|
|
55
58
|
export * from './icons/icon-ai/index.js';
|
|
56
59
|
export * from './icons/icon-airplane-up/index.js';
|
|
57
60
|
export * from './icons/icon-archive/index.js';
|
|
@@ -377,6 +380,3 @@ export * from './icons/icon-youtube/index.js';
|
|
|
377
380
|
export * from './icons/icon-zap/index.js';
|
|
378
381
|
export * from './icons/icon-zoom-in/index.js';
|
|
379
382
|
export * from './icons/icon-zoom-out/index.js';
|
|
380
|
-
export * from './sensitive-account/index.js';
|
|
381
|
-
export * from './sensitive-date/index.js';
|
|
382
|
-
export * from './sensitive-number/index.js';
|
package/generated/react/index.js
CHANGED
|
@@ -16,8 +16,8 @@ export * from "./divider/index.js";
|
|
|
16
16
|
export * from "./dropdown/index.js";
|
|
17
17
|
export * from "./fab/index.js";
|
|
18
18
|
export * from "./filter-chips/index.js";
|
|
19
|
-
export * from "./flex/index.js";
|
|
20
19
|
export * from "./form-summary/index.js";
|
|
20
|
+
export * from "./flex/index.js";
|
|
21
21
|
export * from "./grid/index.js";
|
|
22
22
|
export * from "./grouped-list/index.js";
|
|
23
23
|
export * from "./list-item/index.js";
|
|
@@ -52,6 +52,9 @@ export * from "./formatted-date/index.js";
|
|
|
52
52
|
export * from "./formatted-number/index.js";
|
|
53
53
|
export * from "./radio-group/index.js";
|
|
54
54
|
export * from "./segment/index.js";
|
|
55
|
+
export * from "./sensitive-account/index.js";
|
|
56
|
+
export * from "./sensitive-date/index.js";
|
|
57
|
+
export * from "./sensitive-number/index.js";
|
|
55
58
|
export * from "./icons/icon-ai/index.js";
|
|
56
59
|
export * from "./icons/icon-airplane-up/index.js";
|
|
57
60
|
export * from "./icons/icon-archive/index.js";
|
|
@@ -377,6 +380,3 @@ export * from "./icons/icon-youtube/index.js";
|
|
|
377
380
|
export * from "./icons/icon-zap/index.js";
|
|
378
381
|
export * from "./icons/icon-zoom-in/index.js";
|
|
379
382
|
export * from "./icons/icon-zoom-out/index.js";
|
|
380
|
-
export * from "./sensitive-account/index.js";
|
|
381
|
-
export * from "./sensitive-date/index.js";
|
|
382
|
-
export * from "./sensitive-number/index.js";
|
package/package.json
CHANGED