@elliemae/ds-accordion 3.22.0-next.2 → 3.22.0-next.21

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.
Files changed (52) hide show
  1. package/dist/cjs/DSAccordion.js +2 -2
  2. package/dist/cjs/DSAccordion.js.map +2 -2
  3. package/dist/cjs/defaultProps.js +2 -1
  4. package/dist/cjs/defaultProps.js.map +2 -2
  5. package/dist/cjs/exported-related/{theming.js → DSAccordionDefinitions.js} +22 -19
  6. package/dist/cjs/exported-related/DSAccordionDefinitions.js.map +7 -0
  7. package/dist/cjs/exported-related/index.js +1 -2
  8. package/dist/cjs/exported-related/index.js.map +2 -2
  9. package/dist/cjs/index.js.map +2 -2
  10. package/dist/cjs/parts/accordionContent/AccordionContent.js +21 -7
  11. package/dist/cjs/parts/accordionContent/AccordionContent.js.map +2 -2
  12. package/dist/cjs/parts/accordionItem/DSAccordionItem.js +185 -75
  13. package/dist/cjs/parts/accordionItem/DSAccordionItem.js.map +2 -2
  14. package/dist/cjs/parts/accordionItem/styles.js +15 -10
  15. package/dist/cjs/parts/accordionItem/styles.js.map +2 -2
  16. package/dist/cjs/react-desc-prop-types.js +8 -2
  17. package/dist/cjs/react-desc-prop-types.js.map +2 -2
  18. package/dist/esm/DSAccordion.js +1 -1
  19. package/dist/esm/DSAccordion.js.map +1 -1
  20. package/dist/esm/defaultProps.js +2 -1
  21. package/dist/esm/defaultProps.js.map +2 -2
  22. package/dist/esm/exported-related/DSAccordionDefinitions.js +28 -0
  23. package/dist/esm/exported-related/DSAccordionDefinitions.js.map +7 -0
  24. package/dist/esm/exported-related/index.js +1 -2
  25. package/dist/esm/exported-related/index.js.map +2 -2
  26. package/dist/esm/index.js.map +2 -2
  27. package/dist/esm/parts/accordionContent/AccordionContent.js +22 -8
  28. package/dist/esm/parts/accordionContent/AccordionContent.js.map +2 -2
  29. package/dist/esm/parts/accordionItem/DSAccordionItem.js +186 -76
  30. package/dist/esm/parts/accordionItem/DSAccordionItem.js.map +2 -2
  31. package/dist/esm/parts/accordionItem/styles.js +15 -10
  32. package/dist/esm/parts/accordionItem/styles.js.map +2 -2
  33. package/dist/esm/react-desc-prop-types.js +14 -3
  34. package/dist/esm/react-desc-prop-types.js.map +2 -2
  35. package/dist/types/DSAccordion.d.ts +1 -0
  36. package/dist/types/exported-related/DSAccordionDefinitions.d.ts +19 -0
  37. package/dist/types/exported-related/index.d.ts +1 -2
  38. package/dist/types/parts/accordionContent/AccordionContent.d.ts +1 -0
  39. package/dist/types/parts/accordionContent/styles.d.ts +1 -0
  40. package/dist/types/parts/accordionItem/DSAccordionItem.d.ts +1 -0
  41. package/dist/types/parts/accordionItem/styles.d.ts +46 -0
  42. package/dist/types/react-desc-prop-types.d.ts +3 -0
  43. package/package.json +12 -10
  44. package/dist/cjs/exported-related/DSAccordionDatatestid.js +0 -43
  45. package/dist/cjs/exported-related/DSAccordionDatatestid.js.map +0 -7
  46. package/dist/cjs/exported-related/theming.js.map +0 -7
  47. package/dist/esm/exported-related/DSAccordionDatatestid.js +0 -13
  48. package/dist/esm/exported-related/DSAccordionDatatestid.js.map +0 -7
  49. package/dist/esm/exported-related/theming.js +0 -25
  50. package/dist/esm/exported-related/theming.js.map +0 -7
  51. package/dist/types/exported-related/DSAccordionDatatestid.d.ts +0 -8
  52. package/dist/types/exported-related/theming.d.ts +0 -19
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { DSAccordionT } from './react-desc-prop-types.js';
2
3
  declare const DSAccordion: {
3
4
  (props: DSAccordionT.Props): JSX.Element;
@@ -0,0 +1,19 @@
1
+ export declare const DSAccordionName = "DSAccordion";
2
+ export declare const DSAccordionSlots: {
3
+ CONTAINER: string;
4
+ ITEM_CONTAINER: string;
5
+ ITEM_HEADER_CONTAINER: string;
6
+ ITEM_HEADER_ADDON: string;
7
+ ITEM_HEADER_TITLE_CONTAINER: string;
8
+ ITEM_HEADER_PRIMARY_TITLE: string;
9
+ ITEM_HEADER_SECONDARY_TITLE: string;
10
+ ITEM_HEADER_CUSTOM_ACTIONS_CONTAINER: string;
11
+ ITEM_HEADER_TOOLTIP: string;
12
+ ITEM_CONTENT_CONTAINER: string;
13
+ };
14
+ export declare const DSAccordionDataTestid: {
15
+ ITEM_CONTENT_CONTAINER: string;
16
+ ITEM_HEADER_CONTAINER: string;
17
+ ITEM_CONTAINER: string;
18
+ CONTAINER: string;
19
+ };
@@ -1,2 +1 @@
1
- export * from './DSAccordionDatatestid.js';
2
- export * from './theming.js';
1
+ export * from './DSAccordionDefinitions.js';
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const AccordionContent: () => JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const StyledContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, import("@xstyled/util").Props<import("@xstyled/system").Theme> & import("@xstyled/system").TypographyProps<import("@xstyled/system").Theme> & import("@elliemae/ds-system").BackgroundProps & import("@elliemae/ds-system").SpaceProps & import("@xstyled/system").BoxShadowProps<import("@xstyled/system").Theme> & import("@xstyled/system").FlexboxesProps<import("@xstyled/system").Theme> & import("@xstyled/system").LayoutProps<import("@xstyled/system").Theme> & import("@elliemae/ds-system").ColorProps & import("@elliemae/ds-system").OwnerInterface, never>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { DSAccordionT } from '../../react-desc-prop-types.js';
2
3
  declare const DSAccordionItem: {
3
4
  (props: DSAccordionT.ItemProps): JSX.Element;
@@ -0,0 +1,46 @@
1
+ interface StyledItemHeaderPropsT {
2
+ withCustomActions: boolean;
3
+ withSecondaryTitle?: string;
4
+ isDSMobile?: boolean;
5
+ }
6
+ interface StyledItemTitlesPropsT {
7
+ withSecondaryTitle?: string;
8
+ isDSMobile?: boolean;
9
+ selected: boolean;
10
+ }
11
+ interface StyledPrimaryTitlePropsT {
12
+ disabled: boolean;
13
+ isDSMobile?: boolean;
14
+ selected: boolean;
15
+ withSecondaryTitle: boolean;
16
+ }
17
+ interface StyledItemContentPropsT {
18
+ isDSMobile?: boolean;
19
+ selected?: boolean;
20
+ keepContentMounted: boolean;
21
+ }
22
+ interface StyledSecondaryTitlePropsT {
23
+ disabled: boolean;
24
+ selected: boolean;
25
+ }
26
+ interface StyledItemAddonPropsT {
27
+ disabled: boolean;
28
+ isDSMobile?: boolean;
29
+ }
30
+ interface StyledItemHeaderContainerPropsT {
31
+ disabled: boolean;
32
+ }
33
+ interface StyledItemCustomActionsPropsT {
34
+ isDSMobile?: boolean;
35
+ }
36
+ export declare const StyledItemContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, import("@xstyled/util").Props<import("@xstyled/system").Theme> & import("@xstyled/system").TypographyProps<import("@xstyled/system").Theme> & import("@elliemae/ds-system").BackgroundProps & import("@elliemae/ds-system").SpaceProps & import("@xstyled/system").BoxShadowProps<import("@xstyled/system").Theme> & import("@xstyled/system").FlexboxesProps<import("@xstyled/system").Theme> & import("@xstyled/system").LayoutProps<import("@xstyled/system").Theme> & import("@elliemae/ds-system").ColorProps & import("@elliemae/ds-system").OwnerInterface, never>;
37
+ export declare const StyledItemHeader: import("styled-components").StyledComponent<"button", import("@elliemae/ds-system").Theme, StyledItemHeaderPropsT & import("@elliemae/ds-system").OwnerInterface, never>;
38
+ export declare const StyledItemContent: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledItemContentPropsT & import("@elliemae/ds-system").OwnerInterface, never>;
39
+ export declare const StyledItemAddon: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledItemAddonPropsT & import("@elliemae/ds-system").OwnerInterface, never>;
40
+ export declare const StyledItemTitles: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledItemTitlesPropsT & import("@elliemae/ds-system").OwnerInterface, never>;
41
+ export declare const StyledPrimaryTitle: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledPrimaryTitlePropsT & import("@elliemae/ds-system").OwnerInterface, never>;
42
+ export declare const StyledSecondaryTitle: import("styled-components").StyledComponent<"span", import("@elliemae/ds-system").Theme, StyledSecondaryTitlePropsT & import("@elliemae/ds-system").OwnerInterface, never>;
43
+ export declare const StyledItemCustomActions: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledItemCustomActionsPropsT & import("@elliemae/ds-system").OwnerInterface, never>;
44
+ export declare const StyledItemHeaderContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledItemHeaderContainerPropsT & import("@elliemae/ds-system").OwnerInterface, never>;
45
+ export declare const StyledTooltipContent: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface, never>;
46
+ export {};
@@ -23,6 +23,7 @@ export declare namespace DSAccordionT {
23
23
  title: string;
24
24
  customActions: DSAccordionInternalsT.CustomActions[];
25
25
  disabled: boolean;
26
+ keepContentMounted: boolean;
26
27
  xStyledPropsContent: XstyledProps;
27
28
  }
28
29
  interface ItemOptionalProps {
@@ -35,6 +36,7 @@ export declare namespace DSAccordionT {
35
36
  allRefs: DSAccordionInternalsT.AllChildrenReferences;
36
37
  actualActiveValue: DSAccordionInternalsT.InternalActiveValue;
37
38
  }>;
39
+ innerRef?: React.MutableRefObject<HTMLButtonElement | null> | ((_ref: HTMLButtonElement | null) => void);
38
40
  }
39
41
  interface ItemRequiredProps {
40
42
  children: React.ReactNode;
@@ -66,6 +68,7 @@ export declare const accordionItemPropTypes: {
66
68
  customActions: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
67
69
  renderCustomActions: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
68
70
  CustomActions: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
71
+ keepContentMounted: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
69
72
  margin: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
70
73
  m: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
71
74
  marginTop: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").ReactDescT;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-accordion",
3
- "version": "3.22.0-next.2",
3
+ "version": "3.22.0-next.21",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Accordion",
6
6
  "files": [
@@ -83,21 +83,23 @@
83
83
  "indent": 4
84
84
  },
85
85
  "dependencies": {
86
- "@elliemae/ds-button-v2": "3.22.0-next.2",
87
- "@elliemae/ds-grid": "3.22.0-next.2",
88
- "@elliemae/ds-icons": "3.22.0-next.2",
89
- "@elliemae/ds-popperjs": "3.22.0-next.2",
90
- "@elliemae/ds-props-helpers": "3.22.0-next.2",
91
- "@elliemae/ds-system": "3.22.0-next.2",
92
- "@elliemae/ds-utilities": "3.22.0-next.2"
86
+ "@elliemae/ds-button-v2": "3.22.0-next.21",
87
+ "@elliemae/ds-grid": "3.22.0-next.21",
88
+ "@elliemae/ds-icons": "3.22.0-next.21",
89
+ "@elliemae/ds-popperjs": "3.22.0-next.21",
90
+ "@elliemae/ds-props-helpers": "3.22.0-next.21",
91
+ "@elliemae/ds-system": "3.22.0-next.21",
92
+ "@elliemae/ds-utilities": "3.22.0-next.21"
93
93
  },
94
94
  "devDependencies": {
95
+ "@elliemae/pui-cli": "~9.0.0-next.22",
95
96
  "@testing-library/jest-dom": "~5.16.5",
96
97
  "@testing-library/react": "~12.1.3",
97
98
  "@testing-library/user-event": "~13.5.0",
98
99
  "jest-axe": "^7.0.1",
99
100
  "react": "^17.0.2",
100
- "react-dom": "^17.0.2"
101
+ "react-dom": "^17.0.2",
102
+ "@elliemae/ds-monorepo-devops": "3.22.0-next.21"
101
103
  },
102
104
  "peerDependencies": {
103
105
  "react": "^17.0.2",
@@ -109,7 +111,7 @@
109
111
  },
110
112
  "scripts": {
111
113
  "dev": "cross-env NODE_ENV=development node ../../scripts/build/build.mjs --watch",
112
- "test": "node ../../scripts/testing/test.mjs",
114
+ "test": "pui-cli test --passWithNoTests",
113
115
  "lint": "node ../../scripts/lint.mjs",
114
116
  "eslint:fix": "eslint --ext='.js,.jsx,.test.js,.ts,.tsx' --fix --config='../../.eslintrc.js' src/",
115
117
  "dts": "node ../../scripts/dts.mjs",
@@ -1,43 +0,0 @@
1
- "use strict";
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf;
7
- var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __export = (target, all) => {
9
- for (var name in all)
10
- __defProp(target, name, { get: all[name], enumerable: true });
11
- };
12
- var __copyProps = (to, from, except, desc) => {
13
- if (from && typeof from === "object" || typeof from === "function") {
14
- for (let key of __getOwnPropNames(from))
15
- if (!__hasOwnProp.call(to, key) && key !== except)
16
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
- }
18
- return to;
19
- };
20
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
- // If the importer is in node compatibility mode or this is not an ESM
22
- // file that has been converted to a CommonJS file using a Babel-
23
- // compatible transform (i.e. "__esModule" has not been set), then set
24
- // "default" to the CommonJS "module.exports" for node compatibility.
25
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
- mod
27
- ));
28
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
- var DSAccordionDatatestid_exports = {};
30
- __export(DSAccordionDatatestid_exports, {
31
- DSAccordionDataTestid: () => DSAccordionDataTestid
32
- });
33
- module.exports = __toCommonJS(DSAccordionDatatestid_exports);
34
- var React = __toESM(require("react"));
35
- const DSAccordionDataTestid = {
36
- ITEM: {
37
- CONTENT: "ds-accordion_item-content",
38
- HEADER: "ds-accordion_item-header",
39
- CONTAINER: "ds-accordion_item"
40
- },
41
- GROUP: "ds-accordion_group"
42
- };
43
- //# sourceMappingURL=DSAccordionDatatestid.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/exported-related/DSAccordionDatatestid.ts", "../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["export const DSAccordionDataTestid = {\n ITEM: {\n CONTENT: 'ds-accordion_item-content',\n HEADER: 'ds-accordion_item-header',\n CONTAINER: 'ds-accordion_item',\n },\n GROUP: 'ds-accordion_group',\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAhB,MAAM,wBAAwB;AAAA,EACnC,MAAM;AAAA,IACJ,SAAS;AAAA,IACT,QAAQ;AAAA,IACR,WAAW;AAAA,EACb;AAAA,EACA,OAAO;AACT;",
6
- "names": []
7
- }
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/exported-related/theming.ts", "../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["export const DSAccordionName = 'DSAccordion';\n\nexport const DSAccordionSlots = {\n CONTAINER: 'root',\n ITEM: {\n CONTAINER: 'item-container',\n HEADER: {\n CONTAINER: 'item-header-container',\n ADDON: 'item-header-addon',\n TITLE_CONTAINER: 'item-header-titles-container',\n PRIMARY_TITLE: 'item-header-primary-title',\n SECONDARY_TITLE: 'item-header-secondary-title',\n CUSTOM_ACTIONS_CONTAINER: 'item-header-custom-actions-container',\n TOOLTIP: 'item-header-tooltip',\n },\n CONTENT: {\n CONTAINER: 'item-content-container',\n },\n },\n};\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAhB,MAAM,kBAAkB;AAExB,MAAM,mBAAmB;AAAA,EAC9B,WAAW;AAAA,EACX,MAAM;AAAA,IACJ,WAAW;AAAA,IACX,QAAQ;AAAA,MACN,WAAW;AAAA,MACX,OAAO;AAAA,MACP,iBAAiB;AAAA,MACjB,eAAe;AAAA,MACf,iBAAiB;AAAA,MACjB,0BAA0B;AAAA,MAC1B,SAAS;AAAA,IACX;AAAA,IACA,SAAS;AAAA,MACP,WAAW;AAAA,IACb;AAAA,EACF;AACF;",
6
- "names": []
7
- }
@@ -1,13 +0,0 @@
1
- import * as React from "react";
2
- const DSAccordionDataTestid = {
3
- ITEM: {
4
- CONTENT: "ds-accordion_item-content",
5
- HEADER: "ds-accordion_item-header",
6
- CONTAINER: "ds-accordion_item"
7
- },
8
- GROUP: "ds-accordion_group"
9
- };
10
- export {
11
- DSAccordionDataTestid
12
- };
13
- //# sourceMappingURL=DSAccordionDatatestid.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/exported-related/DSAccordionDatatestid.ts"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export const DSAccordionDataTestid = {\n ITEM: {\n CONTENT: 'ds-accordion_item-content',\n HEADER: 'ds-accordion_item-header',\n CONTAINER: 'ds-accordion_item',\n },\n GROUP: 'ds-accordion_group',\n};\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACAhB,MAAM,wBAAwB;AAAA,EACnC,MAAM;AAAA,IACJ,SAAS;AAAA,IACT,QAAQ;AAAA,IACR,WAAW;AAAA,EACb;AAAA,EACA,OAAO;AACT;",
6
- "names": []
7
- }
@@ -1,25 +0,0 @@
1
- import * as React from "react";
2
- const DSAccordionName = "DSAccordion";
3
- const DSAccordionSlots = {
4
- CONTAINER: "root",
5
- ITEM: {
6
- CONTAINER: "item-container",
7
- HEADER: {
8
- CONTAINER: "item-header-container",
9
- ADDON: "item-header-addon",
10
- TITLE_CONTAINER: "item-header-titles-container",
11
- PRIMARY_TITLE: "item-header-primary-title",
12
- SECONDARY_TITLE: "item-header-secondary-title",
13
- CUSTOM_ACTIONS_CONTAINER: "item-header-custom-actions-container",
14
- TOOLTIP: "item-header-tooltip"
15
- },
16
- CONTENT: {
17
- CONTAINER: "item-content-container"
18
- }
19
- }
20
- };
21
- export {
22
- DSAccordionName,
23
- DSAccordionSlots
24
- };
25
- //# sourceMappingURL=theming.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/exported-related/theming.ts"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export const DSAccordionName = 'DSAccordion';\n\nexport const DSAccordionSlots = {\n CONTAINER: 'root',\n ITEM: {\n CONTAINER: 'item-container',\n HEADER: {\n CONTAINER: 'item-header-container',\n ADDON: 'item-header-addon',\n TITLE_CONTAINER: 'item-header-titles-container',\n PRIMARY_TITLE: 'item-header-primary-title',\n SECONDARY_TITLE: 'item-header-secondary-title',\n CUSTOM_ACTIONS_CONTAINER: 'item-header-custom-actions-container',\n TOOLTIP: 'item-header-tooltip',\n },\n CONTENT: {\n CONTAINER: 'item-content-container',\n },\n },\n};\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACAhB,MAAM,kBAAkB;AAExB,MAAM,mBAAmB;AAAA,EAC9B,WAAW;AAAA,EACX,MAAM;AAAA,IACJ,WAAW;AAAA,IACX,QAAQ;AAAA,MACN,WAAW;AAAA,MACX,OAAO;AAAA,MACP,iBAAiB;AAAA,MACjB,eAAe;AAAA,MACf,iBAAiB;AAAA,MACjB,0BAA0B;AAAA,MAC1B,SAAS;AAAA,IACX;AAAA,IACA,SAAS;AAAA,MACP,WAAW;AAAA,IACb;AAAA,EACF;AACF;",
6
- "names": []
7
- }
@@ -1,8 +0,0 @@
1
- export declare const DSAccordionDataTestid: {
2
- ITEM: {
3
- CONTENT: string;
4
- HEADER: string;
5
- CONTAINER: string;
6
- };
7
- GROUP: string;
8
- };
@@ -1,19 +0,0 @@
1
- export declare const DSAccordionName = "DSAccordion";
2
- export declare const DSAccordionSlots: {
3
- CONTAINER: string;
4
- ITEM: {
5
- CONTAINER: string;
6
- HEADER: {
7
- CONTAINER: string;
8
- ADDON: string;
9
- TITLE_CONTAINER: string;
10
- PRIMARY_TITLE: string;
11
- SECONDARY_TITLE: string;
12
- CUSTOM_ACTIONS_CONTAINER: string;
13
- TOOLTIP: string;
14
- };
15
- CONTENT: {
16
- CONTAINER: string;
17
- };
18
- };
19
- };