@ukic/canary-react 2.0.0-canary.9 → 3.0.0-canary.10
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 +3 -2
- package/dist/components.d.ts +4 -2
- package/dist/components.js +4 -2
- package/dist/core/core.css +1606 -64
- package/package.json +21 -8
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/canary-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
|
|
@@ -16,10 +17,10 @@ To install the components:
|
|
16
17
|
In the root of your project:
|
17
18
|
|
18
19
|
```shell
|
19
|
-
|
20
|
+
# using npm
|
20
21
|
npm install @ukic/canary-react @ukic/fonts
|
21
22
|
|
22
|
-
|
23
|
+
# using yarn
|
23
24
|
rm package-lock.json
|
24
25
|
yarn add @ukic/canary-react @ukic/fonts
|
25
26
|
```
|
package/dist/components.d.ts
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
import type { JSX } from '@ukic/canary-web-components';
|
2
|
+
export declare const IcCardHorizontal: import("react").ForwardRefExoticComponent<JSX.IcCardHorizontal & Omit<import("react").HTMLAttributes<HTMLIcCardHorizontalElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcCardHorizontalElement>>;
|
2
3
|
export declare const IcDataTable: import("react").ForwardRefExoticComponent<JSX.IcDataTable & Omit<import("react").HTMLAttributes<HTMLIcDataTableElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcDataTableElement>>;
|
4
|
+
export declare const IcDataTableTitleBar: import("react").ForwardRefExoticComponent<JSX.IcDataTableTitleBar & Omit<import("react").HTMLAttributes<HTMLIcDataTableTitleBarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcDataTableTitleBarElement>>;
|
3
5
|
export declare const IcDateInput: import("react").ForwardRefExoticComponent<JSX.IcDateInput & Omit<import("react").HTMLAttributes<HTMLIcDateInputElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcDateInputElement>>;
|
4
6
|
export declare const IcDatePicker: import("react").ForwardRefExoticComponent<JSX.IcDatePicker & Omit<import("react").HTMLAttributes<HTMLIcDatePickerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcDatePickerElement>>;
|
5
|
-
export declare const IcMenuWithMulti: import("react").ForwardRefExoticComponent<JSX.IcMenuWithMulti & Omit<import("react").HTMLAttributes<HTMLIcMenuWithMultiElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcMenuWithMultiElement>>;
|
6
7
|
export declare const IcPaginationBar: import("react").ForwardRefExoticComponent<JSX.IcPaginationBar & Omit<import("react").HTMLAttributes<HTMLIcPaginationBarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcPaginationBarElement>>;
|
7
|
-
export declare const
|
8
|
+
export declare const IcTreeItem: import("react").ForwardRefExoticComponent<JSX.IcTreeItem & Omit<import("react").HTMLAttributes<HTMLIcTreeItemElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcTreeItemElement>>;
|
9
|
+
export declare const IcTreeView: import("react").ForwardRefExoticComponent<JSX.IcTreeView & Omit<import("react").HTMLAttributes<HTMLIcTreeViewElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLIcTreeViewElement>>;
|
package/dist/components.js
CHANGED
@@ -4,9 +4,11 @@
|
|
4
4
|
import { createReactComponent } from './react-component-lib';
|
5
5
|
import { defineCustomElements } from '@ukic/canary-web-components/loader';
|
6
6
|
defineCustomElements();
|
7
|
+
export var IcCardHorizontal = /*@__PURE__*/ createReactComponent('ic-card-horizontal');
|
7
8
|
export var IcDataTable = /*@__PURE__*/ createReactComponent('ic-data-table');
|
9
|
+
export var IcDataTableTitleBar = /*@__PURE__*/ createReactComponent('ic-data-table-title-bar');
|
8
10
|
export var IcDateInput = /*@__PURE__*/ createReactComponent('ic-date-input');
|
9
11
|
export var IcDatePicker = /*@__PURE__*/ createReactComponent('ic-date-picker');
|
10
|
-
export var IcMenuWithMulti = /*@__PURE__*/ createReactComponent('ic-menu-with-multi');
|
11
12
|
export var IcPaginationBar = /*@__PURE__*/ createReactComponent('ic-pagination-bar');
|
12
|
-
export var
|
13
|
+
export var IcTreeItem = /*@__PURE__*/ createReactComponent('ic-tree-item');
|
14
|
+
export var IcTreeView = /*@__PURE__*/ createReactComponent('ic-tree-view');
|