@bookjane2/bookjane-design-library 7.3.36 → 7.3.38

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.
Files changed (29) hide show
  1. package/lib/components/BKJDialogChildren/BKJDialogChildren.d.ts +4 -0
  2. package/lib/components/BKJDialogChildren/BKJDialogChildren.d.ts.map +1 -0
  3. package/lib/components/BKJDialogChildren/BKJDialogChildren.js +29 -0
  4. package/lib/components/BKJDialogChildren/BKJDialogChildren.js.map +1 -0
  5. package/lib/components/BKJDialogChildren/BKJDialogChildren.stories.d.ts +39 -0
  6. package/lib/components/BKJDialogChildren/BKJDialogChildren.stories.d.ts.map +1 -0
  7. package/lib/components/BKJDialogChildren/BKJDialogChildren.stories.js +47 -0
  8. package/lib/components/BKJDialogChildren/BKJDialogChildren.stories.js.map +1 -0
  9. package/lib/components/BKJDialogChildren/BKJDialogChildren.styled.d.ts +8 -0
  10. package/lib/components/BKJDialogChildren/BKJDialogChildren.styled.d.ts.map +1 -0
  11. package/lib/components/BKJDialogChildren/BKJDialogChildren.styled.js +61 -0
  12. package/lib/components/BKJDialogChildren/BKJDialogChildren.styled.js.map +1 -0
  13. package/lib/components/BKJDialogChildren/BKJDialogChildren.theme.d.ts +3 -0
  14. package/lib/components/BKJDialogChildren/BKJDialogChildren.theme.d.ts.map +1 -0
  15. package/lib/components/BKJDialogChildren/BKJDialogChildren.theme.js +6 -0
  16. package/lib/components/BKJDialogChildren/BKJDialogChildren.theme.js.map +1 -0
  17. package/lib/components/BKJDialogChildren/BKJDialogChildren.types.d.ts +18 -0
  18. package/lib/components/BKJDialogChildren/BKJDialogChildren.types.d.ts.map +1 -0
  19. package/lib/components/BKJDialogChildren/BKJDialogChildren.types.js +2 -0
  20. package/lib/components/BKJDialogChildren/BKJDialogChildren.types.js.map +1 -0
  21. package/lib/components/BKJDialogChildren/index.d.ts +2 -0
  22. package/lib/components/BKJDialogChildren/index.d.ts.map +1 -0
  23. package/lib/components/BKJDialogChildren/index.js +2 -0
  24. package/lib/components/BKJDialogChildren/index.js.map +1 -0
  25. package/lib/components/index.d.ts +1 -0
  26. package/lib/components/index.d.ts.map +1 -1
  27. package/lib/components/index.js +1 -0
  28. package/lib/components/index.js.map +1 -1
  29. package/package.json +1 -1
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ import { IBKJDialogChildrenProps } from './BKJDialogChildren.types.js';
3
+ export declare const BKJDialogChildren: FC<IBKJDialogChildrenProps>;
4
+ //# sourceMappingURL=BKJDialogChildren.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BKJDialogChildren.d.ts","sourceRoot":"","sources":["../../../src/components/BKJDialogChildren/BKJDialogChildren.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAsC,MAAM,OAAO,CAAC;AAW/D,OAAO,EAA6B,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAY/F,eAAO,MAAM,iBAAiB,EAAE,EAAE,CAAC,uBAAuB,CAsDzD,CAAC"}
@@ -0,0 +1,29 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { forwardRef, useCallback, useEffect } from 'react';
3
+ import { BKJButton } from '../BKJButton/index.js';
4
+ import { BKJDialogWrapper, Title, CloseIcon, ButtonGroup, TextWrapper, CloseIconWrapper, } from './BKJDialogChildren.styled.js';
5
+ const CancelVariantMap = {
6
+ Danger: 'PurpleOutlined',
7
+ Default: 'PurpleOutlined',
8
+ };
9
+ const ActionVariantMap = {
10
+ Danger: 'RedSolid',
11
+ Default: 'PurpleSolid',
12
+ };
13
+ export const BKJDialogChildren = forwardRef(({ variant, title, cancelLabel, actionLabel, onAction, onCancel, onClose, onChange, children, ...rest }, ref) => {
14
+ const handleKeyUp = useCallback((event) => {
15
+ if (event.key === 'Escape') {
16
+ onClose();
17
+ }
18
+ }, [onClose]);
19
+ useEffect(() => {
20
+ document.addEventListener('keyup', handleKeyUp);
21
+ return () => {
22
+ document.removeEventListener('keyup', handleKeyUp);
23
+ };
24
+ }, [handleKeyUp]);
25
+ return (_jsxs(BKJDialogWrapper, Object.assign({}, rest, { variant: variant, ref: ref }, { children: [_jsx(CloseIconWrapper, Object.assign({ onClick: onClose, role: "button", tabIndex: 0 }, { children: _jsx(CloseIcon, { iconName: "CloseBold" }, void 0) }), void 0),
26
+ _jsx(TextWrapper, { children: _jsx(Title, { children: title }, void 0) }, void 0), children, _jsxs(ButtonGroup, { children: [_jsx(BKJButton, Object.assign({ variant: CancelVariantMap[variant], onClick: onCancel }, { children: cancelLabel }), void 0),
27
+ _jsx(BKJButton, Object.assign({ variant: ActionVariantMap[variant], onClick: onAction }, { children: actionLabel }), void 0)] }, void 0)] }), void 0));
28
+ });
29
+ //# sourceMappingURL=BKJDialogChildren.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BKJDialogChildren.js","sourceRoot":"","sources":["../../../src/components/BKJDialogChildren/BKJDialogChildren.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAM,UAAU,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAC/D,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzC,OAAO,EACL,gBAAgB,EAChB,KAAK,EACL,SAAS,EACT,WAAW,EACX,WAAW,EACX,gBAAgB,GACjB,MAAM,4BAA4B,CAAC;AAGpC,MAAM,gBAAgB,GAAiE;IACrF,MAAM,EAAE,gBAAgB;IACxB,OAAO,EAAE,gBAAgB;CAC1B,CAAC;AAEF,MAAM,gBAAgB,GAAiE;IACrF,MAAM,EAAE,UAAU;IAClB,OAAO,EAAE,aAAa;CACvB,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAgC,UAAU,CACtE,CACE,EACE,OAAO,EACP,KAAK,EACL,WAAW,EACX,WAAW,EACX,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,GAAG,IAAI,EACR,EACD,GAAG,EACH,EAAE;IACF,MAAM,WAAW,GAAG,WAAW,CAC7B,CAAC,KAAoB,EAAE,EAAE;QACvB,IAAI,KAAK,CAAC,GAAG,KAAK,QAAQ,EAAE;YAC1B,OAAO,EAAE,CAAC;SACX;IACH,CAAC,EACD,CAAC,OAAO,CAAC,CACV,CAAC;IAEF,SAAS,CAAC,GAAG,EAAE;QACb,QAAQ,CAAC,gBAAgB,CAAC,OAAO,EAAE,WAAW,CAAC,CAAC;QAChD,OAAO,GAAG,EAAE;YACV,QAAQ,CAAC,mBAAmB,CAAC,OAAO,EAAE,WAAW,CAAC,CAAC;QACrD,CAAC,CAAC;IACJ,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC;IAElB,OAAO,CACL,MAAC,gBAAgB,oBAAK,IAAI,IAAE,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,iBACpD,KAAC,gBAAgB,kBAAC,OAAO,EAAE,OAAO,EAAE,IAAI,EAAC,QAAQ,EAAC,QAAQ,EAAE,CAAC,gBAC3D,KAAC,SAAS,IAAC,QAAQ,EAAC,WAAW,WAAG,YACjB;YAEnB,KAAC,WAAW,cACV,KAAC,KAAK,cAAE,KAAK,WAAS,WACV,EACb,QAAQ,EACT,MAAC,WAAW,eACV,KAAC,SAAS,kBAAC,OAAO,EAAE,gBAAgB,CAAC,OAAO,CAAC,EAAE,OAAO,EAAE,QAAQ,gBAC7D,WAAW,YACF;oBAEZ,KAAC,SAAS,kBAAC,OAAO,EAAE,gBAAgB,CAAC,OAAO,CAAC,EAAE,OAAO,EAAE,QAAQ,gBAC7D,WAAW,YACF,YACA,aACG,CACpB,CAAC;AACJ,CAAC,CACF,CAAC"}
@@ -0,0 +1,39 @@
1
+ /// <reference types="react" />
2
+ import { Story } from '@storybook/react';
3
+ import { IBKJDialogChildrenProps } from './BKJDialogChildren.types.js';
4
+ declare const _default: {
5
+ title: string;
6
+ component: import("react").FC<IBKJDialogChildrenProps>;
7
+ argTypes: {
8
+ variant: {
9
+ name: string;
10
+ control: {
11
+ type: string;
12
+ };
13
+ option: string[];
14
+ };
15
+ children: {
16
+ name: string;
17
+ type: string;
18
+ };
19
+ title: {
20
+ name: string;
21
+ type: string;
22
+ };
23
+ text: {
24
+ name: string;
25
+ type: string;
26
+ };
27
+ cancelLabel: {
28
+ name: string;
29
+ type: string;
30
+ };
31
+ actionLabel: {
32
+ name: string;
33
+ type: string;
34
+ };
35
+ };
36
+ };
37
+ export default _default;
38
+ export declare const Default: Story<IBKJDialogChildrenProps>;
39
+ //# sourceMappingURL=BKJDialogChildren.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BKJDialogChildren.stories.d.ts","sourceRoot":"","sources":["../../../src/components/BKJDialogChildren/BKJDialogChildren.stories.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAEzC,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEpE,wBAgCE;AAaF,eAAO,MAAM,OAAO,gCAAoB,CAAC"}
@@ -0,0 +1,47 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { BKJDialogChildren } from 'index.js';
3
+ export default {
4
+ title: 'Modals/BKJDialogChildren',
5
+ component: BKJDialogChildren,
6
+ argTypes: {
7
+ variant: {
8
+ name: 'Variation',
9
+ control: {
10
+ type: 'select',
11
+ },
12
+ option: ['Default', 'Danger'],
13
+ },
14
+ children: {
15
+ name: 'Text',
16
+ type: 'string',
17
+ },
18
+ title: {
19
+ name: 'Title',
20
+ type: 'string',
21
+ },
22
+ text: {
23
+ name: 'Text',
24
+ type: 'string',
25
+ },
26
+ cancelLabel: {
27
+ name: 'Cancel Label',
28
+ type: 'string',
29
+ },
30
+ actionLabel: {
31
+ name: 'Action Label',
32
+ type: 'string',
33
+ },
34
+ },
35
+ };
36
+ const Template = ({ children, ...args }) => (_jsx(BKJDialogChildren, Object.assign({}, args, { onClose: () => {
37
+ alert('close');
38
+ } }, { children: children }), void 0));
39
+ export const Default = Template.bind({});
40
+ Default.args = {
41
+ variant: 'Default',
42
+ title: 'Edit shift details?',
43
+ cancelLabel: 'Cancel',
44
+ actionLabel: 'Confirm',
45
+ children: '',
46
+ };
47
+ //# sourceMappingURL=BKJDialogChildren.stories.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BKJDialogChildren.stories.js","sourceRoot":"","sources":["../../../src/components/BKJDialogChildren/BKJDialogChildren.stories.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,GAAG,CAAC;AAGtC,eAAe;IACb,KAAK,EAAE,0BAA0B;IACjC,SAAS,EAAE,iBAAiB;IAC5B,QAAQ,EAAE;QACR,OAAO,EAAE;YACP,IAAI,EAAE,WAAW;YACjB,OAAO,EAAE;gBACP,IAAI,EAAE,QAAQ;aACf;YACD,MAAM,EAAE,CAAC,SAAS,EAAE,QAAQ,CAAC;SAC9B;QACD,QAAQ,EAAE;YACR,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,QAAQ;SACf;QACD,KAAK,EAAE;YACL,IAAI,EAAE,OAAO;YACb,IAAI,EAAE,QAAQ;SACf;QACD,IAAI,EAAE;YACJ,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,QAAQ;SACf;QACD,WAAW,EAAE;YACX,IAAI,EAAE,cAAc;YACpB,IAAI,EAAE,QAAQ;SACf;QACD,WAAW,EAAE;YACX,IAAI,EAAE,cAAc;YACpB,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,MAAM,QAAQ,GAAmC,CAAC,EAAE,QAAQ,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,CAC1E,KAAC,iBAAiB,oBACZ,IAAI,IACR,OAAO,EAAE,GAAG,EAAE;QACZ,KAAK,CAAC,OAAO,CAAC,CAAC;IACjB,CAAC,gBAEA,QAAQ,YACS,CACrB,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AAEzC,OAAO,CAAC,IAAI,GAAG;IACb,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,qBAAqB;IAC5B,WAAW,EAAE,QAAQ;IACrB,WAAW,EAAE,SAAS;IACtB,QAAQ,EAAE,EAAE;CACb,CAAC"}
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ export declare const BKJDialogWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, any, never>;
3
+ export declare const CloseIconWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
4
+ export declare const CloseIcon: import("styled-components").StyledComponent<import("react").FC<import("../BKJIcon/BKJIcon.types.js").IBKJIconProps>, import("styled-components").DefaultTheme, {}, never>;
5
+ export declare const TextWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
6
+ export declare const Title: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
7
+ export declare const ButtonGroup: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
8
+ //# sourceMappingURL=BKJDialogChildren.styled.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BKJDialogChildren.styled.d.ts","sourceRoot":"","sources":["../../../src/components/BKJDialogChildren/BKJDialogChildren.styled.tsx"],"names":[],"mappings":";AASA,eAAO,MAAM,gBAAgB,0GAc5B,CAAC;AAEF,eAAO,MAAM,gBAAgB,yGAa5B,CAAC;AAEF,eAAO,MAAM,SAAS,wKAAoB,CAAC;AAE3C,eAAO,MAAM,WAAW,yGAUvB,CAAC;AAEF,eAAO,MAAM,KAAK,yGAKjB,CAAC;AAEF,eAAO,MAAM,WAAW,yGAUvB,CAAC"}
@@ -0,0 +1,61 @@
1
+ import styled from 'styled-components';
2
+ import { BKJIcon } from '../BKJIcon/index.js';
3
+ export const BKJDialogWrapper = styled.div `
4
+ width: 100%;
5
+ max-width: 624px;
6
+ position: relative;
7
+ flex-direction: column;
8
+ justify-content: center;
9
+ align-items: center;
10
+
11
+ background: #ffffff;
12
+
13
+ box-shadow: 0px 2px 8px rgba(13, 51, 32, 0.3);
14
+ border-radius: 8px;
15
+
16
+ ${({ theme, variant }) => theme.dialog[variant]}
17
+ `;
18
+ export const CloseIconWrapper = styled.div `
19
+ position: absolute;
20
+ display: flex;
21
+ justify-content: center;
22
+ align-items: center;
23
+ top: 12px;
24
+ right: 12px;
25
+ padding: 12px;
26
+ cursor: pointer;
27
+ &:focus-visible {
28
+ outline-color: ${({ theme }) => theme.colors.TextSubtleGrey};
29
+ outline-style: solid;
30
+ }
31
+ `;
32
+ export const CloseIcon = styled(BKJIcon) ``;
33
+ export const TextWrapper = styled.div `
34
+ display: flex;
35
+ flex-direction: column;
36
+ justify-content: center;
37
+ align-items: center;
38
+ gap: 8px;
39
+ padding-top: 36px;
40
+ padding-left: 48px;
41
+ padding-right: 48px;
42
+ padding-bottom: 12px;
43
+ `;
44
+ export const Title = styled.div `
45
+ ${({ theme }) => theme.fonts.PoppinsBold};
46
+ font-size: 28px;
47
+ line-height: 34px;
48
+ text-align: center;
49
+ `;
50
+ export const ButtonGroup = styled.div `
51
+ display: flex;
52
+ justify-content: center;
53
+ align-items: center;
54
+ border-top: 0.5px solid ${({ theme }) => theme.colors.GreyDivider};
55
+ padding: 0 24px;
56
+ height: 80px;
57
+ min-height: 80px;
58
+ max-height: 80px;
59
+ gap: 8px;
60
+ `;
61
+ //# sourceMappingURL=BKJDialogChildren.styled.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BKJDialogChildren.styled.js","sourceRoot":"","sources":["../../../src/components/BKJDialogChildren/BKJDialogChildren.styled.tsx"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,mBAAmB,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAQrC,MAAM,CAAC,MAAM,gBAAgB,GAAG,MAAM,CAAC,GAAG,CAAwB;;;;;;;;;;;;;IAa9D,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC;CAChD,CAAC;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;;;;;qBAUrB,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,cAAc;;;CAG9D,CAAC;AAEF,MAAM,CAAC,MAAM,SAAS,GAAG,MAAM,CAAC,OAAO,CAAC,CAAA,EAAE,CAAC;AAE3C,MAAM,CAAC,MAAM,WAAW,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;;;;;CAUpC,CAAC;AAEF,MAAM,CAAC,MAAM,KAAK,GAAG,MAAM,CAAC,GAAG,CAAA;IAC3B,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW;;;;CAIzC,CAAC;AAEF,MAAM,CAAC,MAAM,WAAW,GAAG,MAAM,CAAC,GAAG,CAAA;;;;4BAIT,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,WAAW;;;;;;CAMlE,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { IBKJThemeDialog } from './BKJDialogChildren.types.js';
2
+ export declare const BKJThemeDialog: IBKJThemeDialog;
3
+ //# sourceMappingURL=BKJDialogChildren.theme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BKJDialogChildren.theme.d.ts","sourceRoot":"","sources":["../../../src/components/BKJDialogChildren/BKJDialogChildren.theme.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAE5D,eAAO,MAAM,cAAc,EAAE,eAG5B,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { css } from 'styled-components';
2
+ export const BKJThemeDialog = {
3
+ Default: css ``,
4
+ Danger: css ``,
5
+ };
6
+ //# sourceMappingURL=BKJDialogChildren.theme.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BKJDialogChildren.theme.js","sourceRoot":"","sources":["../../../src/components/BKJDialogChildren/BKJDialogChildren.theme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAGxC,MAAM,CAAC,MAAM,cAAc,GAAoB;IAC7C,OAAO,EAAE,GAAG,CAAA,EAAE;IACd,MAAM,EAAE,GAAG,CAAA,EAAE;CACd,CAAC"}
@@ -0,0 +1,18 @@
1
+ /// <reference types="react" />
2
+ import { DefaultTheme, FlattenInterpolation, ThemeProps } from 'styled-components';
3
+ export interface IBKJDialogChildrenProps extends React.HTMLAttributes<HTMLDivElement> {
4
+ variant: BKJThemeDialogVariantType;
5
+ title: string;
6
+ cancelLabel: string;
7
+ actionLabel: string;
8
+ onAction: () => void;
9
+ onCancel: () => void;
10
+ onClose: () => void;
11
+ ref: any;
12
+ }
13
+ export interface IBKJThemeDialog {
14
+ Default: FlattenInterpolation<ThemeProps<DefaultTheme>>;
15
+ Danger: FlattenInterpolation<ThemeProps<DefaultTheme>>;
16
+ }
17
+ export declare type BKJThemeDialogVariantType = keyof IBKJThemeDialog;
18
+ //# sourceMappingURL=BKJDialogChildren.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BKJDialogChildren.types.d.ts","sourceRoot":"","sources":["../../../src/components/BKJDialogChildren/BKJDialogChildren.types.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,YAAY,EAAE,oBAAoB,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAEnF,MAAM,WAAW,uBAAwB,SAAQ,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;IACnF,OAAO,EAAE,yBAAyB,CAAC;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,GAAG,EAAE,GAAG,CAAC;CACV;AAED,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,oBAAoB,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;IACxD,MAAM,EAAE,oBAAoB,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC;CACxD;AAED,oBAAY,yBAAyB,GAAG,MAAM,eAAe,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=BKJDialogChildren.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BKJDialogChildren.types.js","sourceRoot":"","sources":["../../../src/components/BKJDialogChildren/BKJDialogChildren.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export * from './BKJDialogChildren.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/BKJDialogChildren/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './BKJDialogChildren.js';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/BKJDialogChildren/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC"}
@@ -10,6 +10,7 @@ export * from './BKJChip/index.js';
10
10
  export * from './BKJComboBox/index.js';
11
11
  export * from './BKJComboBoxAsync/index.js';
12
12
  export * from './BKJDialog/index.js';
13
+ export * from './BKJDialogChildren/index.js';
13
14
  export * from './BKJDollarTextInput/index.js';
14
15
  export * from './BKJEllipsisMenu/index.js';
15
16
  export * from './BKJFileInput/index.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,0BAA0B,CAAC;AACzC,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,QAAQ,CAAC;AACvB,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,0BAA0B,CAAC;AACzC,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,QAAQ,CAAC;AACvB,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC"}
@@ -10,6 +10,7 @@ export * from './BKJChip/index.js';
10
10
  export * from './BKJComboBox/index.js';
11
11
  export * from './BKJComboBoxAsync/index.js';
12
12
  export * from './BKJDialog/index.js';
13
+ export * from './BKJDialogChildren/index.js';
13
14
  export * from './BKJDollarTextInput/index.js';
14
15
  export * from './BKJEllipsisMenu/index.js';
15
16
  export * from './BKJFileInput/index.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,0BAA0B,CAAC;AACzC,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,QAAQ,CAAC;AACvB,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,0BAA0B,CAAC;AACzC,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,qBAAqB,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,QAAQ,CAAC;AACvB,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bookjane2/bookjane-design-library",
3
- "version": "7.3.36",
3
+ "version": "7.3.38",
4
4
  "main": "./lib/index.js",
5
5
  "typings": "./lib/index.d.ts",
6
6
  "engines": {