@applica-software-guru/react-admin 1.5.302 → 1.5.304
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/.eslintrc +1 -1
- package/dist/components/Layout/Sidebar/Content.d.ts +8 -0
- package/dist/components/Layout/Sidebar/Content.d.ts.map +1 -0
- package/dist/components/Layout/Sidebar/Drawer.d.ts +11 -0
- package/dist/components/Layout/Sidebar/Drawer.d.ts.map +1 -0
- package/dist/components/Layout/Sidebar/Footer.d.ts +7 -0
- package/dist/components/Layout/Sidebar/Footer.d.ts.map +1 -0
- package/dist/components/Layout/Sidebar/Header.d.ts +16 -0
- package/dist/components/Layout/Sidebar/Header.d.ts.map +1 -0
- package/dist/components/Layout/Sidebar/index.d.ts +14 -0
- package/dist/components/Layout/Sidebar/index.d.ts.map +1 -0
- package/dist/components/Layout/TopToolbar.d.ts +11 -0
- package/dist/components/Layout/TopToolbar.d.ts.map +1 -0
- package/dist/components/Layout/index.d.ts +2 -0
- package/dist/components/Layout/index.d.ts.map +1 -1
- package/dist/components/Pagination/Pagination.d.ts.map +1 -1
- package/dist/components/ra-inputs/LabeledInput.d.ts +1 -0
- package/dist/components/ra-inputs/LabeledInput.d.ts.map +1 -1
- package/dist/components/ra-lists/FilterSidebar/ActiveFiltersChips.d.ts +4 -0
- package/dist/components/ra-lists/FilterSidebar/ActiveFiltersChips.d.ts.map +1 -0
- package/dist/components/ra-lists/FilterSidebar/FilterSidebar.d.ts +7 -0
- package/dist/components/ra-lists/FilterSidebar/FilterSidebar.d.ts.map +1 -0
- package/dist/components/ra-lists/FilterSidebar/FilterSidebarButton.d.ts +3 -0
- package/dist/components/ra-lists/FilterSidebar/FilterSidebarButton.d.ts.map +1 -0
- package/dist/components/ra-lists/FilterSidebar/FilterSidebarContext.d.ts +13 -0
- package/dist/components/ra-lists/FilterSidebar/FilterSidebarContext.d.ts.map +1 -0
- package/dist/components/ra-lists/FilterSidebar/RemoveSavedQueryDialog.d.ts +11 -0
- package/dist/components/ra-lists/FilterSidebar/RemoveSavedQueryDialog.d.ts.map +1 -0
- package/dist/components/ra-lists/FilterSidebar/SaveFiltersButton.d.ts +3 -0
- package/dist/components/ra-lists/FilterSidebar/SaveFiltersButton.d.ts.map +1 -0
- package/dist/components/ra-lists/FilterSidebar/SaveFiltersDialog.d.ts +7 -0
- package/dist/components/ra-lists/FilterSidebar/SaveFiltersDialog.d.ts.map +1 -0
- package/dist/components/ra-lists/FilterSidebar/SavedFiltersList.d.ts +6 -0
- package/dist/components/ra-lists/FilterSidebar/SavedFiltersList.d.ts.map +1 -0
- package/dist/components/ra-lists/FilterSidebar/index.d.ts +9 -0
- package/dist/components/ra-lists/FilterSidebar/index.d.ts.map +1 -0
- package/dist/components/ra-lists/List.d.ts.map +1 -1
- package/dist/components/ra-lists/ListToolbar.d.ts +25 -0
- package/dist/components/ra-lists/ListToolbar.d.ts.map +1 -0
- package/dist/components/ra-lists/ListView.d.ts.map +1 -1
- package/dist/components/ra-lists/ListViewProvider.d.ts +11 -0
- package/dist/components/ra-lists/ListViewProvider.d.ts.map +1 -0
- package/dist/components/ra-lists/index.d.ts +3 -0
- package/dist/components/ra-lists/index.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/react-admin.cjs.js +58 -58
- package/dist/react-admin.cjs.js.gz +0 -0
- package/dist/react-admin.cjs.js.map +1 -1
- package/dist/react-admin.es.js +12033 -11439
- package/dist/react-admin.es.js.gz +0 -0
- package/dist/react-admin.es.js.map +1 -1
- package/dist/react-admin.umd.js +59 -59
- package/dist/react-admin.umd.js.gz +0 -0
- package/dist/react-admin.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Layout/Sidebar/Content.tsx +13 -0
- package/src/components/Layout/Sidebar/Drawer.tsx +50 -0
- package/src/components/Layout/Sidebar/Footer.tsx +20 -0
- package/src/components/Layout/Sidebar/Header.tsx +54 -0
- package/src/components/Layout/Sidebar/index.ts +22 -0
- package/src/components/Layout/TopToolbar.tsx +43 -0
- package/src/components/Layout/index.ts +2 -0
- package/src/components/Pagination/Pagination.tsx +3 -0
- package/src/components/ra-inputs/LabeledInput.tsx +3 -1
- package/src/components/ra-lists/FilterSidebar/ActiveFiltersChips.tsx +108 -0
- package/src/components/ra-lists/FilterSidebar/FilterSidebar.tsx +164 -0
- package/src/components/ra-lists/FilterSidebar/FilterSidebarButton.tsx +44 -0
- package/src/components/ra-lists/FilterSidebar/FilterSidebarContext.tsx +56 -0
- package/src/components/ra-lists/FilterSidebar/RemoveSavedQueryDialog.tsx +72 -0
- package/src/components/ra-lists/FilterSidebar/SaveFiltersButton.tsx +28 -0
- package/src/components/ra-lists/FilterSidebar/SaveFiltersDialog.tsx +138 -0
- package/src/components/ra-lists/FilterSidebar/SavedFiltersList.tsx +118 -0
- package/src/components/ra-lists/FilterSidebar/index.ts +8 -0
- package/src/components/ra-lists/List.tsx +23 -6
- package/src/components/ra-lists/ListToolbar.tsx +101 -0
- package/src/components/ra-lists/ListView.tsx +18 -8
- package/src/components/ra-lists/ListViewProvider.tsx +23 -0
- package/src/components/ra-lists/index.ts +3 -0
- package/src/index.ts +2 -2
package/.eslintrc
CHANGED
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"excludedFiles": ["src/components/ra-lists/index.{js,jsx,ts,tsx}"],
|
|
69
69
|
"files": ["src/components/ra-lists/*.{js,jsx,ts,tsx}"],
|
|
70
70
|
"rules": {
|
|
71
|
-
"filenames/match-regex": ["error", "(List|Base|ListBase)$", true]
|
|
71
|
+
"filenames/match-regex": ["error", "^(List|Base|ListBase).*|.*(List|Base|ListBase)$", true]
|
|
72
72
|
}
|
|
73
73
|
},
|
|
74
74
|
{
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
type ContentProps = {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
sx?: Record<string, any>;
|
|
5
|
+
};
|
|
6
|
+
declare function Content(props: ContentProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export { Content };
|
|
8
|
+
//# sourceMappingURL=Content.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Content.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Sidebar/Content.tsx"],"names":[],"mappings":";AAEA,KAAK,YAAY,GAAG;IAClB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,EAAE,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC1B,CAAC;AAEF,iBAAS,OAAO,CAAC,KAAK,EAAE,YAAY,2CAGnC;AAED,OAAO,EAAE,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
type DrawerProps = {
|
|
3
|
+
PaperProps?: Record<string, any>;
|
|
4
|
+
anchor?: 'left' | 'right' | 'top' | 'bottom';
|
|
5
|
+
variant?: 'temporary' | 'persistent' | 'permanent';
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
open?: boolean;
|
|
8
|
+
};
|
|
9
|
+
declare function Drawer(props: DrawerProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export { Drawer };
|
|
11
|
+
//# sourceMappingURL=Drawer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Drawer.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Sidebar/Drawer.tsx"],"names":[],"mappings":";AAMA,KAAK,WAAW,GAAG;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACjC,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,QAAQ,CAAC;IAC7C,OAAO,CAAC,EAAE,WAAW,GAAG,YAAY,GAAG,WAAW,CAAC;IACnD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB,CAAC;AAEF,iBAAS,MAAM,CAAC,KAAK,EAAE,WAAW,2CAiCjC;AAED,OAAO,EAAE,MAAM,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Footer.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Sidebar/Footer.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAElC,UAAU,WAAW;IACnB,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED,iBAAS,MAAM,CAAC,KAAK,EAAE,WAAW,2CASjC;AAED,OAAO,EAAE,MAAM,EAAE,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface HeaderProps {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
}
|
|
5
|
+
declare function Header(props: HeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
interface HeaderTextProps {
|
|
7
|
+
primary?: React.ReactNode;
|
|
8
|
+
secondary?: React.ReactNode;
|
|
9
|
+
}
|
|
10
|
+
declare function HeaderText(props: HeaderTextProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
interface HeaderActionProps {
|
|
12
|
+
children: React.ReactNode;
|
|
13
|
+
}
|
|
14
|
+
declare function HeaderAction(props: HeaderActionProps): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export { Header, HeaderAction, HeaderText };
|
|
16
|
+
//# sourceMappingURL=Header.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Header.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Sidebar/Header.tsx"],"names":[],"mappings":";AAEA,UAAU,WAAW;IACnB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,iBAAS,MAAM,CAAC,KAAK,EAAE,WAAW,2CAiBjC;AAED,UAAU,eAAe;IACvB,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAED,iBAAS,UAAU,CAAC,KAAK,EAAE,eAAe,2CASzC;AAED,UAAU,iBAAiB;IACzB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,iBAAS,YAAY,CAAC,KAAK,EAAE,iBAAiB,2CAM7C;AAED,OAAO,EAAE,MAAM,EAAE,YAAY,EAAE,UAAU,EAAE,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Content } from './Content';
|
|
2
|
+
import { Drawer } from './Drawer';
|
|
3
|
+
import { Footer } from './Footer';
|
|
4
|
+
import { Header, HeaderAction, HeaderText } from './Header';
|
|
5
|
+
type ISidebar = typeof Drawer & {
|
|
6
|
+
Content: typeof Content;
|
|
7
|
+
Footer: typeof Footer;
|
|
8
|
+
Header: typeof Header;
|
|
9
|
+
HeaderAction: typeof HeaderAction;
|
|
10
|
+
HeaderText: typeof HeaderText;
|
|
11
|
+
};
|
|
12
|
+
declare const DefaultSidebar: ISidebar;
|
|
13
|
+
export { DefaultSidebar as Sidebar };
|
|
14
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/Layout/Sidebar/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,MAAM,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE5D,KAAK,QAAQ,GAAG,OAAO,MAAM,GAAG;IAC9B,OAAO,EAAE,OAAO,OAAO,CAAC;IACxB,MAAM,EAAE,OAAO,MAAM,CAAC;IACtB,MAAM,EAAE,OAAO,MAAM,CAAC;IACtB,YAAY,EAAE,OAAO,YAAY,CAAC;IAClC,UAAU,EAAE,OAAO,UAAU,CAAC;CAC/B,CAAC;AAEF,QAAA,MAAM,cAAc,UAAqB,CAAC;AAQ1C,OAAO,EAAE,cAAc,IAAI,OAAO,EAAE,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ToolbarProps } from '@mui/material';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
declare function TopToolbar(props: ToolbarProps): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare namespace TopToolbar {
|
|
5
|
+
var propTypes: {
|
|
6
|
+
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
7
|
+
className: PropTypes.Requireable<string>;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
export { TopToolbar };
|
|
11
|
+
//# sourceMappingURL=TopToolbar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TopToolbar.d.ts","sourceRoot":"","sources":["../../../../src/components/Layout/TopToolbar.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAkB,YAAY,EAAyB,MAAM,eAAe,CAAC;AACpF,OAAO,SAAS,MAAM,YAAY,CAAC;AAEnC,iBAAS,UAAU,CAAC,KAAK,EAAE,YAAY,2CAGtC;kBAHQ,UAAU;;;;;;AAuCnB,OAAO,EAAE,UAAU,EAAE,CAAC"}
|
|
@@ -9,8 +9,10 @@ export * from './MenuProvider';
|
|
|
9
9
|
export * from './NavMenu';
|
|
10
10
|
export * from './Navigation';
|
|
11
11
|
export * from './Provider';
|
|
12
|
+
export * as Sidebar from './Sidebar';
|
|
12
13
|
export * from './ThemeColor';
|
|
13
14
|
export * from './ThemeProvider';
|
|
14
15
|
export * from './ThemeToggler';
|
|
16
|
+
export * from './TopToolbar';
|
|
15
17
|
export * from './Wrapper';
|
|
16
18
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Layout/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Layout/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC;AACrC,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pagination.d.ts","sourceRoot":"","sources":["../../../../src/components/Pagination/Pagination.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,YAAY,EAAwC,MAAM,OAAO,CAAC;AAE/E,OAAO,EAAmB,wBAAwB,EAAiC,MAAM,eAAe,CAAC;AACzG,OAAO,EAEL,0BAA0B,
|
|
1
|
+
{"version":3,"file":"Pagination.d.ts","sourceRoot":"","sources":["../../../../src/components/Pagination/Pagination.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,YAAY,EAAwC,MAAM,OAAO,CAAC;AAE/E,OAAO,EAAmB,wBAAwB,EAAiC,MAAM,eAAe,CAAC;AACzG,OAAO,EAEL,0BAA0B,EAK3B,MAAM,SAAS,CAAC;AAEjB,OAAO,EAAqB,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAGhF,QAAA,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,CAkJlC,CAAC;AAmBH,UAAU,eAAgB,SAAQ,wBAAwB,EAAE,OAAO,CAAC,0BAA0B,CAAC;IAC7F,kBAAkB,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACtE,OAAO,CAAC,EAAE,EAAE,CAAC,sBAAsB,CAAC,CAAC;IACrC,KAAK,CAAC,EAAE,YAAY,CAAC;CACtB;AAED,OAAO,EAAE,UAAU,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LabeledInput.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-inputs/LabeledInput.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAc,UAAU,EAAY,MAAM,aAAa,CAAC;AAE/D,iBAAS,YAAY,CAAC,EACpB,KAAK,EACL,QAAQ,EACR,OAAiB,EACjB,UAAU,EACV,EAAE,EACF,QAAQ,EACR,OAAe,EACf,GAAG,KAAK,EACT,EAAE,iBAAiB,GAAG,GAAG,CAAC,OAAO,
|
|
1
|
+
{"version":3,"file":"LabeledInput.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-inputs/LabeledInput.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAc,UAAU,EAAY,MAAM,aAAa,CAAC;AAE/D,iBAAS,YAAY,CAAC,EACpB,KAAK,EACL,QAAQ,EACR,OAAiB,EACjB,UAAU,EACV,EAAE,EACF,QAAQ,EACR,OAAe,EACf,GAAG,KAAK,EACT,EAAE,iBAAiB,GAAG,GAAG,CAAC,OAAO,CAiEjC;AAED,KAAK,iBAAiB,GAAG,UAAU,GAAG;IACpC,EAAE,CAAC,EAAE,GAAG,CAAC;IACT,QAAQ,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC;IAC9B,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC;IAC7B,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,CAAC,YAAY,GAAG,IAAI,CAAC;IAC1D,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,GAAG,CAAC;CACZ,CAAC;AAEF,OAAO,EAAE,YAAY,EAAE,CAAC;AACxB,YAAY,EAAE,iBAAiB,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ActiveFiltersChips.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/FilterSidebar/ActiveFiltersChips.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAe,MAAM,OAAO,CAAC;AAwFlD,iBAAS,kBAAkB,IAAI,YAAY,GAAG,IAAI,CAcjD;AAED,OAAO,EAAE,kBAAkB,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FilterSidebar.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/FilterSidebar/FilterSidebar.tsx"],"names":[],"mappings":"AAGA,OAAc,EAAE,YAAY,EAA6C,MAAM,OAAO,CAAC;AAsCvF,UAAU,kBAAkB;IAC1B,OAAO,CAAC,EAAE,YAAY,GAAG,YAAY,EAAE,CAAC;CACzC;AAED,iBAAS,aAAa,CAAC,KAAK,EAAE,kBAAkB,GAAG,YAAY,CAoH9D;AAED,OAAO,EAAE,aAAa,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FilterSidebarButton.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/FilterSidebar/FilterSidebarButton.tsx"],"names":[],"mappings":"AASA,iBAAS,mBAAmB,4CAgC3B;AAED,OAAO,EAAE,mBAAmB,EAAE,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface FiltersContextType {
|
|
3
|
+
hasFilterSidebar?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const FilterSidebarContext: React.Context<FiltersContextType>;
|
|
6
|
+
declare function useIsEnabledSidebarFilter(): boolean;
|
|
7
|
+
interface ChipItemProps {
|
|
8
|
+
source: string;
|
|
9
|
+
value: unknown;
|
|
10
|
+
}
|
|
11
|
+
declare function useGetChipValue({ source, value }: ChipItemProps): JSX.Element | null;
|
|
12
|
+
export { FilterSidebarContext, useGetChipValue, useIsEnabledSidebarFilter };
|
|
13
|
+
//# sourceMappingURL=FilterSidebarContext.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FilterSidebarContext.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/FilterSidebar/FilterSidebarContext.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6C,MAAM,OAAO,CAAC;AAIlE,UAAU,kBAAkB;IAC1B,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B;AAED,QAAA,MAAM,oBAAoB,mCAExB,CAAC;AAEH,iBAAS,yBAAyB,IAAI,OAAO,CAE5C;AAED,UAAU,aAAa;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,OAAO,CAAC;CAChB;AAED,iBAAS,eAAe,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,aAAa,GAAG,GAAG,CAAC,OAAO,GAAG,IAAI,CAgC7E;AAED,OAAO,EAAE,oBAAoB,EAAE,eAAe,EAAE,yBAAyB,EAAE,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ReactElement } from 'react';
|
|
2
|
+
import { SavedQuery } from 'react-admin';
|
|
3
|
+
interface RemoveSavedQueryDialogProps {
|
|
4
|
+
open: boolean;
|
|
5
|
+
onClose: () => void;
|
|
6
|
+
filterToRemove?: SavedQuery;
|
|
7
|
+
}
|
|
8
|
+
declare function RemoveSavedQueryDialog({ open, onClose, filterToRemove }: RemoveSavedQueryDialogProps): ReactElement;
|
|
9
|
+
export { RemoveSavedQueryDialog };
|
|
10
|
+
export type { RemoveSavedQueryDialogProps };
|
|
11
|
+
//# sourceMappingURL=RemoveSavedQueryDialog.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RemoveSavedQueryDialog.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/FilterSidebar/RemoveSavedQueryDialog.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAKrC,OAAO,EAAE,UAAU,EAA6C,MAAM,aAAa,CAAC;AAEpF,UAAU,2BAA2B;IACnC,IAAI,EAAE,OAAO,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,cAAc,CAAC,EAAE,UAAU,CAAC;CAC7B;AAED,iBAAS,sBAAsB,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,cAAc,EAAE,EAAE,2BAA2B,GAAG,YAAY,CAuD5G;AAED,OAAO,EAAE,sBAAsB,EAAE,CAAC;AAClC,YAAY,EAAE,2BAA2B,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SaveFiltersButton.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/FilterSidebar/SaveFiltersButton.tsx"],"names":[],"mappings":"AAKA,iBAAS,iBAAiB,4CAoBzB;AAED,OAAO,EAAE,iBAAiB,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SaveFiltersDialog.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/FilterSidebar/SaveFiltersDialog.tsx"],"names":[],"mappings":"AA8EA,UAAU,oBAAoB;IAC5B,IAAI,EAAE,OAAO,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,iBAAS,iBAAiB,CAAC,KAAK,EAAE,oBAAoB,2CAoDrD;AAED,OAAO,EAAE,iBAAiB,EAAE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SavedFiltersList.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/FilterSidebar/SavedFiltersList.tsx"],"names":[],"mappings":"AA8BA,UAAU,qBAAqB;IAC7B,YAAY,EAAE,MAAM,IAAI,CAAC;CAC1B;AAED,iBAAS,gBAAgB,CAAC,KAAK,EAAE,qBAAqB,2CAiFrD;AAED,OAAO,EAAE,gBAAgB,EAAE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './ActiveFiltersChips';
|
|
2
|
+
export * from './FilterSidebar';
|
|
3
|
+
export * from './FilterSidebarButton';
|
|
4
|
+
export * from './FilterSidebarContext';
|
|
5
|
+
export * from './RemoveSavedQueryDialog';
|
|
6
|
+
export * from './SaveFiltersButton';
|
|
7
|
+
export * from './SaveFiltersDialog';
|
|
8
|
+
export * from './SavedFiltersList';
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/ra-lists/FilterSidebar/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"List.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-lists/List.tsx"],"names":[],"mappings":"AAIA,OAAc,EAAE,YAAY,
|
|
1
|
+
{"version":3,"file":"List.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-lists/List.tsx"],"names":[],"mappings":"AAIA,OAAc,EAAE,YAAY,EAAkB,MAAM,OAAO,CAAC;AAC5D,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAkMxC,iBAAS,IAAI,CAAC,KAAK,EAAE,SAAS,GAAG,YAAY,CAoB5C;AAED,OAAO,EAAE,IAAI,EAAE,CAAC;AAChB,YAAY,EAAE,SAAS,EAAE,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React, { ReactElement } from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import { ToolbarProps } from '@mui/material';
|
|
4
|
+
import { Exporter } from 'ra-core';
|
|
5
|
+
interface ListToolbarPropsExtended extends ListToolbarProps {
|
|
6
|
+
hasFilterSidebar?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare function ListToolbarComp(props: ListToolbarPropsExtended): ReactElement | null;
|
|
9
|
+
declare namespace ListToolbarComp {
|
|
10
|
+
var propTypes: {
|
|
11
|
+
filters: PropTypes.Requireable<NonNullable<PropTypes.ReactElementLike | (PropTypes.ReactElementLike | null | undefined)[] | null | undefined>>;
|
|
12
|
+
actions: PropTypes.Requireable<NonNullable<boolean | PropTypes.ReactElementLike | null | undefined>>;
|
|
13
|
+
exporter: PropTypes.Requireable<NonNullable<boolean | ((...args: any[]) => any) | null | undefined>>;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
interface ListToolbarProps extends Omit<ToolbarProps, 'classes' | 'onSelect'> {
|
|
17
|
+
actions?: ReactElement | false;
|
|
18
|
+
exporter?: Exporter | false;
|
|
19
|
+
filters?: ReactElement | ReactElement[];
|
|
20
|
+
hasCreate?: boolean;
|
|
21
|
+
}
|
|
22
|
+
declare const ListToolbar: React.MemoExoticComponent<typeof ListToolbarComp>;
|
|
23
|
+
export { ListToolbar };
|
|
24
|
+
export type { ListToolbarProps };
|
|
25
|
+
//# sourceMappingURL=ListToolbar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListToolbar.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-lists/ListToolbar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,YAAY,EAAQ,MAAM,OAAO,CAAC;AAElD,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,EAAW,YAAY,EAAiB,MAAM,eAAe,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAkB,MAAM,SAAS,CAAC;AAKnD,UAAU,wBAAyB,SAAQ,gBAAgB;IACzD,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B;AAED,iBAAS,eAAe,CAAC,KAAK,EAAE,wBAAwB,GAAG,YAAY,GAAG,IAAI,CA+C7E;kBA/CQ,eAAe;;;;;;;AAyDxB,UAAU,gBAAiB,SAAQ,IAAI,CAAC,YAAY,EAAE,SAAS,GAAG,UAAU,CAAC;IAC3E,OAAO,CAAC,EAAE,YAAY,GAAG,KAAK,CAAC;IAC/B,QAAQ,CAAC,EAAE,QAAQ,GAAG,KAAK,CAAC;IAC5B,OAAO,CAAC,EAAE,YAAY,GAAG,YAAY,EAAE,CAAC;IACxC,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAuBD,QAAA,MAAM,WAAW,mDAAwB,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,CAAC;AACvB,YAAY,EAAE,gBAAgB,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListView.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-lists/ListView.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAEtC,OAAO,EAAE,QAAQ,EAAkB,MAAM,SAAS,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,SAAS,EAAgB,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ListView.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-lists/ListView.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAEtC,OAAO,EAAE,QAAQ,EAAkB,MAAM,SAAS,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,SAAS,EAAgB,MAAM,OAAO,CAAC;AAgB3E,iBAAS,QAAQ,CAAC,UAAU,SAAS,QAAQ,GAAG,GAAG,EAAE,KAAK,EAAE,aAAa,GAAG,YAAY,GAAG,IAAI,CAyF9F;AAuCD,UAAU,aAAa;IACrB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgCG;IACH,OAAO,CAAC,EAAE,YAAY,GAAG,KAAK,CAAC;IAE/B;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;IACH,KAAK,CAAC,EAAE,YAAY,CAAC;IAErB;;OAEG;IACH,iBAAiB,CAAC,EAAE,YAAY,GAAG,KAAK,CAAC;IAEzC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;;;;;;;;;;;;;;;;;OAmBG;IACH,QAAQ,EAAE,SAAS,CAAC;IAEpB;;;;;;;;;;;;OAYG;IACH,SAAS,CAAC,EAAE,WAAW,CAAC;IAExB;;;;;;;;;;;;;;;;;;;;;;;;;;OA0BG;IACH,KAAK,CAAC,EAAE,YAAY,GAAG,KAAK,CAAC;IAE7B;;;;;;;;;;;;;OAaG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAE5B;;;;;;;;;;;;;;;;;OAiBG;IACH,OAAO,CAAC,EAAE,YAAY,GAAG,YAAY,EAAE,CAAC;IAExC;;;;;;;;;;;;OAYG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;;;;;;;;;;;;;OAcG;IACH,UAAU,CAAC,EAAE,YAAY,GAAG,KAAK,CAAC;IAElC;;;;;;;;;;;;OAYG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,YAAY,CAAC;IAE9B;;;;;;;;;;;;;;;;;OAiBG;IACH,EAAE,CAAC,EAAE,OAAO,CAAC;CACd;AA0CD,OAAO,EAAE,QAAQ,EAAE,CAAC;AACpB,YAAY,EAAE,aAAa,EAAE,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface ListViewContextType {
|
|
3
|
+
sidebarOpen?: boolean;
|
|
4
|
+
setSidebarOpen?: (open: boolean) => void;
|
|
5
|
+
}
|
|
6
|
+
declare function ListViewProvider(props: {
|
|
7
|
+
children: React.ReactNode;
|
|
8
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function useListViewContext(): ListViewContextType;
|
|
10
|
+
export { ListViewProvider, useListViewContext };
|
|
11
|
+
//# sourceMappingURL=ListViewProvider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListViewProvider.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-lists/ListViewProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoC,MAAM,OAAO,CAAC;AAEzD,UAAU,mBAAmB;IAC3B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;CAC1C;AAOD,iBAAS,gBAAgB,CAAC,KAAK,EAAE;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,2CAI7D;AAED,iBAAS,kBAAkB,wBAE1B;AAED,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,CAAC"}
|
|
@@ -2,7 +2,10 @@ export * from './BulkActionsToolbar';
|
|
|
2
2
|
export * from './BulkFloatingActionsToolbar';
|
|
3
3
|
export * from './Datagrid';
|
|
4
4
|
export * from './Empty';
|
|
5
|
+
export * from './FilterSidebar';
|
|
5
6
|
export * from './List';
|
|
7
|
+
export * from './ListToolbar';
|
|
8
|
+
export * from './ListViewProvider';
|
|
6
9
|
export * from './NotificationList';
|
|
7
10
|
export * from './SimpleList';
|
|
8
11
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-lists/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-lists/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,QAAQ,CAAC;AACvB,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -7,5 +7,5 @@ export * from './i18n';
|
|
|
7
7
|
export * from './themes';
|
|
8
8
|
export * from './types';
|
|
9
9
|
export * from './utils';
|
|
10
|
-
export { ArrayField, ArrayInputContext, BooleanField, ChipField, Confirm, CreateContextProvider, CustomRoutes, DeleteWithConfirmButton, DeleteWithUndoButton, EditButton, EditContextProvider, FieldTitle, FilterButton, FilterList, FilterListItem, FilterLiveSearch, Form, FormDataConsumer, HttpError, I18nContextProvider, ListBase,
|
|
10
|
+
export { ArrayField, ArrayInputContext, BooleanField, ChipField, Confirm, CreateContextProvider, CustomRoutes, DeleteWithConfirmButton, DeleteWithUndoButton, EditButton, EditContextProvider, FieldTitle, FilterButton, FilterList, FilterListItem, FilterLiveSearch, Form, FormDataConsumer, HttpError, I18nContextProvider, ListBase, LoadingIndicator, SimpleFormIterator as RaSimpleFormIterator, RecordContextProvider, ReferenceArrayField, ReferenceField, Resource, ResourceContextProvider, SaveButton, SavedQueriesList, SimpleFormIteratorContext, SimpleShowLayout, SingleFieldList, TabbedFormTabs, UrlField, ValidationError, WithListContext, choices, email, maxLength, maxValue, minLength, minValue, number, regex, required, useArrayInput, useAuthProvider, useCheckAuth, useChoices, useChoicesContext, useCreate, useCreateContext, useCreateController, useCreateSuggestionContext, useDataProvider, useDeleteMany, useEditContext, useEditController, useGetIdentity, useGetList, useGetMany, useGetManyReference, useGetOne, useInput, useListContext, useListController, useLocaleState, useLocales, useLogin, useLogout, useNotify, usePermissions, useRecordContext, useReferenceArrayFieldController, useRefresh, useRemoveFromStore, useResetStore, useResourceContext, useResourceDefinition, useResourceDefinitions, useSafeSetState, useShowContext, useShowController, useSimpleFormIterator, useSimpleFormIteratorItem, useStore, useStoreContext, useTranslate, useTranslateLabel, useUnselect, useUnselectAll, useUpdate, useUpdateMany, withLifecycleCallbacks } from 'react-admin';
|
|
11
11
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,QAAQ,OAAO,CAAC;AAEvB,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,OAAO,EACL,UAAU,EACV,iBAAiB,EACjB,YAAY,EACZ,SAAS,EACT,OAAO,EACP,qBAAqB,EACrB,YAAY,EACZ,uBAAuB,EACvB,oBAAoB,EACpB,UAAU,EACV,mBAAmB,EACnB,UAAU,EACV,YAAY,EACZ,UAAU,EACV,cAAc,EACd,gBAAgB,EAChB,IAAI,EACJ,gBAAgB,EAChB,SAAS,EACT,mBAAmB,EACnB,QAAQ,EACR,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,QAAQ,OAAO,CAAC;AAEvB,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,OAAO,EACL,UAAU,EACV,iBAAiB,EACjB,YAAY,EACZ,SAAS,EACT,OAAO,EACP,qBAAqB,EACrB,YAAY,EACZ,uBAAuB,EACvB,oBAAoB,EACpB,UAAU,EACV,mBAAmB,EACnB,UAAU,EACV,YAAY,EACZ,UAAU,EACV,cAAc,EACd,gBAAgB,EAChB,IAAI,EACJ,gBAAgB,EAChB,SAAS,EACT,mBAAmB,EACnB,QAAQ,EACR,gBAAgB,EAChB,kBAAkB,IAAI,oBAAoB,EAC1C,qBAAqB,EACrB,mBAAmB,EACnB,cAAc,EACd,QAAQ,EACR,uBAAuB,EACvB,UAAU,EACV,gBAAgB,EAChB,yBAAyB,EACzB,gBAAgB,EAChB,eAAe,EACf,cAAc,EACd,QAAQ,EACR,eAAe,EACf,eAAe,EACf,OAAO,EACP,KAAK,EACL,SAAS,EACT,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,MAAM,EACN,KAAK,EACL,QAAQ,EACR,aAAa,EACb,eAAe,EACf,YAAY,EACZ,UAAU,EACV,iBAAiB,EACjB,SAAS,EACT,gBAAgB,EAChB,mBAAmB,EACnB,0BAA0B,EAC1B,eAAe,EACf,aAAa,EACb,cAAc,EACd,iBAAiB,EACjB,cAAc,EACd,UAAU,EACV,UAAU,EACV,mBAAmB,EACnB,SAAS,EACT,QAAQ,EACR,cAAc,EACd,iBAAiB,EACjB,cAAc,EACd,UAAU,EACV,QAAQ,EACR,SAAS,EACT,SAAS,EACT,cAAc,EACd,gBAAgB,EAChB,gCAAgC,EAChC,UAAU,EACV,kBAAkB,EAClB,aAAa,EACb,kBAAkB,EAClB,qBAAqB,EACrB,sBAAsB,EACtB,eAAe,EACf,cAAc,EACd,iBAAiB,EACjB,qBAAqB,EACrB,yBAAyB,EACzB,QAAQ,EACR,eAAe,EACf,YAAY,EACZ,iBAAiB,EACjB,WAAW,EACX,cAAc,EACd,SAAS,EACT,aAAa,EACb,sBAAsB,EACvB,MAAM,aAAa,CAAC"}
|