infinity-forge 13.6.6 → 13.6.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.
- package/dist/test/index.js +2 -8
- package/dist/test/index.js.map +1 -1
- package/dist/ui/codie-dynamic/components/favorite-page/components/favorite-list/index.d.ts +1 -1
- package/package.json +1 -1
- package/dist/ui/components/form/text-editor/react-quill.css +0 -930
- package/dist/ui/styles/fonts.css +0 -768
- package/dist/ui/styles/reset.css +0 -383
package/dist/test/index.js
CHANGED
|
@@ -2,14 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.NaoRemoverDaHomeUsadaParaTesteTestarAquiDentro = NaoRemoverDaHomeUsadaParaTesteTestarAquiDentro;
|
|
4
4
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
var
|
|
5
|
+
var ui_1 = require("../ui/index.js");
|
|
6
6
|
function NaoRemoverDaHomeUsadaParaTesteTestarAquiDentro() {
|
|
7
|
-
|
|
8
|
-
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("button", { onClick: function () {
|
|
9
|
-
return toggleFavorite({
|
|
10
|
-
id: 2,
|
|
11
|
-
descricao: 'name do item',
|
|
12
|
-
});
|
|
13
|
-
}, children: "Add favorite" }), (0, jsx_runtime_1.jsx)("ul", { children: favorites.map(function (item) { return ((0, jsx_runtime_1.jsx)("li", { children: item.descricao }, item.id)); }) })] }));
|
|
7
|
+
return ((0, jsx_runtime_1.jsx)(ui_1.FormHandler, { schema: { test: ui_1.schema.required(), test2: ui_1.schema.required() }, children: (0, jsx_runtime_1.jsx)(ui_1.InputDatePicker, { name: 'test', date: { minDate: new Date() } }) }));
|
|
14
8
|
}
|
|
15
9
|
//# sourceMappingURL=index.js.map
|
package/dist/test/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/test/index.tsx"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/test/index.tsx"],"names":[],"mappings":";;AAEA,wGAMC;;AARD,2BAA4D;AAE5D,SAAgB,8CAA8C;IAC5D,OAAO,CACL,uBAAC,gBAAW,IAAC,MAAM,EAAE,EAAE,IAAI,EAAE,WAAM,CAAC,QAAQ,EAAE,EAAE,KAAK,EAAE,WAAM,CAAC,QAAQ,EAAE,EAAE,YACtE,uBAAC,oBAAe,IAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAE,EAAG,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,GAAK,GACtD,CACf,CAAA;AACH,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { JSX } from 'react';
|
|
2
2
|
import { IPrivatePage } from '../../../../../../system/context/auth/components/private-page/interfaces.js';
|
|
3
|
-
export interface IFavoriteListProps extends IPrivatePage {
|
|
3
|
+
export interface IFavoriteListProps extends Omit<IPrivatePage, `children`> {
|
|
4
4
|
Component: (props: any) => JSX.Element;
|
|
5
5
|
}
|
|
6
6
|
export declare function FavoriteList({ Component }: IFavoriteListProps): import("react/jsx-runtime").JSX.Element;
|