@elliemae/ds-page-header-v2 3.53.0-next.1 → 3.53.0-next.10

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": "@elliemae/ds-page-header-v2",
3
- "version": "3.53.0-next.1",
3
+ "version": "3.53.0-next.10",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Page Header V2",
6
6
  "files": [
@@ -37,23 +37,23 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "prop-types": "~15.8.1",
40
- "@elliemae/ds-breadcrumb": "3.53.0-next.1",
41
- "@elliemae/ds-button": "3.53.0-next.1",
42
- "@elliemae/ds-form": "3.53.0-next.1",
43
- "@elliemae/ds-form-input-text": "3.53.0-next.1",
44
- "@elliemae/ds-props-helpers": "3.53.0-next.1",
45
- "@elliemae/ds-icon": "3.53.0-next.1",
46
- "@elliemae/ds-icons": "3.53.0-next.1",
47
- "@elliemae/ds-grid": "3.53.0-next.1",
48
- "@elliemae/ds-skeleton": "3.53.0-next.1",
49
- "@elliemae/ds-system": "3.53.0-next.1",
50
- "@elliemae/ds-truncated-tooltip-text": "3.53.0-next.1"
40
+ "@elliemae/ds-breadcrumb": "3.53.0-next.10",
41
+ "@elliemae/ds-form-input-text": "3.53.0-next.10",
42
+ "@elliemae/ds-button": "3.53.0-next.10",
43
+ "@elliemae/ds-form": "3.53.0-next.10",
44
+ "@elliemae/ds-grid": "3.53.0-next.10",
45
+ "@elliemae/ds-props-helpers": "3.53.0-next.10",
46
+ "@elliemae/ds-icon": "3.53.0-next.10",
47
+ "@elliemae/ds-icons": "3.53.0-next.10",
48
+ "@elliemae/ds-truncated-tooltip-text": "3.53.0-next.10",
49
+ "@elliemae/ds-skeleton": "3.53.0-next.10",
50
+ "@elliemae/ds-system": "3.53.0-next.10"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@elliemae/pui-cli": "9.0.0-next.63",
54
54
  "jest": "~29.7.0",
55
55
  "styled-components": "~5.3.9",
56
- "@elliemae/ds-monorepo-devops": "3.53.0-next.1"
56
+ "@elliemae/ds-monorepo-devops": "3.53.0-next.10"
57
57
  },
58
58
  "peerDependencies": {
59
59
  "lodash-es": "^4.17.21",
@@ -1,124 +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 utils_exports = {};
30
- __export(utils_exports, {
31
- options: () => options
32
- });
33
- module.exports = __toCommonJS(utils_exports);
34
- var React = __toESM(require("react"));
35
- var import_ds_system = require("@elliemae/ds-system");
36
- const subItems = [
37
- {
38
- id: "id3",
39
- label: "SubMenu List Item-1",
40
- onClick: (e) => (0, import_ds_system.logger)(e, "subMenu id3")
41
- },
42
- {
43
- id: "id4",
44
- type: "subMenu",
45
- label: "SubMenu List Item-2",
46
- onClick: (e) => (0, import_ds_system.logger)(e, "subMenu id4"),
47
- subItems: [
48
- {
49
- id: "id5",
50
- label: "SubMenu List Item-2",
51
- onClick: (e) => (0, import_ds_system.logger)(e, "subMenu id5")
52
- }
53
- ]
54
- }
55
- ];
56
- const options = [
57
- {
58
- type: "SelectionGroup",
59
- id: "select-option",
60
- multi: false,
61
- closeOnClick: false,
62
- interactionType: "click",
63
- items: [
64
- {
65
- id: "id-1",
66
- selectable: true,
67
- type: "subMenu",
68
- label: "View Example 123",
69
- rightAddonType: "elipsis",
70
- interactionType: "click",
71
- subItems
72
- },
73
- {
74
- id: "id-2",
75
- type: "subMenu",
76
- label: "Option 2",
77
- rightAddonType: "elipsis",
78
- interactionType: "click",
79
- subItems
80
- },
81
- {
82
- id: "id-3",
83
- type: "subMenu",
84
- label: "Option 3",
85
- rightAddonType: "elipsis",
86
- interactionType: "click",
87
- subItems
88
- },
89
- {
90
- id: "id-4",
91
- type: "subMenu",
92
- label: "Option 4",
93
- rightAddonType: "elipsis",
94
- interactionType: "click",
95
- subItems
96
- },
97
- {
98
- id: "id-5",
99
- type: "subMenu",
100
- label: "Option 5",
101
- rightAddonType: "elipsis",
102
- interactionType: "click",
103
- subItems
104
- },
105
- {
106
- id: "id-6",
107
- type: "subMenu",
108
- label: "Option 6",
109
- rightAddonType: "elipsis",
110
- interactionType: "click",
111
- subItems
112
- },
113
- {
114
- id: "id-7",
115
- type: "subMenu",
116
- label: "Truncate long option Other Custom View Long Long Long Long Long",
117
- rightAddonType: "elipsis",
118
- interactionType: "click",
119
- subItems
120
- }
121
- ]
122
- }
123
- ];
124
- //# sourceMappingURL=utils.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/tests/utils.js", "../../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["import { logger } from '@elliemae/ds-system';\n\nconst subItems = [\n {\n id: 'id3',\n label: 'SubMenu List Item-1',\n onClick: (e) => logger(e, 'subMenu id3'),\n },\n {\n id: 'id4',\n type: 'subMenu',\n label: 'SubMenu List Item-2',\n onClick: (e) => logger(e, 'subMenu id4'),\n subItems: [\n {\n id: 'id5',\n label: 'SubMenu List Item-2',\n onClick: (e) => logger(e, 'subMenu id5'),\n },\n ],\n },\n];\n\nexport const options = [\n {\n type: 'SelectionGroup',\n id: 'select-option',\n multi: false,\n closeOnClick: false,\n interactionType: 'click',\n items: [\n {\n id: 'id-1',\n selectable: true,\n type: 'subMenu',\n label: 'View Example 123',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-2',\n type: 'subMenu',\n label: 'Option 2',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-3',\n type: 'subMenu',\n label: 'Option 3',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-4',\n type: 'subMenu',\n label: 'Option 4',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-5',\n type: 'subMenu',\n label: 'Option 5',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-6',\n type: 'subMenu',\n label: 'Option 6',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-7',\n type: 'subMenu',\n label: 'Truncate long option Other Custom View Long Long Long Long Long',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n ],\n },\n];\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,uBAAuB;AAEvB,MAAM,WAAW;AAAA,EACf;AAAA,IACE,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,SAAS,CAAC,UAAM,yBAAO,GAAG,aAAa;AAAA,EACzC;AAAA,EACA;AAAA,IACE,IAAI;AAAA,IACJ,MAAM;AAAA,IACN,OAAO;AAAA,IACP,SAAS,CAAC,UAAM,yBAAO,GAAG,aAAa;AAAA,IACvC,UAAU;AAAA,MACR;AAAA,QACE,IAAI;AAAA,QACJ,OAAO;AAAA,QACP,SAAS,CAAC,UAAM,yBAAO,GAAG,aAAa;AAAA,MACzC;AAAA,IACF;AAAA,EACF;AACF;AAEO,MAAM,UAAU;AAAA,EACrB;AAAA,IACE,MAAM;AAAA,IACN,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,cAAc;AAAA,IACd,iBAAiB;AAAA,IACjB,OAAO;AAAA,MACL;AAAA,QACE,IAAI;AAAA,QACJ,YAAY;AAAA,QACZ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,IACF;AAAA,EACF;AACF;",
6
- "names": []
7
- }
@@ -1,94 +0,0 @@
1
- import * as React from "react";
2
- import { logger } from "@elliemae/ds-system";
3
- const subItems = [
4
- {
5
- id: "id3",
6
- label: "SubMenu List Item-1",
7
- onClick: (e) => logger(e, "subMenu id3")
8
- },
9
- {
10
- id: "id4",
11
- type: "subMenu",
12
- label: "SubMenu List Item-2",
13
- onClick: (e) => logger(e, "subMenu id4"),
14
- subItems: [
15
- {
16
- id: "id5",
17
- label: "SubMenu List Item-2",
18
- onClick: (e) => logger(e, "subMenu id5")
19
- }
20
- ]
21
- }
22
- ];
23
- const options = [
24
- {
25
- type: "SelectionGroup",
26
- id: "select-option",
27
- multi: false,
28
- closeOnClick: false,
29
- interactionType: "click",
30
- items: [
31
- {
32
- id: "id-1",
33
- selectable: true,
34
- type: "subMenu",
35
- label: "View Example 123",
36
- rightAddonType: "elipsis",
37
- interactionType: "click",
38
- subItems
39
- },
40
- {
41
- id: "id-2",
42
- type: "subMenu",
43
- label: "Option 2",
44
- rightAddonType: "elipsis",
45
- interactionType: "click",
46
- subItems
47
- },
48
- {
49
- id: "id-3",
50
- type: "subMenu",
51
- label: "Option 3",
52
- rightAddonType: "elipsis",
53
- interactionType: "click",
54
- subItems
55
- },
56
- {
57
- id: "id-4",
58
- type: "subMenu",
59
- label: "Option 4",
60
- rightAddonType: "elipsis",
61
- interactionType: "click",
62
- subItems
63
- },
64
- {
65
- id: "id-5",
66
- type: "subMenu",
67
- label: "Option 5",
68
- rightAddonType: "elipsis",
69
- interactionType: "click",
70
- subItems
71
- },
72
- {
73
- id: "id-6",
74
- type: "subMenu",
75
- label: "Option 6",
76
- rightAddonType: "elipsis",
77
- interactionType: "click",
78
- subItems
79
- },
80
- {
81
- id: "id-7",
82
- type: "subMenu",
83
- label: "Truncate long option Other Custom View Long Long Long Long Long",
84
- rightAddonType: "elipsis",
85
- interactionType: "click",
86
- subItems
87
- }
88
- ]
89
- }
90
- ];
91
- export {
92
- options
93
- };
94
- //# sourceMappingURL=utils.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../../../../scripts/build/transpile/react-shim.js", "../../../src/tests/utils.js"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { logger } from '@elliemae/ds-system';\n\nconst subItems = [\n {\n id: 'id3',\n label: 'SubMenu List Item-1',\n onClick: (e) => logger(e, 'subMenu id3'),\n },\n {\n id: 'id4',\n type: 'subMenu',\n label: 'SubMenu List Item-2',\n onClick: (e) => logger(e, 'subMenu id4'),\n subItems: [\n {\n id: 'id5',\n label: 'SubMenu List Item-2',\n onClick: (e) => logger(e, 'subMenu id5'),\n },\n ],\n },\n];\n\nexport const options = [\n {\n type: 'SelectionGroup',\n id: 'select-option',\n multi: false,\n closeOnClick: false,\n interactionType: 'click',\n items: [\n {\n id: 'id-1',\n selectable: true,\n type: 'subMenu',\n label: 'View Example 123',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-2',\n type: 'subMenu',\n label: 'Option 2',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-3',\n type: 'subMenu',\n label: 'Option 3',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-4',\n type: 'subMenu',\n label: 'Option 4',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-5',\n type: 'subMenu',\n label: 'Option 5',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-6',\n type: 'subMenu',\n label: 'Option 6',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n {\n id: 'id-7',\n type: 'subMenu',\n label: 'Truncate long option Other Custom View Long Long Long Long Long',\n rightAddonType: 'elipsis',\n interactionType: 'click',\n subItems,\n },\n ],\n },\n];\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACAvB,SAAS,cAAc;AAEvB,MAAM,WAAW;AAAA,EACf;AAAA,IACE,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,SAAS,CAAC,MAAM,OAAO,GAAG,aAAa;AAAA,EACzC;AAAA,EACA;AAAA,IACE,IAAI;AAAA,IACJ,MAAM;AAAA,IACN,OAAO;AAAA,IACP,SAAS,CAAC,MAAM,OAAO,GAAG,aAAa;AAAA,IACvC,UAAU;AAAA,MACR;AAAA,QACE,IAAI;AAAA,QACJ,OAAO;AAAA,QACP,SAAS,CAAC,MAAM,OAAO,GAAG,aAAa;AAAA,MACzC;AAAA,IACF;AAAA,EACF;AACF;AAEO,MAAM,UAAU;AAAA,EACrB;AAAA,IACE,MAAM;AAAA,IACN,IAAI;AAAA,IACJ,OAAO;AAAA,IACP,cAAc;AAAA,IACd,iBAAiB;AAAA,IACjB,OAAO;AAAA,MACL;AAAA,QACE,IAAI;AAAA,QACJ,YAAY;AAAA,QACZ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,MACA;AAAA,QACE,IAAI;AAAA,QACJ,MAAM;AAAA,QACN,OAAO;AAAA,QACP,gBAAgB;AAAA,QAChB,iBAAiB;AAAA,QACjB;AAAA,MACF;AAAA,IACF;AAAA,EACF;AACF;",
6
- "names": []
7
- }