@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.
Files changed (32) hide show
  1. package/app/.yalc/@kanda-libs/ks-component-ts/dist/index.esm.js +3 -3
  2. package/app/.yalc/@kanda-libs/ks-component-ts/dist/index.esm.js.map +3 -3
  3. package/app/.yalc/@kanda-libs/ks-component-ts/package.json +1 -1
  4. package/app/.yalc/@kanda-libs/ks-component-ts/yalc.sig +1 -1
  5. package/app/.yalc/@kanda-libs/ks-design-library/dist/index.d.ts +8 -0
  6. package/app/.yalc/@kanda-libs/ks-design-library/dist/index.esm.mjs +2 -2
  7. package/app/.yalc/@kanda-libs/ks-design-library/dist/index.esm.mjs.map +3 -3
  8. package/app/.yalc/@kanda-libs/ks-design-library/package.json +2 -2
  9. package/app/.yalc/@kanda-libs/ks-design-library/src/components/DesktopLayout/DesktopLayoutBoxed/DesktopLayoutBoxedContent/constants.ts +5 -1
  10. package/app/.yalc/@kanda-libs/ks-design-library/src/components/DesktopLayout/DesktopLayoutBoxed/DesktopLayoutBoxedContent/index.tsx +4 -0
  11. package/app/.yalc/@kanda-libs/ks-design-library/src/components/DesktopLayout/DesktopLayoutBoxed/constants.ts +1 -1
  12. package/app/.yalc/@kanda-libs/ks-design-library/src/components/DesktopLayout/DesktopLayoutBoxed/index.tsx +14 -5
  13. package/app/.yalc/@kanda-libs/ks-design-library/src/components/DesktopLayout/DesktopLayoutBoxed/useDesktopLayoutBoxedProps.ts +3 -0
  14. package/app/.yalc/@kanda-libs/ks-design-library/yalc.sig +1 -1
  15. package/app/yalc.lock +2 -2
  16. package/dist/index.d.ts +8643 -8535
  17. package/dist/index.esm.js +3 -3
  18. package/dist/index.esm.js.map +3 -3
  19. package/package.json +1 -1
  20. package/src/generated/components/schemas/Enterprise.ts +43 -0
  21. package/src/generated/components/schemas/LeadTrade.ts +2 -6
  22. package/src/generated/components/schemas/index.ts +1 -0
  23. package/src/generated/operations/deleteEnterprise.ts +29 -0
  24. package/src/generated/operations/getEnterprise.ts +29 -0
  25. package/src/generated/operations/getEnterpriseBranches.ts +30 -0
  26. package/src/generated/operations/getEnterprises.ts +25 -0
  27. package/src/generated/operations/index.ts +106 -0
  28. package/src/generated/operations/infoEnterprise.ts +43 -0
  29. package/src/generated/operations/postEnterprise.ts +24 -0
  30. package/src/generated/operations/postEnterpriseBranches.ts +39 -0
  31. package/src/generated/operations/putEnterprise.ts +35 -0
  32. package/src/generated/widget/index.tsx +42080 -41640
@@ -92,5 +92,5 @@
92
92
  "react": "17.0.2",
93
93
  "@types/react": "^17.0.39"
94
94
  },
95
- "yalcSig": "2d36767bafed43845c85e08cc57157dd"
95
+ "yalcSig": "afd03a3e5dc5bb1f25ac9d4461bf5027"
96
96
  }
@@ -1 +1 @@
1
- 2d36767bafed43845c85e08cc57157dd
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 {