@instructure/ui-view 8.13.1-snapshot.10 → 8.13.1-snapshot.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-view",
3
- "version": "8.13.1-snapshot.10+0ceb70745",
3
+ "version": "8.13.1-snapshot.11+b420bacc3",
4
4
  "description": "A component for basic styles including spacing, sizing, borders, display, positioning, and focus states.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "type": "commonjs",
@@ -25,21 +25,21 @@
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
27
  "@babel/runtime": "^7.13.10",
28
- "@instructure/console": "8.13.1-snapshot.10+0ceb70745",
29
- "@instructure/emotion": "8.13.1-snapshot.10+0ceb70745",
30
- "@instructure/shared-types": "8.13.1-snapshot.10+0ceb70745",
31
- "@instructure/ui-color-utils": "8.13.1-snapshot.10+0ceb70745",
32
- "@instructure/ui-dom-utils": "8.13.1-snapshot.10+0ceb70745",
33
- "@instructure/ui-i18n": "8.13.1-snapshot.10+0ceb70745",
34
- "@instructure/ui-position": "8.13.1-snapshot.10+0ceb70745",
35
- "@instructure/ui-prop-types": "8.13.1-snapshot.10+0ceb70745",
36
- "@instructure/ui-react-utils": "8.13.1-snapshot.10+0ceb70745",
28
+ "@instructure/console": "8.13.1-snapshot.11+b420bacc3",
29
+ "@instructure/emotion": "8.13.1-snapshot.11+b420bacc3",
30
+ "@instructure/shared-types": "8.13.1-snapshot.11+b420bacc3",
31
+ "@instructure/ui-color-utils": "8.13.1-snapshot.11+b420bacc3",
32
+ "@instructure/ui-dom-utils": "8.13.1-snapshot.11+b420bacc3",
33
+ "@instructure/ui-i18n": "8.13.1-snapshot.11+b420bacc3",
34
+ "@instructure/ui-position": "8.13.1-snapshot.11+b420bacc3",
35
+ "@instructure/ui-prop-types": "8.13.1-snapshot.11+b420bacc3",
36
+ "@instructure/ui-react-utils": "8.13.1-snapshot.11+b420bacc3",
37
37
  "prop-types": "^15"
38
38
  },
39
39
  "devDependencies": {
40
- "@instructure/ui-babel-preset": "8.13.1-snapshot.10+0ceb70745",
41
- "@instructure/ui-test-utils": "8.13.1-snapshot.10+0ceb70745",
42
- "@instructure/ui-themes": "8.13.1-snapshot.10+0ceb70745"
40
+ "@instructure/ui-babel-preset": "8.13.1-snapshot.11+b420bacc3",
41
+ "@instructure/ui-test-utils": "8.13.1-snapshot.11+b420bacc3",
42
+ "@instructure/ui-themes": "8.13.1-snapshot.11+b420bacc3"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "react": ">=16.8 <=17"
@@ -48,5 +48,5 @@
48
48
  "access": "public"
49
49
  },
50
50
  "sideEffects": false,
51
- "gitHead": "0ceb7074574b9c3a7249eecab3d1ac0e7175a5dd"
51
+ "gitHead": "b420bacc32da9bd8569d1bc8082e7d5c46ebd408"
52
52
  }
package/src/View/props.ts CHANGED
@@ -308,4 +308,4 @@ const allowedProps: AllowedPropKeys = [
308
308
  ]
309
309
 
310
310
  export { propTypes, allowedProps }
311
- export type { ViewProps, ViewStyle }
311
+ export type { ViewProps, ViewOwnProps, ViewStyle }
package/src/index.ts CHANGED
@@ -26,4 +26,4 @@ export { ContextView } from './ContextView'
26
26
  export { View } from './View'
27
27
 
28
28
  export type { ContextViewProps } from './ContextView/props'
29
- export type { ViewProps } from './View/props'
29
+ export type { ViewProps, ViewOwnProps } from './View/props'
@@ -13,76 +13,8 @@ API:
13
13
  **/
14
14
  declare class View extends Component<ViewProps> {
15
15
  static componentId: string;
16
- static allowedProps: readonly (keyof {
17
- as?: import("@instructure/shared-types/types/CommonProps").AsElementType | undefined;
18
- elementRef?: ((element: Element | null) => void) | undefined;
19
- display: "auto" | "inline" | "block" | "inline-block" | "flex" | "inline-flex";
20
- overflowX: "auto" | "hidden" | "visible";
21
- overflowY: "auto" | "hidden" | "visible";
22
- height?: string | number | undefined;
23
- width?: string | number | undefined;
24
- maxHeight?: string | number | undefined;
25
- maxWidth?: string | number | undefined;
26
- minHeight?: string | number | undefined;
27
- minWidth?: string | number | undefined;
28
- children?: import("react").ReactNode;
29
- textAlign?: "start" | "center" | "end" | undefined;
30
- borderColor: "transparent" | "primary" | "secondary" | "brand" | "info" | "success" | "warning" | "alert" | "danger";
31
- background?: "transparent" | "primary" | "secondary" | "brand" | "info" | "success" | "warning" | "alert" | "danger" | "primary-inverse" | undefined;
32
- position: "static" | "absolute" | "relative" | "sticky" | "fixed";
33
- insetInlineStart?: string | undefined;
34
- insetInlineEnd?: string | undefined;
35
- insetBlockStart?: string | undefined;
36
- insetBlockEnd?: string | undefined;
37
- withFocusOutline?: boolean | undefined;
38
- focusPosition: "offset" | "inset";
39
- focusColor: "info" | "success" | "danger" | "inverse";
40
- shouldAnimateFocus: boolean;
41
- withVisualDebug?: boolean | undefined;
42
- dir?: "ltr" | "rtl" | undefined;
43
- margin?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Spacing | undefined;
44
- padding?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Spacing | undefined;
45
- borderWidth?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").BorderWidth | undefined;
46
- borderRadius?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").BorderRadii | undefined;
47
- shadow?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Shadow | undefined;
48
- stacking?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Stacking | undefined;
49
- cursor?: import("@instructure/ui-prop-types/types/cursor").Cursor | undefined;
50
- })[];
51
- static propTypes: import("@instructure/shared-types/types/UtilityTypes").PropValidators<keyof {
52
- as?: import("@instructure/shared-types/types/CommonProps").AsElementType | undefined;
53
- elementRef?: ((element: Element | null) => void) | undefined;
54
- display: "auto" | "inline" | "block" | "inline-block" | "flex" | "inline-flex";
55
- overflowX: "auto" | "hidden" | "visible";
56
- overflowY: "auto" | "hidden" | "visible";
57
- height?: string | number | undefined;
58
- width?: string | number | undefined;
59
- maxHeight?: string | number | undefined;
60
- maxWidth?: string | number | undefined;
61
- minHeight?: string | number | undefined;
62
- minWidth?: string | number | undefined;
63
- children?: import("react").ReactNode;
64
- textAlign?: "start" | "center" | "end" | undefined;
65
- borderColor: "transparent" | "primary" | "secondary" | "brand" | "info" | "success" | "warning" | "alert" | "danger";
66
- background?: "transparent" | "primary" | "secondary" | "brand" | "info" | "success" | "warning" | "alert" | "danger" | "primary-inverse" | undefined;
67
- position: "static" | "absolute" | "relative" | "sticky" | "fixed";
68
- insetInlineStart?: string | undefined;
69
- insetInlineEnd?: string | undefined;
70
- insetBlockStart?: string | undefined;
71
- insetBlockEnd?: string | undefined;
72
- withFocusOutline?: boolean | undefined;
73
- focusPosition: "offset" | "inset";
74
- focusColor: "info" | "success" | "danger" | "inverse";
75
- shouldAnimateFocus: boolean;
76
- withVisualDebug?: boolean | undefined;
77
- dir?: "ltr" | "rtl" | undefined;
78
- margin?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Spacing | undefined;
79
- padding?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Spacing | undefined;
80
- borderWidth?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").BorderWidth | undefined;
81
- borderRadius?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").BorderRadii | undefined;
82
- shadow?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Shadow | undefined;
83
- stacking?: import("@instructure/emotion/types/styleUtils/ThemeablePropValues").Stacking | undefined;
84
- cursor?: import("@instructure/ui-prop-types/types/cursor").Cursor | undefined;
85
- }>;
16
+ static allowedProps: readonly (keyof import("./props").ViewOwnProps)[];
17
+ static propTypes: import("@instructure/shared-types/types/UtilityTypes").PropValidators<keyof import("./props").ViewOwnProps>;
86
18
  static defaultProps: {
87
19
  readonly display: "auto";
88
20
  readonly overflowX: "visible";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/View/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAWhD,OAAO,EAAE,GAAG,EAAa,MAAM,sBAAsB,CAAA;AAMrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC;;;;;;;;GAQG;AACH,cAEM,IAAK,SAAQ,SAAS,CAAC,SAAS,CAAC;IACrC,MAAM,CAAC,WAAW,SAAS;IAC3B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;MAUT;IAgBV,MAAM,CAAC,aAAa,UACX,OAAO,MAAM,EAAE,GAAG,CAAC,aACf,cAAc,GAAG,CAAC,yBAiB9B;IAED,OAAO,CAAC,kBAAkB,CAAS;IACnC,IAAI,QAAQ,mBAMX;gBAEW,KAAK,EAAE,SAAS;IAK5B,iBAAiB;IAIjB,kBAAkB;IAoDlB,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,gBAAgB,OAAQ,OAAO,GAAG,IAAI,UAKrC;IAED,MAAM;CA0CP;AAED,eAAe,IAAI,CAAA;AACnB,OAAO,EAAE,IAAI,EAAE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/View/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAWhD,OAAO,EAAE,GAAG,EAAa,MAAM,sBAAsB,CAAA;AAMrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC;;;;;;;;GAQG;AACH,cAEM,IAAK,SAAQ,SAAS,CAAC,SAAS,CAAC;IACrC,MAAM,CAAC,WAAW,SAAS;IAC3B,MAAM,CAAC,YAAY,oDAAe;IAClC,MAAM,CAAC,SAAS,8GAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;MAUT;IAgBV,MAAM,CAAC,aAAa,UACX,OAAO,MAAM,EAAE,GAAG,CAAC,aACf,cAAc,GAAG,CAAC,yBAiB9B;IAED,OAAO,CAAC,kBAAkB,CAAS;IACnC,IAAI,QAAQ,mBAMX;gBAEW,KAAK,EAAE,SAAS;IAK5B,iBAAiB;IAIjB,kBAAkB;IAoDlB,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,gBAAgB,OAAQ,OAAO,GAAG,IAAI,UAKrC;IAED,MAAM;CA0CP;AAED,eAAe,IAAI,CAAA;AACnB,OAAO,EAAE,IAAI,EAAE,CAAA"}
@@ -128,5 +128,5 @@ declare type ViewStyle = ComponentStyle<'view'> & {
128
128
  declare const propTypes: PropValidators<PropKeys>;
129
129
  declare const allowedProps: AllowedPropKeys;
130
130
  export { propTypes, allowedProps };
131
- export type { ViewProps, ViewStyle };
131
+ export type { ViewProps, ViewOwnProps, ViewStyle };
132
132
  //# sourceMappingURL=props.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/View/props.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/View/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAA;AAGxD,OAAO,KAAK,EACV,aAAa,EACb,mBAAmB,EACnB,cAAc,EACd,SAAS,EACV,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EACV,cAAc,EACd,OAAO,EACP,WAAW,EACX,WAAW,EACX,MAAM,EACN,QAAQ,EACR,cAAc,EACd,WAAW,EACZ,MAAM,sBAAsB,CAAA;AAE7B,aAAK,YAAY,GAAG;IAClB;;OAEG;IACH,EAAE,CAAC,EAAE,aAAa,CAAA;IAClB;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;IAC9C;;;OAGG;IACH,OAAO,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,cAAc,GAAG,MAAM,GAAG,aAAa,CAAA;IAC9E,SAAS,EAAE,MAAM,GAAG,QAAQ,GAAG,SAAS,CAAA;IACxC,SAAS,EAAE,MAAM,GAAG,QAAQ,GAAG,SAAS,CAAA;IACxC,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACxB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACvB,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC3B,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC1B,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC3B,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC1B;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAA;IACtC;;OAEG;IACH,WAAW,EACP,aAAa,GACb,SAAS,GACT,WAAW,GACX,OAAO,GACP,MAAM,GACN,SAAS,GACT,SAAS,GACT,OAAO,GACP,QAAQ,CAAA;IACZ;;OAEG;IACH,UAAU,CAAC,EACP,aAAa,GACb,SAAS,GACT,WAAW,GACX,iBAAiB,GACjB,OAAO,GACP,MAAM,GACN,OAAO,GACP,SAAS,GACT,QAAQ,GACR,SAAS,CAAA;IACb;;OAEG;IACH,QAAQ,EAAE,QAAQ,GAAG,UAAU,GAAG,UAAU,GAAG,QAAQ,GAAG,OAAO,CAAA;IACjE;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B;;OAEG;IACH,aAAa,EAAE,QAAQ,GAAG,OAAO,CAAA;IACjC;;OAEG;IACH,UAAU,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAA;IACrD;;OAEG;IACH,kBAAkB,EAAE,OAAO,CAAA;IAC3B;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAA;IAEzB,GAAG,CAAC,EAAE,KAAK,GAAG,KAAK,CAAA;IACnB;;;;OAIG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB;;;OAGG;IACH,WAAW,CAAC,EAAE,WAAW,CAAA;IACzB;;;OAGG;IACH,YAAY,CAAC,EAAE,WAAW,CAAA;IAC1B;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IAEf;;OAEG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,YAAY,CAAA;AAElC,aAAK,SAAS,GAAG,YAAY,GAC3B,cAAc,CAAC,SAAS,EAAE,SAAS,CAAC,GACpC,mBAAmB,CAAC,YAAY,CAAC,CAAA;AAEnC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,SAAS,GAAG,cAAc,CAAC,MAAM,CAAC,GAAG;IACxC,YAAY,EAAE,WAAW,CAAA;CAC1B,CAAA;AAED,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAoEvC,CAAA;AAKD,QAAA,MAAM,YAAY,EAAE,eAkCnB,CAAA;AAED,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAA;AAClC,YAAY,EAAE,SAAS,EAAE,YAAY,EAAE,SAAS,EAAE,CAAA"}
package/types/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { ContextView } from './ContextView';
2
2
  export { View } from './View';
3
3
  export type { ContextViewProps } from './ContextView/props';
4
- export type { ViewProps } from './View/props';
4
+ export type { ViewProps, ViewOwnProps } from './View/props';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAwBA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAA;AAE7B,YAAY,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAC3D,YAAY,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAwBA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAA;AAE7B,YAAY,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAC3D,YAAY,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,cAAc,CAAA"}