@pedidopago/ui 1.10.17 → 1.10.18

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.
@@ -1,5 +1,5 @@
1
- import { FC } from 'react';
1
+ /// <reference types="react" />
2
2
  import { AlertProps } from './types';
3
- declare const Alert: FC<AlertProps>;
3
+ declare function Alert({ title, content, maxWidth, onClose, icon, type, variant, closable, ...rest }: AlertProps): JSX.Element;
4
4
  export default Alert;
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Alert/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAS3B,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAErC,QAAA,MAAM,KAAK,EAAE,EAAE,CAAC,UAAU,CAuCzB,CAAC;AAEF,eAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Alert/index.tsx"],"names":[],"mappings":";AAOA,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAErC,iBAAS,KAAK,CAAC,EACb,KAAK,EACL,OAAO,EACP,QAAQ,EACR,OAAO,EACP,IAAa,EACb,IAAgB,EAChB,OAAkB,EAClB,QAAQ,EACR,GAAG,IAAI,EACR,EAAE,UAAU,eA6BZ;AAED,eAAe,KAAK,CAAC"}
@@ -1 +1 @@
1
- "use strict";function _typeof(obj){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(obj){return typeof obj}:function(obj){return obj&&"function"==typeof Symbol&&obj.constructor===Symbol&&obj!==Symbol.prototype?"symbol":typeof obj},_typeof(obj)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _Icon=_interopRequireDefault(require("../Icon")),_Typography=_interopRequireDefault(require("../Typography")),_Button=_interopRequireDefault(require("../Button")),_Flex=_interopRequireDefault(require("../Flex")),_styles=require("./styles"),_jsxRuntime=require("react/jsx-runtime"),_excluded=["title","content","maxWidth","onClose","icon","type","variant","closable"];function _interopRequireDefault(obj){return obj&&obj.__esModule?obj:{default:obj}}function ownKeys(object,enumerableOnly){var keys=Object.keys(object);if(Object.getOwnPropertySymbols){var symbols=Object.getOwnPropertySymbols(object);enumerableOnly&&(symbols=symbols.filter(function(sym){return Object.getOwnPropertyDescriptor(object,sym).enumerable})),keys.push.apply(keys,symbols)}return keys}function _objectSpread(target){for(var source,i=1;i<arguments.length;i++)source=null==arguments[i]?{}:arguments[i],i%2?ownKeys(Object(source),!0).forEach(function(key){_defineProperty(target,key,source[key])}):Object.getOwnPropertyDescriptors?Object.defineProperties(target,Object.getOwnPropertyDescriptors(source)):ownKeys(Object(source)).forEach(function(key){Object.defineProperty(target,key,Object.getOwnPropertyDescriptor(source,key))});return target}function _defineProperty(obj,key,value){return key=_toPropertyKey(key),key in obj?Object.defineProperty(obj,key,{value:value,enumerable:!0,configurable:!0,writable:!0}):obj[key]=value,obj}function _toPropertyKey(arg){var key=_toPrimitive(arg,"string");return"symbol"===_typeof(key)?key:key+""}function _toPrimitive(input,hint){if("object"!==_typeof(input)||null===input)return input;var prim=input[Symbol.toPrimitive];if(prim!==void 0){var res=prim.call(input,hint||"default");if("object"!==_typeof(res))return res;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===hint?String:Number)(input)}function _objectWithoutProperties(source,excluded){if(null==source)return{};var key,i,target=_objectWithoutPropertiesLoose(source,excluded);if(Object.getOwnPropertySymbols){var sourceSymbolKeys=Object.getOwnPropertySymbols(source);for(i=0;i<sourceSymbolKeys.length;i++)key=sourceSymbolKeys[i],0<=excluded.indexOf(key)||Object.prototype.propertyIsEnumerable.call(source,key)&&(target[key]=source[key])}return target}function _objectWithoutPropertiesLoose(source,excluded){if(null==source)return{};var key,i,target={},sourceKeys=Object.keys(source);for(i=0;i<sourceKeys.length;i++)key=sourceKeys[i],0<=excluded.indexOf(key)||(target[key]=source[key]);return target}var Alert=function(_ref){var title=_ref.title,content=_ref.content,maxWidth=_ref.maxWidth,onClose=_ref.onClose,_ref$icon=_ref.icon,icon=void 0===_ref$icon?"info":_ref$icon,_ref$type=_ref.type,type=void 0===_ref$type?"default":_ref$type,_ref$variant=_ref.variant,variant=void 0===_ref$variant?"filled":_ref$variant,closable=_ref.closable,rest=_objectWithoutProperties(_ref,_excluded),defaultTestId=rest["data-testid"]||"alert";return/*#__PURE__*/(0,_jsxRuntime.jsxs)(_styles.StyledAlertWrapper,_objectSpread(_objectSpread({"data-variant":variant,type:type,maxWidth:maxWidth,"data-testid":defaultTestId},rest),{},{children:[/*#__PURE__*/(0,_jsxRuntime.jsx)(_styles.StyledIconBox,{type:type,"data-variant":variant,children:/*#__PURE__*/(0,_jsxRuntime.jsx)(_Icon.default,{name:icon,size:"outlined"===variant?"1.375rem":"2rem"})}),/*#__PURE__*/(0,_jsxRuntime.jsxs)(_Flex.default,{direction:"column",justifyContent:"center",style:{flex:1},spacing:"0.5rem",children:[title&&/*#__PURE__*/(0,_jsxRuntime.jsx)(_Typography.default,{fontSize:"xs",fontWeight:"bold",children:title}),content]}),("closable"===variant||closable)&&/*#__PURE__*/(0,_jsxRuntime.jsx)(_Button.default,{onClick:onClose,variant:"ghost",style:{padding:"0"},children:/*#__PURE__*/(0,_jsxRuntime.jsx)(_Icon.default,{name:"x",color:"neutral.black"})})]}))},_default=Alert;exports.default=_default;
1
+ "use strict";function _typeof(obj){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(obj){return typeof obj}:function(obj){return obj&&"function"==typeof Symbol&&obj.constructor===Symbol&&obj!==Symbol.prototype?"symbol":typeof obj},_typeof(obj)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _Icon=_interopRequireDefault(require("../Icon")),_Typography=_interopRequireDefault(require("../Typography")),_Button=_interopRequireDefault(require("../Button")),_Flex=_interopRequireDefault(require("../Flex")),_styles=require("./styles"),_jsxRuntime=require("react/jsx-runtime"),_excluded=["title","content","maxWidth","onClose","icon","type","variant","closable"];function _interopRequireDefault(obj){return obj&&obj.__esModule?obj:{default:obj}}function ownKeys(object,enumerableOnly){var keys=Object.keys(object);if(Object.getOwnPropertySymbols){var symbols=Object.getOwnPropertySymbols(object);enumerableOnly&&(symbols=symbols.filter(function(sym){return Object.getOwnPropertyDescriptor(object,sym).enumerable})),keys.push.apply(keys,symbols)}return keys}function _objectSpread(target){for(var source,i=1;i<arguments.length;i++)source=null==arguments[i]?{}:arguments[i],i%2?ownKeys(Object(source),!0).forEach(function(key){_defineProperty(target,key,source[key])}):Object.getOwnPropertyDescriptors?Object.defineProperties(target,Object.getOwnPropertyDescriptors(source)):ownKeys(Object(source)).forEach(function(key){Object.defineProperty(target,key,Object.getOwnPropertyDescriptor(source,key))});return target}function _defineProperty(obj,key,value){return key=_toPropertyKey(key),key in obj?Object.defineProperty(obj,key,{value:value,enumerable:!0,configurable:!0,writable:!0}):obj[key]=value,obj}function _toPropertyKey(arg){var key=_toPrimitive(arg,"string");return"symbol"===_typeof(key)?key:key+""}function _toPrimitive(input,hint){if("object"!==_typeof(input)||null===input)return input;var prim=input[Symbol.toPrimitive];if(prim!==void 0){var res=prim.call(input,hint||"default");if("object"!==_typeof(res))return res;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===hint?String:Number)(input)}function _objectWithoutProperties(source,excluded){if(null==source)return{};var key,i,target=_objectWithoutPropertiesLoose(source,excluded);if(Object.getOwnPropertySymbols){var sourceSymbolKeys=Object.getOwnPropertySymbols(source);for(i=0;i<sourceSymbolKeys.length;i++)key=sourceSymbolKeys[i],0<=excluded.indexOf(key)||Object.prototype.propertyIsEnumerable.call(source,key)&&(target[key]=source[key])}return target}function _objectWithoutPropertiesLoose(source,excluded){if(null==source)return{};var key,i,target={},sourceKeys=Object.keys(source);for(i=0;i<sourceKeys.length;i++)key=sourceKeys[i],0<=excluded.indexOf(key)||(target[key]=source[key]);return target}function Alert(_ref){var title=_ref.title,content=_ref.content,maxWidth=_ref.maxWidth,onClose=_ref.onClose,_ref$icon=_ref.icon,icon=void 0===_ref$icon?"info":_ref$icon,_ref$type=_ref.type,type=void 0===_ref$type?"default":_ref$type,_ref$variant=_ref.variant,variant=void 0===_ref$variant?"filled":_ref$variant,closable=_ref.closable,rest=_objectWithoutProperties(_ref,_excluded),defaultTestId=rest["data-testid"]||"alert";return/*#__PURE__*/(0,_jsxRuntime.jsxs)(_styles.StyledAlertWrapper,_objectSpread(_objectSpread({"data-variant":variant,type:type,maxWidth:maxWidth,"data-testid":defaultTestId},rest),{},{children:[/*#__PURE__*/(0,_jsxRuntime.jsx)(_styles.StyledIconBox,{type:type,"data-variant":variant,children:/*#__PURE__*/(0,_jsxRuntime.jsx)(_Icon.default,{name:icon,size:"outlined"===variant?"1.375rem":"2rem"})}),/*#__PURE__*/(0,_jsxRuntime.jsxs)(_Flex.default,{direction:"column",justifyContent:"center",style:{flex:1},spacing:"0.5rem",children:[title&&/*#__PURE__*/(0,_jsxRuntime.jsx)(_Typography.default,{fontSize:"xs",fontWeight:"bold",children:title}),content]}),("closable"===variant||closable)&&/*#__PURE__*/(0,_jsxRuntime.jsx)(_Button.default,{onClick:onClose,variant:"ghost",style:{padding:"0"},children:/*#__PURE__*/(0,_jsxRuntime.jsx)(_Icon.default,{name:"x",color:"neutral.black"})})]}))}var _default=Alert;exports.default=_default;
@@ -36,7 +36,7 @@ export type AlertProps = {
36
36
  onClose?: () => void;
37
37
  closable?: boolean;
38
38
  ['data-testid']?: string;
39
- } & HTMLAttributes<HTMLDivElement>;
39
+ } & Omit<HTMLAttributes<HTMLDivElement>, 'content'>;
40
40
  export type IStyledAlert = {
41
41
  maxWidth?: number;
42
42
  type?: AlertTypes;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Alert/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,MAAM,MAAM,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,UAAU,GAAG,aAAa,CAAC;AAElG,MAAM,MAAM,UAAU,GAAG;IACvB;;;OAGG;IACH,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB;;;OAGG;IACH,OAAO,CAAC,EAAE,UAAU,GAAG,QAAQ,GAAG,UAAU,GAAG,aAAa,CAAC;IAC7D;;;OAGG;IACH,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAErB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,CAAC,aAAa,CAAC,CAAC,EAAE,MAAM,CAAC;CAC1B,GAAG,cAAc,CAAC,cAAc,CAAC,CAAC;AAEnC,MAAM,MAAM,YAAY,GAAG;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,UAAU,CAAC;CACnB,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Alert/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,MAAM,MAAM,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,UAAU,GAAG,aAAa,CAAC;AAElG,MAAM,MAAM,UAAU,GAAG;IACvB;;;OAGG;IACH,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB;;;OAGG;IACH,OAAO,CAAC,EAAE,UAAU,GAAG,QAAQ,GAAG,UAAU,GAAG,aAAa,CAAC;IAC7D;;;OAGG;IACH,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAErB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,CAAC,aAAa,CAAC,CAAC,EAAE,MAAM,CAAC;CAC1B,GAAG,IAAI,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,SAAS,CAAC,CAAC;AAEpD,MAAM,MAAM,YAAY,GAAG;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE,UAAU,CAAC;CACnB,CAAC"}
@@ -55,7 +55,7 @@ export declare const AnimatedContainer: import("@emotion/styled").StyledComponen
55
55
  "aria-colindex"?: number | undefined;
56
56
  "aria-colspan"?: number | undefined;
57
57
  "aria-controls"?: string | undefined;
58
- "aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
58
+ "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
59
59
  "aria-describedby"?: string | undefined;
60
60
  "aria-details"?: string | undefined;
61
61
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
@@ -63,7 +63,7 @@ export declare const ChildrenContainer: import("@emotion/styled").StyledComponen
63
63
  "aria-colindex"?: number | undefined;
64
64
  "aria-colspan"?: number | undefined;
65
65
  "aria-controls"?: string | undefined;
66
- "aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
66
+ "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
67
67
  "aria-describedby"?: string | undefined;
68
68
  "aria-details"?: string | undefined;
69
69
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
@@ -62,7 +62,7 @@ export declare const ModalWrapperContainer: import("@emotion/styled").StyledComp
62
62
  "aria-colindex"?: number | undefined;
63
63
  "aria-colspan"?: number | undefined;
64
64
  "aria-controls"?: string | undefined;
65
- "aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
65
+ "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
66
66
  "aria-describedby"?: string | undefined;
67
67
  "aria-details"?: string | undefined;
68
68
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
@@ -54,7 +54,7 @@ export declare const EmotePickerDesktopContainer: import("@emotion/styled").Styl
54
54
  "aria-colindex"?: number | undefined;
55
55
  "aria-colspan"?: number | undefined;
56
56
  "aria-controls"?: string | undefined;
57
- "aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
57
+ "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
58
58
  "aria-describedby"?: string | undefined;
59
59
  "aria-details"?: string | undefined;
60
60
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
@@ -312,7 +312,7 @@ export declare const EmotePickerMobileContainer: import("@emotion/styled").Style
312
312
  "aria-colindex"?: number | undefined;
313
313
  "aria-colspan"?: number | undefined;
314
314
  "aria-controls"?: string | undefined;
315
- "aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
315
+ "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
316
316
  "aria-describedby"?: string | undefined;
317
317
  "aria-details"?: string | undefined;
318
318
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
@@ -67,7 +67,7 @@ export declare const ModalElement: import("@emotion/styled").StyledComponent<{
67
67
  "aria-colindex"?: number | undefined;
68
68
  "aria-colspan"?: number | undefined;
69
69
  "aria-controls"?: string | undefined;
70
- "aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
70
+ "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
71
71
  "aria-describedby"?: string | undefined;
72
72
  "aria-details"?: string | undefined;
73
73
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
@@ -329,7 +329,7 @@ export declare const Overlay: import("@emotion/styled").StyledComponent<{
329
329
  "aria-colindex"?: number | undefined;
330
330
  "aria-colspan"?: number | undefined;
331
331
  "aria-controls"?: string | undefined;
332
- "aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
332
+ "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
333
333
  "aria-describedby"?: string | undefined;
334
334
  "aria-details"?: string | undefined;
335
335
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
@@ -55,7 +55,7 @@ export declare const OptionsAreaWrapper: import("@emotion/styled").StyledCompone
55
55
  "aria-colindex"?: number | undefined;
56
56
  "aria-colspan"?: number | undefined;
57
57
  "aria-controls"?: string | undefined;
58
- "aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
58
+ "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
59
59
  "aria-describedby"?: string | undefined;
60
60
  "aria-details"?: string | undefined;
61
61
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
@@ -55,7 +55,7 @@ export declare const OptionsContainer: import("@emotion/styled").StyledComponent
55
55
  "aria-colindex"?: number | undefined;
56
56
  "aria-colspan"?: number | undefined;
57
57
  "aria-controls"?: string | undefined;
58
- "aria-current"?: boolean | "time" | "true" | "false" | "date" | "step" | "page" | "location" | undefined;
58
+ "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
59
59
  "aria-describedby"?: string | undefined;
60
60
  "aria-details"?: string | undefined;
61
61
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pedidopago/ui",
3
- "version": "1.10.17",
3
+ "version": "1.10.18",
4
4
  "description": "Quick build beatiful Pedido Pago apps",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",