@ukic/react 3.0.0-alpha.9 → 3.1.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/README.md +4 -3
- package/dist/components.d.ts +1 -0
- package/dist/components.js +1 -0
- package/dist/core/core.css +395 -264
- package/package.json +23 -17
package/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/mi6/ic-design-system/tree/main/LICENSE)
|
|
4
4
|
[](https://github.com/mi6/ic-design-system/tree/main/LICENSE)
|
|
5
|
+
[](https://npmjs.com/package/@ukic/react)
|
|
5
6
|
|
|
6
7
|
The [Intelligence Community Design System](https://design.sis.gov.uk) helps the United Kingdom's Intelligence Community (MI6, GCHQ, MI5, and partners) to quickly build powerful capabilities that are accessible and easy to use.
|
|
7
8
|
|
|
@@ -17,11 +18,11 @@ In the root of your project:
|
|
|
17
18
|
|
|
18
19
|
```shell
|
|
19
20
|
# using npm
|
|
20
|
-
npm install @ukic/react
|
|
21
|
+
npm install @ukic/react @ukic/fonts
|
|
21
22
|
|
|
22
23
|
# using yarn
|
|
23
24
|
rm package-lock.json
|
|
24
|
-
yarn add @ukic/react
|
|
25
|
+
yarn add @ukic/react @ukic/fonts
|
|
25
26
|
```
|
|
26
27
|
|
|
27
28
|
### Step two
|
|
@@ -76,7 +77,7 @@ If you've found a vulnerability, we want to know so that we can fix it. [Our sec
|
|
|
76
77
|
|
|
77
78
|
## Questions about the departments
|
|
78
79
|
|
|
79
|
-
The team is only able to talk about the projects we've put on GitHub
|
|
80
|
+
The team is only able to talk about the projects we've put on GitHub. We unfortunately can't talk about the work of our departments.
|
|
80
81
|
|
|
81
82
|
Visit our websites to learn more about:
|
|
82
83
|
|
package/dist/components.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ export declare const IcSectionContainer: import("react").ForwardRefExoticCompone
|
|
|
46
46
|
export declare const IcSelect: import("react").ForwardRefExoticComponent<JSX.IcSelect & Omit<import("react").HTMLAttributes<HTMLIcSelectElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcSelectElement>>;
|
|
47
47
|
export declare const IcSideNavigation: import("react").ForwardRefExoticComponent<JSX.IcSideNavigation & Omit<import("react").HTMLAttributes<HTMLIcSideNavigationElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcSideNavigationElement>>;
|
|
48
48
|
export declare const IcSkeleton: import("react").ForwardRefExoticComponent<JSX.IcSkeleton & Omit<import("react").HTMLAttributes<HTMLIcSkeletonElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcSkeletonElement>>;
|
|
49
|
+
export declare const IcSkipLink: import("react").ForwardRefExoticComponent<JSX.IcSkipLink & Omit<import("react").HTMLAttributes<HTMLIcSkipLinkElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcSkipLinkElement>>;
|
|
49
50
|
export declare const IcStatusTag: import("react").ForwardRefExoticComponent<JSX.IcStatusTag & Omit<import("react").HTMLAttributes<HTMLIcStatusTagElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcStatusTagElement>>;
|
|
50
51
|
export declare const IcStep: import("react").ForwardRefExoticComponent<JSX.IcStep & Omit<import("react").HTMLAttributes<HTMLIcStepElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcStepElement>>;
|
|
51
52
|
export declare const IcStepper: import("react").ForwardRefExoticComponent<JSX.IcStepper & Omit<import("react").HTMLAttributes<HTMLIcStepperElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcStepperElement>>;
|
package/dist/components.js
CHANGED
|
@@ -51,6 +51,7 @@ export var IcSectionContainer = /*@__PURE__*/ createReactComponent('ic-section-c
|
|
|
51
51
|
export var IcSelect = /*@__PURE__*/ createReactComponent('ic-select');
|
|
52
52
|
export var IcSideNavigation = /*@__PURE__*/ createReactComponent('ic-side-navigation');
|
|
53
53
|
export var IcSkeleton = /*@__PURE__*/ createReactComponent('ic-skeleton');
|
|
54
|
+
export var IcSkipLink = /*@__PURE__*/ createReactComponent('ic-skip-link');
|
|
54
55
|
export var IcStatusTag = /*@__PURE__*/ createReactComponent('ic-status-tag');
|
|
55
56
|
export var IcStep = /*@__PURE__*/ createReactComponent('ic-step');
|
|
56
57
|
export var IcStepper = /*@__PURE__*/ createReactComponent('ic-stepper');
|