@oaknational/oak-components 2.37.0 → 2.39.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/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/types.d.ts +1 -4
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -759,6 +759,7 @@ declare const icons: {
|
|
|
759
759
|
readonly "subject-computing-non-gcse": "v1729171080/subject-icons/computing.svg";
|
|
760
760
|
readonly "subject-creative-arts": "v1706616415/subject-icons/creative-arts.svg";
|
|
761
761
|
readonly "subject-design-technology": "v1706616417/subject-icons/design-technology.svg";
|
|
762
|
+
readonly "subject-digital-literacy": "v1729171080/subject-icons/computing.svg";
|
|
762
763
|
readonly "subject-drama": "v1706616417/subject-icons/drama.svg";
|
|
763
764
|
readonly "subject-english": "v1706616417/subject-icons/english.svg";
|
|
764
765
|
readonly "subject-english-language": "v1706616419/subject-icons/language.svg";
|
|
@@ -3268,8 +3269,6 @@ type InternalLinkProps = {
|
|
|
3268
3269
|
hoverColor: OakUiRoleToken;
|
|
3269
3270
|
activeColor: OakUiRoleToken;
|
|
3270
3271
|
disabledColor: OakUiRoleToken;
|
|
3271
|
-
iconWidth?: OakAllSpacingToken;
|
|
3272
|
-
iconHeight?: OakAllSpacingToken;
|
|
3273
3272
|
textDecoration?: OakTextDecoration;
|
|
3274
3273
|
};
|
|
3275
3274
|
|
|
@@ -3299,8 +3298,6 @@ declare const OakHoverLink: OakHoverLinkComponent;
|
|
|
3299
3298
|
type Variant = "primary" | "secondary";
|
|
3300
3299
|
|
|
3301
3300
|
type OakLinkProps = Pick<InternalLinkProps, "iconName" | "isTrailingIcon" | "isLoading"> & {
|
|
3302
|
-
iconWidth?: OakAllSpacingToken;
|
|
3303
|
-
iconHeight?: OakAllSpacingToken;
|
|
3304
3301
|
/**
|
|
3305
3302
|
* Style variant of the OakLink component: "primary" | "secondary"
|
|
3306
3303
|
*
|