@elliemae/ds-query-builder 3.49.0-rc.8 → 3.49.0
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/cjs/components/AndOrController/AndOrController.js +44 -44
- package/dist/cjs/components/AndOrController/AndOrController.js.map +2 -2
- package/dist/cjs/components/DisplayOutput/DisplayOutput.js +5 -5
- package/dist/cjs/components/DisplayOutput/DisplayOutput.js.map +1 -1
- package/dist/cjs/components/Nestable/Nestable.js +46 -46
- package/dist/cjs/components/Nestable/Nestable.js.map +1 -1
- package/dist/cjs/components/QueryBuilderImpl.js +105 -105
- package/dist/cjs/components/QueryBuilderImpl.js.map +1 -1
- package/dist/cjs/components/QueryBuilderRow/QueryBuilderRow.js +23 -17
- package/dist/cjs/components/QueryBuilderRow/QueryBuilderRow.js.map +2 -2
- package/dist/cjs/components/format/format.js +15 -17
- package/dist/cjs/components/format/format.js.map +1 -1
- package/dist/cjs/components/helpers/store.js +108 -108
- package/dist/cjs/components/helpers/store.js.map +1 -1
- package/dist/esm/components/AndOrController/AndOrController.js +44 -44
- package/dist/esm/components/AndOrController/AndOrController.js.map +1 -1
- package/dist/esm/components/DisplayOutput/DisplayOutput.js +5 -5
- package/dist/esm/components/DisplayOutput/DisplayOutput.js.map +1 -1
- package/dist/esm/components/Nestable/Nestable.js +46 -46
- package/dist/esm/components/Nestable/Nestable.js.map +1 -1
- package/dist/esm/components/QueryBuilderImpl.js +105 -105
- package/dist/esm/components/QueryBuilderImpl.js.map +1 -1
- package/dist/esm/components/QueryBuilderRow/QueryBuilderRow.js +23 -17
- package/dist/esm/components/QueryBuilderRow/QueryBuilderRow.js.map +2 -2
- package/dist/esm/components/format/format.js +15 -17
- package/dist/esm/components/format/format.js.map +1 -1
- package/dist/esm/components/helpers/store.js +108 -108
- package/dist/esm/components/helpers/store.js.map +1 -1
- package/package.json +18 -15
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../../scripts/build/transpile/react-shim.js", "../../../../src/components/format/format.tsx"],
|
|
4
4
|
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { sqlFormat } from './sqlFormat.js';\nimport { xmlFormat } from './xmlFormat.js';\nimport { sqlSafeFormat } from './sqlSafeFormat.js';\n\nclass QueryBuilderFormat {\n format = {\n defaultFormat: (query) => query,\n sqlFormat,\n xmlFormat,\n sqlSafeFormat,\n };\n\n currentFormat = 'sqlFormat';\n\n setDefaultFormat = (formatName) => {\n if (this.format[formatName]) this.currentFormat = formatName;\n };\n\n addFormat = (formatName, format) => (this.format[formatName] = format);\n\n run = (query, formatName) => {\n if (this.format[formatName]) return this.format[formatName](query);\n return this.format[this.currentFormat](query);\n };\n}\n\nexport default new QueryBuilderFormat();\n"],
|
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;ACAvB,SAAS,iBAAiB;AAC1B,SAAS,iBAAiB;AAC1B,SAAS,qBAAqB;AAE9B,MAAM,mBAAmB;AAAA,
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACAvB,SAAS,iBAAiB;AAC1B,SAAS,iBAAiB;AAC1B,SAAS,qBAAqB;AAE9B,MAAM,mBAAmB;AAAA,EACvB,SAAS;AAAA,IACP,eAAe,CAAC,UAAU;AAAA,IAC1B;AAAA,IACA;AAAA,IACA;AAAA,EACF;AAAA,EAEA,gBAAgB;AAAA,EAEhB,mBAAmB,CAAC,eAAe;AACjC,QAAI,KAAK,OAAO,UAAU,EAAG,MAAK,gBAAgB;AAAA,EACpD;AAAA,EAEA,YAAY,CAAC,YAAY,WAAY,KAAK,OAAO,UAAU,IAAI;AAAA,EAE/D,MAAM,CAAC,OAAO,eAAe;AAC3B,QAAI,KAAK,OAAO,UAAU,EAAG,QAAO,KAAK,OAAO,UAAU,EAAE,KAAK;AACjE,WAAO,KAAK,OAAO,KAAK,aAAa,EAAE,KAAK;AAAA,EAC9C;AACF;AAEA,IAAO,iBAAQ,IAAI,mBAAmB;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -15,115 +15,14 @@ import {
|
|
|
15
15
|
} from "./actions.js";
|
|
16
16
|
import QueryBuilderFormat from "../format/format.js";
|
|
17
17
|
class QueryBuilderStore {
|
|
18
|
+
items = [];
|
|
19
|
+
step = 0;
|
|
20
|
+
steps = {};
|
|
21
|
+
mapFilters = {};
|
|
22
|
+
mapGroups = {};
|
|
23
|
+
main = null;
|
|
24
|
+
format = null;
|
|
18
25
|
constructor(init, format) {
|
|
19
|
-
this.items = [];
|
|
20
|
-
this.step = 0;
|
|
21
|
-
this.steps = {};
|
|
22
|
-
this.mapFilters = {};
|
|
23
|
-
this.mapGroups = {};
|
|
24
|
-
this.main = null;
|
|
25
|
-
this.format = null;
|
|
26
|
-
this.createNewFilter = (idGroup) => createNewFilter.call(this, idGroup);
|
|
27
|
-
this.createNewGroup = (parentIdGroup) => createNewGroup.call(this, parentIdGroup);
|
|
28
|
-
this.onOrderDragAndDrop = (items) => {
|
|
29
|
-
this.items = items;
|
|
30
|
-
return this.getState();
|
|
31
|
-
};
|
|
32
|
-
// eslint-disable-next-line no-unused-vars
|
|
33
|
-
this.addFilterNextToFilterId = (idGroup, idFilter) => {
|
|
34
|
-
this.addFilter(idGroup);
|
|
35
|
-
return this.getState();
|
|
36
|
-
};
|
|
37
|
-
this.addFilter = (idGroup) => {
|
|
38
|
-
const newFilter = this.createNewFilter(idGroup);
|
|
39
|
-
addFilterToMap.call(this, newFilter);
|
|
40
|
-
if (this.main === idGroup) {
|
|
41
|
-
addFilterToMainItem.call(this, this.items, newFilter);
|
|
42
|
-
} else {
|
|
43
|
-
const foundInItems = findItemFilterById.call(this, idGroup);
|
|
44
|
-
if (foundInItems) {
|
|
45
|
-
addFilterToItem.call(this, foundInItems, newFilter);
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
return this.getState();
|
|
49
|
-
};
|
|
50
|
-
this.onRemoveFilter = (idFilter) => {
|
|
51
|
-
removeFilterItem.call(this, idFilter);
|
|
52
|
-
return this.getState();
|
|
53
|
-
};
|
|
54
|
-
this.addRuleContainerInPlace = (idGroup, idFilter) => {
|
|
55
|
-
const newGroup = this.createNewGroup(idGroup);
|
|
56
|
-
addGroupFilterToItem.call(this, idGroup, idFilter, newGroup);
|
|
57
|
-
return this.getState();
|
|
58
|
-
};
|
|
59
|
-
/**
|
|
60
|
-
* Group a filter inside a new Group
|
|
61
|
-
* @param idGroup
|
|
62
|
-
* @param idFilter
|
|
63
|
-
*/
|
|
64
|
-
// eslint-disable-next-line no-unused-vars
|
|
65
|
-
this.addRuleContainer = (idGroup, idFilter) => {
|
|
66
|
-
const newGroup = this.createNewGroup(idGroup);
|
|
67
|
-
addGroupToMap.call(this, newGroup);
|
|
68
|
-
if (this.main === idGroup) {
|
|
69
|
-
addFilterToMainItem.call(this, this.items, newGroup);
|
|
70
|
-
} else {
|
|
71
|
-
const foundInItems = findItemFilterById.call(this, idGroup);
|
|
72
|
-
if (foundInItems) {
|
|
73
|
-
addFilterToItem.call(this, foundInItems, newGroup);
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
return this.getState();
|
|
77
|
-
};
|
|
78
|
-
this.unGroup = (idGroup) => {
|
|
79
|
-
unGroupFilterToItem.call(this, idGroup);
|
|
80
|
-
return this.getState();
|
|
81
|
-
};
|
|
82
|
-
this.changeGroupOperator = (idGroup, value) => {
|
|
83
|
-
this.getGroupById(idGroup).condition = value;
|
|
84
|
-
changeGroupOperator.call(this, idGroup, value);
|
|
85
|
-
return this.getState();
|
|
86
|
-
};
|
|
87
|
-
this.changeFilter = (data) => {
|
|
88
|
-
const { idFilter } = data;
|
|
89
|
-
this.mapFilters[idFilter] = {
|
|
90
|
-
...this.mapFilters[idFilter],
|
|
91
|
-
...data
|
|
92
|
-
};
|
|
93
|
-
changeFilterItem.call(this, data);
|
|
94
|
-
return this.getState();
|
|
95
|
-
};
|
|
96
|
-
this.getGroupById = (idGroup) => this.mapGroups[idGroup] || {};
|
|
97
|
-
this.getFilterById = (idFilter) => this.mapFilters[idFilter];
|
|
98
|
-
this.getInitialState = () => {
|
|
99
|
-
const newFilters = {
|
|
100
|
-
step: this.step,
|
|
101
|
-
mapFilters: { ...this.mapFilters },
|
|
102
|
-
mapGroups: { ...this.mapGroups },
|
|
103
|
-
main: this.main,
|
|
104
|
-
items: this.items
|
|
105
|
-
};
|
|
106
|
-
const format = QueryBuilderFormat.run(newFilters, this.format);
|
|
107
|
-
return {
|
|
108
|
-
...newFilters,
|
|
109
|
-
format
|
|
110
|
-
};
|
|
111
|
-
};
|
|
112
|
-
this.getState = () => {
|
|
113
|
-
this.step += 1;
|
|
114
|
-
const newFilters = {
|
|
115
|
-
step: this.step,
|
|
116
|
-
mapFilters: { ...this.mapFilters },
|
|
117
|
-
mapGroups: { ...this.mapGroups },
|
|
118
|
-
main: this.main,
|
|
119
|
-
items: this.items
|
|
120
|
-
};
|
|
121
|
-
const format = QueryBuilderFormat.run(newFilters, this.format);
|
|
122
|
-
return {
|
|
123
|
-
...newFilters,
|
|
124
|
-
format
|
|
125
|
-
};
|
|
126
|
-
};
|
|
127
26
|
this.firstLoad = true;
|
|
128
27
|
this.format = format;
|
|
129
28
|
if (init) return this.initSetupUp(init);
|
|
@@ -141,6 +40,107 @@ class QueryBuilderStore {
|
|
|
141
40
|
if (init[key] && this[key] !== void 0) this[key] = init[key];
|
|
142
41
|
});
|
|
143
42
|
}
|
|
43
|
+
createNewFilter = (idGroup) => createNewFilter.call(this, idGroup);
|
|
44
|
+
createNewGroup = (parentIdGroup) => createNewGroup.call(this, parentIdGroup);
|
|
45
|
+
onOrderDragAndDrop = (items) => {
|
|
46
|
+
this.items = items;
|
|
47
|
+
return this.getState();
|
|
48
|
+
};
|
|
49
|
+
// eslint-disable-next-line no-unused-vars
|
|
50
|
+
addFilterNextToFilterId = (idGroup, idFilter) => {
|
|
51
|
+
this.addFilter(idGroup);
|
|
52
|
+
return this.getState();
|
|
53
|
+
};
|
|
54
|
+
addFilter = (idGroup) => {
|
|
55
|
+
const newFilter = this.createNewFilter(idGroup);
|
|
56
|
+
addFilterToMap.call(this, newFilter);
|
|
57
|
+
if (this.main === idGroup) {
|
|
58
|
+
addFilterToMainItem.call(this, this.items, newFilter);
|
|
59
|
+
} else {
|
|
60
|
+
const foundInItems = findItemFilterById.call(this, idGroup);
|
|
61
|
+
if (foundInItems) {
|
|
62
|
+
addFilterToItem.call(this, foundInItems, newFilter);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
return this.getState();
|
|
66
|
+
};
|
|
67
|
+
onRemoveFilter = (idFilter) => {
|
|
68
|
+
removeFilterItem.call(this, idFilter);
|
|
69
|
+
return this.getState();
|
|
70
|
+
};
|
|
71
|
+
addRuleContainerInPlace = (idGroup, idFilter) => {
|
|
72
|
+
const newGroup = this.createNewGroup(idGroup);
|
|
73
|
+
addGroupFilterToItem.call(this, idGroup, idFilter, newGroup);
|
|
74
|
+
return this.getState();
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* Group a filter inside a new Group
|
|
78
|
+
* @param idGroup
|
|
79
|
+
* @param idFilter
|
|
80
|
+
*/
|
|
81
|
+
// eslint-disable-next-line no-unused-vars
|
|
82
|
+
addRuleContainer = (idGroup, idFilter) => {
|
|
83
|
+
const newGroup = this.createNewGroup(idGroup);
|
|
84
|
+
addGroupToMap.call(this, newGroup);
|
|
85
|
+
if (this.main === idGroup) {
|
|
86
|
+
addFilterToMainItem.call(this, this.items, newGroup);
|
|
87
|
+
} else {
|
|
88
|
+
const foundInItems = findItemFilterById.call(this, idGroup);
|
|
89
|
+
if (foundInItems) {
|
|
90
|
+
addFilterToItem.call(this, foundInItems, newGroup);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
return this.getState();
|
|
94
|
+
};
|
|
95
|
+
unGroup = (idGroup) => {
|
|
96
|
+
unGroupFilterToItem.call(this, idGroup);
|
|
97
|
+
return this.getState();
|
|
98
|
+
};
|
|
99
|
+
changeGroupOperator = (idGroup, value) => {
|
|
100
|
+
this.getGroupById(idGroup).condition = value;
|
|
101
|
+
changeGroupOperator.call(this, idGroup, value);
|
|
102
|
+
return this.getState();
|
|
103
|
+
};
|
|
104
|
+
changeFilter = (data) => {
|
|
105
|
+
const { idFilter } = data;
|
|
106
|
+
this.mapFilters[idFilter] = {
|
|
107
|
+
...this.mapFilters[idFilter],
|
|
108
|
+
...data
|
|
109
|
+
};
|
|
110
|
+
changeFilterItem.call(this, data);
|
|
111
|
+
return this.getState();
|
|
112
|
+
};
|
|
113
|
+
getGroupById = (idGroup) => this.mapGroups[idGroup] || {};
|
|
114
|
+
getFilterById = (idFilter) => this.mapFilters[idFilter];
|
|
115
|
+
getInitialState = () => {
|
|
116
|
+
const newFilters = {
|
|
117
|
+
step: this.step,
|
|
118
|
+
mapFilters: { ...this.mapFilters },
|
|
119
|
+
mapGroups: { ...this.mapGroups },
|
|
120
|
+
main: this.main,
|
|
121
|
+
items: this.items
|
|
122
|
+
};
|
|
123
|
+
const format = QueryBuilderFormat.run(newFilters, this.format);
|
|
124
|
+
return {
|
|
125
|
+
...newFilters,
|
|
126
|
+
format
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
getState = () => {
|
|
130
|
+
this.step += 1;
|
|
131
|
+
const newFilters = {
|
|
132
|
+
step: this.step,
|
|
133
|
+
mapFilters: { ...this.mapFilters },
|
|
134
|
+
mapGroups: { ...this.mapGroups },
|
|
135
|
+
main: this.main,
|
|
136
|
+
items: this.items
|
|
137
|
+
};
|
|
138
|
+
const format = QueryBuilderFormat.run(newFilters, this.format);
|
|
139
|
+
return {
|
|
140
|
+
...newFilters,
|
|
141
|
+
format
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
144
|
}
|
|
145
145
|
var store_default = QueryBuilderStore;
|
|
146
146
|
export {
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../../../scripts/build/transpile/react-shim.js", "../../../../src/components/helpers/store.tsx"],
|
|
4
4
|
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable max-lines */\nimport {\n createNewFilter,\n createNewGroup,\n addFilterToMap,\n addGroupToMap,\n addFilterToItem, // new API\n addFilterToMainItem, // new API\n findItemFilterById, // new API\n removeFilterItem, // new API\n addGroupFilterToItem, // new API\n unGroupFilterToItem, // new API\n changeFilterItem, // new API\n changeGroupOperator, // new API\n} from './actions.js';\nimport QueryBuilderFormat from '../format/format.js';\n/**\n * Fluent interface: https://en.wikipedia.org/wiki/Fluent_interface\n * @param idGroup\n * @param parentIdGroup\n * @param items\n * @param idFilter\n * @param value\n * @param data\n * @class QueryBuilderStore\n */\nclass QueryBuilderStore {\n items = [];\n\n step = 0;\n\n steps = {};\n\n mapFilters = {};\n\n mapGroups = {};\n\n main = null;\n\n format = null;\n\n constructor(init, format) {\n this.firstLoad = true;\n this.format = format;\n if (init) return this.initSetupUp(init);\n const mainGroup = this.createNewGroup('main');\n this.mapGroups = {\n [mainGroup.idGroup]: mainGroup,\n };\n this.main = mainGroup.idGroup;\n this.addFilter(mainGroup.idGroup);\n\n this.initSetupUp = this.initSetupUp.bind(this);\n }\n\n initSetupUp(init) {\n this.step = init.step || 1;\n Object.keys(init).forEach((key) => {\n if (init[key] && this[key] !== undefined) this[key] = init[key];\n });\n }\n\n createNewFilter = (idGroup) => createNewFilter.call(this, idGroup);\n\n createNewGroup = (parentIdGroup) => createNewGroup.call(this, parentIdGroup);\n\n onOrderDragAndDrop = (items) => {\n this.items = items;\n return this.getState();\n };\n\n // eslint-disable-next-line no-unused-vars\n addFilterNextToFilterId = (idGroup, idFilter) => {\n // eslint-disable-line\n this.addFilter(idGroup);\n return this.getState();\n };\n\n addFilter = (idGroup) => {\n const newFilter = this.createNewFilter(idGroup);\n addFilterToMap.call(this, newFilter);\n // new API\n if (this.main === idGroup) {\n addFilterToMainItem.call(this, this.items, newFilter);\n } else {\n const foundInItems = findItemFilterById.call(this, idGroup);\n if (foundInItems) {\n addFilterToItem.call(this, foundInItems, newFilter);\n }\n }\n return this.getState();\n };\n\n onRemoveFilter = (idFilter) => {\n // new API\n removeFilterItem.call(this, idFilter);\n return this.getState();\n };\n\n addRuleContainerInPlace = (idGroup, idFilter) => {\n // Create a new group\n const newGroup = this.createNewGroup(idGroup);\n addGroupFilterToItem.call(this, idGroup, idFilter, newGroup);\n return this.getState();\n };\n\n /**\n * Group a filter inside a new Group\n * @param idGroup\n * @param idFilter\n */\n // eslint-disable-next-line no-unused-vars\n addRuleContainer = (idGroup, idFilter) => {\n // eslint-disable-line\n const newGroup = this.createNewGroup(idGroup);\n addGroupToMap.call(this, newGroup);\n if (this.main === idGroup) {\n addFilterToMainItem.call(this, this.items, newGroup);\n } else {\n const foundInItems = findItemFilterById.call(this, idGroup);\n if (foundInItems) {\n addFilterToItem.call(this, foundInItems, newGroup);\n }\n }\n return this.getState();\n };\n\n unGroup = (idGroup) => {\n unGroupFilterToItem.call(this, idGroup);\n return this.getState();\n };\n\n changeGroupOperator = (idGroup, value) => {\n this.getGroupById(idGroup).condition = value;\n changeGroupOperator.call(this, idGroup, value);\n return this.getState();\n };\n\n changeFilter = (data) => {\n const { idFilter } = data;\n this.mapFilters[idFilter] = {\n ...this.mapFilters[idFilter],\n ...data,\n };\n changeFilterItem.call(this, data);\n return this.getState();\n };\n\n getGroupById = (idGroup) => this.mapGroups[idGroup] || {};\n\n getFilterById = (idFilter) => this.mapFilters[idFilter];\n\n getInitialState = () => {\n const newFilters = {\n step: this.step,\n mapFilters: { ...this.mapFilters },\n mapGroups: { ...this.mapGroups },\n main: this.main,\n items: this.items,\n };\n const format = QueryBuilderFormat.run(newFilters, this.format);\n return {\n ...newFilters,\n format,\n };\n };\n\n getState = () => {\n this.step += 1;\n const newFilters = {\n step: this.step,\n mapFilters: { ...this.mapFilters },\n mapGroups: { ...this.mapGroups },\n main: this.main,\n items: this.items,\n };\n const format = QueryBuilderFormat.run(newFilters, this.format);\n return {\n ...newFilters,\n format,\n };\n };\n}\n\nexport default QueryBuilderStore;\n"],
|
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;ACCvB;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,OAAO,wBAAwB;AAW/B,MAAM,kBAAkB;AAAA,
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-query-builder",
|
|
3
|
-
"version": "3.49.0
|
|
3
|
+
"version": "3.49.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Query Builder",
|
|
6
6
|
"files": [
|
|
@@ -161,8 +161,8 @@
|
|
|
161
161
|
"url": "https://git.elliemae.io/platform-ui/dimsum.git"
|
|
162
162
|
},
|
|
163
163
|
"engines": {
|
|
164
|
-
"pnpm": ">=
|
|
165
|
-
"node": ">=
|
|
164
|
+
"pnpm": ">=9",
|
|
165
|
+
"node": ">=22"
|
|
166
166
|
},
|
|
167
167
|
"author": "ICE MT",
|
|
168
168
|
"jestSonar": {
|
|
@@ -175,22 +175,25 @@
|
|
|
175
175
|
"classnames": "~2.3.2",
|
|
176
176
|
"prop-types": "~15.8.1",
|
|
177
177
|
"react-addons-update": "~15.6.3",
|
|
178
|
-
"@elliemae/ds-
|
|
179
|
-
"@elliemae/ds-button": "3.49.0
|
|
180
|
-
"@elliemae/ds-
|
|
181
|
-
"@elliemae/ds-form": "3.49.0
|
|
182
|
-
"@elliemae/ds-
|
|
183
|
-
"@elliemae/ds-
|
|
184
|
-
"@elliemae/ds-
|
|
185
|
-
"@elliemae/ds-
|
|
186
|
-
"@elliemae/ds-
|
|
187
|
-
"@elliemae/ds-
|
|
188
|
-
"@elliemae/ds-
|
|
178
|
+
"@elliemae/ds-accordion": "3.49.0",
|
|
179
|
+
"@elliemae/ds-button": "3.49.0",
|
|
180
|
+
"@elliemae/ds-classnames": "3.49.0",
|
|
181
|
+
"@elliemae/ds-form": "3.49.0",
|
|
182
|
+
"@elliemae/ds-popper": "3.49.0",
|
|
183
|
+
"@elliemae/ds-icons": "3.49.0",
|
|
184
|
+
"@elliemae/ds-icon": "3.49.0",
|
|
185
|
+
"@elliemae/ds-grid": "3.49.0",
|
|
186
|
+
"@elliemae/ds-props-helpers": "3.49.0",
|
|
187
|
+
"@elliemae/ds-shared": "3.49.0",
|
|
188
|
+
"@elliemae/ds-tooltip": "3.49.0",
|
|
189
|
+
"@elliemae/ds-system": "3.49.0"
|
|
189
190
|
},
|
|
190
191
|
"devDependencies": {
|
|
191
192
|
"@elliemae/pui-cli": "9.0.0-next.50",
|
|
193
|
+
"jest": "~29.7.0",
|
|
194
|
+
"jest-cli": "~29.7.0",
|
|
192
195
|
"styled-components": "~5.3.9",
|
|
193
|
-
"@elliemae/ds-monorepo-devops": "3.49.0
|
|
196
|
+
"@elliemae/ds-monorepo-devops": "3.49.0"
|
|
194
197
|
},
|
|
195
198
|
"peerDependencies": {
|
|
196
199
|
"lodash": "^4.17.21",
|