@mmb-digital/ds-lilly 0.10.13 → 0.10.15
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/0.ds-lilly.js +9402 -0
- package/dist/Alert.ds-lilly.js +3285 -0
- package/dist/Avatar.ds-lilly.js +3289 -0
- package/dist/Badge.ds-lilly.js +227 -0
- package/dist/Button.ds-lilly.js +3419 -0
- package/dist/ButtonTooltip.ds-lilly.js +6145 -0
- package/dist/Card.ds-lilly.js +3447 -0
- package/dist/Collapse.ds-lilly.js +3470 -0
- package/dist/Divider.ds-lilly.js +226 -0
- package/dist/Dropdown.ds-lilly.js +5960 -0
- package/dist/Icon.ds-lilly.js +3257 -0
- package/dist/IconList.ds-lilly.js +3307 -0
- package/dist/Image.ds-lilly.js +226 -0
- package/dist/Link.ds-lilly.js +3340 -0
- package/dist/List.ds-lilly.js +240 -0
- package/dist/Loader.ds-lilly.js +271 -0
- package/dist/Modal.ds-lilly.js +3938 -0
- package/dist/Pills.ds-lilly.js +400 -0
- package/dist/Tag.ds-lilly.js +3282 -0
- package/dist/Tile.ds-lilly.js +3294 -0
- package/dist/Tooltip.ds-lilly.js +2966 -0
- package/dist/UserAuth.ds-lilly.js +9552 -0
- package/dist/comps.ds-lilly.js +95598 -0
- package/dist/ds-lilly.css +1 -1
- package/dist/ds-lilly.js +6 -6
- package/dist/main.ds-lilly.js +95048 -0
- package/dist/types/src/components/Components/CompactButtons/CompactButtons.d.ts +7 -2
- package/dist/types/src/components/Form/Toggle/Toggle.d.ts +6 -2
- package/dist/types/src/utils/classBinder.d.ts +5 -1
- package/package.json +1 -1
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
|
2
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
|
+
module.exports = factory(require("react"));
|
|
4
|
+
else if(typeof define === 'function' && define.amd)
|
|
5
|
+
define(["react"], factory);
|
|
6
|
+
else if(typeof exports === 'object')
|
|
7
|
+
exports["${FILENAME}"] = factory(require("react"));
|
|
8
|
+
else
|
|
9
|
+
root["${FILENAME}"] = factory(root["React"]);
|
|
10
|
+
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) {
|
|
11
|
+
return /******/ (function(modules) { // webpackBootstrap
|
|
12
|
+
/******/ // The module cache
|
|
13
|
+
/******/ var installedModules = {};
|
|
14
|
+
/******/
|
|
15
|
+
/******/ // The require function
|
|
16
|
+
/******/ function __webpack_require__(moduleId) {
|
|
17
|
+
/******/
|
|
18
|
+
/******/ // Check if module is in cache
|
|
19
|
+
/******/ if(installedModules[moduleId]) {
|
|
20
|
+
/******/ return installedModules[moduleId].exports;
|
|
21
|
+
/******/ }
|
|
22
|
+
/******/ // Create a new module (and put it into the cache)
|
|
23
|
+
/******/ var module = installedModules[moduleId] = {
|
|
24
|
+
/******/ i: moduleId,
|
|
25
|
+
/******/ l: false,
|
|
26
|
+
/******/ exports: {}
|
|
27
|
+
/******/ };
|
|
28
|
+
/******/
|
|
29
|
+
/******/ // Execute the module function
|
|
30
|
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
31
|
+
/******/
|
|
32
|
+
/******/ // Flag the module as loaded
|
|
33
|
+
/******/ module.l = true;
|
|
34
|
+
/******/
|
|
35
|
+
/******/ // Return the exports of the module
|
|
36
|
+
/******/ return module.exports;
|
|
37
|
+
/******/ }
|
|
38
|
+
/******/
|
|
39
|
+
/******/
|
|
40
|
+
/******/ // expose the modules object (__webpack_modules__)
|
|
41
|
+
/******/ __webpack_require__.m = modules;
|
|
42
|
+
/******/
|
|
43
|
+
/******/ // expose the module cache
|
|
44
|
+
/******/ __webpack_require__.c = installedModules;
|
|
45
|
+
/******/
|
|
46
|
+
/******/ // define getter function for harmony exports
|
|
47
|
+
/******/ __webpack_require__.d = function(exports, name, getter) {
|
|
48
|
+
/******/ if(!__webpack_require__.o(exports, name)) {
|
|
49
|
+
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
|
50
|
+
/******/ }
|
|
51
|
+
/******/ };
|
|
52
|
+
/******/
|
|
53
|
+
/******/ // define __esModule on exports
|
|
54
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
55
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
56
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
57
|
+
/******/ }
|
|
58
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
59
|
+
/******/ };
|
|
60
|
+
/******/
|
|
61
|
+
/******/ // create a fake namespace object
|
|
62
|
+
/******/ // mode & 1: value is a module id, require it
|
|
63
|
+
/******/ // mode & 2: merge all properties of value into the ns
|
|
64
|
+
/******/ // mode & 4: return value when already ns object
|
|
65
|
+
/******/ // mode & 8|1: behave like require
|
|
66
|
+
/******/ __webpack_require__.t = function(value, mode) {
|
|
67
|
+
/******/ if(mode & 1) value = __webpack_require__(value);
|
|
68
|
+
/******/ if(mode & 8) return value;
|
|
69
|
+
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
|
70
|
+
/******/ var ns = Object.create(null);
|
|
71
|
+
/******/ __webpack_require__.r(ns);
|
|
72
|
+
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
|
73
|
+
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
|
74
|
+
/******/ return ns;
|
|
75
|
+
/******/ };
|
|
76
|
+
/******/
|
|
77
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
78
|
+
/******/ __webpack_require__.n = function(module) {
|
|
79
|
+
/******/ var getter = module && module.__esModule ?
|
|
80
|
+
/******/ function getDefault() { return module['default']; } :
|
|
81
|
+
/******/ function getModuleExports() { return module; };
|
|
82
|
+
/******/ __webpack_require__.d(getter, 'a', getter);
|
|
83
|
+
/******/ return getter;
|
|
84
|
+
/******/ };
|
|
85
|
+
/******/
|
|
86
|
+
/******/ // Object.prototype.hasOwnProperty.call
|
|
87
|
+
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
|
88
|
+
/******/
|
|
89
|
+
/******/ // __webpack_public_path__
|
|
90
|
+
/******/ __webpack_require__.p = "";
|
|
91
|
+
/******/
|
|
92
|
+
/******/
|
|
93
|
+
/******/ // Load entry module and return exports
|
|
94
|
+
/******/ return __webpack_require__(__webpack_require__.s = 508);
|
|
95
|
+
/******/ })
|
|
96
|
+
/************************************************************************/
|
|
97
|
+
/******/ ({
|
|
98
|
+
|
|
99
|
+
/***/ 0:
|
|
100
|
+
/***/ (function(module, exports) {
|
|
101
|
+
|
|
102
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__0__;
|
|
103
|
+
|
|
104
|
+
/***/ }),
|
|
105
|
+
|
|
106
|
+
/***/ 15:
|
|
107
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
108
|
+
|
|
109
|
+
// extracted by mini-css-extract-plugin
|
|
110
|
+
|
|
111
|
+
/***/ }),
|
|
112
|
+
|
|
113
|
+
/***/ 3:
|
|
114
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
115
|
+
|
|
116
|
+
"use strict";
|
|
117
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return cx; });
|
|
118
|
+
/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7);
|
|
119
|
+
/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_0__);
|
|
120
|
+
/* harmony import */ var _scss_styles_scss__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(15);
|
|
121
|
+
/* harmony import */ var _scss_styles_scss__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_scss_styles_scss__WEBPACK_IMPORTED_MODULE_1__);
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
var cx = classnames__WEBPACK_IMPORTED_MODULE_0___default.a.bind(_scss_styles_scss__WEBPACK_IMPORTED_MODULE_1___default.a);
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
/***/ }),
|
|
128
|
+
|
|
129
|
+
/***/ 478:
|
|
130
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
131
|
+
|
|
132
|
+
"use strict";
|
|
133
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
|
|
134
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
135
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3);
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
var Divider = function (_a) {
|
|
139
|
+
var _b;
|
|
140
|
+
var isInverted = _a.isInverted, theme = _a.theme;
|
|
141
|
+
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("hr", { className: Object(_utils__WEBPACK_IMPORTED_MODULE_1__[/* cx */ "a"])('c-divider', (_b = {}, _b["c-divider--inverse"] = isInverted, _b), theme) }));
|
|
142
|
+
};
|
|
143
|
+
/* harmony default export */ __webpack_exports__["a"] = (Divider);
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
/***/ }),
|
|
147
|
+
|
|
148
|
+
/***/ 508:
|
|
149
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
150
|
+
|
|
151
|
+
"use strict";
|
|
152
|
+
__webpack_require__.r(__webpack_exports__);
|
|
153
|
+
/* harmony import */ var _Divider__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(478);
|
|
154
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Divider", function() { return _Divider__WEBPACK_IMPORTED_MODULE_0__["a"]; });
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
/***/ }),
|
|
160
|
+
|
|
161
|
+
/***/ 7:
|
|
162
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
163
|
+
|
|
164
|
+
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
165
|
+
Copyright (c) 2018 Jed Watson.
|
|
166
|
+
Licensed under the MIT License (MIT), see
|
|
167
|
+
http://jedwatson.github.io/classnames
|
|
168
|
+
*/
|
|
169
|
+
/* global define */
|
|
170
|
+
|
|
171
|
+
(function () {
|
|
172
|
+
'use strict';
|
|
173
|
+
|
|
174
|
+
var hasOwn = {}.hasOwnProperty;
|
|
175
|
+
|
|
176
|
+
function classNames() {
|
|
177
|
+
var classes = [];
|
|
178
|
+
|
|
179
|
+
for (var i = 0; i < arguments.length; i++) {
|
|
180
|
+
var arg = arguments[i];
|
|
181
|
+
if (!arg) continue;
|
|
182
|
+
|
|
183
|
+
var argType = typeof arg;
|
|
184
|
+
|
|
185
|
+
if (argType === 'string' || argType === 'number') {
|
|
186
|
+
classes.push(arg);
|
|
187
|
+
} else if (Array.isArray(arg)) {
|
|
188
|
+
if (arg.length) {
|
|
189
|
+
var inner = classNames.apply(null, arg);
|
|
190
|
+
if (inner) {
|
|
191
|
+
classes.push(inner);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
} else if (argType === 'object') {
|
|
195
|
+
if (arg.toString === Object.prototype.toString) {
|
|
196
|
+
for (var key in arg) {
|
|
197
|
+
if (hasOwn.call(arg, key) && arg[key]) {
|
|
198
|
+
classes.push(key);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
} else {
|
|
202
|
+
classes.push(arg.toString());
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
return classes.join(' ');
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
if ( true && module.exports) {
|
|
211
|
+
classNames.default = classNames;
|
|
212
|
+
module.exports = classNames;
|
|
213
|
+
} else if (true) {
|
|
214
|
+
// register as 'classnames', consistent with npm package name
|
|
215
|
+
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = (function () {
|
|
216
|
+
return classNames;
|
|
217
|
+
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
218
|
+
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
|
|
219
|
+
} else {}
|
|
220
|
+
}());
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
/***/ })
|
|
224
|
+
|
|
225
|
+
/******/ });
|
|
226
|
+
});
|