@leapdevuk/component-toolbox 0.0.106 → 0.0.108
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/components/checkbox/Checkbox.d.ts +1 -1
- package/dist/images/browse-icon.d.ts +6 -0
- package/dist/images/comment-icon.d.ts +2 -0
- package/dist/images/email-icon.d.ts +2 -0
- package/dist/images/email-received-icon.d.ts +2 -0
- package/dist/images/email-sent-icon.d.ts +2 -0
- package/dist/images/image-icon.d.ts +2 -0
- package/dist/images/index.d.ts +20 -12
- package/dist/images/launch-icon.d.ts +3 -0
- package/dist/images/preview-icon.d.ts +6 -0
- package/dist/images/unknown-doc-icon.d.ts +2 -0
- package/dist/index.cjs.js +50 -45
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4026 -3492
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ interface ICheckBoxProps {
|
|
|
3
3
|
label?: string;
|
|
4
4
|
value?: boolean;
|
|
5
5
|
disabled?: boolean;
|
|
6
|
-
onChange?: (
|
|
6
|
+
onChange?: (value: boolean) => void;
|
|
7
7
|
}
|
|
8
8
|
declare const LCTCheckBox: FC<ICheckBoxProps>;
|
|
9
9
|
export default LCTCheckBox;
|
package/dist/images/index.d.ts
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
1
|
+
export { default as BinIcon } from './bin-icon';
|
|
2
|
+
export { default as BrowseIcon } from './browse-icon';
|
|
3
|
+
export { default as CalendarIcon } from './calendar-icon';
|
|
4
|
+
export { default as CheckedCheckboxIcon } from './checkbox-checked-icon';
|
|
5
|
+
export { default as CheckboxIcon } from './checkbox-icon';
|
|
6
|
+
export { default as CommentIcon } from './comment-icon';
|
|
7
|
+
export { default as DocIcon } from './doc-icon';
|
|
8
|
+
export { default as EmailIcon } from './email-icon';
|
|
9
|
+
export { default as EmailReceivedIcon } from './email-received-icon';
|
|
10
|
+
export { default as EmailSentIcon } from './email-sent-icon';
|
|
11
|
+
export { default as ExcelIcon } from './excel-icon';
|
|
12
|
+
export { default as InfoIcon } from './info-icon';
|
|
13
|
+
export { default as LaunchIcon } from './launch-icon';
|
|
14
|
+
export { default as LEAPIcon } from './leap-icon';
|
|
15
|
+
export { default as PDFIcon } from './pdf-icon';
|
|
16
|
+
export { default as PreviewIcon } from './preview-icon';
|
|
17
|
+
export { default as QuestionIcon } from './question-icon';
|
|
18
|
+
export { default as UndoIcon } from './undo-icon';
|
|
19
|
+
export { default as UnknownDocIcon } from './unknown-doc-icon';
|
|
20
|
+
export { default as WarningIcon } from './warning-icon';
|