iglooform 3.7.6 → 3.7.7

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.
@@ -30,7 +30,7 @@ export default function DumiContextWrapper() {
30
30
 
31
31
  return (
32
32
  <SiteContext.Provider value={{
33
- pkg: {"name":"iglooform","version":"3.7.5","license":"MIT"},
33
+ pkg: {"name":"iglooform","version":"3.7.6","license":"MIT"},
34
34
  historyType: "browser",
35
35
  entryExports,
36
36
  demos,
@@ -6,7 +6,11 @@
6
6
  background-image: url(./bg.svg);
7
7
  background-repeat: no-repeat;
8
8
  background-position-x: 100%;
9
- background-size: contain;
9
+ background-size: auto 100%;
10
+
11
+ @media (max-aspect-ratio: 95/100) {
12
+ background-position-x: calc((0.95 - 1151 / 1080) * 100vh);
13
+ }
10
14
 
11
15
  .igloo-login-page-logo {
12
16
  position: absolute;
@@ -6,7 +6,11 @@
6
6
  background-image: url(./bg.svg);
7
7
  background-repeat: no-repeat;
8
8
  background-position-x: 100%;
9
- background-size: contain;
9
+ background-size: auto 100%;
10
+
11
+ @media (max-aspect-ratio: 95/100) {
12
+ background-position-x: calc((0.95 - 1151 / 1080) * 100vh);
13
+ }
10
14
 
11
15
  .igloo-login-page-logo {
12
16
  position: absolute;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iglooform",
3
- "version": "3.7.6",
3
+ "version": "3.7.7",
4
4
  "scripts": {
5
5
  "start": "dumi dev",
6
6
  "build-dev": "dumi build",
@@ -1,20 +0,0 @@
1
- import { FC, ReactNode } from 'react';
2
- import { FormItemProps } from 'antd/es/form';
3
- import { FormItemConfig, FormItemName } from '../../types';
4
- import './style';
5
- export interface AddableSectionProps {
6
- parentName?: FormItemName;
7
- formItemProps?: FormItemProps;
8
- config: FormItemConfig;
9
- preview?: boolean;
10
- disabled?: boolean;
11
- setShowStepButton?: (showButton: boolean) => void;
12
- max?: number;
13
- min?: number;
14
- initCount?: number;
15
- addButtonText?: string;
16
- addButtonIcon?: ReactNode;
17
- description?: string | ReactNode;
18
- }
19
- declare const AddableSection: FC<AddableSectionProps>;
20
- export default AddableSection;
@@ -1,19 +0,0 @@
1
- import { FC, ReactNode } from 'react';
2
- import { FormItemProps } from 'antd/es/form';
3
- import { FormItemConfig, FormItemName } from '../../types';
4
- import './style';
5
- export interface AddableSectionProps extends FormItemConfig {
6
- parentName?: FormItemName;
7
- formItemProps?: FormItemProps;
8
- preview?: boolean;
9
- disabledFromParent?: boolean;
10
- setShowStepButton?: (showButton: boolean) => void;
11
- max?: number;
12
- min?: number;
13
- initCount?: number;
14
- addButtonText?: string;
15
- addButtonIcon?: ReactNode;
16
- description?: string | ReactNode;
17
- }
18
- declare const AddableSection: FC<AddableSectionProps>;
19
- export default AddableSection;
@@ -1,20 +0,0 @@
1
- import { FC, ReactNode } from 'react';
2
- import { FormItemProps } from 'antd/es/form';
3
- import { FormItemConfig, FormItemName } from '../../types';
4
- import './style';
5
- export interface AddableSectionProps {
6
- parentName?: FormItemName;
7
- formItemProps?: FormItemProps;
8
- config: FormItemConfig;
9
- preview?: boolean;
10
- disabled?: boolean;
11
- setShowStepButton?: (showButton: boolean) => void;
12
- max?: number;
13
- min?: number;
14
- initCount?: number;
15
- addButtonText?: string;
16
- addButtonIcon?: ReactNode;
17
- description?: string | ReactNode;
18
- }
19
- declare const AddableSection: FC<AddableSectionProps>;
20
- export default AddableSection;
@@ -1,19 +0,0 @@
1
- import { FC, ReactNode } from 'react';
2
- import { FormItemProps } from 'antd/es/form';
3
- import { FormItemConfig, FormItemName } from '../../types';
4
- import './style';
5
- export interface AddableSectionProps extends FormItemConfig {
6
- parentName?: FormItemName;
7
- formItemProps?: FormItemProps;
8
- preview?: boolean;
9
- disabledFromParent?: boolean;
10
- setShowStepButton?: (showButton: boolean) => void;
11
- max?: number;
12
- min?: number;
13
- initCount?: number;
14
- addButtonText?: string;
15
- addButtonIcon?: ReactNode;
16
- description?: string | ReactNode;
17
- }
18
- declare const AddableSection: FC<AddableSectionProps>;
19
- export default AddableSection;