Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(stage) Drupal Maintenance, Metrolist listing form mobile #3413

Merged
merged 16 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
"drupal/rest_export_nested": "^1.0",
"drupal/restui": "^1.16",
"drupal/rollbar": "^2.1",
"drupal/salesforce": "^5.0",
"drupal/salesforce": "5.0.3",
"drupal/samlauth": "^3.0",
"drupal/schema_metatag": "^2.2",
"drupal/search_api": "1.30.0",
Expand Down Expand Up @@ -298,7 +298,7 @@
"Optional end-date in date_range field type": "https://www.drupal.org/files/issues/2020-08-09/2794481-109.patch",
"Title is a render array - Fixes media library ajax popup.": "https://www.drupal.org/files/issues/2019-10-21/2663316-76.drupal.Broken-title-in-modal-dialog-when-title-is-a-render-array.patch",
"Simple decimals fail to pass validation (https://www.drupal.org/project/drupal/issues/2230909) - DU 03-11-2020 & 01-25-2024": "https://www.drupal.org/files/issues/2023-12-21/2230909-309.patch",
"TODO CHECK: Multi-language paragraphs du - 05/2022": "https://www.drupal.org/files/issues/2022-05-10/3025039-68.patch"
"TODO CHECK - ALLOW TO FAIL: Multi-language paragraphs du - 05/2022 https://www.drupal.org/project/drupal/issues/3025039": "https://www.drupal.org/files/issues/2022-05-10/3025039-68.patch"
},
"gasparesganga/php-shapefile": {
"Patch for PHP8 compatibility for Drupal 10": "patches/php-shapefile-php8-compat.patch"
Expand All @@ -323,7 +323,7 @@
"drupal/date_recur": {
"CoB patch - Add helper for exdate retreival": "patches/exdate_helper.patch",
"CoB patch - Make filter work without exposed input": "patches/makeFilterWorkWithoutExposedInput.patch",
"TODO CHECK: Multi-language patch -du 05/2022": "https://www.drupal.org/files/issues/2020-05-28/3088544-11.patch"
"Modified Patch: Multi-language patch -du 05/2022 -du 04/2024 https://www.drupal.org/project/date_recur/issues/3267026": "patches/3088544-11.patch"
},
"drupal/social_media": {
"CoB patch - Adds TikTok to social_media component": "patches/social_media_tiktok.patch"
Expand All @@ -347,6 +347,9 @@
"drupal/panels": {
"2878684 - Use String.match to correlate regions when switching Layouts in Panels IPE": "https://www.drupal.org/files/issues/panels-ipe-2878684-3.patch"
},
"drupal/salesforce": {
"Fixes salesforce OAUTH error - DU April 2024 https://www.drupal.org/project/salesforce/issues/3427760": "https://www.drupal.org/files/issues/2024-03-14/3427760-2.patch"
},
"drupal/lightning_workflow": {
"COB Patch: Deprecated drupal_get_path for seven theme - DIG-3336: DU Oct 2023": "patches/lightning_scheduler.patch"
},
Expand Down
2,108 changes: 1,069 additions & 1,039 deletions composer.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -27,93 +27,77 @@ module.exports = exports;

"use strict";


/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
// css base code, injected by the css-loader
// eslint-disable-next-line func-names

module.exports = function (useSourceMap) {
var list = []; // return the list of modules as css string

list.toString = function toString() {
return this.map(function (item) {
var content = cssWithMappingToString(item, useSourceMap);

if (item[2]) {
return "@media ".concat(item[2], " {").concat(content, "}");
}

return content;
}).join('');
}; // import a list of modules into the list
// eslint-disable-next-line func-names


list.i = function (modules, mediaQuery, dedupe) {
if (typeof modules === 'string') {
// eslint-disable-next-line no-param-reassign
modules = [[null, modules, '']];
}

var alreadyImportedModules = {};

if (dedupe) {
for (var i = 0; i < this.length; i++) {
// eslint-disable-next-line prefer-destructuring
var id = this[i][0];

if (id != null) {
alreadyImportedModules[id] = true;
}
}
}

for (var _i = 0; _i < modules.length; _i++) {
var item = [].concat(modules[_i]);

if (dedupe && alreadyImportedModules[item[0]]) {
// eslint-disable-next-line no-continue
continue;
}

if (mediaQuery) {
if (!item[2]) {
item[2] = mediaQuery;
} else {
item[2] = "".concat(mediaQuery, " and ").concat(item[2]);
}
}

list.push(item);
}
};

return list;
};

function cssWithMappingToString(item, useSourceMap) {
var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring

var cssMapping = item[3];

if (!cssMapping) {
return content;
}

if (useSourceMap && typeof btoa === 'function') {
var sourceMapping = toComment(cssMapping);
var sourceURLs = cssMapping.sources.map(function (source) {
return "/*# sourceURL=".concat(cssMapping.sourceRoot || '').concat(source, " */");
});
return [content].concat(sourceURLs).concat([sourceMapping]).join('\n');
}

return [content].join('\n');
} // Adapted from convert-source-map (MIT)


function toComment(sourceMap) {
// eslint-disable-next-line no-undef
var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,139 @@
(window.webpackJsonp=window.webpackJsonp||[]).push([[1],{665:function(n,t,o){"use strict";n.exports=function(n){var t=[];return t.toString=function(){return this.map((function(t){var o=function(n,t){var o=n[1]||"",r=n[3];if(!r)return o;if(t&&"function"==typeof btoa){var a=(i=r,e=btoa(unescape(encodeURIComponent(JSON.stringify(i)))),u="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(e),"/*# ".concat(u," */")),c=r.sources.map((function(n){return"/*# sourceURL=".concat(r.sourceRoot||"").concat(n," */")}));return[o].concat(c).concat([a]).join("\n")}var i,e,u;return[o].join("\n")}(t,n);return t[2]?"@media ".concat(t[2]," {").concat(o,"}"):o})).join("")},t.i=function(n,o,r){"string"==typeof n&&(n=[[null,n,""]]);var a={};if(r)for(var c=0;c<this.length;c++){var i=this[c][0];null!=i&&(a[i]=!0)}for(var e=0;e<n.length;e++){var u=[].concat(n[e]);r&&a[u[0]]||(o&&(u[2]?u[2]="".concat(o," and ").concat(u[2]):u[2]=o),t.push(u))}},t}},666:function(n,t,o){(t=o(665)(!1)).push([n.i,".ml-range__input {\n padding: 0;\n height: .85rem;\n border: 2px solid #383838;\n width: 100%;\n}\n\n",""]),n.exports=t},670:function(n,t,o){var r=o(4),a=o(666);"string"==typeof(a=a.__esModule?a.default:a)&&(a=[[n.i,a,""]]);var c={insert:"head",singleton:!1};r(a,c);n.exports=a.locals||{}}}]);
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[1],{

/***/ "./node_modules/css-loader/dist/cjs.js!./src/components/RangeManual/RangeManual.ie-edge.css":
/*!**************************************************************************************************!*\
!*** ./node_modules/css-loader/dist/cjs.js!./src/components/RangeManual/RangeManual.ie-edge.css ***!
\**************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {

// Imports
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../node_modules/css-loader/dist/runtime/api.js */ "./node_modules/css-loader/dist/runtime/api.js");
exports = ___CSS_LOADER_API_IMPORT___(false);
// Module
exports.push([module.i, ".ml-range__input {\n padding: 0;\n height: .85rem;\n border: 2px solid #383838;\n width: 100%;\n}\n\n", ""]);
// Exports
module.exports = exports;


/***/ }),

/***/ "./node_modules/css-loader/dist/runtime/api.js":
/*!*****************************************************!*\
!*** ./node_modules/css-loader/dist/runtime/api.js ***!
\*****************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {

"use strict";


/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
// css base code, injected by the css-loader
// eslint-disable-next-line func-names
module.exports = function (useSourceMap) {
var list = []; // return the list of modules as css string

list.toString = function toString() {
return this.map(function (item) {
var content = cssWithMappingToString(item, useSourceMap);
if (item[2]) {
return "@media ".concat(item[2], " {").concat(content, "}");
}
return content;
}).join('');
}; // import a list of modules into the list
// eslint-disable-next-line func-names

list.i = function (modules, mediaQuery, dedupe) {
if (typeof modules === 'string') {
// eslint-disable-next-line no-param-reassign
modules = [[null, modules, '']];
}
var alreadyImportedModules = {};
if (dedupe) {
for (var i = 0; i < this.length; i++) {
// eslint-disable-next-line prefer-destructuring
var id = this[i][0];
if (id != null) {
alreadyImportedModules[id] = true;
}
}
}
for (var _i = 0; _i < modules.length; _i++) {
var item = [].concat(modules[_i]);
if (dedupe && alreadyImportedModules[item[0]]) {
// eslint-disable-next-line no-continue
continue;
}
if (mediaQuery) {
if (!item[2]) {
item[2] = mediaQuery;
} else {
item[2] = "".concat(mediaQuery, " and ").concat(item[2]);
}
}
list.push(item);
}
};
return list;
};
function cssWithMappingToString(item, useSourceMap) {
var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring

var cssMapping = item[3];
if (!cssMapping) {
return content;
}
if (useSourceMap && typeof btoa === 'function') {
var sourceMapping = toComment(cssMapping);
var sourceURLs = cssMapping.sources.map(function (source) {
return "/*# sourceURL=".concat(cssMapping.sourceRoot || '').concat(source, " */");
});
return [content].concat(sourceURLs).concat([sourceMapping]).join('\n');
}
return [content].join('\n');
} // Adapted from convert-source-map (MIT)

function toComment(sourceMap) {
// eslint-disable-next-line no-undef
var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));
var data = "sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(base64);
return "/*# ".concat(data, " */");
}

/***/ }),

/***/ "./src/components/RangeManual/RangeManual.ie-edge.css":
/*!************************************************************!*\
!*** ./src/components/RangeManual/RangeManual.ie-edge.css ***!
\************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {

var api = __webpack_require__(/*! ../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js */ "./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js");
var content = __webpack_require__(/*! !../../../node_modules/css-loader/dist/cjs.js!./RangeManual.ie-edge.css */ "./node_modules/css-loader/dist/cjs.js!./src/components/RangeManual/RangeManual.ie-edge.css");

content = content.__esModule ? content.default : content;

if (typeof content === 'string') {
content = [[module.i, content, '']];
}

var options = {};

options.insert = "head";
options.singleton = false;

var update = api(content, options);



module.exports = content.locals || {};

/***/ })

}]);

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading