@kanda-libs/ks-component-ts 0.2.247-qa → 0.2.248-qa
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/app/.yalc/@kanda-libs/ks-component-ts/dist/index.esm.js +3 -3
- package/app/.yalc/@kanda-libs/ks-component-ts/dist/index.esm.js.map +3 -3
- package/app/.yalc/@kanda-libs/ks-component-ts/package.json +1 -1
- package/app/.yalc/@kanda-libs/ks-component-ts/yalc.sig +1 -1
- package/app/.yalc/@kanda-libs/ks-design-library/dist/index.d.ts +8 -0
- package/app/.yalc/@kanda-libs/ks-design-library/dist/index.esm.mjs +2 -2
- package/app/.yalc/@kanda-libs/ks-design-library/dist/index.esm.mjs.map +3 -3
- package/app/.yalc/@kanda-libs/ks-design-library/package.json +2 -2
- package/app/.yalc/@kanda-libs/ks-design-library/src/components/DesktopLayout/DesktopLayoutBoxed/DesktopLayoutBoxedContent/constants.ts +5 -1
- package/app/.yalc/@kanda-libs/ks-design-library/src/components/DesktopLayout/DesktopLayoutBoxed/DesktopLayoutBoxedContent/index.tsx +4 -0
- package/app/.yalc/@kanda-libs/ks-design-library/src/components/DesktopLayout/DesktopLayoutBoxed/constants.ts +1 -1
- package/app/.yalc/@kanda-libs/ks-design-library/src/components/DesktopLayout/DesktopLayoutBoxed/index.tsx +14 -5
- package/app/.yalc/@kanda-libs/ks-design-library/src/components/DesktopLayout/DesktopLayoutBoxed/useDesktopLayoutBoxedProps.ts +3 -0
- package/app/.yalc/@kanda-libs/ks-design-library/yalc.sig +1 -1
- package/app/yalc.lock +2 -2
- package/dist/index.d.ts +8643 -8535
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +3 -3
- package/package.json +1 -1
- package/src/generated/components/schemas/Enterprise.ts +43 -0
- package/src/generated/components/schemas/LeadTrade.ts +2 -6
- package/src/generated/components/schemas/index.ts +1 -0
- package/src/generated/operations/deleteEnterprise.ts +29 -0
- package/src/generated/operations/getEnterprise.ts +29 -0
- package/src/generated/operations/getEnterpriseBranches.ts +30 -0
- package/src/generated/operations/getEnterprises.ts +25 -0
- package/src/generated/operations/index.ts +106 -0
- package/src/generated/operations/infoEnterprise.ts +43 -0
- package/src/generated/operations/postEnterprise.ts +24 -0
- package/src/generated/operations/postEnterpriseBranches.ts +39 -0
- package/src/generated/operations/putEnterprise.ts +35 -0
- package/src/generated/widget/index.tsx +42080 -41640
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
afd03a3e5dc5bb1f25ac9d4461bf5027
|
|
@@ -26,6 +26,10 @@ export interface ContentDefaultProps {
|
|
|
26
26
|
left?: boolean;
|
|
27
27
|
flex?: boolean;
|
|
28
28
|
width?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Don't add padding to the content
|
|
31
|
+
*/
|
|
32
|
+
noPadding?: boolean;
|
|
29
33
|
}
|
|
30
34
|
export declare const DesktopLayoutBoxedContent: FunctionComponent<ContentDefaultProps>;
|
|
31
35
|
export interface ContentHeaderProps {
|
|
@@ -61,6 +65,10 @@ export interface DesktopLayoutBoxedProps {
|
|
|
61
65
|
* Allow for the y axis to overflow when there is a lot of content within the card
|
|
62
66
|
*/
|
|
63
67
|
allowYOverflow?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
* Optional prop for whether or not to show the navigation, like with DesktopLayoutDefault
|
|
70
|
+
*/
|
|
71
|
+
showNavigation?: boolean;
|
|
64
72
|
}
|
|
65
73
|
export declare const DesktopLayoutBoxed: FunctionComponent<DesktopLayoutBoxedProps>;
|
|
66
74
|
export interface ContentProps {
|