@symbo.ls/create 2.11.230 → 2.11.236
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/bundle/index.js +1571 -1396
- package/dist/cjs/initEmotion.js +2 -1
- package/dist/cjs/options.js +2 -1
- package/package.json +2 -2
- package/src/index.js +17 -0
- package/src/initEmotion.js +3 -2
- package/src/options.js +2 -1
package/dist/cjs/bundle/index.js
CHANGED
|
@@ -473,7 +473,7 @@ var require_object = __commonJS({
|
|
|
473
473
|
deepContains: () => deepContains,
|
|
474
474
|
deepDestringify: () => deepDestringify,
|
|
475
475
|
deepDiff: () => deepDiff2,
|
|
476
|
-
deepMerge: () =>
|
|
476
|
+
deepMerge: () => deepMerge5,
|
|
477
477
|
deepStringify: () => deepStringify,
|
|
478
478
|
detachFunctionsFromObject: () => detachFunctionsFromObject,
|
|
479
479
|
diff: () => diff,
|
|
@@ -530,7 +530,7 @@ var require_object = __commonJS({
|
|
|
530
530
|
}
|
|
531
531
|
return element;
|
|
532
532
|
};
|
|
533
|
-
var
|
|
533
|
+
var deepMerge5 = (element, extend, excludeFrom = []) => {
|
|
534
534
|
for (const e in extend) {
|
|
535
535
|
const hasOwnProperty2 = Object.prototype.hasOwnProperty.call(extend, e);
|
|
536
536
|
if (!hasOwnProperty2 || excludeFrom.includes(e) || e.startsWith("__"))
|
|
@@ -538,7 +538,7 @@ var require_object = __commonJS({
|
|
|
538
538
|
const elementProp = element[e];
|
|
539
539
|
const extendProp = extend[e];
|
|
540
540
|
if ((0, import_types.isObjectLike)(elementProp) && (0, import_types.isObjectLike)(extendProp)) {
|
|
541
|
-
|
|
541
|
+
deepMerge5(elementProp, extendProp, excludeFrom);
|
|
542
542
|
} else if (elementProp === void 0) {
|
|
543
543
|
element[e] = extendProp;
|
|
544
544
|
}
|
|
@@ -578,7 +578,7 @@ var require_object = __commonJS({
|
|
|
578
578
|
return o;
|
|
579
579
|
};
|
|
580
580
|
var mergeArrayExclude = (arr, excl = []) => {
|
|
581
|
-
return arr.reduce((acc, curr) =>
|
|
581
|
+
return arr.reduce((acc, curr) => deepMerge5(acc, deepCloneExclude(curr, excl)), {});
|
|
582
582
|
};
|
|
583
583
|
var deepClone4 = (obj, excludeFrom = [], cleanUndefined = false) => {
|
|
584
584
|
const o = (0, import_types.isArray)(obj) ? [] : {};
|
|
@@ -630,7 +630,7 @@ var require_object = __commonJS({
|
|
|
630
630
|
const spaces = " ".repeat(indent);
|
|
631
631
|
let str = "{\n";
|
|
632
632
|
for (const [key, value2] of Object.entries(obj)) {
|
|
633
|
-
const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["-", ":", "@", ".", "/", "!"]);
|
|
633
|
+
const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["&", "*", "-", ":", "@", ".", "/", "!"]);
|
|
634
634
|
const stringedKey = keyNotAllowdChars ? `'${key}'` : key;
|
|
635
635
|
str += `${spaces} ${stringedKey}: `;
|
|
636
636
|
if ((0, import_types.isArray)(value2)) {
|
|
@@ -856,7 +856,7 @@ var require_object = __commonJS({
|
|
|
856
856
|
};
|
|
857
857
|
var mergeIfExisted = (a, b) => {
|
|
858
858
|
if ((0, import_types.isObjectLike)(a) && (0, import_types.isObjectLike)(b))
|
|
859
|
-
return
|
|
859
|
+
return deepMerge5(a, b);
|
|
860
860
|
return a || b;
|
|
861
861
|
};
|
|
862
862
|
var flattenRecursive = (param, prop, stack = []) => {
|
|
@@ -2229,7 +2229,7 @@ var require_text = __commonJS({
|
|
|
2229
2229
|
default: () => text_default
|
|
2230
2230
|
});
|
|
2231
2231
|
module2.exports = __toCommonJS2(text_exports);
|
|
2232
|
-
var
|
|
2232
|
+
var import__ = require_cjs8();
|
|
2233
2233
|
var import_utils24 = require_cjs();
|
|
2234
2234
|
var text_default = (param, element, node2) => {
|
|
2235
2235
|
let prop = (0, import_utils24.exec)(param, element);
|
|
@@ -2246,7 +2246,7 @@ var require_text = __commonJS({
|
|
|
2246
2246
|
if (element.__text.node)
|
|
2247
2247
|
element.__text.node.nodeValue = prop;
|
|
2248
2248
|
} else
|
|
2249
|
-
(0,
|
|
2249
|
+
(0, import__.create)({ tag: "string", text: prop }, element, "__text");
|
|
2250
2250
|
}
|
|
2251
2251
|
};
|
|
2252
2252
|
}
|
|
@@ -2991,17 +2991,17 @@ var require_registry = __commonJS({
|
|
|
2991
2991
|
parseFilters: () => parseFilters
|
|
2992
2992
|
});
|
|
2993
2993
|
module2.exports = __toCommonJS2(registry_exports);
|
|
2994
|
-
var
|
|
2994
|
+
var import__ = require_mixins();
|
|
2995
2995
|
var registry_default = {
|
|
2996
|
-
attr:
|
|
2997
|
-
style:
|
|
2998
|
-
text:
|
|
2999
|
-
html:
|
|
3000
|
-
content:
|
|
3001
|
-
data:
|
|
3002
|
-
class:
|
|
3003
|
-
state:
|
|
3004
|
-
scope:
|
|
2996
|
+
attr: import__.attr,
|
|
2997
|
+
style: import__.style,
|
|
2998
|
+
text: import__.text,
|
|
2999
|
+
html: import__.html,
|
|
3000
|
+
content: import__.content,
|
|
3001
|
+
data: import__.data,
|
|
3002
|
+
class: import__.classList,
|
|
3003
|
+
state: import__.state,
|
|
3004
|
+
scope: import__.scope,
|
|
3005
3005
|
deps: (param, el) => param || el.parent.deps,
|
|
3006
3006
|
extend: {},
|
|
3007
3007
|
childExtend: {},
|
|
@@ -3597,7 +3597,7 @@ var require_object2 = __commonJS({
|
|
|
3597
3597
|
METHODS_EXL: () => METHODS_EXL,
|
|
3598
3598
|
clone: () => clone,
|
|
3599
3599
|
deepClone: () => deepClone4,
|
|
3600
|
-
deepMerge: () =>
|
|
3600
|
+
deepMerge: () => deepMerge5,
|
|
3601
3601
|
flattenRecursive: () => flattenRecursive,
|
|
3602
3602
|
mergeAndCloneIfArray: () => mergeAndCloneIfArray,
|
|
3603
3603
|
mergeArray: () => mergeArray,
|
|
@@ -3617,7 +3617,7 @@ var require_object2 = __commonJS({
|
|
|
3617
3617
|
import_state2.IGNORE_STATE_PARAMS,
|
|
3618
3618
|
import_props.IGNORE_PROPS_PARAMS
|
|
3619
3619
|
);
|
|
3620
|
-
var
|
|
3620
|
+
var deepMerge5 = (element, extend, exclude = METHODS_EXL) => {
|
|
3621
3621
|
for (const e in extend) {
|
|
3622
3622
|
if (exclude.includes(e))
|
|
3623
3623
|
continue;
|
|
@@ -3626,7 +3626,7 @@ var require_object2 = __commonJS({
|
|
|
3626
3626
|
if (elementProp === void 0) {
|
|
3627
3627
|
element[e] = extendProp;
|
|
3628
3628
|
} else if ((0, import_utils24.isObjectLike)(elementProp) && (0, import_utils24.isObject)(extendProp)) {
|
|
3629
|
-
|
|
3629
|
+
deepMerge5(elementProp, extendProp);
|
|
3630
3630
|
}
|
|
3631
3631
|
}
|
|
3632
3632
|
return element;
|
|
@@ -3698,11 +3698,11 @@ var require_object2 = __commonJS({
|
|
|
3698
3698
|
};
|
|
3699
3699
|
var mergeIfExisted = (a, b) => {
|
|
3700
3700
|
if ((0, import_utils24.isObjectLike)(a) && (0, import_utils24.isObjectLike)(b))
|
|
3701
|
-
return
|
|
3701
|
+
return deepMerge5(a, b);
|
|
3702
3702
|
return a || b;
|
|
3703
3703
|
};
|
|
3704
3704
|
var mergeArray = (arr, exclude = ["parent", "node", "__element", "state", "context", "__ref"]) => {
|
|
3705
|
-
return arr.reduce((a, c) =>
|
|
3705
|
+
return arr.reduce((a, c) => deepMerge5(a, deepClone4(c, exclude)), {});
|
|
3706
3706
|
};
|
|
3707
3707
|
var mergeAndCloneIfArray = (obj) => {
|
|
3708
3708
|
return (0, import_utils24.isArray)(obj) ? mergeArray(obj) : deepClone4(obj);
|
|
@@ -3849,8 +3849,10 @@ var require_extendUtils = __commonJS({
|
|
|
3849
3849
|
var fallbackStringExtend = (extend, context, options = {}) => {
|
|
3850
3850
|
const COMPONENTS = context && context.components || options.components;
|
|
3851
3851
|
if ((0, import_utils24.isString)(extend)) {
|
|
3852
|
-
|
|
3853
|
-
|
|
3852
|
+
const componentExists = COMPONENTS[extend] || COMPONENTS["smbls." + extend];
|
|
3853
|
+
console.log(extend, componentExists);
|
|
3854
|
+
if (COMPONENTS && componentExists) {
|
|
3855
|
+
return componentExists;
|
|
3854
3856
|
} else {
|
|
3855
3857
|
if (ENV2 !== "test" || ENV2 !== "development") {
|
|
3856
3858
|
console.warn("Extend is string but component was not found:", extend);
|
|
@@ -4810,7 +4812,7 @@ var require_object3 = __commonJS({
|
|
|
4810
4812
|
deepClone: () => deepClone4,
|
|
4811
4813
|
deepCloneExclude: () => deepCloneExclude,
|
|
4812
4814
|
deepDestringify: () => deepDestringify,
|
|
4813
|
-
deepMerge: () =>
|
|
4815
|
+
deepMerge: () => deepMerge5,
|
|
4814
4816
|
deepStringify: () => deepStringify,
|
|
4815
4817
|
detachFunctionsFromObject: () => detachFunctionsFromObject,
|
|
4816
4818
|
diff: () => diff,
|
|
@@ -4863,7 +4865,7 @@ var require_object3 = __commonJS({
|
|
|
4863
4865
|
}
|
|
4864
4866
|
return element;
|
|
4865
4867
|
};
|
|
4866
|
-
var
|
|
4868
|
+
var deepMerge5 = (element, extend, excludeFrom = []) => {
|
|
4867
4869
|
for (const e in extend) {
|
|
4868
4870
|
const hasOwnProperty = Object.prototype.hasOwnProperty.call(extend, e);
|
|
4869
4871
|
if (!hasOwnProperty || excludeFrom.includes(e) || e.startsWith("__"))
|
|
@@ -4871,7 +4873,7 @@ var require_object3 = __commonJS({
|
|
|
4871
4873
|
const elementProp = element[e];
|
|
4872
4874
|
const extendProp = extend[e];
|
|
4873
4875
|
if ((0, import_types.isObjectLike)(elementProp) && (0, import_types.isObjectLike)(extendProp)) {
|
|
4874
|
-
|
|
4876
|
+
deepMerge5(elementProp, extendProp);
|
|
4875
4877
|
} else if (elementProp === void 0) {
|
|
4876
4878
|
element[e] = extendProp;
|
|
4877
4879
|
}
|
|
@@ -4911,7 +4913,7 @@ var require_object3 = __commonJS({
|
|
|
4911
4913
|
return o;
|
|
4912
4914
|
};
|
|
4913
4915
|
var mergeArrayExclude = (arr, excl = []) => {
|
|
4914
|
-
return arr.reduce((acc, curr) =>
|
|
4916
|
+
return arr.reduce((acc, curr) => deepMerge5(acc, deepCloneExclude(curr, excl)), {});
|
|
4915
4917
|
};
|
|
4916
4918
|
var deepClone4 = (obj, excludeFrom = []) => {
|
|
4917
4919
|
const o = (0, import_types.isArray)(obj) ? [] : {};
|
|
@@ -5156,7 +5158,7 @@ var require_object3 = __commonJS({
|
|
|
5156
5158
|
};
|
|
5157
5159
|
var mergeIfExisted = (a, b) => {
|
|
5158
5160
|
if ((0, import_types.isObjectLike)(a) && (0, import_types.isObjectLike)(b))
|
|
5159
|
-
return
|
|
5161
|
+
return deepMerge5(a, b);
|
|
5160
5162
|
return a || b;
|
|
5161
5163
|
};
|
|
5162
5164
|
var flattenRecursive = (param, prop, stack = []) => {
|
|
@@ -6073,26 +6075,26 @@ var require_set2 = __commonJS({
|
|
|
6073
6075
|
var import_utils24 = require_cjs();
|
|
6074
6076
|
var import_set = __toESM2(require_set(), 1);
|
|
6075
6077
|
var import_update = __toESM2(require_update2(), 1);
|
|
6076
|
-
var
|
|
6078
|
+
var import__ = require_methods2();
|
|
6077
6079
|
var import_content = require_content();
|
|
6078
6080
|
var addMethods = (element, parent) => {
|
|
6079
6081
|
const proto = {
|
|
6080
6082
|
set: import_set.default.bind(element),
|
|
6081
6083
|
update: import_update.default.bind(element),
|
|
6082
|
-
remove:
|
|
6084
|
+
remove: import__.remove.bind(element),
|
|
6083
6085
|
updateContent: import_content.updateContent.bind(element),
|
|
6084
6086
|
removeContent: import_content.removeContent.bind(element),
|
|
6085
|
-
setProps:
|
|
6086
|
-
lookup:
|
|
6087
|
-
spotByPath:
|
|
6088
|
-
parse:
|
|
6089
|
-
parseDeep:
|
|
6090
|
-
keys:
|
|
6091
|
-
nextElement:
|
|
6092
|
-
previousElement:
|
|
6087
|
+
setProps: import__.setProps.bind(element),
|
|
6088
|
+
lookup: import__.lookup.bind(element),
|
|
6089
|
+
spotByPath: import__.spotByPath.bind(element),
|
|
6090
|
+
parse: import__.parse.bind(element),
|
|
6091
|
+
parseDeep: import__.parseDeep.bind(element),
|
|
6092
|
+
keys: import__.keys.bind(element),
|
|
6093
|
+
nextElement: import__.nextElement.bind(element),
|
|
6094
|
+
previousElement: import__.previousElement.bind(element)
|
|
6093
6095
|
};
|
|
6094
6096
|
if ((0, import_utils24.isDevelopment)())
|
|
6095
|
-
proto.log =
|
|
6097
|
+
proto.log = import__.log.bind(element);
|
|
6096
6098
|
Object.setPrototypeOf(element, proto);
|
|
6097
6099
|
};
|
|
6098
6100
|
}
|
|
@@ -6535,11 +6537,11 @@ var require_cjs9 = __commonJS({
|
|
|
6535
6537
|
return to;
|
|
6536
6538
|
};
|
|
6537
6539
|
var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
|
|
6538
|
-
var
|
|
6539
|
-
__export2(
|
|
6540
|
+
var domql_exports = {};
|
|
6541
|
+
__export2(domql_exports, {
|
|
6540
6542
|
default: () => domql_default
|
|
6541
6543
|
});
|
|
6542
|
-
module2.exports = __toCommonJS2(
|
|
6544
|
+
module2.exports = __toCommonJS2(domql_exports);
|
|
6543
6545
|
var import_element = require_cjs8();
|
|
6544
6546
|
var create2 = (element, parent, key, options) => {
|
|
6545
6547
|
return (0, import_element.create)(element, parent, key, options);
|
|
@@ -7203,7 +7205,7 @@ var require_cjs10 = __commonJS({
|
|
|
7203
7205
|
const spaces = " ".repeat(indent);
|
|
7204
7206
|
let str = "{\n";
|
|
7205
7207
|
for (const [key, value2] of Object.entries(obj)) {
|
|
7206
|
-
const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["-", ":", "@", ".", "/", "!"]);
|
|
7208
|
+
const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["&", "*", "-", ":", "@", ".", "/", "!"]);
|
|
7207
7209
|
const stringedKey = keyNotAllowdChars ? `'${key}'` : key;
|
|
7208
7210
|
str += `${spaces} ${stringedKey}: `;
|
|
7209
7211
|
if ((0, import_types.isArray)(value2)) {
|
|
@@ -8676,9 +8678,9 @@ var require_cjs10 = __commonJS({
|
|
|
8676
8678
|
const ratioVar = `${prefix2}-ratio`;
|
|
8677
8679
|
vars[ratioVar] = ratio;
|
|
8678
8680
|
const [first, middle, second] = getSubratio(base, ratio);
|
|
8679
|
-
vars[`${prefix2}-sub-ratio-1`] = first
|
|
8680
|
-
vars[`${prefix2}-sub-ratio-2`] = middle
|
|
8681
|
-
vars[`${prefix2}-sub-ratio-3`] = second
|
|
8681
|
+
vars[`${prefix2}-sub-ratio-1`] = `calc(var(${prefix2}-ratio) * ${first / ratio})`;
|
|
8682
|
+
vars[`${prefix2}-sub-ratio-2`] = `calc(var(${prefix2}-ratio) * ${middle / ratio})`;
|
|
8683
|
+
vars[`${prefix2}-sub-ratio-3`] = `calc(var(${prefix2}-ratio) * ${second / ratio})`;
|
|
8682
8684
|
};
|
|
8683
8685
|
var applySequenceVars = (FACTORY2, options = {}) => {
|
|
8684
8686
|
const CONFIG22 = getActiveConfig3();
|
|
@@ -10175,237 +10177,237 @@ var require_cjs14 = __commonJS({
|
|
|
10175
10177
|
}
|
|
10176
10178
|
});
|
|
10177
10179
|
|
|
10178
|
-
//
|
|
10180
|
+
// ../icons/default/src/logo.svg
|
|
10179
10181
|
var require_logo = __commonJS({
|
|
10180
|
-
"
|
|
10182
|
+
"../icons/default/src/logo.svg"() {
|
|
10181
10183
|
}
|
|
10182
10184
|
});
|
|
10183
10185
|
|
|
10184
|
-
//
|
|
10186
|
+
// ../icons/default/src/arrow-down-circle.svg
|
|
10185
10187
|
var require_arrow_down_circle = __commonJS({
|
|
10186
|
-
"
|
|
10188
|
+
"../icons/default/src/arrow-down-circle.svg"() {
|
|
10187
10189
|
}
|
|
10188
10190
|
});
|
|
10189
10191
|
|
|
10190
|
-
//
|
|
10192
|
+
// ../icons/default/src/arrow-down-left.svg
|
|
10191
10193
|
var require_arrow_down_left = __commonJS({
|
|
10192
|
-
"
|
|
10194
|
+
"../icons/default/src/arrow-down-left.svg"() {
|
|
10193
10195
|
}
|
|
10194
10196
|
});
|
|
10195
10197
|
|
|
10196
|
-
//
|
|
10198
|
+
// ../icons/default/src/arrow-down-right.svg
|
|
10197
10199
|
var require_arrow_down_right = __commonJS({
|
|
10198
|
-
"
|
|
10200
|
+
"../icons/default/src/arrow-down-right.svg"() {
|
|
10199
10201
|
}
|
|
10200
10202
|
});
|
|
10201
10203
|
|
|
10202
|
-
//
|
|
10204
|
+
// ../icons/default/src/arrow-down.svg
|
|
10203
10205
|
var require_arrow_down = __commonJS({
|
|
10204
|
-
"
|
|
10206
|
+
"../icons/default/src/arrow-down.svg"() {
|
|
10205
10207
|
}
|
|
10206
10208
|
});
|
|
10207
10209
|
|
|
10208
|
-
//
|
|
10210
|
+
// ../icons/default/src/arrow-left-circle.svg
|
|
10209
10211
|
var require_arrow_left_circle = __commonJS({
|
|
10210
|
-
"
|
|
10212
|
+
"../icons/default/src/arrow-left-circle.svg"() {
|
|
10211
10213
|
}
|
|
10212
10214
|
});
|
|
10213
10215
|
|
|
10214
|
-
//
|
|
10216
|
+
// ../icons/default/src/arrow-left.svg
|
|
10215
10217
|
var require_arrow_left = __commonJS({
|
|
10216
|
-
"
|
|
10218
|
+
"../icons/default/src/arrow-left.svg"() {
|
|
10217
10219
|
}
|
|
10218
10220
|
});
|
|
10219
10221
|
|
|
10220
|
-
//
|
|
10222
|
+
// ../icons/default/src/arrow-right.svg
|
|
10221
10223
|
var require_arrow_right = __commonJS({
|
|
10222
|
-
"
|
|
10224
|
+
"../icons/default/src/arrow-right.svg"() {
|
|
10223
10225
|
}
|
|
10224
10226
|
});
|
|
10225
10227
|
|
|
10226
|
-
//
|
|
10228
|
+
// ../icons/default/src/arrow-right-circle.svg
|
|
10227
10229
|
var require_arrow_right_circle = __commonJS({
|
|
10228
|
-
"
|
|
10230
|
+
"../icons/default/src/arrow-right-circle.svg"() {
|
|
10229
10231
|
}
|
|
10230
10232
|
});
|
|
10231
10233
|
|
|
10232
|
-
//
|
|
10234
|
+
// ../icons/default/src/arrow-up-circle.svg
|
|
10233
10235
|
var require_arrow_up_circle = __commonJS({
|
|
10234
|
-
"
|
|
10236
|
+
"../icons/default/src/arrow-up-circle.svg"() {
|
|
10235
10237
|
}
|
|
10236
10238
|
});
|
|
10237
10239
|
|
|
10238
|
-
//
|
|
10240
|
+
// ../icons/default/src/arrow-up-left.svg
|
|
10239
10241
|
var require_arrow_up_left = __commonJS({
|
|
10240
|
-
"
|
|
10242
|
+
"../icons/default/src/arrow-up-left.svg"() {
|
|
10241
10243
|
}
|
|
10242
10244
|
});
|
|
10243
10245
|
|
|
10244
|
-
//
|
|
10246
|
+
// ../icons/default/src/arrow-up-right.svg
|
|
10245
10247
|
var require_arrow_up_right = __commonJS({
|
|
10246
|
-
"
|
|
10248
|
+
"../icons/default/src/arrow-up-right.svg"() {
|
|
10247
10249
|
}
|
|
10248
10250
|
});
|
|
10249
10251
|
|
|
10250
|
-
//
|
|
10252
|
+
// ../icons/default/src/arrow-up.svg
|
|
10251
10253
|
var require_arrow_up = __commonJS({
|
|
10252
|
-
"
|
|
10254
|
+
"../icons/default/src/arrow-up.svg"() {
|
|
10253
10255
|
}
|
|
10254
10256
|
});
|
|
10255
10257
|
|
|
10256
|
-
//
|
|
10258
|
+
// ../icons/default/src/check-circle.svg
|
|
10257
10259
|
var require_check_circle = __commonJS({
|
|
10258
|
-
"
|
|
10260
|
+
"../icons/default/src/check-circle.svg"() {
|
|
10259
10261
|
}
|
|
10260
10262
|
});
|
|
10261
10263
|
|
|
10262
|
-
//
|
|
10264
|
+
// ../icons/default/src/check.svg
|
|
10263
10265
|
var require_check = __commonJS({
|
|
10264
|
-
"
|
|
10266
|
+
"../icons/default/src/check.svg"() {
|
|
10265
10267
|
}
|
|
10266
10268
|
});
|
|
10267
10269
|
|
|
10268
|
-
//
|
|
10270
|
+
// ../icons/default/src/chevron-down.svg
|
|
10269
10271
|
var require_chevron_down = __commonJS({
|
|
10270
|
-
"
|
|
10272
|
+
"../icons/default/src/chevron-down.svg"() {
|
|
10271
10273
|
}
|
|
10272
10274
|
});
|
|
10273
10275
|
|
|
10274
|
-
//
|
|
10276
|
+
// ../icons/default/src/chevron-left.svg
|
|
10275
10277
|
var require_chevron_left = __commonJS({
|
|
10276
|
-
"
|
|
10278
|
+
"../icons/default/src/chevron-left.svg"() {
|
|
10277
10279
|
}
|
|
10278
10280
|
});
|
|
10279
10281
|
|
|
10280
|
-
//
|
|
10282
|
+
// ../icons/default/src/chevron-right.svg
|
|
10281
10283
|
var require_chevron_right = __commonJS({
|
|
10282
|
-
"
|
|
10284
|
+
"../icons/default/src/chevron-right.svg"() {
|
|
10283
10285
|
}
|
|
10284
10286
|
});
|
|
10285
10287
|
|
|
10286
|
-
//
|
|
10288
|
+
// ../icons/default/src/chevron-up.svg
|
|
10287
10289
|
var require_chevron_up = __commonJS({
|
|
10288
|
-
"
|
|
10290
|
+
"../icons/default/src/chevron-up.svg"() {
|
|
10289
10291
|
}
|
|
10290
10292
|
});
|
|
10291
10293
|
|
|
10292
|
-
//
|
|
10294
|
+
// ../icons/default/src/copy.svg
|
|
10293
10295
|
var require_copy = __commonJS({
|
|
10294
|
-
"
|
|
10296
|
+
"../icons/default/src/copy.svg"() {
|
|
10295
10297
|
}
|
|
10296
10298
|
});
|
|
10297
10299
|
|
|
10298
|
-
//
|
|
10300
|
+
// ../icons/default/src/dribbble.svg
|
|
10299
10301
|
var require_dribbble = __commonJS({
|
|
10300
|
-
"
|
|
10302
|
+
"../icons/default/src/dribbble.svg"() {
|
|
10301
10303
|
}
|
|
10302
10304
|
});
|
|
10303
10305
|
|
|
10304
|
-
//
|
|
10306
|
+
// ../icons/default/src/eye-off.svg
|
|
10305
10307
|
var require_eye_off = __commonJS({
|
|
10306
|
-
"
|
|
10308
|
+
"../icons/default/src/eye-off.svg"() {
|
|
10307
10309
|
}
|
|
10308
10310
|
});
|
|
10309
10311
|
|
|
10310
|
-
//
|
|
10312
|
+
// ../icons/default/src/eye.svg
|
|
10311
10313
|
var require_eye = __commonJS({
|
|
10312
|
-
"
|
|
10314
|
+
"../icons/default/src/eye.svg"() {
|
|
10313
10315
|
}
|
|
10314
10316
|
});
|
|
10315
10317
|
|
|
10316
|
-
//
|
|
10318
|
+
// ../icons/default/src/file.svg
|
|
10317
10319
|
var require_file = __commonJS({
|
|
10318
|
-
"
|
|
10320
|
+
"../icons/default/src/file.svg"() {
|
|
10319
10321
|
}
|
|
10320
10322
|
});
|
|
10321
10323
|
|
|
10322
|
-
//
|
|
10324
|
+
// ../icons/default/src/info.svg
|
|
10323
10325
|
var require_info = __commonJS({
|
|
10324
|
-
"
|
|
10326
|
+
"../icons/default/src/info.svg"() {
|
|
10325
10327
|
}
|
|
10326
10328
|
});
|
|
10327
10329
|
|
|
10328
|
-
//
|
|
10330
|
+
// ../icons/default/src/minus.svg
|
|
10329
10331
|
var require_minus = __commonJS({
|
|
10330
|
-
"
|
|
10332
|
+
"../icons/default/src/minus.svg"() {
|
|
10331
10333
|
}
|
|
10332
10334
|
});
|
|
10333
10335
|
|
|
10334
|
-
//
|
|
10336
|
+
// ../icons/default/src/moon.svg
|
|
10335
10337
|
var require_moon = __commonJS({
|
|
10336
|
-
"
|
|
10338
|
+
"../icons/default/src/moon.svg"() {
|
|
10337
10339
|
}
|
|
10338
10340
|
});
|
|
10339
10341
|
|
|
10340
|
-
//
|
|
10342
|
+
// ../icons/default/src/more-horizontal.svg
|
|
10341
10343
|
var require_more_horizontal = __commonJS({
|
|
10342
|
-
"
|
|
10344
|
+
"../icons/default/src/more-horizontal.svg"() {
|
|
10343
10345
|
}
|
|
10344
10346
|
});
|
|
10345
10347
|
|
|
10346
|
-
//
|
|
10348
|
+
// ../icons/default/src/more-vertical.svg
|
|
10347
10349
|
var require_more_vertical = __commonJS({
|
|
10348
|
-
"
|
|
10350
|
+
"../icons/default/src/more-vertical.svg"() {
|
|
10349
10351
|
}
|
|
10350
10352
|
});
|
|
10351
10353
|
|
|
10352
|
-
//
|
|
10354
|
+
// ../icons/default/src/sun.svg
|
|
10353
10355
|
var require_sun = __commonJS({
|
|
10354
|
-
"
|
|
10356
|
+
"../icons/default/src/sun.svg"() {
|
|
10355
10357
|
}
|
|
10356
10358
|
});
|
|
10357
10359
|
|
|
10358
|
-
//
|
|
10360
|
+
// ../icons/default/src/send.svg
|
|
10359
10361
|
var require_send = __commonJS({
|
|
10360
|
-
"
|
|
10362
|
+
"../icons/default/src/send.svg"() {
|
|
10361
10363
|
}
|
|
10362
10364
|
});
|
|
10363
10365
|
|
|
10364
|
-
//
|
|
10366
|
+
// ../icons/default/src/smile.svg
|
|
10365
10367
|
var require_smile = __commonJS({
|
|
10366
|
-
"
|
|
10368
|
+
"../icons/default/src/smile.svg"() {
|
|
10367
10369
|
}
|
|
10368
10370
|
});
|
|
10369
10371
|
|
|
10370
|
-
//
|
|
10372
|
+
// ../icons/default/src/search.svg
|
|
10371
10373
|
var require_search = __commonJS({
|
|
10372
|
-
"
|
|
10374
|
+
"../icons/default/src/search.svg"() {
|
|
10373
10375
|
}
|
|
10374
10376
|
});
|
|
10375
10377
|
|
|
10376
|
-
//
|
|
10378
|
+
// ../icons/default/src/phone.svg
|
|
10377
10379
|
var require_phone = __commonJS({
|
|
10378
|
-
"
|
|
10380
|
+
"../icons/default/src/phone.svg"() {
|
|
10379
10381
|
}
|
|
10380
10382
|
});
|
|
10381
10383
|
|
|
10382
|
-
//
|
|
10384
|
+
// ../icons/default/src/twitch.svg
|
|
10383
10385
|
var require_twitch = __commonJS({
|
|
10384
|
-
"
|
|
10386
|
+
"../icons/default/src/twitch.svg"() {
|
|
10385
10387
|
}
|
|
10386
10388
|
});
|
|
10387
10389
|
|
|
10388
|
-
//
|
|
10390
|
+
// ../icons/default/src/upload.svg
|
|
10389
10391
|
var require_upload = __commonJS({
|
|
10390
|
-
"
|
|
10392
|
+
"../icons/default/src/upload.svg"() {
|
|
10391
10393
|
}
|
|
10392
10394
|
});
|
|
10393
10395
|
|
|
10394
|
-
//
|
|
10396
|
+
// ../icons/default/src/video.svg
|
|
10395
10397
|
var require_video = __commonJS({
|
|
10396
|
-
"
|
|
10398
|
+
"../icons/default/src/video.svg"() {
|
|
10397
10399
|
}
|
|
10398
10400
|
});
|
|
10399
10401
|
|
|
10400
|
-
//
|
|
10402
|
+
// ../icons/default/src/x.svg
|
|
10401
10403
|
var require_x = __commonJS({
|
|
10402
|
-
"
|
|
10404
|
+
"../icons/default/src/x.svg"() {
|
|
10403
10405
|
}
|
|
10404
10406
|
});
|
|
10405
10407
|
|
|
10406
|
-
//
|
|
10408
|
+
// ../icons/default/src/plus.svg
|
|
10407
10409
|
var require_plus = __commonJS({
|
|
10408
|
-
"
|
|
10410
|
+
"../icons/default/src/plus.svg"() {
|
|
10409
10411
|
}
|
|
10410
10412
|
});
|
|
10411
10413
|
|
|
@@ -11929,9 +11931,9 @@ var updateReset = (config, RC_FILE, options = UPDATE_OPTIONS) => {
|
|
|
11929
11931
|
__reExport(utilImports_exports, __toESM(require_cjs11(), 1));
|
|
11930
11932
|
__reExport(utilImports_exports, __toESM(require_cjs12(), 1));
|
|
11931
11933
|
|
|
11932
|
-
//
|
|
11933
|
-
var
|
|
11934
|
-
__export(
|
|
11934
|
+
// ../uikit/index.js
|
|
11935
|
+
var uikit_exports = {};
|
|
11936
|
+
__export(uikit_exports, {
|
|
11935
11937
|
Animation: () => Animation,
|
|
11936
11938
|
Avatar: () => Avatar,
|
|
11937
11939
|
AvatarBundle: () => AvatarBundle,
|
|
@@ -11945,6 +11947,7 @@ __export(domql_exports, {
|
|
|
11945
11947
|
ButtonSet: () => ButtonSet,
|
|
11946
11948
|
CancelConfirmButtons: () => CancelConfirmButtons,
|
|
11947
11949
|
Caption: () => Caption,
|
|
11950
|
+
Card: () => Card,
|
|
11948
11951
|
CardLabel: () => CardLabel,
|
|
11949
11952
|
ChatUser: () => ChatUser,
|
|
11950
11953
|
CheckIndicator: () => CheckIndicator,
|
|
@@ -11958,8 +11961,6 @@ __export(domql_exports, {
|
|
|
11958
11961
|
Clickable: () => Clickable,
|
|
11959
11962
|
Collection: () => Collection,
|
|
11960
11963
|
CommonButton: () => CommonButton,
|
|
11961
|
-
CommonField: () => CommonField,
|
|
11962
|
-
CommonFieldTemplate: () => CommonFieldTemplate,
|
|
11963
11964
|
CommonForm: () => CommonForm,
|
|
11964
11965
|
CompleteProcess: () => CompleteProcess,
|
|
11965
11966
|
ContactForm: () => ContactForm,
|
|
@@ -11977,6 +11978,8 @@ __export(domql_exports, {
|
|
|
11977
11978
|
DropdownParent: () => DropdownParent,
|
|
11978
11979
|
Field: () => Field,
|
|
11979
11980
|
FieldTemplate: () => FieldTemplate,
|
|
11981
|
+
FieldWithTitle: () => FieldWithTitle,
|
|
11982
|
+
FieldWithTitleTemplate: () => FieldWithTitleTemplate,
|
|
11980
11983
|
FileIcon: () => FileIcon,
|
|
11981
11984
|
Flex: () => Flex,
|
|
11982
11985
|
Focusable: () => Focusable,
|
|
@@ -12024,7 +12027,6 @@ __export(domql_exports, {
|
|
|
12024
12027
|
Modal: () => Modal,
|
|
12025
12028
|
Notification: () => Notification,
|
|
12026
12029
|
NotificationIndicator: () => NotificationIndicator,
|
|
12027
|
-
NumberField: () => NumberField,
|
|
12028
12030
|
NumberInput: () => NumberInput,
|
|
12029
12031
|
Overflow: () => Overflow,
|
|
12030
12032
|
P: () => P,
|
|
@@ -12073,16 +12075,18 @@ __export(domql_exports, {
|
|
|
12073
12075
|
Tab: () => Tab,
|
|
12074
12076
|
Table: () => Table,
|
|
12075
12077
|
Text: () => Text,
|
|
12078
|
+
TextAreaField: () => TextAreaField,
|
|
12076
12079
|
Textarea: () => Textarea,
|
|
12077
12080
|
TextareaWithButton: () => TextareaWithButton,
|
|
12078
|
-
TextareaWithTitle: () => TextareaWithTitle,
|
|
12079
12081
|
Theme: () => Theme,
|
|
12080
12082
|
TimePicker: () => TimePicker,
|
|
12081
12083
|
TimePickerItem: () => TimePickerItem,
|
|
12082
12084
|
TimeSwitcher: () => TimeSwitcher,
|
|
12083
12085
|
Timing: () => Timing,
|
|
12086
|
+
Title: () => Title,
|
|
12084
12087
|
TitleParagraph: () => TitleParagraph,
|
|
12085
|
-
|
|
12088
|
+
TitleParagraphButton: () => TitleParagraphButton,
|
|
12089
|
+
TitleParagraphRows: () => TitleParagraphRows,
|
|
12086
12090
|
Toggle: () => Toggle,
|
|
12087
12091
|
ToggleTitleParagraph: () => ToggleTitleParagraph,
|
|
12088
12092
|
Tooltip: () => Tooltip,
|
|
@@ -12095,7 +12099,8 @@ __export(domql_exports, {
|
|
|
12095
12099
|
UnitValueWithLabel: () => UnitValueWithLabel,
|
|
12096
12100
|
UnitValueWithTitle: () => UnitValueWithTitle,
|
|
12097
12101
|
UploadButton: () => UploadButton,
|
|
12098
|
-
|
|
12102
|
+
UploadButtonWithBackground: () => UploadButtonWithBackground,
|
|
12103
|
+
UploadFooter: () => UploadFooter,
|
|
12099
12104
|
UploadIcon: () => UploadIcon,
|
|
12100
12105
|
UploadImage: () => UploadImage,
|
|
12101
12106
|
UploadLabel: () => UploadLabel,
|
|
@@ -12114,6 +12119,7 @@ __export(domql_exports, {
|
|
|
12114
12119
|
UploadingProcess4: () => UploadingProcess4,
|
|
12115
12120
|
User: () => User,
|
|
12116
12121
|
UserButtonSet: () => UserButtonSet,
|
|
12122
|
+
UserButtonSetCircle: () => UserButtonSetCircle,
|
|
12117
12123
|
UserMessage: () => UserMessage,
|
|
12118
12124
|
UserWithButton: () => UserWithButton,
|
|
12119
12125
|
UserWithLabel: () => UserWithLabel,
|
|
@@ -12124,7 +12130,7 @@ __export(domql_exports, {
|
|
|
12124
12130
|
keySetters: () => keySetters
|
|
12125
12131
|
});
|
|
12126
12132
|
|
|
12127
|
-
//
|
|
12133
|
+
// ../uikit/Atoms/Block.js
|
|
12128
12134
|
var import_scratch3 = __toESM(require_cjs10());
|
|
12129
12135
|
var Block = {
|
|
12130
12136
|
deps: { getSpacingBasedOnRatio: import_scratch3.getSpacingBasedOnRatio, getSpacingByKey: import_scratch3.getSpacingByKey, transfromGap: import_scratch3.transfromGap },
|
|
@@ -12234,7 +12240,7 @@ var Block = {
|
|
|
12234
12240
|
},
|
|
12235
12241
|
flexFlow: ({ props: props4 }) => props4.flexFlow && {
|
|
12236
12242
|
display: "flex",
|
|
12237
|
-
flexFlow: props4.flexFlow
|
|
12243
|
+
flexFlow: props4.flexFlow + (props4.reverse ? "-reverse" : "")
|
|
12238
12244
|
},
|
|
12239
12245
|
flexAlign: ({ props: props4 }) => {
|
|
12240
12246
|
if (typeof props4.flexAlign !== "string")
|
|
@@ -12298,7 +12304,7 @@ var Gutter = {
|
|
|
12298
12304
|
}
|
|
12299
12305
|
};
|
|
12300
12306
|
|
|
12301
|
-
//
|
|
12307
|
+
// ../uikit/Atoms/Direction.js
|
|
12302
12308
|
var Direction = {
|
|
12303
12309
|
props: {
|
|
12304
12310
|
direction: "ltr"
|
|
@@ -12308,13 +12314,13 @@ var Direction = {
|
|
|
12308
12314
|
}
|
|
12309
12315
|
};
|
|
12310
12316
|
|
|
12311
|
-
//
|
|
12317
|
+
// ../uikit/Atoms/Flex.js
|
|
12312
12318
|
var Flex = {
|
|
12313
12319
|
props: {
|
|
12314
12320
|
display: "flex"
|
|
12315
12321
|
},
|
|
12316
12322
|
class: {
|
|
12317
|
-
flow: ({ props: props4 }) => props4.flow && { flexFlow: props4.flow },
|
|
12323
|
+
flow: ({ props: props4 }) => props4.flow && { flexFlow: props4.flow + (props4.reverse ? "-reverse" : "") },
|
|
12318
12324
|
wrap: ({ props: props4 }) => props4.wrap && { flexWrap: props4.wrap },
|
|
12319
12325
|
align: ({ props: props4 }) => {
|
|
12320
12326
|
if (typeof props4.align !== "string")
|
|
@@ -12325,7 +12331,7 @@ var Flex = {
|
|
|
12325
12331
|
}
|
|
12326
12332
|
};
|
|
12327
12333
|
|
|
12328
|
-
//
|
|
12334
|
+
// ../uikit/Atoms/Grid.js
|
|
12329
12335
|
var import_scratch4 = __toESM(require_cjs10());
|
|
12330
12336
|
var Grid = {
|
|
12331
12337
|
deps: { getSpacingBasedOnRatio: import_scratch4.getSpacingBasedOnRatio },
|
|
@@ -12350,7 +12356,7 @@ var Grid = {
|
|
|
12350
12356
|
}
|
|
12351
12357
|
};
|
|
12352
12358
|
|
|
12353
|
-
//
|
|
12359
|
+
// ../uikit/Atoms/Img.js
|
|
12354
12360
|
var Img = {
|
|
12355
12361
|
tag: "img",
|
|
12356
12362
|
attr: {
|
|
@@ -12360,7 +12366,7 @@ var Img = {
|
|
|
12360
12366
|
}
|
|
12361
12367
|
};
|
|
12362
12368
|
|
|
12363
|
-
//
|
|
12369
|
+
// ../uikit/Atoms/Form.js
|
|
12364
12370
|
var Form = {
|
|
12365
12371
|
tag: "form",
|
|
12366
12372
|
attr: {
|
|
@@ -12370,16 +12376,16 @@ var Form = {
|
|
|
12370
12376
|
}
|
|
12371
12377
|
};
|
|
12372
12378
|
|
|
12373
|
-
//
|
|
12379
|
+
// ../uikit/Atoms/Media.js
|
|
12374
12380
|
var import_utils6 = __toESM(require_cjs());
|
|
12375
12381
|
|
|
12376
|
-
//
|
|
12382
|
+
// ../uikit/Atoms/Theme.js
|
|
12377
12383
|
var import_scratch7 = __toESM(require_cjs10());
|
|
12378
12384
|
|
|
12379
|
-
//
|
|
12385
|
+
// ../uikit/Atoms/Shape/style.js
|
|
12380
12386
|
var import_scratch6 = __toESM(require_cjs10());
|
|
12381
12387
|
|
|
12382
|
-
//
|
|
12388
|
+
// ../uikit/Atoms/Timing.js
|
|
12383
12389
|
var import_scratch5 = __toESM(require_cjs10());
|
|
12384
12390
|
var Timing = {
|
|
12385
12391
|
deps: {
|
|
@@ -12410,7 +12416,7 @@ var Timing = {
|
|
|
12410
12416
|
}
|
|
12411
12417
|
};
|
|
12412
12418
|
|
|
12413
|
-
//
|
|
12419
|
+
// ../uikit/Atoms/Shape/style.js
|
|
12414
12420
|
var CONFIG2 = (0, import_scratch6.getActiveConfig)();
|
|
12415
12421
|
var depth = {
|
|
12416
12422
|
4: { boxShadow: `rgba(0,0,0,.10) 0 2${CONFIG2.UNIT.default} 4${CONFIG2.UNIT.default}` },
|
|
@@ -12600,7 +12606,7 @@ var SHAPES = {
|
|
|
12600
12606
|
}
|
|
12601
12607
|
};
|
|
12602
12608
|
|
|
12603
|
-
//
|
|
12609
|
+
// ../uikit/Atoms/Theme.js
|
|
12604
12610
|
var import_utils5 = __toESM(require_cjs());
|
|
12605
12611
|
var getSystemTheme = ({ context, state }) => {
|
|
12606
12612
|
const rootState = state && state.__root;
|
|
@@ -12736,7 +12742,7 @@ var Theme = {
|
|
|
12736
12742
|
}
|
|
12737
12743
|
};
|
|
12738
12744
|
|
|
12739
|
-
//
|
|
12745
|
+
// ../uikit/Atoms/Media.js
|
|
12740
12746
|
var keySetters = {
|
|
12741
12747
|
"@": (key, props4, result, element, isSubtree) => applyMediaProps(
|
|
12742
12748
|
key,
|
|
@@ -12932,7 +12938,7 @@ var Media = {
|
|
|
12932
12938
|
on: { beforeClassAssign }
|
|
12933
12939
|
};
|
|
12934
12940
|
|
|
12935
|
-
//
|
|
12941
|
+
// ../uikit/Atoms/Iframe.js
|
|
12936
12942
|
var Iframe = {
|
|
12937
12943
|
tag: "iframe",
|
|
12938
12944
|
props: {
|
|
@@ -12950,7 +12956,7 @@ var Iframe = {
|
|
|
12950
12956
|
}
|
|
12951
12957
|
};
|
|
12952
12958
|
|
|
12953
|
-
//
|
|
12959
|
+
// ../uikit/Atoms/Interaction.js
|
|
12954
12960
|
var Interaction = {
|
|
12955
12961
|
class: {
|
|
12956
12962
|
userSelect: ({ props: props4 }) => props4.userSelect && { userSelect: props4.userSelect },
|
|
@@ -12959,7 +12965,7 @@ var Interaction = {
|
|
|
12959
12965
|
}
|
|
12960
12966
|
};
|
|
12961
12967
|
|
|
12962
|
-
//
|
|
12968
|
+
// ../uikit/Atoms/InteractiveComponent.js
|
|
12963
12969
|
var style = {
|
|
12964
12970
|
appearance: "none",
|
|
12965
12971
|
border: "none",
|
|
@@ -13030,14 +13036,14 @@ var FocusableComponent = {
|
|
|
13030
13036
|
}
|
|
13031
13037
|
};
|
|
13032
13038
|
|
|
13033
|
-
//
|
|
13039
|
+
// ../uikit/Atoms/Overflow.js
|
|
13034
13040
|
var Overflow = {
|
|
13035
13041
|
class: {
|
|
13036
13042
|
overflow: ({ props: props4 }) => props4.overflow && { overflow: props4.overflow }
|
|
13037
13043
|
}
|
|
13038
13044
|
};
|
|
13039
13045
|
|
|
13040
|
-
//
|
|
13046
|
+
// ../uikit/Atoms/Collection.js
|
|
13041
13047
|
var import_state = __toESM(require_cjs5());
|
|
13042
13048
|
var import_utils7 = __toESM(require_cjs());
|
|
13043
13049
|
var Collection = {
|
|
@@ -13143,7 +13149,7 @@ var Collection = {
|
|
|
13143
13149
|
}
|
|
13144
13150
|
};
|
|
13145
13151
|
|
|
13146
|
-
//
|
|
13152
|
+
// ../uikit/Atoms/Position.js
|
|
13147
13153
|
var import_scratch8 = __toESM(require_cjs10());
|
|
13148
13154
|
var Position = {
|
|
13149
13155
|
deps: { getSpacingByKey: import_scratch8.getSpacingByKey },
|
|
@@ -13162,7 +13168,7 @@ var Position = {
|
|
|
13162
13168
|
}
|
|
13163
13169
|
};
|
|
13164
13170
|
|
|
13165
|
-
//
|
|
13171
|
+
// ../uikit/Atoms/Picture.js
|
|
13166
13172
|
var Picture = {
|
|
13167
13173
|
deps: { getSystemTheme },
|
|
13168
13174
|
tag: "picture",
|
|
@@ -13190,14 +13196,14 @@ var Picture = {
|
|
|
13190
13196
|
})
|
|
13191
13197
|
};
|
|
13192
13198
|
|
|
13193
|
-
//
|
|
13199
|
+
// ../uikit/Atoms/Pseudo.js
|
|
13194
13200
|
var Pseudo = {
|
|
13195
13201
|
class: {
|
|
13196
13202
|
content: ({ props: props4 }) => props4.content && { content: props4.content }
|
|
13197
13203
|
}
|
|
13198
13204
|
};
|
|
13199
13205
|
|
|
13200
|
-
//
|
|
13206
|
+
// ../uikit/Atoms/Svg.js
|
|
13201
13207
|
var Svg = {
|
|
13202
13208
|
tag: "svg",
|
|
13203
13209
|
deps: { init },
|
|
@@ -13235,7 +13241,7 @@ var Svg = {
|
|
|
13235
13241
|
}
|
|
13236
13242
|
};
|
|
13237
13243
|
|
|
13238
|
-
//
|
|
13244
|
+
// ../uikit/Atoms/Shape/index.js
|
|
13239
13245
|
var import_utils8 = __toESM(require_cjs());
|
|
13240
13246
|
var import_scratch9 = __toESM(require_cjs10());
|
|
13241
13247
|
var transformBorderRadius = (radius, props4, propertyName) => {
|
|
@@ -13272,7 +13278,7 @@ var Shape = {
|
|
|
13272
13278
|
}
|
|
13273
13279
|
};
|
|
13274
13280
|
|
|
13275
|
-
//
|
|
13281
|
+
// ../uikit/Atoms/Text.js
|
|
13276
13282
|
var import_scratch10 = __toESM(require_cjs10());
|
|
13277
13283
|
var Text = {
|
|
13278
13284
|
deps: { getFontSizeByKey: import_scratch10.getFontSizeByKey, getFontFamily: import_scratch10.getFontFamily },
|
|
@@ -13316,6 +13322,7 @@ var Strong = {
|
|
|
13316
13322
|
};
|
|
13317
13323
|
var Underline = { tag: "u" };
|
|
13318
13324
|
var Italic = { tag: "i" };
|
|
13325
|
+
var Title = {};
|
|
13319
13326
|
var Headline = {
|
|
13320
13327
|
tag: "h6",
|
|
13321
13328
|
props: { fontSize: "B", fontWeight: 500 }
|
|
@@ -13329,7 +13336,7 @@ var Footnote = {
|
|
|
13329
13336
|
props: { fontSize: "Z" }
|
|
13330
13337
|
};
|
|
13331
13338
|
|
|
13332
|
-
//
|
|
13339
|
+
// ../uikit/Atoms/Transform.js
|
|
13333
13340
|
var Transform = {
|
|
13334
13341
|
class: {
|
|
13335
13342
|
transform: ({ props: props4 }) => props4.transform && { transform: props4.transform },
|
|
@@ -13337,14 +13344,14 @@ var Transform = {
|
|
|
13337
13344
|
}
|
|
13338
13345
|
};
|
|
13339
13346
|
|
|
13340
|
-
//
|
|
13347
|
+
// ../uikit/Atoms/XYZ.js
|
|
13341
13348
|
var XYZ = {
|
|
13342
13349
|
class: {
|
|
13343
13350
|
zIndex: ({ props: props4 }) => props4.zIndex && { zIndex: props4.zIndex }
|
|
13344
13351
|
}
|
|
13345
13352
|
};
|
|
13346
13353
|
|
|
13347
|
-
//
|
|
13354
|
+
// ../uikit/Atoms/Animation.js
|
|
13348
13355
|
var import_scratch11 = __toESM(require_cjs10());
|
|
13349
13356
|
var import_utils9 = __toESM(require_cjs());
|
|
13350
13357
|
var applyAnimationProps = (animation, element) => {
|
|
@@ -13395,7 +13402,7 @@ var Animation = {
|
|
|
13395
13402
|
}
|
|
13396
13403
|
};
|
|
13397
13404
|
|
|
13398
|
-
//
|
|
13405
|
+
// ../uikit/Box/index.js
|
|
13399
13406
|
var import_utils10 = __toESM(require_cjs());
|
|
13400
13407
|
var PropsCSS = {
|
|
13401
13408
|
class: {
|
|
@@ -13438,7 +13445,7 @@ var Circle = {
|
|
|
13438
13445
|
}
|
|
13439
13446
|
};
|
|
13440
13447
|
|
|
13441
|
-
//
|
|
13448
|
+
// ../uikit/Icon/index.js
|
|
13442
13449
|
var import_utils11 = __toESM(require_cjs());
|
|
13443
13450
|
var Icon = {
|
|
13444
13451
|
extend: Svg,
|
|
@@ -13518,59 +13525,59 @@ var FileIcon = {
|
|
|
13518
13525
|
}
|
|
13519
13526
|
};
|
|
13520
13527
|
|
|
13521
|
-
//
|
|
13528
|
+
// ../uikit/Indicator/StatusIndicator.js
|
|
13522
13529
|
var StatusIndicator = {
|
|
13523
13530
|
props: {
|
|
13524
|
-
boxSize: "Z",
|
|
13531
|
+
boxSize: "Z+V",
|
|
13525
13532
|
background: "green2",
|
|
13526
13533
|
round: "100%",
|
|
13527
|
-
border: "solid,
|
|
13528
|
-
borderWidth: "
|
|
13534
|
+
border: "solid, gray",
|
|
13535
|
+
borderWidth: "2px"
|
|
13529
13536
|
}
|
|
13530
13537
|
};
|
|
13531
13538
|
|
|
13532
|
-
//
|
|
13539
|
+
// ../uikit/Indicator/CheckIndicator.js
|
|
13533
13540
|
var CheckIndicator = {
|
|
13534
13541
|
extend: Flex,
|
|
13535
13542
|
props: {
|
|
13536
|
-
|
|
13537
|
-
padding: "X",
|
|
13543
|
+
padding: "Y1",
|
|
13538
13544
|
boxSize: "fit-content fit-content",
|
|
13539
13545
|
round: "100%",
|
|
13540
|
-
theme: "primary"
|
|
13541
|
-
aspectRatio: "1 / 1",
|
|
13542
|
-
fontSize: "X"
|
|
13546
|
+
theme: "primary"
|
|
13543
13547
|
},
|
|
13544
13548
|
Icon: {
|
|
13545
13549
|
extend: Icon,
|
|
13546
|
-
props: {
|
|
13550
|
+
props: {
|
|
13551
|
+
name: "check",
|
|
13552
|
+
fontSize: "B1"
|
|
13553
|
+
}
|
|
13547
13554
|
}
|
|
13548
13555
|
};
|
|
13549
13556
|
var CheckIndicatorWithLabel = {
|
|
13550
13557
|
extend: Flex,
|
|
13551
13558
|
props: {
|
|
13552
13559
|
align: "center flex-start",
|
|
13553
|
-
gap: "
|
|
13554
|
-
},
|
|
13555
|
-
CheckIndicator: {
|
|
13556
|
-
fontSize: "D2",
|
|
13557
|
-
padding: "W"
|
|
13560
|
+
gap: "Z"
|
|
13558
13561
|
},
|
|
13562
|
+
CheckIndicator: {},
|
|
13559
13563
|
Caption: {
|
|
13560
|
-
text: "
|
|
13561
|
-
|
|
13564
|
+
text: "Step",
|
|
13565
|
+
fontWeight: "400",
|
|
13566
|
+
fontSize: "Z2"
|
|
13562
13567
|
}
|
|
13563
13568
|
};
|
|
13564
13569
|
|
|
13565
|
-
//
|
|
13570
|
+
// ../uikit/Indicator/CountIndicator.js
|
|
13566
13571
|
var CountIndicator = {
|
|
13567
13572
|
extend: Flex,
|
|
13568
13573
|
props: {
|
|
13569
13574
|
text: "2",
|
|
13570
13575
|
theme: "primary",
|
|
13571
|
-
boxSize: "
|
|
13576
|
+
boxSize: "A1",
|
|
13577
|
+
minWidth: "fit-content",
|
|
13578
|
+
boxSizing: "content-box",
|
|
13572
13579
|
lineHeight: "1em",
|
|
13573
|
-
padding: "
|
|
13580
|
+
padding: "X",
|
|
13574
13581
|
round: "100%",
|
|
13575
13582
|
align: "center center",
|
|
13576
13583
|
aspectRatio: "1 / 1",
|
|
@@ -13578,16 +13585,16 @@ var CountIndicator = {
|
|
|
13578
13585
|
}
|
|
13579
13586
|
};
|
|
13580
13587
|
|
|
13581
|
-
//
|
|
13588
|
+
// ../uikit/Indicator/RadioIndicator.js
|
|
13582
13589
|
var RadioIndicator = {
|
|
13583
13590
|
props: {
|
|
13584
|
-
padding: "Z",
|
|
13585
|
-
theme: "
|
|
13591
|
+
padding: "Z+V",
|
|
13592
|
+
theme: "tertiary",
|
|
13586
13593
|
boxSize: "fit-content",
|
|
13587
13594
|
round: "100%",
|
|
13588
13595
|
":after": {
|
|
13589
13596
|
content: '""',
|
|
13590
|
-
boxSize: "
|
|
13597
|
+
boxSize: "Z",
|
|
13591
13598
|
background: "white",
|
|
13592
13599
|
display: "block",
|
|
13593
13600
|
round: "100%"
|
|
@@ -13598,16 +13605,17 @@ var RadioIndicatorWithLabel = {
|
|
|
13598
13605
|
extend: Flex,
|
|
13599
13606
|
props: {
|
|
13600
13607
|
align: "center flex-start",
|
|
13601
|
-
gap: "
|
|
13608
|
+
gap: "Z"
|
|
13602
13609
|
},
|
|
13603
13610
|
RadioIndicator: {},
|
|
13604
13611
|
Caption: {
|
|
13605
|
-
text: "
|
|
13606
|
-
|
|
13612
|
+
text: "Step",
|
|
13613
|
+
fontWeight: "500",
|
|
13614
|
+
fontSize: "Z2"
|
|
13607
13615
|
}
|
|
13608
13616
|
};
|
|
13609
13617
|
|
|
13610
|
-
//
|
|
13618
|
+
// ../uikit/Indicator/SuccessIndicator.js
|
|
13611
13619
|
var SuccessIndicator = {
|
|
13612
13620
|
extend: CheckIndicator,
|
|
13613
13621
|
props: {
|
|
@@ -13617,42 +13625,57 @@ var SuccessIndicator = {
|
|
|
13617
13625
|
}
|
|
13618
13626
|
};
|
|
13619
13627
|
|
|
13620
|
-
//
|
|
13628
|
+
// ../uikit/TitleParagraph/index.js
|
|
13621
13629
|
var TitleParagraph = {
|
|
13622
13630
|
extend: Flex,
|
|
13623
|
-
props: {
|
|
13624
|
-
flow: "column",
|
|
13625
|
-
gap: "Y"
|
|
13626
|
-
},
|
|
13631
|
+
props: { flow: "column", gap: "Y" },
|
|
13627
13632
|
Title: {
|
|
13628
13633
|
extend: Flex,
|
|
13629
|
-
props: {
|
|
13630
|
-
|
|
13631
|
-
|
|
13632
|
-
|
|
13633
|
-
text: "Title",
|
|
13634
|
-
lineHeight: "1em"
|
|
13635
|
-
}
|
|
13634
|
+
props: {
|
|
13635
|
+
lineHeight: "1em",
|
|
13636
|
+
fontWeight: "700",
|
|
13637
|
+
alignItems: "center"
|
|
13636
13638
|
}
|
|
13637
13639
|
},
|
|
13638
13640
|
Paragraph: {
|
|
13639
13641
|
extend: Flex,
|
|
13640
|
-
|
|
13641
|
-
|
|
13642
|
-
|
|
13643
|
-
|
|
13644
|
-
|
|
13645
|
-
|
|
13646
|
-
|
|
13647
|
-
|
|
13648
|
-
|
|
13642
|
+
props: {
|
|
13643
|
+
margin: "0",
|
|
13644
|
+
fontWeight: "400",
|
|
13645
|
+
color: "gray4",
|
|
13646
|
+
"> p": { margin: "0" }
|
|
13647
|
+
}
|
|
13648
|
+
}
|
|
13649
|
+
// Title: {
|
|
13650
|
+
// extend: Flex,
|
|
13651
|
+
// props: ({ scope, parent }) => ({
|
|
13652
|
+
// text: parent.props.title,
|
|
13653
|
+
// lineHeight: '1em'
|
|
13654
|
+
// })
|
|
13655
|
+
// },
|
|
13656
|
+
// Paragraph: {
|
|
13657
|
+
// extend: Flex,
|
|
13658
|
+
// props: ({ scope, parent }) => ({
|
|
13659
|
+
// text: parent.props.paragraph,
|
|
13660
|
+
// margin: '0'
|
|
13661
|
+
// })
|
|
13662
|
+
// }
|
|
13663
|
+
};
|
|
13664
|
+
var TitleParagraphRows = {
|
|
13665
|
+
extend: TitleParagraph,
|
|
13666
|
+
Title: {
|
|
13667
|
+
extend: Flex,
|
|
13668
|
+
props: { align: "center space-between" }
|
|
13669
|
+
},
|
|
13670
|
+
Paragraph: {
|
|
13671
|
+
extend: Flex
|
|
13649
13672
|
}
|
|
13650
13673
|
};
|
|
13651
|
-
var
|
|
13652
|
-
extend:
|
|
13674
|
+
var TitleParagraphButton = {
|
|
13675
|
+
extend: TitleParagraphRows,
|
|
13653
13676
|
Title: {
|
|
13654
13677
|
props: { justifyContent: "space-between" },
|
|
13655
|
-
|
|
13678
|
+
Span: {},
|
|
13656
13679
|
Button: {
|
|
13657
13680
|
props: {
|
|
13658
13681
|
background: "transparent",
|
|
@@ -13668,14 +13691,14 @@ var TitleParagraphWithButton = {
|
|
|
13668
13691
|
Paragraph: {}
|
|
13669
13692
|
};
|
|
13670
13693
|
|
|
13671
|
-
//
|
|
13694
|
+
// ../uikit/UnitValue/index.js
|
|
13672
13695
|
var UnitValue = {
|
|
13673
13696
|
extend: Flex,
|
|
13674
13697
|
props: {
|
|
13675
|
-
color: "
|
|
13698
|
+
color: "gray2",
|
|
13676
13699
|
align: "center flex-start",
|
|
13677
13700
|
gap: "V",
|
|
13678
|
-
|
|
13701
|
+
fontWeight: "400",
|
|
13679
13702
|
"> *": { lineHeight: "1em" }
|
|
13680
13703
|
},
|
|
13681
13704
|
Value: { props: { text: "72" } },
|
|
@@ -13721,8 +13744,8 @@ var UnitValueWithLabel = {
|
|
|
13721
13744
|
props: {
|
|
13722
13745
|
background: "purple",
|
|
13723
13746
|
padding: "Z",
|
|
13724
|
-
round: "
|
|
13725
|
-
fontSize: "
|
|
13747
|
+
round: "Y1",
|
|
13748
|
+
fontSize: "Y2",
|
|
13726
13749
|
gap: "0",
|
|
13727
13750
|
color: "white"
|
|
13728
13751
|
},
|
|
@@ -13734,26 +13757,26 @@ var UnitValueWithTitle = {
|
|
|
13734
13757
|
extend: Flex,
|
|
13735
13758
|
props: {
|
|
13736
13759
|
align: "center flex-start",
|
|
13737
|
-
gap: "Y"
|
|
13760
|
+
gap: "Y",
|
|
13761
|
+
fontSize: "Z1"
|
|
13738
13762
|
},
|
|
13739
13763
|
Title: {
|
|
13740
13764
|
tag: "caption",
|
|
13741
13765
|
props: {
|
|
13742
|
-
text: "balance:",
|
|
13743
|
-
|
|
13744
|
-
textTransform: "capitalize",
|
|
13745
|
-
color: "gray4"
|
|
13766
|
+
text: "balance :",
|
|
13767
|
+
textTransform: "capitalize"
|
|
13746
13768
|
}
|
|
13747
13769
|
},
|
|
13748
13770
|
UnitValue: {
|
|
13749
13771
|
textTransform: "uppercase",
|
|
13750
13772
|
gap: "Y",
|
|
13773
|
+
color: "currentColor",
|
|
13751
13774
|
Value: { text: "0" },
|
|
13752
13775
|
Unit: { text: "bnb" }
|
|
13753
13776
|
}
|
|
13754
13777
|
};
|
|
13755
13778
|
|
|
13756
|
-
//
|
|
13779
|
+
// ../uikit/Link/index.js
|
|
13757
13780
|
var import_router = __toESM(require_cjs12());
|
|
13758
13781
|
var Link = {
|
|
13759
13782
|
extend: Focusable,
|
|
@@ -13800,7 +13823,7 @@ var RouteLink = {
|
|
|
13800
13823
|
extend: [Link, RouterLink]
|
|
13801
13824
|
};
|
|
13802
13825
|
|
|
13803
|
-
//
|
|
13826
|
+
// ../uikit/Video/index.js
|
|
13804
13827
|
var Video = {
|
|
13805
13828
|
tag: "video",
|
|
13806
13829
|
childExtend: {
|
|
@@ -13824,7 +13847,7 @@ var Video = {
|
|
|
13824
13847
|
}
|
|
13825
13848
|
};
|
|
13826
13849
|
|
|
13827
|
-
//
|
|
13850
|
+
// ../uikit/DoubleHr/index.js
|
|
13828
13851
|
var DoubleHr = {
|
|
13829
13852
|
extend: Flex,
|
|
13830
13853
|
props: {
|
|
@@ -13848,7 +13871,7 @@ var DoubleHr = {
|
|
|
13848
13871
|
}
|
|
13849
13872
|
};
|
|
13850
13873
|
|
|
13851
|
-
//
|
|
13874
|
+
// ../uikit/Input/Input.js
|
|
13852
13875
|
var import_utils12 = __toESM(require_cjs());
|
|
13853
13876
|
var Input = {
|
|
13854
13877
|
tag: "input",
|
|
@@ -13885,10 +13908,25 @@ var Input = {
|
|
|
13885
13908
|
}
|
|
13886
13909
|
};
|
|
13887
13910
|
|
|
13888
|
-
//
|
|
13911
|
+
// ../uikit/Input/NumberInput.js
|
|
13889
13912
|
var NumberInput = {
|
|
13890
|
-
extend: Input,
|
|
13891
|
-
props: {
|
|
13913
|
+
extend: [Input, Flex],
|
|
13914
|
+
props: {
|
|
13915
|
+
type: "number",
|
|
13916
|
+
fontSize: "E",
|
|
13917
|
+
boxSize: "C+X",
|
|
13918
|
+
align: "center center",
|
|
13919
|
+
textAlign: "center",
|
|
13920
|
+
round: "Y1",
|
|
13921
|
+
theme: "transparent",
|
|
13922
|
+
border: "solid, gray3",
|
|
13923
|
+
borderWidth: "1px",
|
|
13924
|
+
placeholder: "0",
|
|
13925
|
+
fontWeight: "400",
|
|
13926
|
+
"::-webkit-inner-spin-button": {
|
|
13927
|
+
appearance: "none"
|
|
13928
|
+
}
|
|
13929
|
+
},
|
|
13892
13930
|
attr: {
|
|
13893
13931
|
step: ({ props: props4 }) => props4.step,
|
|
13894
13932
|
min: ({ props: props4 }) => props4.min,
|
|
@@ -13896,7 +13934,7 @@ var NumberInput = {
|
|
|
13896
13934
|
}
|
|
13897
13935
|
};
|
|
13898
13936
|
|
|
13899
|
-
//
|
|
13937
|
+
// ../uikit/Input/Checkbox.js
|
|
13900
13938
|
var Checkbox = {
|
|
13901
13939
|
extend: Focusable,
|
|
13902
13940
|
tag: "label",
|
|
@@ -13945,13 +13983,13 @@ var CheckboxTitleParagraph = {
|
|
|
13945
13983
|
gap: "A"
|
|
13946
13984
|
},
|
|
13947
13985
|
Checkbox: { tag: "div" },
|
|
13948
|
-
|
|
13986
|
+
TitleParagraphRows: {
|
|
13949
13987
|
gap: "Z1",
|
|
13950
13988
|
margin: "Y - - -"
|
|
13951
13989
|
}
|
|
13952
13990
|
};
|
|
13953
13991
|
|
|
13954
|
-
//
|
|
13992
|
+
// ../uikit/Input/Radio.js
|
|
13955
13993
|
var Radio = {
|
|
13956
13994
|
extend: Checkbox,
|
|
13957
13995
|
Input: {
|
|
@@ -13982,7 +14020,7 @@ var RadioTitleParagraph = {
|
|
|
13982
14020
|
Radio: {}
|
|
13983
14021
|
};
|
|
13984
14022
|
|
|
13985
|
-
//
|
|
14023
|
+
// ../uikit/Input/Toggle.js
|
|
13986
14024
|
var Toggle = {
|
|
13987
14025
|
extend: Checkbox,
|
|
13988
14026
|
Input: {
|
|
@@ -13997,7 +14035,7 @@ var Toggle = {
|
|
|
13997
14035
|
padding: "- W",
|
|
13998
14036
|
round: "D",
|
|
13999
14037
|
align: "center flex-start",
|
|
14000
|
-
background: "gray
|
|
14038
|
+
background: "gray",
|
|
14001
14039
|
border: "none",
|
|
14002
14040
|
transition: "opacity .15s ease",
|
|
14003
14041
|
":after": {
|
|
@@ -14017,18 +14055,21 @@ var ToggleTitleParagraph = {
|
|
|
14017
14055
|
Toggle: {}
|
|
14018
14056
|
};
|
|
14019
14057
|
|
|
14020
|
-
//
|
|
14058
|
+
// ../uikit/Input/Textarea.js
|
|
14021
14059
|
var Textarea = {
|
|
14022
14060
|
tag: "textarea",
|
|
14023
14061
|
extend: [Input, Flex],
|
|
14024
14062
|
props: {
|
|
14025
14063
|
variant: "outlined",
|
|
14026
|
-
|
|
14027
|
-
|
|
14064
|
+
fontfamily: "Avenir",
|
|
14065
|
+
round: "Z1",
|
|
14066
|
+
maxWidth: "H",
|
|
14028
14067
|
minHeight: "E",
|
|
14029
14068
|
placeholder: "Leave us a message...",
|
|
14030
14069
|
padding: "A",
|
|
14070
|
+
theme: "transparent",
|
|
14031
14071
|
color: "white",
|
|
14072
|
+
border: "none",
|
|
14032
14073
|
style: { resize: "none" }
|
|
14033
14074
|
},
|
|
14034
14075
|
".simple": {
|
|
@@ -14042,10 +14083,7 @@ var Textarea = {
|
|
|
14042
14083
|
},
|
|
14043
14084
|
".outlined": {
|
|
14044
14085
|
props: {
|
|
14045
|
-
border: "1px solid #3F3F43",
|
|
14046
14086
|
background: "transparent",
|
|
14047
|
-
round: "Y+W",
|
|
14048
|
-
//
|
|
14049
14087
|
width: "G1",
|
|
14050
14088
|
height: "D2+W",
|
|
14051
14089
|
lineHeight: 1.4,
|
|
@@ -14056,24 +14094,6 @@ var Textarea = {
|
|
|
14056
14094
|
}
|
|
14057
14095
|
}
|
|
14058
14096
|
};
|
|
14059
|
-
var TextareaWithTitle = {
|
|
14060
|
-
extend: Flex,
|
|
14061
|
-
props: {
|
|
14062
|
-
flow: "column",
|
|
14063
|
-
boxSize: "fit-content fit-content",
|
|
14064
|
-
gap: "Y+W"
|
|
14065
|
-
},
|
|
14066
|
-
Title: {
|
|
14067
|
-
props: {
|
|
14068
|
-
text: "Label",
|
|
14069
|
-
fontSize: "Z",
|
|
14070
|
-
lineHeight: "1em",
|
|
14071
|
-
padding: "- - - Z",
|
|
14072
|
-
color: "gray4"
|
|
14073
|
-
}
|
|
14074
|
-
},
|
|
14075
|
-
Textarea: {}
|
|
14076
|
-
};
|
|
14077
14097
|
var TextareaWithButton = {
|
|
14078
14098
|
extend: Flex,
|
|
14079
14099
|
props: { gap: "Y2" },
|
|
@@ -14094,7 +14114,7 @@ var TextareaWithButton = {
|
|
|
14094
14114
|
}
|
|
14095
14115
|
};
|
|
14096
14116
|
|
|
14097
|
-
//
|
|
14117
|
+
// ../uikit/Select/index.js
|
|
14098
14118
|
var Select = {
|
|
14099
14119
|
extend: Focusable,
|
|
14100
14120
|
tag: "select",
|
|
@@ -14124,41 +14144,49 @@ var Select = {
|
|
|
14124
14144
|
}
|
|
14125
14145
|
};
|
|
14126
14146
|
|
|
14127
|
-
//
|
|
14147
|
+
// ../uikit/Field/Field.js
|
|
14128
14148
|
var Field = {
|
|
14129
14149
|
tag: "label",
|
|
14130
14150
|
extend: [Focusable, IconText],
|
|
14131
14151
|
props: {
|
|
14132
|
-
minWidth: "
|
|
14133
|
-
maxWidth: "
|
|
14134
|
-
minHeight: "C+
|
|
14152
|
+
minWidth: "F2+Z2",
|
|
14153
|
+
maxWidth: "F2+Z2",
|
|
14154
|
+
minHeight: "C+V",
|
|
14135
14155
|
align: "center flex-start",
|
|
14136
|
-
gap: "Y
|
|
14156
|
+
gap: "Y",
|
|
14137
14157
|
boxSizing: "border-box",
|
|
14138
|
-
padding: "-
|
|
14139
|
-
round: "
|
|
14140
|
-
border: "
|
|
14158
|
+
padding: "- A - Z2",
|
|
14159
|
+
round: "Z1",
|
|
14160
|
+
border: "solid, gray .45 +80",
|
|
14161
|
+
borderWidth: ".8px",
|
|
14141
14162
|
position: "relative",
|
|
14142
14163
|
":focus-within": { outline: "1px solid #0474F2" },
|
|
14164
|
+
Icon: {
|
|
14165
|
+
color: "gray2",
|
|
14166
|
+
fontSize: "Z2"
|
|
14167
|
+
},
|
|
14143
14168
|
Button: {
|
|
14144
14169
|
padding: "0",
|
|
14145
14170
|
background: "transparent",
|
|
14146
|
-
color: "
|
|
14147
|
-
margin: "- - - auto"
|
|
14171
|
+
color: "gray2",
|
|
14172
|
+
margin: "- - - auto",
|
|
14173
|
+
fontSize: "Z2"
|
|
14148
14174
|
}
|
|
14149
14175
|
},
|
|
14150
14176
|
Input: {
|
|
14151
14177
|
props: {
|
|
14178
|
+
fontSize: "Z",
|
|
14179
|
+
fontWeight: "400",
|
|
14152
14180
|
padding: "0",
|
|
14153
14181
|
background: "rgba(0, 0, 0, 0)",
|
|
14154
14182
|
round: "0",
|
|
14155
|
-
color: "
|
|
14183
|
+
color: "gray2",
|
|
14156
14184
|
fontFamily: "avenir",
|
|
14157
14185
|
placeholder: "Placeholder",
|
|
14158
14186
|
flex: "1",
|
|
14159
14187
|
minHeight: "100%",
|
|
14160
14188
|
outline: "none !important",
|
|
14161
|
-
|
|
14189
|
+
"::placeholder": { color: "gray 1 +64" }
|
|
14162
14190
|
}
|
|
14163
14191
|
}
|
|
14164
14192
|
};
|
|
@@ -14168,41 +14196,37 @@ var FieldTemplate = {
|
|
|
14168
14196
|
Input: {},
|
|
14169
14197
|
Button: { Icon: { name: "eye" } }
|
|
14170
14198
|
};
|
|
14171
|
-
|
|
14172
|
-
// ../../uikit/domql/Field/CommonField.js
|
|
14173
|
-
var CommonField = {
|
|
14199
|
+
var FieldWithTitle = {
|
|
14174
14200
|
extend: Flex,
|
|
14175
|
-
tag: "label",
|
|
14176
14201
|
props: {
|
|
14177
14202
|
flow: "column",
|
|
14178
14203
|
boxSize: "fit-content fit-content",
|
|
14179
|
-
gap: "
|
|
14204
|
+
gap: "Y1",
|
|
14205
|
+
// border: '.05px solid red',
|
|
14206
|
+
Hint: {
|
|
14207
|
+
color: "gray 1 +64",
|
|
14208
|
+
align: "center flex-start",
|
|
14209
|
+
fontSize: "Y",
|
|
14210
|
+
gap: "Y",
|
|
14211
|
+
padding: "W Y2 - Y2"
|
|
14212
|
+
}
|
|
14180
14213
|
},
|
|
14181
14214
|
Title: {
|
|
14182
14215
|
props: {
|
|
14183
14216
|
text: "Label",
|
|
14217
|
+
fontSize: "Z",
|
|
14184
14218
|
lineHeight: "1em",
|
|
14185
|
-
|
|
14186
|
-
|
|
14219
|
+
color: "gray2",
|
|
14220
|
+
fontWeight: "400",
|
|
14221
|
+
padding: "- Y1"
|
|
14187
14222
|
}
|
|
14188
14223
|
},
|
|
14189
14224
|
Field: {
|
|
14190
|
-
|
|
14191
|
-
},
|
|
14192
|
-
Hint: {
|
|
14193
|
-
extend: IconText,
|
|
14194
|
-
props: {
|
|
14195
|
-
color: "gray4",
|
|
14196
|
-
align: "center flex-start",
|
|
14197
|
-
text: "",
|
|
14198
|
-
fontSize: "Z1",
|
|
14199
|
-
gap: "Y",
|
|
14200
|
-
padding: "W - - W"
|
|
14201
|
-
}
|
|
14225
|
+
extend: Field
|
|
14202
14226
|
}
|
|
14203
14227
|
};
|
|
14204
|
-
var
|
|
14205
|
-
extend:
|
|
14228
|
+
var FieldWithTitleTemplate = {
|
|
14229
|
+
extend: FieldWithTitle,
|
|
14206
14230
|
Title: {},
|
|
14207
14231
|
Field: {
|
|
14208
14232
|
Icon: { props: { name: "info" } },
|
|
@@ -14210,69 +14234,48 @@ var CommonFieldTemplate = {
|
|
|
14210
14234
|
Button: { icon: "eye" }
|
|
14211
14235
|
},
|
|
14212
14236
|
Hint: {
|
|
14213
|
-
|
|
14214
|
-
text: "Description"
|
|
14215
|
-
}
|
|
14216
|
-
};
|
|
14217
|
-
|
|
14218
|
-
// ../../uikit/domql/Field/NumberField.js
|
|
14219
|
-
var NumberField = {
|
|
14220
|
-
extend: Field,
|
|
14221
|
-
props: {
|
|
14222
|
-
minWidth: "D+Y2",
|
|
14223
|
-
maxWidth: "D+Y2",
|
|
14224
|
-
minHeight: "D+Y2",
|
|
14225
|
-
padding: "0"
|
|
14226
|
-
},
|
|
14227
|
-
Input: null,
|
|
14228
|
-
NumberInput: {
|
|
14237
|
+
extend: IconText,
|
|
14229
14238
|
props: {
|
|
14230
|
-
|
|
14231
|
-
|
|
14232
|
-
boxSize: "100% 100%",
|
|
14233
|
-
textAlign: "center",
|
|
14234
|
-
round: "Y",
|
|
14235
|
-
color: "white",
|
|
14236
|
-
background: "rgba(0, 0, 0, 0)",
|
|
14237
|
-
outline: "none !important",
|
|
14238
|
-
style: {
|
|
14239
|
-
"&::-webkit-inner-spin-button": {
|
|
14240
|
-
"-webkit-appearance": "none"
|
|
14241
|
-
}
|
|
14242
|
-
}
|
|
14239
|
+
icon: "info",
|
|
14240
|
+
text: "Description"
|
|
14243
14241
|
}
|
|
14244
14242
|
}
|
|
14245
14243
|
};
|
|
14246
14244
|
|
|
14247
|
-
//
|
|
14245
|
+
// ../uikit/Field/Search.js
|
|
14248
14246
|
var Search = {
|
|
14249
14247
|
extend: Field,
|
|
14250
14248
|
props: {
|
|
14251
|
-
maxWidth: "
|
|
14252
|
-
gap: "
|
|
14253
|
-
|
|
14254
|
-
|
|
14255
|
-
|
|
14256
|
-
Icon: {
|
|
14257
|
-
props: {
|
|
14258
|
-
opacity: ".65",
|
|
14249
|
+
maxWidth: "G3",
|
|
14250
|
+
gap: "Z",
|
|
14251
|
+
theme: "dialog",
|
|
14252
|
+
padding: "Z+V Z+V2",
|
|
14253
|
+
Icon: {
|
|
14259
14254
|
name: "search",
|
|
14260
|
-
fontSize: "
|
|
14261
|
-
|
|
14255
|
+
fontSize: "C",
|
|
14256
|
+
color: "gray2",
|
|
14257
|
+
margin: "V - - -"
|
|
14262
14258
|
}
|
|
14263
14259
|
},
|
|
14260
|
+
Icon: {},
|
|
14264
14261
|
Input: {
|
|
14265
|
-
props: {
|
|
14262
|
+
props: {
|
|
14263
|
+
placeholder: "type a command or search",
|
|
14264
|
+
fontSize: "Z",
|
|
14265
|
+
"::placeholder": { color: "gray 1 +68" }
|
|
14266
|
+
}
|
|
14266
14267
|
}
|
|
14267
14268
|
};
|
|
14268
14269
|
var SearchWithButton = {
|
|
14269
14270
|
extend: Search,
|
|
14271
|
+
props: {
|
|
14272
|
+
Button: { fontSize: "B" }
|
|
14273
|
+
},
|
|
14270
14274
|
Icon: {},
|
|
14271
14275
|
Input: { props: { ":focus ~ button": { opacity: "1" } } },
|
|
14272
14276
|
Button: {
|
|
14273
14277
|
props: {
|
|
14274
14278
|
opacity: "0",
|
|
14275
|
-
fontSize: "D",
|
|
14276
14279
|
icon: "x"
|
|
14277
14280
|
},
|
|
14278
14281
|
Icon: {
|
|
@@ -14287,20 +14290,48 @@ var SearchWithButton = {
|
|
|
14287
14290
|
var SearchWithDropDownButton = {
|
|
14288
14291
|
extend: SearchWithButton,
|
|
14289
14292
|
props: {
|
|
14290
|
-
padding: "- A - 0",
|
|
14291
14293
|
theme: "tertiary",
|
|
14292
|
-
maxWidth: "
|
|
14294
|
+
maxWidth: "G3+C",
|
|
14295
|
+
padding: "0 A 0 0",
|
|
14296
|
+
gap: "Z"
|
|
14293
14297
|
},
|
|
14294
|
-
DropDownButton: {
|
|
14295
|
-
|
|
14296
|
-
|
|
14298
|
+
DropDownButton: {},
|
|
14299
|
+
Input: { props: { padding: "- - - X" } },
|
|
14300
|
+
Button: {},
|
|
14301
|
+
Icon: {}
|
|
14302
|
+
};
|
|
14303
|
+
|
|
14304
|
+
// ../uikit/Field/TextAreaField.js
|
|
14305
|
+
var TextAreaField = {
|
|
14306
|
+
tag: "label",
|
|
14307
|
+
extend: Focusable,
|
|
14308
|
+
props: {
|
|
14309
|
+
boxSize: "fit-content",
|
|
14310
|
+
border: "solid, gray .45 +80",
|
|
14311
|
+
borderWidth: ".8px",
|
|
14312
|
+
overflow: "hidden",
|
|
14313
|
+
round: "Z1",
|
|
14314
|
+
":focus-within": { outline: "1px solid #0474F2" }
|
|
14297
14315
|
},
|
|
14298
|
-
|
|
14299
|
-
|
|
14300
|
-
|
|
14316
|
+
TextArea: {
|
|
14317
|
+
tag: "textarea",
|
|
14318
|
+
attr: { placeholder: "Leave us a message..." },
|
|
14319
|
+
props: {
|
|
14320
|
+
fontSize: "Z",
|
|
14321
|
+
minWidth: "H",
|
|
14322
|
+
minHeight: "D2+Y1",
|
|
14323
|
+
padding: "A",
|
|
14324
|
+
fontFamily: "avenir",
|
|
14325
|
+
theme: "transparent",
|
|
14326
|
+
border: "none",
|
|
14327
|
+
outline: "none",
|
|
14328
|
+
style: { resize: "none" },
|
|
14329
|
+
"::placeholder": { color: "gray 1 +64" }
|
|
14330
|
+
}
|
|
14331
|
+
}
|
|
14301
14332
|
};
|
|
14302
14333
|
|
|
14303
|
-
//
|
|
14334
|
+
// ../uikit/Button/index.js
|
|
14304
14335
|
var Button = {
|
|
14305
14336
|
extend: [IconText, FocusableComponent],
|
|
14306
14337
|
tag: "button",
|
|
@@ -14346,18 +14377,20 @@ var CommonButton = {
|
|
|
14346
14377
|
props: {
|
|
14347
14378
|
theme: "primary",
|
|
14348
14379
|
boxSize: "fit-content",
|
|
14349
|
-
padding: "
|
|
14350
|
-
round: "
|
|
14351
|
-
gap: "
|
|
14380
|
+
padding: "Z2 A2",
|
|
14381
|
+
round: "Z1",
|
|
14382
|
+
gap: "X1",
|
|
14352
14383
|
position: "relative"
|
|
14353
14384
|
},
|
|
14354
14385
|
Icon: {
|
|
14355
|
-
props: { fontSize: "
|
|
14386
|
+
props: { fontSize: "B1" }
|
|
14356
14387
|
},
|
|
14357
|
-
|
|
14388
|
+
caption: {
|
|
14358
14389
|
props: {
|
|
14359
14390
|
text: "Button",
|
|
14360
|
-
|
|
14391
|
+
line_height: "1em",
|
|
14392
|
+
fontSize: "Z2",
|
|
14393
|
+
letterSpacing: ".005em"
|
|
14361
14394
|
}
|
|
14362
14395
|
}
|
|
14363
14396
|
};
|
|
@@ -14366,10 +14399,10 @@ var IconCommonButton = {
|
|
|
14366
14399
|
props: {
|
|
14367
14400
|
Icon: { name: "smile" },
|
|
14368
14401
|
boxSize: "fit-content fit-content",
|
|
14369
|
-
padding: "
|
|
14370
|
-
|
|
14402
|
+
padding: "Z2",
|
|
14403
|
+
theme: "tertiary"
|
|
14371
14404
|
},
|
|
14372
|
-
|
|
14405
|
+
caption: null
|
|
14373
14406
|
};
|
|
14374
14407
|
var ButtonSet = {
|
|
14375
14408
|
tag: "nav",
|
|
@@ -14378,32 +14411,30 @@ var ButtonSet = {
|
|
|
14378
14411
|
};
|
|
14379
14412
|
var CancelConfirmButtons = {
|
|
14380
14413
|
extend: Flex,
|
|
14414
|
+
props: {
|
|
14415
|
+
gap: "Z2",
|
|
14416
|
+
maxWidth: "fit-content"
|
|
14417
|
+
},
|
|
14381
14418
|
childExtend: {
|
|
14382
14419
|
extend: CommonButton,
|
|
14383
14420
|
props: {
|
|
14384
|
-
minWidth: "D2",
|
|
14385
14421
|
":first-child": {
|
|
14386
|
-
|
|
14387
|
-
|
|
14388
|
-
}
|
|
14389
|
-
":last-child": {}
|
|
14422
|
+
theme: "transparent",
|
|
14423
|
+
padding: "- Y1"
|
|
14424
|
+
}
|
|
14390
14425
|
}
|
|
14391
14426
|
},
|
|
14392
14427
|
...[
|
|
14393
|
-
{
|
|
14394
|
-
{
|
|
14395
|
-
]
|
|
14396
|
-
props: {
|
|
14397
|
-
gap: "Z",
|
|
14398
|
-
maxWidth: "fit-content"
|
|
14399
|
-
}
|
|
14428
|
+
{ caption: { props: { text: "No" } } },
|
|
14429
|
+
{ caption: { props: { text: "Yes" } } }
|
|
14430
|
+
]
|
|
14400
14431
|
};
|
|
14401
14432
|
var IcontextButton = {
|
|
14402
14433
|
extend: CommonButton,
|
|
14403
14434
|
props: {
|
|
14404
|
-
padding: "A A1",
|
|
14405
14435
|
position: "relative",
|
|
14406
|
-
|
|
14436
|
+
theme: "tertiary",
|
|
14437
|
+
padding: "Z2 A",
|
|
14407
14438
|
Icon: { name: "smile" }
|
|
14408
14439
|
}
|
|
14409
14440
|
};
|
|
@@ -14412,32 +14443,33 @@ var DropDownButton = {
|
|
|
14412
14443
|
props: {
|
|
14413
14444
|
gap: "X2",
|
|
14414
14445
|
boxSize: "fit-content fit-content",
|
|
14415
|
-
padding: "
|
|
14416
|
-
|
|
14417
|
-
background: "#141416",
|
|
14446
|
+
padding: "Z1 A1 Z Z1",
|
|
14447
|
+
theme: "dialog",
|
|
14418
14448
|
color: "white",
|
|
14419
14449
|
Icon: {
|
|
14420
14450
|
name: "chevronDown",
|
|
14421
14451
|
fontSize: "D"
|
|
14422
14452
|
},
|
|
14423
|
-
|
|
14453
|
+
caption: { text: "All" }
|
|
14424
14454
|
}
|
|
14425
14455
|
};
|
|
14426
14456
|
var DropDownButtonWithAvatar = {
|
|
14427
14457
|
extend: DropDownButton,
|
|
14428
14458
|
props: {
|
|
14429
|
-
gap: "
|
|
14430
|
-
padding: "
|
|
14431
|
-
round: "
|
|
14432
|
-
|
|
14459
|
+
gap: "Y",
|
|
14460
|
+
padding: "Y",
|
|
14461
|
+
round: "Z1",
|
|
14462
|
+
theme: "dialog",
|
|
14463
|
+
Icon: { fontSize: "B1" }
|
|
14433
14464
|
},
|
|
14434
14465
|
Avatar: {
|
|
14435
|
-
boxSize: "
|
|
14466
|
+
boxSize: "A2+V1"
|
|
14436
14467
|
},
|
|
14437
|
-
|
|
14468
|
+
caption: {
|
|
14438
14469
|
text: "ETH",
|
|
14439
14470
|
props: {
|
|
14440
|
-
fontSize: "
|
|
14471
|
+
fontSize: "Y1",
|
|
14472
|
+
fontWeight: "400"
|
|
14441
14473
|
}
|
|
14442
14474
|
}
|
|
14443
14475
|
};
|
|
@@ -14458,14 +14490,14 @@ var PlusMinusButtons = {
|
|
|
14458
14490
|
}
|
|
14459
14491
|
};
|
|
14460
14492
|
|
|
14461
|
-
//
|
|
14493
|
+
// ../uikit/Progress/ProgressLine.js
|
|
14462
14494
|
var ProgressLine = {
|
|
14463
14495
|
tag: "progress",
|
|
14464
14496
|
props: {
|
|
14465
14497
|
value: 0.7,
|
|
14466
|
-
height: "
|
|
14467
|
-
minWidth: "
|
|
14468
|
-
round: "
|
|
14498
|
+
height: "X1",
|
|
14499
|
+
minWidth: "F2+B1",
|
|
14500
|
+
round: "2px",
|
|
14469
14501
|
overflow: "hidden",
|
|
14470
14502
|
theme: "primary @dark .inactive",
|
|
14471
14503
|
"::-webkit-progress-bar": {
|
|
@@ -14486,13 +14518,15 @@ var ProgressLineWithUnitValue = {
|
|
|
14486
14518
|
extend: Flex,
|
|
14487
14519
|
props: {
|
|
14488
14520
|
align: "center flex-start",
|
|
14489
|
-
gap: "
|
|
14521
|
+
gap: "Z1"
|
|
14522
|
+
},
|
|
14523
|
+
ProgressLine: {
|
|
14524
|
+
minWidth: "F2+B1"
|
|
14490
14525
|
},
|
|
14491
|
-
ProgressLine: {},
|
|
14492
14526
|
UnitValue: {}
|
|
14493
14527
|
};
|
|
14494
14528
|
|
|
14495
|
-
//
|
|
14529
|
+
// ../uikit/Progress/ProgressCircle.js
|
|
14496
14530
|
var ProgressCircle = {
|
|
14497
14531
|
props: {
|
|
14498
14532
|
boxSize: "D D",
|
|
@@ -14557,19 +14591,19 @@ var ProgressCircleWithSideUnitValue = {
|
|
|
14557
14591
|
props: {
|
|
14558
14592
|
align: "center flex-start",
|
|
14559
14593
|
boxSize: "fit-content fit-content",
|
|
14560
|
-
gap: "
|
|
14594
|
+
gap: "Y"
|
|
14561
14595
|
},
|
|
14562
14596
|
ProgressCircle: {
|
|
14563
|
-
boxSize: "A
|
|
14597
|
+
boxSize: "A",
|
|
14564
14598
|
":after": {
|
|
14565
14599
|
width: "calc(100% - 5px)",
|
|
14566
14600
|
height: "calc(100% - 5px)"
|
|
14567
14601
|
}
|
|
14568
14602
|
},
|
|
14569
|
-
UnitValue: {}
|
|
14603
|
+
UnitValue: { fontSize: "Y1" }
|
|
14570
14604
|
};
|
|
14571
14605
|
|
|
14572
|
-
//
|
|
14606
|
+
// ../uikit/Range/index.js
|
|
14573
14607
|
var import_utils13 = __toESM(require_cjs());
|
|
14574
14608
|
var import_scratch12 = __toESM(require_cjs10());
|
|
14575
14609
|
var props = {
|
|
@@ -14717,7 +14751,7 @@ var RangeWithButtons = {
|
|
|
14717
14751
|
}
|
|
14718
14752
|
};
|
|
14719
14753
|
|
|
14720
|
-
//
|
|
14754
|
+
// ../uikit/Slider/style.js
|
|
14721
14755
|
var style_default = {
|
|
14722
14756
|
appearance: "none",
|
|
14723
14757
|
width: "100%",
|
|
@@ -14736,9 +14770,30 @@ var style_default = {
|
|
|
14736
14770
|
}
|
|
14737
14771
|
};
|
|
14738
14772
|
|
|
14739
|
-
//
|
|
14773
|
+
// ../uikit/Slider/index.js
|
|
14740
14774
|
var import_scratch13 = __toESM(require_cjs10());
|
|
14741
14775
|
var import_utils14 = __toESM(require_cjs());
|
|
14776
|
+
(0, import_scratch13.set)({
|
|
14777
|
+
theme: {
|
|
14778
|
+
sliderThumb: {
|
|
14779
|
+
background: "white 0.2",
|
|
14780
|
+
"&::-webkit-slider-thumb": {
|
|
14781
|
+
background: "#232526",
|
|
14782
|
+
borderColor: (0, import_scratch13.opacify)("#454646", 0.75)
|
|
14783
|
+
},
|
|
14784
|
+
"&:hover": {
|
|
14785
|
+
"&::-webkit-slider-thumb": {
|
|
14786
|
+
borderColor: (0, import_scratch13.opacify)("#fff", 0.35)
|
|
14787
|
+
}
|
|
14788
|
+
},
|
|
14789
|
+
"&:focus, &:active": {
|
|
14790
|
+
"&::-webkit-slider-thumb": {
|
|
14791
|
+
borderColor: "#3C6AC0"
|
|
14792
|
+
}
|
|
14793
|
+
}
|
|
14794
|
+
}
|
|
14795
|
+
}
|
|
14796
|
+
});
|
|
14742
14797
|
var RangeSlider = {
|
|
14743
14798
|
style: style_default,
|
|
14744
14799
|
props: {
|
|
@@ -14807,16 +14862,17 @@ var Slider = {
|
|
|
14807
14862
|
}
|
|
14808
14863
|
};
|
|
14809
14864
|
|
|
14810
|
-
//
|
|
14865
|
+
// ../uikit/Label/index.js
|
|
14811
14866
|
var Label = {
|
|
14812
14867
|
extend: Flex,
|
|
14813
14868
|
props: {
|
|
14814
14869
|
text: "-2.902x",
|
|
14815
|
-
fontSize: "
|
|
14870
|
+
fontSize: "X2",
|
|
14816
14871
|
boxSize: "fit-content fit-content",
|
|
14817
|
-
|
|
14818
|
-
padding: "
|
|
14819
|
-
round: "
|
|
14872
|
+
background: "#F4454E",
|
|
14873
|
+
padding: "W2 Y2",
|
|
14874
|
+
round: "Y1",
|
|
14875
|
+
fontWeight: "400"
|
|
14820
14876
|
}
|
|
14821
14877
|
};
|
|
14822
14878
|
var LabelButton = {
|
|
@@ -14847,19 +14903,19 @@ var CardLabel = {
|
|
|
14847
14903
|
}
|
|
14848
14904
|
};
|
|
14849
14905
|
|
|
14850
|
-
//
|
|
14906
|
+
// ../uikit/Avatar/Avatar.js
|
|
14851
14907
|
var Avatar = {
|
|
14852
14908
|
extend: Img,
|
|
14853
14909
|
props: ({ key, props: props4 }) => ({
|
|
14854
14910
|
display: "block",
|
|
14855
|
-
avatarType: "
|
|
14911
|
+
avatarType: "adventurer-neutral",
|
|
14856
14912
|
borderRadius: "100%",
|
|
14857
14913
|
boxSize: "C+X C+X",
|
|
14858
14914
|
src: `https://api.dicebear.com/7.x/${props4.avatarType || "initials"}/svg?seed=${props4.key || key || "no-avatar"}`
|
|
14859
14915
|
})
|
|
14860
14916
|
};
|
|
14861
14917
|
|
|
14862
|
-
//
|
|
14918
|
+
// ../uikit/Avatar/AvatarIndicator.js
|
|
14863
14919
|
var AvatarIndicator = {
|
|
14864
14920
|
props: {
|
|
14865
14921
|
boxSize: "fit-content",
|
|
@@ -14870,11 +14926,11 @@ var AvatarIndicator = {
|
|
|
14870
14926
|
StatusIndicator: {
|
|
14871
14927
|
position: "absolute",
|
|
14872
14928
|
bottom: "V",
|
|
14873
|
-
right: "
|
|
14929
|
+
right: "-V"
|
|
14874
14930
|
}
|
|
14875
14931
|
};
|
|
14876
14932
|
|
|
14877
|
-
//
|
|
14933
|
+
// ../uikit/Avatar/AvatarBundle.js
|
|
14878
14934
|
var AvatarBundle = {
|
|
14879
14935
|
extend: Flex,
|
|
14880
14936
|
props: {
|
|
@@ -14894,16 +14950,15 @@ var AvatarBundle = {
|
|
|
14894
14950
|
$setPropsCollection: ({ props: props4 }) => props4.options
|
|
14895
14951
|
};
|
|
14896
14952
|
|
|
14897
|
-
//
|
|
14953
|
+
// ../uikit/Avatar/AvatarChooser.js
|
|
14898
14954
|
var AvatarChooser = {
|
|
14899
14955
|
extend: Button,
|
|
14900
14956
|
tag: "label",
|
|
14901
14957
|
state: { key: "am" },
|
|
14902
14958
|
props: {
|
|
14903
|
-
round: "
|
|
14959
|
+
round: "A2",
|
|
14904
14960
|
width: "fit-content",
|
|
14905
|
-
|
|
14906
|
-
padding: "W2 A W2 W2",
|
|
14961
|
+
padding: "X2 Y2+V X2 X2",
|
|
14907
14962
|
theme: "tertiary",
|
|
14908
14963
|
position: "relative",
|
|
14909
14964
|
cursor: "pointer"
|
|
@@ -14920,15 +14975,15 @@ var AvatarChooser = {
|
|
|
14920
14975
|
outline: "none",
|
|
14921
14976
|
pointerEvents: "All",
|
|
14922
14977
|
appearance: "none",
|
|
14923
|
-
border: "none",
|
|
14924
|
-
width: "100%",
|
|
14925
14978
|
height: "100%",
|
|
14926
14979
|
background: "none",
|
|
14927
14980
|
color: "currentColor",
|
|
14928
|
-
fontSize: "
|
|
14981
|
+
fontSize: "Z2",
|
|
14929
14982
|
lineHeight: 1,
|
|
14930
|
-
|
|
14931
|
-
|
|
14983
|
+
padding: "- B - Y1",
|
|
14984
|
+
zIndex: "2",
|
|
14985
|
+
flex: "1",
|
|
14986
|
+
fontWeight: "500",
|
|
14932
14987
|
":focus-visible": {
|
|
14933
14988
|
outline: "none"
|
|
14934
14989
|
}
|
|
@@ -14951,11 +15006,18 @@ var AvatarChooser = {
|
|
|
14951
15006
|
}
|
|
14952
15007
|
},
|
|
14953
15008
|
Icon: {
|
|
14954
|
-
|
|
15009
|
+
props: {
|
|
15010
|
+
icon: "chevronDown",
|
|
15011
|
+
fontSize: "C",
|
|
15012
|
+
margin: "V - - -",
|
|
15013
|
+
position: "absolute",
|
|
15014
|
+
right: "Y1",
|
|
15015
|
+
pointerEvents: "none"
|
|
15016
|
+
}
|
|
14955
15017
|
}
|
|
14956
15018
|
};
|
|
14957
15019
|
|
|
14958
|
-
//
|
|
15020
|
+
// ../uikit/Notification/index.js
|
|
14959
15021
|
var Notification = {
|
|
14960
15022
|
extend: Flex,
|
|
14961
15023
|
props: {
|
|
@@ -14978,6 +15040,7 @@ var Notification = {
|
|
|
14978
15040
|
gap: "X2"
|
|
14979
15041
|
},
|
|
14980
15042
|
Title: {
|
|
15043
|
+
tag: "h6",
|
|
14981
15044
|
props: {
|
|
14982
15045
|
fontWeight: "600",
|
|
14983
15046
|
lineHeight: "1em",
|
|
@@ -15007,7 +15070,7 @@ var NotificationIndicator = {
|
|
|
15007
15070
|
}
|
|
15008
15071
|
};
|
|
15009
15072
|
|
|
15010
|
-
//
|
|
15073
|
+
// ../uikit/Tooltip/index.js
|
|
15011
15074
|
var import_utils15 = __toESM(require_cjs());
|
|
15012
15075
|
var Tooltip = {
|
|
15013
15076
|
extend: Flex,
|
|
@@ -15115,7 +15178,7 @@ var TooltipParent = {
|
|
|
15115
15178
|
}
|
|
15116
15179
|
};
|
|
15117
15180
|
|
|
15118
|
-
//
|
|
15181
|
+
// ../uikit/Pills/index.js
|
|
15119
15182
|
var Pills = {
|
|
15120
15183
|
extend: Flex,
|
|
15121
15184
|
props: {
|
|
@@ -15141,22 +15204,21 @@ var Pills = {
|
|
|
15141
15204
|
$setPropsCollection: ({ props: props4, state }) => new Array(props4.qty).fill({})
|
|
15142
15205
|
};
|
|
15143
15206
|
|
|
15144
|
-
//
|
|
15207
|
+
// ../uikit/Tab/index.js
|
|
15145
15208
|
var Tab = {
|
|
15146
15209
|
extend: IcontextButton,
|
|
15147
15210
|
props: {
|
|
15148
15211
|
boxSize: "fit-content fit-content",
|
|
15149
|
-
theme: "secondary",
|
|
15150
15212
|
align: "center flex-start",
|
|
15151
|
-
|
|
15152
|
-
|
|
15213
|
+
position: "relative",
|
|
15214
|
+
padding: "Z Z1"
|
|
15153
15215
|
},
|
|
15154
15216
|
Icon: {},
|
|
15155
|
-
|
|
15217
|
+
caption: {},
|
|
15156
15218
|
CountIndicator: {
|
|
15157
|
-
fontSize: "
|
|
15158
|
-
|
|
15159
|
-
|
|
15219
|
+
fontSize: "Y1",
|
|
15220
|
+
text: "19",
|
|
15221
|
+
margin: "- - - X1"
|
|
15160
15222
|
}
|
|
15161
15223
|
};
|
|
15162
15224
|
var IconTab = {
|
|
@@ -15165,27 +15227,25 @@ var IconTab = {
|
|
|
15165
15227
|
Span: null,
|
|
15166
15228
|
CountIndicator: {
|
|
15167
15229
|
position: "absolute",
|
|
15168
|
-
top: "-
|
|
15169
|
-
right: "-
|
|
15170
|
-
fontSize: "
|
|
15171
|
-
fontWeight: "500",
|
|
15172
|
-
padding: "X1",
|
|
15230
|
+
top: "-Y2",
|
|
15231
|
+
right: "-Y2",
|
|
15232
|
+
fontSize: "X",
|
|
15173
15233
|
text: "19"
|
|
15174
15234
|
}
|
|
15175
15235
|
};
|
|
15176
15236
|
|
|
15177
|
-
//
|
|
15237
|
+
// ../uikit/Steps/CheckSteps.js
|
|
15178
15238
|
var CheckStep = {
|
|
15179
15239
|
extend: Flex,
|
|
15180
15240
|
props: {
|
|
15181
15241
|
boxSize: "fit-content",
|
|
15182
15242
|
align: "center flex-start",
|
|
15183
|
-
gap: "
|
|
15243
|
+
gap: "Z1"
|
|
15184
15244
|
},
|
|
15185
15245
|
CheckIndicatorWithLabel: {
|
|
15186
15246
|
CheckIndicator: {
|
|
15187
15247
|
theme: "transparent",
|
|
15188
|
-
border: "
|
|
15248
|
+
border: "1.5px solid #1C1C1F",
|
|
15189
15249
|
".isActive": {
|
|
15190
15250
|
theme: "primary",
|
|
15191
15251
|
border: "none"
|
|
@@ -15194,12 +15254,11 @@ var CheckStep = {
|
|
|
15194
15254
|
},
|
|
15195
15255
|
ProgressLine: {
|
|
15196
15256
|
value: 0,
|
|
15197
|
-
height: "
|
|
15257
|
+
height: "V2",
|
|
15198
15258
|
minWidth: "E",
|
|
15199
15259
|
maxWidth: "E",
|
|
15200
|
-
"
|
|
15201
|
-
|
|
15202
|
-
}
|
|
15260
|
+
round: "D",
|
|
15261
|
+
".isActive": { value: 1 }
|
|
15203
15262
|
}
|
|
15204
15263
|
};
|
|
15205
15264
|
var CheckSteps = {
|
|
@@ -15207,7 +15266,7 @@ var CheckSteps = {
|
|
|
15207
15266
|
props: {
|
|
15208
15267
|
boxSize: "fit-content fit-content",
|
|
15209
15268
|
align: "center flex-start",
|
|
15210
|
-
gap: "
|
|
15269
|
+
gap: "Z1",
|
|
15211
15270
|
childProps: {
|
|
15212
15271
|
":last-child > progress": { display: "none" }
|
|
15213
15272
|
}
|
|
@@ -15237,21 +15296,18 @@ var CheckSteps = {
|
|
|
15237
15296
|
]
|
|
15238
15297
|
};
|
|
15239
15298
|
|
|
15240
|
-
//
|
|
15299
|
+
// ../uikit/Steps/RadioSteps.js
|
|
15241
15300
|
var RadioStep = {
|
|
15242
15301
|
extend: CheckStep,
|
|
15243
15302
|
CheckIndicatorWithLabel: null,
|
|
15244
15303
|
RadioIndicatorWithLabel: {
|
|
15245
15304
|
RadioIndicator: {
|
|
15246
|
-
theme: "
|
|
15247
|
-
|
|
15248
|
-
":after": {
|
|
15249
|
-
background: "transparent"
|
|
15250
|
-
},
|
|
15305
|
+
theme: "dialog",
|
|
15306
|
+
":after": {},
|
|
15251
15307
|
".isActive": {
|
|
15252
|
-
theme: "
|
|
15308
|
+
theme: "dialog",
|
|
15253
15309
|
border: "none",
|
|
15254
|
-
":after": {
|
|
15310
|
+
":after": { theme: "primary" }
|
|
15255
15311
|
}
|
|
15256
15312
|
}
|
|
15257
15313
|
},
|
|
@@ -15262,7 +15318,7 @@ var RadioSteps = {
|
|
|
15262
15318
|
props: {
|
|
15263
15319
|
boxSize: "fit-content fit-content",
|
|
15264
15320
|
align: "center flex-start",
|
|
15265
|
-
gap: "
|
|
15321
|
+
gap: "Z",
|
|
15266
15322
|
childProps: {
|
|
15267
15323
|
":last-child > progress": { display: "none" }
|
|
15268
15324
|
}
|
|
@@ -15292,7 +15348,7 @@ var RadioSteps = {
|
|
|
15292
15348
|
]
|
|
15293
15349
|
};
|
|
15294
15350
|
|
|
15295
|
-
//
|
|
15351
|
+
// ../uikit/Steps/LineSteps.js
|
|
15296
15352
|
var LineSteps = {
|
|
15297
15353
|
extend: Flex,
|
|
15298
15354
|
props: {
|
|
@@ -15303,7 +15359,7 @@ var LineSteps = {
|
|
|
15303
15359
|
extend: ProgressLine,
|
|
15304
15360
|
props: {
|
|
15305
15361
|
value: 1,
|
|
15306
|
-
height: "
|
|
15362
|
+
height: "X2",
|
|
15307
15363
|
minWidth: "F",
|
|
15308
15364
|
round: "X"
|
|
15309
15365
|
}
|
|
@@ -15318,25 +15374,22 @@ var LineStepsWithTitleParagraph = {
|
|
|
15318
15374
|
extend: Flex,
|
|
15319
15375
|
props: {
|
|
15320
15376
|
flow: "column",
|
|
15321
|
-
padding: "A1
|
|
15322
|
-
|
|
15323
|
-
round: "
|
|
15377
|
+
padding: "A A1",
|
|
15378
|
+
theme: "dialog",
|
|
15379
|
+
round: "A1",
|
|
15324
15380
|
boxSize: "fit-content",
|
|
15325
|
-
gap: "
|
|
15381
|
+
gap: "A1"
|
|
15326
15382
|
},
|
|
15327
15383
|
TitleParagraph: {
|
|
15328
|
-
gap: "
|
|
15384
|
+
gap: "Y1",
|
|
15329
15385
|
Title: {
|
|
15330
|
-
|
|
15331
|
-
|
|
15332
|
-
fontSize: "B"
|
|
15333
|
-
}
|
|
15386
|
+
text: "Symbols",
|
|
15387
|
+
fontSize: "D1"
|
|
15334
15388
|
},
|
|
15335
15389
|
Paragraph: {
|
|
15336
|
-
|
|
15337
|
-
|
|
15338
|
-
|
|
15339
|
-
}
|
|
15390
|
+
text: "The easiest way to build your own website.",
|
|
15391
|
+
fontSize: "Z1",
|
|
15392
|
+
color: "gray4"
|
|
15340
15393
|
}
|
|
15341
15394
|
},
|
|
15342
15395
|
LineSteps: {
|
|
@@ -15347,17 +15400,18 @@ var LineStepsWithTitleParagraph = {
|
|
|
15347
15400
|
}
|
|
15348
15401
|
};
|
|
15349
15402
|
|
|
15350
|
-
//
|
|
15403
|
+
// ../uikit/ParagraphButton/index.js
|
|
15351
15404
|
var ParagraphButton = {
|
|
15352
15405
|
extend: Flex,
|
|
15353
15406
|
props: {
|
|
15354
15407
|
alignItems: "center",
|
|
15355
|
-
gap: "Y2"
|
|
15408
|
+
gap: "Y2",
|
|
15409
|
+
fontSize: "Y1"
|
|
15356
15410
|
},
|
|
15357
15411
|
P: {
|
|
15358
15412
|
props: {
|
|
15359
15413
|
text: "Didn't get the code?",
|
|
15360
|
-
color: "
|
|
15414
|
+
color: "gray4",
|
|
15361
15415
|
margin: "0"
|
|
15362
15416
|
}
|
|
15363
15417
|
},
|
|
@@ -15366,7 +15420,9 @@ var ParagraphButton = {
|
|
|
15366
15420
|
padding: "0",
|
|
15367
15421
|
background: "transparent",
|
|
15368
15422
|
color: "white",
|
|
15369
|
-
textDecoration: "underline"
|
|
15423
|
+
textDecoration: "underline",
|
|
15424
|
+
fontWeight: "500",
|
|
15425
|
+
Icon: { display: "none" }
|
|
15370
15426
|
}
|
|
15371
15427
|
};
|
|
15372
15428
|
var ParagraphButtonWithCheckbox = {
|
|
@@ -15380,44 +15436,42 @@ var ParagraphButtonWithCheckbox = {
|
|
|
15380
15436
|
tag: "div",
|
|
15381
15437
|
props: {
|
|
15382
15438
|
Input: {},
|
|
15383
|
-
Flex: {
|
|
15384
|
-
fontSize: "A1"
|
|
15385
|
-
}
|
|
15439
|
+
Flex: { fontSize: "A" }
|
|
15386
15440
|
}
|
|
15387
15441
|
},
|
|
15388
15442
|
ParagraphButton: {
|
|
15389
|
-
|
|
15390
|
-
|
|
15443
|
+
P: { text: "You agree to" },
|
|
15444
|
+
Button: { text: "privacy policy" }
|
|
15391
15445
|
}
|
|
15392
15446
|
};
|
|
15393
15447
|
|
|
15394
|
-
//
|
|
15448
|
+
// ../uikit/SocialLink/index.js
|
|
15395
15449
|
var SocialLink = {
|
|
15396
15450
|
extend: [Link, IconText],
|
|
15397
15451
|
props: {
|
|
15398
15452
|
fontWeight: "500",
|
|
15453
|
+
text: "Continue with Twitch",
|
|
15454
|
+
fontSize: "Z1",
|
|
15399
15455
|
gap: "Z",
|
|
15400
15456
|
boxSize: "fit-content",
|
|
15401
15457
|
padding: "A A2",
|
|
15402
15458
|
background: "gray3",
|
|
15403
|
-
round: "
|
|
15459
|
+
round: "Z1",
|
|
15404
15460
|
maxHeight: `${48 / 16}em`,
|
|
15405
15461
|
cursor: "pointer",
|
|
15406
15462
|
Icon: {
|
|
15407
15463
|
name: "twitch",
|
|
15408
15464
|
boxSize: "A2"
|
|
15409
|
-
}
|
|
15410
|
-
text: "Continue with Twitch"
|
|
15465
|
+
}
|
|
15411
15466
|
}
|
|
15412
15467
|
};
|
|
15413
15468
|
|
|
15414
|
-
//
|
|
15469
|
+
// ../uikit/Dialog/index.js
|
|
15415
15470
|
var Dialog = {
|
|
15416
15471
|
extend: Flex,
|
|
15417
15472
|
props: {
|
|
15418
15473
|
theme: "dialog",
|
|
15419
|
-
round: "Z2"
|
|
15420
|
-
padding: "- Z - -"
|
|
15474
|
+
round: "Z2"
|
|
15421
15475
|
}
|
|
15422
15476
|
};
|
|
15423
15477
|
var DialogFooter = {
|
|
@@ -15459,119 +15513,117 @@ var DialogFooter = {
|
|
|
15459
15513
|
}
|
|
15460
15514
|
};
|
|
15461
15515
|
|
|
15462
|
-
//
|
|
15516
|
+
// ../uikit/Modal/Modal.js
|
|
15463
15517
|
var Modal = {
|
|
15464
15518
|
extend: Dialog,
|
|
15465
15519
|
props: {
|
|
15466
15520
|
flow: "column",
|
|
15467
|
-
boxSize: "fit-content
|
|
15468
|
-
|
|
15469
|
-
|
|
15470
|
-
|
|
15521
|
+
boxSize: "fit-content",
|
|
15522
|
+
minWidth: "G3",
|
|
15523
|
+
position: "relative",
|
|
15524
|
+
padding: "Z1 Z2",
|
|
15525
|
+
round: "A1"
|
|
15471
15526
|
},
|
|
15472
15527
|
Header: {
|
|
15473
|
-
extend:
|
|
15528
|
+
extend: TitleParagraph,
|
|
15529
|
+
props: {
|
|
15530
|
+
minWidth: "100%",
|
|
15531
|
+
gap: "A"
|
|
15532
|
+
},
|
|
15474
15533
|
Title: {
|
|
15475
|
-
|
|
15534
|
+
props: { align: "center space-between" },
|
|
15535
|
+
caption: {
|
|
15476
15536
|
props: {
|
|
15477
|
-
|
|
15478
|
-
|
|
15537
|
+
text: "Title",
|
|
15538
|
+
fontSize: "D",
|
|
15539
|
+
padding: "W2 W2 - W2"
|
|
15479
15540
|
}
|
|
15480
15541
|
},
|
|
15481
|
-
|
|
15542
|
+
x: {
|
|
15543
|
+
extend: Button,
|
|
15544
|
+
props: {
|
|
15545
|
+
icon: "x",
|
|
15546
|
+
fontSize: "B2",
|
|
15547
|
+
boxSize: "fit-content",
|
|
15548
|
+
theme: "transparent",
|
|
15549
|
+
padding: "0"
|
|
15550
|
+
}
|
|
15551
|
+
}
|
|
15482
15552
|
},
|
|
15483
15553
|
Paragraph: {
|
|
15484
|
-
|
|
15554
|
+
props: {
|
|
15555
|
+
fontSize: "Z",
|
|
15556
|
+
color: "gray4",
|
|
15557
|
+
padding: "- Y"
|
|
15558
|
+
}
|
|
15485
15559
|
}
|
|
15486
|
-
}
|
|
15487
|
-
Content: { extend: Flex },
|
|
15488
|
-
Footer: { extend: Flex }
|
|
15560
|
+
}
|
|
15489
15561
|
};
|
|
15490
15562
|
|
|
15491
|
-
//
|
|
15563
|
+
// ../uikit/Modal/CompleteProcess.js
|
|
15492
15564
|
var CompleteProcess = {
|
|
15493
15565
|
extend: Modal,
|
|
15494
15566
|
props: {
|
|
15495
|
-
|
|
15496
|
-
gap: "
|
|
15567
|
+
alignItems: "center",
|
|
15568
|
+
gap: "B",
|
|
15569
|
+
padding: "A A A+V A"
|
|
15497
15570
|
},
|
|
15498
15571
|
Header: {
|
|
15499
15572
|
Title: {
|
|
15500
|
-
|
|
15501
|
-
|
|
15502
|
-
props: {
|
|
15503
|
-
margin: "- - - auto"
|
|
15504
|
-
}
|
|
15505
|
-
}
|
|
15573
|
+
caption: null,
|
|
15574
|
+
x: { props: { margin: "- - - auto" } }
|
|
15506
15575
|
},
|
|
15507
15576
|
Paragraph: null
|
|
15508
15577
|
},
|
|
15509
|
-
|
|
15510
|
-
|
|
15511
|
-
|
|
15512
|
-
|
|
15513
|
-
|
|
15514
|
-
|
|
15515
|
-
|
|
15516
|
-
fontSize: "G"
|
|
15578
|
+
SuccessIndicator: { fontSize: "F2" },
|
|
15579
|
+
TitleParagraph: {
|
|
15580
|
+
alignItems: "center",
|
|
15581
|
+
gap: "Y",
|
|
15582
|
+
Title: {
|
|
15583
|
+
text: "Reset complete!",
|
|
15584
|
+
fontSize: "D1"
|
|
15517
15585
|
},
|
|
15518
|
-
|
|
15519
|
-
|
|
15520
|
-
|
|
15521
|
-
|
|
15522
|
-
},
|
|
15523
|
-
Title: {
|
|
15524
|
-
h5: {
|
|
15525
|
-
props: {
|
|
15526
|
-
text: "Reset complete!",
|
|
15527
|
-
fontSize: "B",
|
|
15528
|
-
fontWeight: "700"
|
|
15529
|
-
}
|
|
15530
|
-
}
|
|
15531
|
-
},
|
|
15532
|
-
Paragraph: {
|
|
15533
|
-
p: {
|
|
15534
|
-
props: {
|
|
15535
|
-
text: "Your request has been approved!",
|
|
15536
|
-
fontSize: "Z"
|
|
15537
|
-
}
|
|
15538
|
-
}
|
|
15539
|
-
}
|
|
15586
|
+
Paragraph: {
|
|
15587
|
+
text: "Your request has been approved!",
|
|
15588
|
+
fontSize: "Z",
|
|
15589
|
+
color: "gray2"
|
|
15540
15590
|
}
|
|
15541
15591
|
},
|
|
15542
|
-
|
|
15543
|
-
|
|
15544
|
-
|
|
15545
|
-
|
|
15592
|
+
CommonButton: {
|
|
15593
|
+
minWidth: "100%",
|
|
15594
|
+
margin: "Y - - -",
|
|
15595
|
+
caption: {
|
|
15596
|
+
text: "Done",
|
|
15546
15597
|
fontWeight: "500"
|
|
15547
15598
|
}
|
|
15548
15599
|
}
|
|
15549
15600
|
};
|
|
15550
15601
|
|
|
15551
|
-
//
|
|
15602
|
+
// ../uikit/Modal/Message.js
|
|
15552
15603
|
var Message = {
|
|
15553
15604
|
extend: Modal,
|
|
15554
15605
|
props: {
|
|
15555
15606
|
maxWidth: "G3",
|
|
15556
|
-
|
|
15607
|
+
padding: "Z1 Z2 Z2 Z2"
|
|
15557
15608
|
},
|
|
15558
15609
|
Header: {
|
|
15559
|
-
|
|
15560
|
-
|
|
15610
|
+
Title: {
|
|
15611
|
+
caption: {
|
|
15612
|
+
props: { text: "Message", fontSize: "C2" }
|
|
15613
|
+
},
|
|
15614
|
+
x: {
|
|
15615
|
+
props: { padding: "V2" }
|
|
15616
|
+
}
|
|
15617
|
+
},
|
|
15561
15618
|
Paragraph: {
|
|
15562
|
-
|
|
15563
|
-
|
|
15564
|
-
text: "Yes. If you change your mind and no longer wish to keep your iPhone, you have the option to return it to us. The returned iPhone must be in good condition and in the original packaging, which contains all accessories, manuals and instructions. Returns are subject to Apple\u2019s Sales and Refunds Policy.",
|
|
15565
|
-
lineHeight: "1.4em"
|
|
15566
|
-
}
|
|
15619
|
+
props: {
|
|
15620
|
+
text: "Yes. If you change your mind and no longer wish to keep your iPhone, you have the option to return it to us. The returned iPhone must be in good condition and in the original packaging, which contains all accessories, manuals and instructions. Returns are subject to Apple\u2019s Sales and Refunds Policy."
|
|
15567
15621
|
}
|
|
15568
15622
|
}
|
|
15569
|
-
}
|
|
15570
|
-
Content: null,
|
|
15571
|
-
Footer: null
|
|
15623
|
+
}
|
|
15572
15624
|
};
|
|
15573
15625
|
|
|
15574
|
-
//
|
|
15626
|
+
// ../uikit/Modal/Pricing.js
|
|
15575
15627
|
var Pricing = {
|
|
15576
15628
|
extend: Modal,
|
|
15577
15629
|
props: {
|
|
@@ -15629,105 +15681,12 @@ var Pricing = {
|
|
|
15629
15681
|
}
|
|
15630
15682
|
};
|
|
15631
15683
|
|
|
15632
|
-
//
|
|
15633
|
-
var NUMBERS = [null, null, null, null];
|
|
15634
|
-
var VerificationCode = {
|
|
15635
|
-
extend: Modal,
|
|
15636
|
-
props: {
|
|
15637
|
-
maxWidth: "G3",
|
|
15638
|
-
gap: "A2"
|
|
15639
|
-
},
|
|
15640
|
-
state: { value: NUMBERS },
|
|
15641
|
-
Header: {
|
|
15642
|
-
props: { gap: "A" },
|
|
15643
|
-
Title: { h5: { text: "Verify your email" } },
|
|
15644
|
-
Paragraph: {
|
|
15645
|
-
p: {
|
|
15646
|
-
props: {
|
|
15647
|
-
text: "Verification code has been sent to you. Enter the code below.",
|
|
15648
|
-
lineHeight: "1.5em"
|
|
15649
|
-
}
|
|
15650
|
-
}
|
|
15651
|
-
}
|
|
15652
|
-
},
|
|
15653
|
-
Content: {
|
|
15654
|
-
props: {
|
|
15655
|
-
flow: "column",
|
|
15656
|
-
gap: "A2"
|
|
15657
|
-
},
|
|
15658
|
-
Fields: {
|
|
15659
|
-
extend: Flex,
|
|
15660
|
-
props: {
|
|
15661
|
-
justifyContent: "space-between",
|
|
15662
|
-
flex: "1"
|
|
15663
|
-
},
|
|
15664
|
-
childExtend: {
|
|
15665
|
-
extend: NumberField,
|
|
15666
|
-
NumberInput: {
|
|
15667
|
-
props: ({ parent, state }) => ({
|
|
15668
|
-
...NumberField.NumberInput.props,
|
|
15669
|
-
value: state.value[parent.key] || ""
|
|
15670
|
-
}),
|
|
15671
|
-
on: {
|
|
15672
|
-
keydown: (event, { node: node2 }) => {
|
|
15673
|
-
const { value: value2 } = node2;
|
|
15674
|
-
if (value2.length > 1)
|
|
15675
|
-
return false;
|
|
15676
|
-
},
|
|
15677
|
-
keyup: (event, { parent, state }) => {
|
|
15678
|
-
const { target, keyCode } = event;
|
|
15679
|
-
const { value: value2 } = target;
|
|
15680
|
-
const next2 = parent.nextElement();
|
|
15681
|
-
const previous = parent.previousElement();
|
|
15682
|
-
const isNumber = keyCode >= 48 && keyCode <= 57 || keyCode >= 96 && keyCode <= 105;
|
|
15683
|
-
const isBackspace = event.keyCode === 8 || event.keyCode === 46;
|
|
15684
|
-
target.select();
|
|
15685
|
-
if (isNumber && value2.length && next2)
|
|
15686
|
-
next2.NumberInput.node.focus();
|
|
15687
|
-
if ((!value2.length || isBackspace) && previous)
|
|
15688
|
-
previous.NumberInput.node.focus();
|
|
15689
|
-
state.value[parent.key] = value2;
|
|
15690
|
-
},
|
|
15691
|
-
paste: (event, { state }) => {
|
|
15692
|
-
event.preventDefault();
|
|
15693
|
-
const paste = (event.clipboardData || window.clipboardData).getData("text");
|
|
15694
|
-
if (!paste)
|
|
15695
|
-
return;
|
|
15696
|
-
const value2 = paste.split("");
|
|
15697
|
-
state.update({ value: value2 }, { overwrite: "shallow" });
|
|
15698
|
-
}
|
|
15699
|
-
}
|
|
15700
|
-
}
|
|
15701
|
-
},
|
|
15702
|
-
...[{}, {}, {}, {}]
|
|
15703
|
-
},
|
|
15704
|
-
ParagraphButton: {
|
|
15705
|
-
extend: ParagraphButton,
|
|
15706
|
-
props: { padding: "- - - Y" }
|
|
15707
|
-
}
|
|
15708
|
-
},
|
|
15709
|
-
Footer: {
|
|
15710
|
-
props: {
|
|
15711
|
-
justifyContent: "flex-end",
|
|
15712
|
-
padding: "Y2 - - -"
|
|
15713
|
-
},
|
|
15714
|
-
Buttons: {
|
|
15715
|
-
extend: CancelConfirmButtons,
|
|
15716
|
-
props: { childProps: { ":first-child": { border: "none" } } },
|
|
15717
|
-
...[
|
|
15718
|
-
{ Caption: { text: "Cancel" } },
|
|
15719
|
-
{ Caption: { text: "Verify" } }
|
|
15720
|
-
]
|
|
15721
|
-
}
|
|
15722
|
-
}
|
|
15723
|
-
};
|
|
15724
|
-
|
|
15725
|
-
// ../../uikit/domql/List/List.js
|
|
15684
|
+
// ../uikit/List/List.js
|
|
15726
15685
|
var List = {
|
|
15727
15686
|
props: {
|
|
15728
15687
|
position: "relative",
|
|
15729
15688
|
overflow: "hidden",
|
|
15730
|
-
round: "
|
|
15689
|
+
round: "A",
|
|
15731
15690
|
minWidth: "F1",
|
|
15732
15691
|
theme: "dialog",
|
|
15733
15692
|
":before, &:after": {
|
|
@@ -15759,8 +15718,10 @@ var List = {
|
|
|
15759
15718
|
padding: "Z1 A1",
|
|
15760
15719
|
position: "relative",
|
|
15761
15720
|
cursor: "pointer",
|
|
15721
|
+
fontSize: "A1",
|
|
15722
|
+
color: "gray4",
|
|
15762
15723
|
":hover": {
|
|
15763
|
-
background: "gray .92 +
|
|
15724
|
+
background: "gray .92 +4"
|
|
15764
15725
|
},
|
|
15765
15726
|
childProps: { position: "relative" }
|
|
15766
15727
|
}
|
|
@@ -15789,14 +15750,13 @@ var ListTemplate = {
|
|
|
15789
15750
|
}
|
|
15790
15751
|
};
|
|
15791
15752
|
|
|
15792
|
-
//
|
|
15753
|
+
// ../uikit/List/ListWithTitle.js
|
|
15793
15754
|
var ListWithTitle = {
|
|
15794
15755
|
extend: Flex,
|
|
15795
15756
|
props: {
|
|
15796
15757
|
flow: "column",
|
|
15797
|
-
background: "gray",
|
|
15798
15758
|
overflow: "hidden",
|
|
15799
|
-
round: "
|
|
15759
|
+
round: "A",
|
|
15800
15760
|
maxWidth: "F1"
|
|
15801
15761
|
},
|
|
15802
15762
|
Title: {
|
|
@@ -15817,8 +15777,8 @@ var ListWithTitle = {
|
|
|
15817
15777
|
extend: List,
|
|
15818
15778
|
props: {
|
|
15819
15779
|
round: "0",
|
|
15820
|
-
background: "transparent",
|
|
15821
15780
|
minWidth: "100%"
|
|
15781
|
+
// theme: 'tertiary'
|
|
15822
15782
|
}
|
|
15823
15783
|
}
|
|
15824
15784
|
};
|
|
@@ -15838,7 +15798,7 @@ var ListWithTitleTemplate = {
|
|
|
15838
15798
|
}
|
|
15839
15799
|
};
|
|
15840
15800
|
|
|
15841
|
-
//
|
|
15801
|
+
// ../uikit/List/GroupList.js
|
|
15842
15802
|
var GroupList = {
|
|
15843
15803
|
extend: Flex,
|
|
15844
15804
|
props: {
|
|
@@ -15846,28 +15806,38 @@ var GroupList = {
|
|
|
15846
15806
|
overflow: "hidden",
|
|
15847
15807
|
theme: "dialog",
|
|
15848
15808
|
maxHeight: "H",
|
|
15849
|
-
round: "
|
|
15809
|
+
round: "A",
|
|
15850
15810
|
maxWidth: "G"
|
|
15851
15811
|
},
|
|
15852
15812
|
Header: {
|
|
15853
15813
|
extend: Flex,
|
|
15854
15814
|
props: {
|
|
15855
|
-
|
|
15856
|
-
|
|
15857
|
-
|
|
15858
|
-
|
|
15859
|
-
|
|
15860
|
-
fontSize: "A",
|
|
15861
|
-
fontWeight: "500",
|
|
15862
|
-
color: "gray4"
|
|
15863
|
-
}
|
|
15815
|
+
text: "Header",
|
|
15816
|
+
padding: "Z2 A",
|
|
15817
|
+
fontSize: "A2",
|
|
15818
|
+
fontWeight: "500",
|
|
15819
|
+
color: "white"
|
|
15864
15820
|
}
|
|
15865
15821
|
},
|
|
15866
15822
|
Groups: {
|
|
15867
15823
|
props: {
|
|
15868
|
-
|
|
15869
|
-
|
|
15870
|
-
|
|
15824
|
+
position: "relative",
|
|
15825
|
+
":before, &:after": {
|
|
15826
|
+
content: '""',
|
|
15827
|
+
position: "absolute",
|
|
15828
|
+
boxSize: "A2 100%",
|
|
15829
|
+
zIndex: "2",
|
|
15830
|
+
left: "0",
|
|
15831
|
+
pointerEvents: "none"
|
|
15832
|
+
},
|
|
15833
|
+
":before": {
|
|
15834
|
+
top: "0",
|
|
15835
|
+
background: "linear-gradient(to bottom, var(--theme-dialog-dark-background) 0%, transparent 100%)"
|
|
15836
|
+
},
|
|
15837
|
+
":after": {
|
|
15838
|
+
bottom: "0",
|
|
15839
|
+
background: "linear-gradient(to top, var(--theme-dialog-dark-background) 0%, transparent 100%)"
|
|
15840
|
+
}
|
|
15871
15841
|
},
|
|
15872
15842
|
Flex: {
|
|
15873
15843
|
extend: Flex,
|
|
@@ -15885,10 +15855,11 @@ var GroupList = {
|
|
|
15885
15855
|
overflow: "visible",
|
|
15886
15856
|
background: "transparent"
|
|
15887
15857
|
},
|
|
15888
|
-
Title: {},
|
|
15858
|
+
Title: { props: { theme: "transparent" } },
|
|
15889
15859
|
List: {
|
|
15890
15860
|
props: {
|
|
15891
15861
|
overflow: "visible",
|
|
15862
|
+
theme: "transparent",
|
|
15892
15863
|
":before": { display: "none" },
|
|
15893
15864
|
":after": { display: "none" }
|
|
15894
15865
|
},
|
|
@@ -15971,26 +15942,27 @@ var GroupListTemplate = {
|
|
|
15971
15942
|
}
|
|
15972
15943
|
};
|
|
15973
15944
|
|
|
15974
|
-
//
|
|
15945
|
+
// ../uikit/List/GroupListWithSearch.js
|
|
15975
15946
|
var GroupListWithSearch = {
|
|
15976
15947
|
extend: GroupList,
|
|
15977
|
-
props: {
|
|
15948
|
+
props: {
|
|
15949
|
+
maxWidth: "G1"
|
|
15950
|
+
},
|
|
15978
15951
|
Header: {},
|
|
15979
15952
|
SearchContainer: {
|
|
15980
15953
|
extend: Flex,
|
|
15981
15954
|
props: {
|
|
15982
|
-
padding: "
|
|
15955
|
+
padding: "0 Z1 Y2 Z1",
|
|
15956
|
+
background: "transparent"
|
|
15983
15957
|
},
|
|
15984
15958
|
Search: {
|
|
15985
15959
|
extend: Search,
|
|
15986
15960
|
props: {
|
|
15987
15961
|
maxWidth: "100%",
|
|
15988
15962
|
minWidth: "100%",
|
|
15989
|
-
minHeight: "C
|
|
15990
|
-
|
|
15991
|
-
|
|
15992
|
-
border: "none",
|
|
15993
|
-
background: "black .25"
|
|
15963
|
+
minHeight: "C",
|
|
15964
|
+
theme: "transparent",
|
|
15965
|
+
round: "Z1"
|
|
15994
15966
|
},
|
|
15995
15967
|
Icon: {
|
|
15996
15968
|
props: {
|
|
@@ -16022,16 +15994,6 @@ var GroupListWithSearchTemplate = {
|
|
|
16022
15994
|
SearchContainer: {},
|
|
16023
15995
|
Groups: {
|
|
16024
15996
|
Flex: {
|
|
16025
|
-
props: {
|
|
16026
|
-
childProps: {
|
|
16027
|
-
Title: { padding: "A A A A2" },
|
|
16028
|
-
List: {
|
|
16029
|
-
Flex: {
|
|
16030
|
-
childProps: { padding: "Z1 A1 Z1 B" }
|
|
16031
|
-
}
|
|
16032
|
-
}
|
|
16033
|
-
}
|
|
16034
|
-
},
|
|
16035
15997
|
...[
|
|
16036
15998
|
{
|
|
16037
15999
|
Title: null,
|
|
@@ -16075,7 +16037,7 @@ var GroupListWithSearchTemplate = {
|
|
|
16075
16037
|
}
|
|
16076
16038
|
};
|
|
16077
16039
|
|
|
16078
|
-
//
|
|
16040
|
+
// ../uikit/TimePicker/TimePickerItem.js
|
|
16079
16041
|
var props2 = {
|
|
16080
16042
|
align: "center center",
|
|
16081
16043
|
flow: "column",
|
|
@@ -16116,7 +16078,7 @@ var TimePickerItem = {
|
|
|
16116
16078
|
Button_minus: { icon: "minus" }
|
|
16117
16079
|
};
|
|
16118
16080
|
|
|
16119
|
-
//
|
|
16081
|
+
// ../uikit/TimePicker/TimeSwitcher.js
|
|
16120
16082
|
var props3 = {
|
|
16121
16083
|
boxSize: "C B2",
|
|
16122
16084
|
flow: "column",
|
|
@@ -16153,7 +16115,7 @@ var TimeSwitcher = {
|
|
|
16153
16115
|
pm: { text: "pm" }
|
|
16154
16116
|
};
|
|
16155
16117
|
|
|
16156
|
-
//
|
|
16118
|
+
// ../uikit/TimePicker/index.js
|
|
16157
16119
|
var TimePicker = {
|
|
16158
16120
|
extend: [Dialog, Flex],
|
|
16159
16121
|
state: {
|
|
@@ -16219,7 +16181,7 @@ var TimePicker = {
|
|
|
16219
16181
|
}
|
|
16220
16182
|
};
|
|
16221
16183
|
|
|
16222
|
-
//
|
|
16184
|
+
// ../uikit/Dropdown/index.js
|
|
16223
16185
|
var DropdownList = {
|
|
16224
16186
|
extend: Flex,
|
|
16225
16187
|
props: {
|
|
@@ -16280,309 +16242,380 @@ var DropdownParent = {
|
|
|
16280
16242
|
}
|
|
16281
16243
|
};
|
|
16282
16244
|
|
|
16283
|
-
//
|
|
16245
|
+
// ../uikit/Form/CommonForm.js
|
|
16284
16246
|
var CommonForm = {
|
|
16285
|
-
extend:
|
|
16286
|
-
tag: "form",
|
|
16247
|
+
extend: Modal,
|
|
16287
16248
|
props: {
|
|
16288
|
-
gap: "
|
|
16289
|
-
|
|
16290
|
-
|
|
16291
|
-
width: "100%"
|
|
16249
|
+
gap: "B",
|
|
16250
|
+
boxSizing: "border-box",
|
|
16251
|
+
padding: "A+V A"
|
|
16292
16252
|
},
|
|
16293
|
-
|
|
16294
|
-
|
|
16253
|
+
Header: {
|
|
16254
|
+
props: { gap: "Z" },
|
|
16255
|
+
Title: {
|
|
16256
|
+
caption: { props: { padding: "Y W2 - W2" } },
|
|
16257
|
+
x: {
|
|
16258
|
+
props: {
|
|
16259
|
+
margin: "-Y+V - - -",
|
|
16260
|
+
fontSize: "C"
|
|
16261
|
+
}
|
|
16262
|
+
}
|
|
16263
|
+
}
|
|
16264
|
+
},
|
|
16265
|
+
Form: {
|
|
16266
|
+
extend: Flex,
|
|
16295
16267
|
props: {
|
|
16296
|
-
|
|
16297
|
-
|
|
16298
|
-
|
|
16299
|
-
|
|
16268
|
+
flow: "column",
|
|
16269
|
+
"> div ~ button": { padding: "Z2+V1 -" },
|
|
16270
|
+
"> div ~ div:last-child > button": { padding: "Z2+V1 B" },
|
|
16271
|
+
"> div ~ div:last-child > button:first-child": { padding: "Z2+V Z" }
|
|
16272
|
+
},
|
|
16273
|
+
Fields: {
|
|
16274
|
+
extend: Grid,
|
|
16275
|
+
props: {
|
|
16276
|
+
columnGap: "A",
|
|
16277
|
+
rowGap: "A1"
|
|
16300
16278
|
},
|
|
16301
|
-
|
|
16279
|
+
childExtend: {
|
|
16280
|
+
extend: FieldWithTitle,
|
|
16281
|
+
props: {
|
|
16282
|
+
width: "100%",
|
|
16283
|
+
Field: { minWidth: "100%" }
|
|
16284
|
+
}
|
|
16285
|
+
}
|
|
16302
16286
|
},
|
|
16303
|
-
|
|
16304
|
-
|
|
16305
|
-
|
|
16287
|
+
Submit: {
|
|
16288
|
+
props: {
|
|
16289
|
+
minWidth: "100%",
|
|
16290
|
+
margin: "C - - -"
|
|
16291
|
+
}
|
|
16306
16292
|
}
|
|
16307
16293
|
}
|
|
16308
16294
|
};
|
|
16309
16295
|
|
|
16310
|
-
//
|
|
16311
|
-
var
|
|
16312
|
-
extend:
|
|
16313
|
-
|
|
16314
|
-
minWidth: "H+B",
|
|
16315
|
-
gap: "B1",
|
|
16316
|
-
Content: {}
|
|
16317
|
-
},
|
|
16296
|
+
// ../uikit/Form/VerificationCode.js
|
|
16297
|
+
var VerificationCode = {
|
|
16298
|
+
extend: CommonForm,
|
|
16299
|
+
// state: { value: NUMBERS },
|
|
16318
16300
|
Header: {
|
|
16319
|
-
props: { gap: "
|
|
16320
|
-
Title: {
|
|
16321
|
-
Paragraph: {
|
|
16322
|
-
|
|
16323
|
-
|
|
16324
|
-
|
|
16325
|
-
props: { flow: "column" },
|
|
16326
|
-
...[{
|
|
16327
|
-
Title: { text: "Old password" },
|
|
16328
|
-
Field: {},
|
|
16329
|
-
Hint: null
|
|
16330
|
-
}, {
|
|
16331
|
-
Title: { text: "New password" },
|
|
16332
|
-
Field: {},
|
|
16333
|
-
Hint: {
|
|
16334
|
-
Icon: { props: { name: "info" } },
|
|
16335
|
-
text: "8 character minimum"
|
|
16336
|
-
}
|
|
16337
|
-
}, {
|
|
16338
|
-
Title: { text: "Confirm new password" },
|
|
16339
|
-
Field: {},
|
|
16340
|
-
Hint: {
|
|
16341
|
-
Icon: { props: { name: "info" } },
|
|
16342
|
-
text: "8 character minimum"
|
|
16301
|
+
props: { gap: "A" },
|
|
16302
|
+
Title: { caption: { props: { text: "Verify your email" } } },
|
|
16303
|
+
Paragraph: {
|
|
16304
|
+
props: {
|
|
16305
|
+
text: "Verification code has been sent to you. Enter the code below.",
|
|
16306
|
+
maxWidth: "G1+Y"
|
|
16343
16307
|
}
|
|
16344
|
-
}
|
|
16308
|
+
}
|
|
16345
16309
|
},
|
|
16346
|
-
|
|
16347
|
-
props: {
|
|
16348
|
-
|
|
16310
|
+
Form: {
|
|
16311
|
+
props: {
|
|
16312
|
+
"> div ~ div:last-child > button": { padding: "Z1+V1 B+V" },
|
|
16313
|
+
"> div ~ div:last-child > button:first-child": { padding: "Z1+V1 Y1" }
|
|
16314
|
+
},
|
|
16315
|
+
Fields: {
|
|
16316
|
+
props: {
|
|
16317
|
+
display: "flex",
|
|
16318
|
+
columnGap: "A",
|
|
16319
|
+
childProps: { flex: "1" }
|
|
16320
|
+
},
|
|
16321
|
+
childExtend: NumberInput,
|
|
16322
|
+
...[{}, {}, {}, {}]
|
|
16323
|
+
},
|
|
16324
|
+
ParagraphButton: { padding: "Z1 Z2 - Z2" },
|
|
16325
|
+
Submit: {
|
|
16349
16326
|
extend: CancelConfirmButtons,
|
|
16350
|
-
props: {
|
|
16327
|
+
props: { justifyContent: "flex-end" },
|
|
16351
16328
|
...[
|
|
16352
|
-
{
|
|
16353
|
-
{
|
|
16329
|
+
{ caption: { props: { text: "Cancel" } } },
|
|
16330
|
+
{ caption: { props: { text: "Verify" } } }
|
|
16354
16331
|
]
|
|
16355
16332
|
}
|
|
16356
16333
|
}
|
|
16357
|
-
|
|
16358
|
-
|
|
16359
|
-
//
|
|
16360
|
-
|
|
16361
|
-
|
|
16362
|
-
|
|
16363
|
-
|
|
16364
|
-
|
|
16365
|
-
|
|
16366
|
-
|
|
16367
|
-
},
|
|
16334
|
+
// Form: {
|
|
16335
|
+
// extend: Flex,
|
|
16336
|
+
// props: { flow: 'column' },
|
|
16337
|
+
// NumberFields: {
|
|
16338
|
+
// justifyContent: 'space-between',
|
|
16339
|
+
// gap: 'A1',
|
|
16340
|
+
// childProps: {
|
|
16341
|
+
// round: 'Y1',
|
|
16342
|
+
// flex: '1'
|
|
16343
|
+
// }
|
|
16344
|
+
// },
|
|
16345
|
+
// ParagraphButton: {
|
|
16346
|
+
// fontSize: 'Y2',
|
|
16347
|
+
// padding: 'A - - Z1'
|
|
16348
|
+
// },
|
|
16349
|
+
// Buttons: {
|
|
16350
|
+
// extend: CancelConfirmButtons,
|
|
16351
|
+
// props: {
|
|
16352
|
+
// minWidth: '100%',
|
|
16353
|
+
// justifyContent: 'flex-end',
|
|
16354
|
+
// margin: 'C - - -'
|
|
16355
|
+
// },
|
|
16356
|
+
// ...[
|
|
16357
|
+
// { caption: { text: 'Cancel' } },
|
|
16358
|
+
// { caption: { text: 'Verify' } }
|
|
16359
|
+
// ]
|
|
16360
|
+
// }
|
|
16361
|
+
// }
|
|
16362
|
+
// Header: {
|
|
16363
|
+
// props: { gap: 'A' },
|
|
16364
|
+
// Title: { h5: { text: 'Verify your email' } },
|
|
16365
|
+
// Paragraph: {
|
|
16366
|
+
// p: {
|
|
16367
|
+
// props: {
|
|
16368
|
+
// text: 'Verification code has been sent to you. Enter the code below.',
|
|
16369
|
+
// lineHeight: '1.5em'
|
|
16370
|
+
// }
|
|
16371
|
+
// }
|
|
16372
|
+
// }
|
|
16373
|
+
// },
|
|
16374
|
+
// Content: {
|
|
16375
|
+
// props: {
|
|
16376
|
+
// flow: 'column',
|
|
16377
|
+
// gap: 'A2'
|
|
16378
|
+
// },
|
|
16379
|
+
// Fields: {
|
|
16380
|
+
// extend: Flex,
|
|
16381
|
+
// props: {
|
|
16382
|
+
// justifyContent: 'space-between',
|
|
16383
|
+
// flex: '1'
|
|
16384
|
+
// },
|
|
16385
|
+
// // childExtend: {
|
|
16386
|
+
// // // extend: NumberField,
|
|
16387
|
+
// // NumberInput: {
|
|
16388
|
+
// // props: ({ parent, state }) => ({
|
|
16389
|
+
// // ...NumberField.NumberInput.props,
|
|
16390
|
+
// // value: state.value[parent.key] || ''
|
|
16391
|
+
// // }),
|
|
16392
|
+
// // on: {
|
|
16393
|
+
// // keydown: (event, { node }) => {
|
|
16394
|
+
// // const { value } = node
|
|
16395
|
+
// // if (value.length > 1) return false
|
|
16396
|
+
// // },
|
|
16397
|
+
// // keyup: (event, { parent, state }) => {
|
|
16398
|
+
// // const { target, keyCode } = event
|
|
16399
|
+
// // const { value } = target
|
|
16400
|
+
// // const next = parent.nextElement()
|
|
16401
|
+
// // const previous = parent.previousElement()
|
|
16402
|
+
// // const isNumber = (keyCode >= 48 && keyCode <= 57) || (keyCode >= 96 && keyCode <= 105)
|
|
16403
|
+
// // const isBackspace = event.keyCode === 8 || event.keyCode === 46
|
|
16404
|
+
// // target.select()
|
|
16405
|
+
// // if (isNumber && value.length && next) next.NumberInput.node.focus()
|
|
16406
|
+
// // if ((!value.length || isBackspace) && previous) previous.NumberInput.node.focus()
|
|
16407
|
+
// // state.value[parent.key] = value
|
|
16408
|
+
// // },
|
|
16409
|
+
// // paste: (event, { state }) => {
|
|
16410
|
+
// // event.preventDefault()
|
|
16411
|
+
// // const paste = (event.clipboardData || window.clipboardData).getData('text')
|
|
16412
|
+
// // if (!paste) return
|
|
16413
|
+
// // const value = paste.split('')
|
|
16414
|
+
// // state.update({ value }, { overwrite: 'shallow' })
|
|
16415
|
+
// // }
|
|
16416
|
+
// // }
|
|
16417
|
+
// // }
|
|
16418
|
+
// // },
|
|
16419
|
+
// ...[{}, {}, {}, {}]
|
|
16420
|
+
// },
|
|
16421
|
+
// ParagraphButton: {
|
|
16422
|
+
// extend: ParagraphButton,
|
|
16423
|
+
// props: { padding: '- - - Y' }
|
|
16424
|
+
// }
|
|
16425
|
+
// },
|
|
16426
|
+
// Footer: {
|
|
16427
|
+
// props: {
|
|
16428
|
+
// justifyContent: 'flex-end',
|
|
16429
|
+
// padding: 'Y2 - - -'
|
|
16430
|
+
// },
|
|
16431
|
+
// Buttons: {
|
|
16432
|
+
// extend: CancelConfirmButtons,
|
|
16433
|
+
// props: { childProps: { ':first-child': { border: 'none' } } },
|
|
16434
|
+
// ...[
|
|
16435
|
+
// { Caption: { text: 'Cancel' } },
|
|
16436
|
+
// { Caption: { text: 'Verify' } }
|
|
16437
|
+
// ]
|
|
16438
|
+
// }
|
|
16439
|
+
// }
|
|
16440
|
+
};
|
|
16441
|
+
|
|
16442
|
+
// ../uikit/Form/ResetPassword.js
|
|
16443
|
+
var ResetPassword = {
|
|
16444
|
+
extend: CommonForm,
|
|
16445
|
+
props: { minWidth: "G3+D" },
|
|
16368
16446
|
Header: {
|
|
16369
|
-
props: {
|
|
16370
|
-
|
|
16371
|
-
},
|
|
16372
|
-
Title: {
|
|
16373
|
-
h5: {
|
|
16374
|
-
props: {
|
|
16375
|
-
text: "We\u2019d love to help",
|
|
16376
|
-
fontSize: "D1"
|
|
16377
|
-
}
|
|
16378
|
-
}
|
|
16379
|
-
},
|
|
16380
|
-
Paragraph: {
|
|
16381
|
-
p: {
|
|
16382
|
-
props: {
|
|
16383
|
-
text: "Reach out and we\u2019ll get in touch within 24 hours.",
|
|
16384
|
-
color: "gray4"
|
|
16385
|
-
}
|
|
16386
|
-
}
|
|
16387
|
-
}
|
|
16447
|
+
Title: { caption: { props: { text: "Choose new password" } } },
|
|
16448
|
+
Paragraph: { props: { text: "Almost done. Enter your new password and you\u2019re all set" } }
|
|
16388
16449
|
},
|
|
16389
|
-
|
|
16390
|
-
|
|
16391
|
-
Form: {
|
|
16392
|
-
extend: CommonForm,
|
|
16393
|
-
props: { columns: "repeat(2, 1fr)" },
|
|
16450
|
+
Form: {
|
|
16451
|
+
Fields: {
|
|
16394
16452
|
...[
|
|
16395
16453
|
{
|
|
16396
|
-
Title: { text: "
|
|
16397
|
-
Field: {
|
|
16398
|
-
Hint: null
|
|
16399
|
-
},
|
|
16400
|
-
{
|
|
16401
|
-
Title: { text: "Last name" },
|
|
16402
|
-
Field: { Input: { placeholder: "Last name" } },
|
|
16403
|
-
Hint: null
|
|
16454
|
+
Title: { props: { text: "Old password" } },
|
|
16455
|
+
Field: {}
|
|
16404
16456
|
},
|
|
16405
16457
|
{
|
|
16406
|
-
props: {
|
|
16407
|
-
|
|
16408
|
-
|
|
16409
|
-
|
|
16458
|
+
Title: { props: { text: "New password" } },
|
|
16459
|
+
Field: {},
|
|
16460
|
+
Hint: {
|
|
16461
|
+
extend: IconText,
|
|
16462
|
+
props: {
|
|
16463
|
+
icon: "info",
|
|
16464
|
+
text: "8 character minimum"
|
|
16465
|
+
}
|
|
16466
|
+
}
|
|
16410
16467
|
},
|
|
16411
16468
|
{
|
|
16412
|
-
props: {
|
|
16413
|
-
|
|
16414
|
-
|
|
16415
|
-
|
|
16416
|
-
|
|
16469
|
+
Title: { props: { text: "Confirm new password" } },
|
|
16470
|
+
Field: {},
|
|
16471
|
+
Hint: {
|
|
16472
|
+
extend: IconText,
|
|
16473
|
+
props: {
|
|
16474
|
+
icon: "info",
|
|
16475
|
+
text: "8 character minimum"
|
|
16476
|
+
}
|
|
16477
|
+
}
|
|
16417
16478
|
}
|
|
16418
16479
|
]
|
|
16419
16480
|
},
|
|
16420
|
-
|
|
16421
|
-
|
|
16422
|
-
|
|
16423
|
-
|
|
16424
|
-
|
|
16425
|
-
|
|
16426
|
-
|
|
16427
|
-
}
|
|
16428
|
-
},
|
|
16429
|
-
Footer: {
|
|
16430
|
-
Button: {
|
|
16431
|
-
text: "Send message",
|
|
16432
|
-
theme: "primary",
|
|
16433
|
-
flex: "1",
|
|
16434
|
-
round: "Y+W",
|
|
16435
|
-
fontWeight: "500",
|
|
16436
|
-
padding: "A -"
|
|
16481
|
+
Submit: {
|
|
16482
|
+
extend: CancelConfirmButtons,
|
|
16483
|
+
props: { justifyContent: "flex-end" },
|
|
16484
|
+
...[
|
|
16485
|
+
{ caption: { props: { text: "Cancel" } } },
|
|
16486
|
+
{ caption: { props: { text: "Reset password" } } }
|
|
16487
|
+
]
|
|
16437
16488
|
}
|
|
16438
16489
|
}
|
|
16439
16490
|
};
|
|
16440
16491
|
|
|
16441
|
-
//
|
|
16442
|
-
var
|
|
16443
|
-
extend:
|
|
16444
|
-
props: {
|
|
16445
|
-
minWidth: "H+B",
|
|
16446
|
-
maxWidth: "H+B",
|
|
16447
|
-
padding: "A2 A2"
|
|
16448
|
-
},
|
|
16492
|
+
// ../uikit/Form/ContactForm.js
|
|
16493
|
+
var ContactForm = {
|
|
16494
|
+
extend: CommonForm,
|
|
16449
16495
|
Header: {
|
|
16450
|
-
props: {
|
|
16451
|
-
|
|
16452
|
-
h5: {
|
|
16453
|
-
props: {
|
|
16454
|
-
text: "Create your account",
|
|
16455
|
-
fontSize: "D1"
|
|
16456
|
-
}
|
|
16457
|
-
}
|
|
16458
|
-
},
|
|
16459
|
-
Paragraph: {
|
|
16460
|
-
p: {
|
|
16461
|
-
props: {
|
|
16462
|
-
text: "Let\u2019s get started with your 30 days free trial",
|
|
16463
|
-
color: "gray4"
|
|
16464
|
-
}
|
|
16465
|
-
}
|
|
16466
|
-
}
|
|
16496
|
+
Title: { caption: { props: { text: "We\u2019d love to help" } } },
|
|
16497
|
+
Paragraph: { props: { text: "Reach out and we\u2019ll get in touch within 24 hours." } }
|
|
16467
16498
|
},
|
|
16468
|
-
|
|
16469
|
-
|
|
16470
|
-
|
|
16471
|
-
|
|
16472
|
-
|
|
16473
|
-
|
|
16474
|
-
|
|
16475
|
-
|
|
16499
|
+
Form: {
|
|
16500
|
+
Fields: {
|
|
16501
|
+
props: { columns: "repeat(2, 1fr)" },
|
|
16502
|
+
...[
|
|
16503
|
+
{
|
|
16504
|
+
props: { gridColumn: "1" },
|
|
16505
|
+
Title: { props: { text: "First name" } },
|
|
16506
|
+
Field: { Input: { props: { placeholder: "First name" } } }
|
|
16507
|
+
},
|
|
16508
|
+
{
|
|
16509
|
+
props: { gridColumn: "2" },
|
|
16510
|
+
Title: { props: { text: "Last name" } },
|
|
16511
|
+
Field: { Input: { props: { placeholder: "Last name" } } }
|
|
16512
|
+
},
|
|
16513
|
+
{
|
|
16514
|
+
props: { gridColumn: "1 / span 2" },
|
|
16515
|
+
Title: { props: { text: "Email" } },
|
|
16516
|
+
Field: { Input: { props: { placeholder: "example@email.com" } } }
|
|
16517
|
+
},
|
|
16518
|
+
{
|
|
16519
|
+
props: { gridColumn: "1 / span 2" },
|
|
16520
|
+
Title: { props: { text: "Message" } },
|
|
16476
16521
|
Field: {
|
|
16477
|
-
|
|
16478
|
-
border: "none"
|
|
16522
|
+
extend: TextAreaField
|
|
16479
16523
|
}
|
|
16480
16524
|
}
|
|
16481
|
-
|
|
16525
|
+
]
|
|
16526
|
+
},
|
|
16527
|
+
ParagraphButtonWithCheckbox: { padding: "Z1 Z - Z" },
|
|
16528
|
+
Submit: {
|
|
16529
|
+
extend: CommonButton,
|
|
16530
|
+
caption: { props: { text: "Send message" } }
|
|
16531
|
+
}
|
|
16532
|
+
}
|
|
16533
|
+
};
|
|
16534
|
+
|
|
16535
|
+
// ../uikit/Form/SignUp.js
|
|
16536
|
+
var SignUp = {
|
|
16537
|
+
extend: CommonForm,
|
|
16538
|
+
props: { minWidth: "H" },
|
|
16539
|
+
Header: {
|
|
16540
|
+
Title: { caption: { props: { text: "Create your account" } } },
|
|
16541
|
+
Paragraph: { props: { text: "Let\u2019s get started with your 30 days free trial" } }
|
|
16542
|
+
},
|
|
16543
|
+
Form: {
|
|
16544
|
+
Fields: {
|
|
16482
16545
|
...[
|
|
16483
16546
|
{
|
|
16484
|
-
Title: { text: "Full name" },
|
|
16485
|
-
Field: { Input: { placeholder: "Enter your full name" } }
|
|
16547
|
+
Title: { props: { text: "Full name" } },
|
|
16548
|
+
Field: { Input: { props: { placeholder: "Enter your full name" } } }
|
|
16486
16549
|
},
|
|
16487
16550
|
{
|
|
16488
|
-
Title: { text: "Email" },
|
|
16489
|
-
Field: { Input: { placeholder: "Email address" } }
|
|
16551
|
+
Title: { props: { text: "Email" } },
|
|
16552
|
+
Field: { Input: { props: { placeholder: "Email address" } } }
|
|
16490
16553
|
},
|
|
16491
16554
|
{
|
|
16492
|
-
Title: { text: "Password" },
|
|
16493
|
-
Field: { Input: { placeholder: "Create a password" } },
|
|
16555
|
+
Title: { props: { text: "Password" } },
|
|
16556
|
+
Field: { Input: { props: { placeholder: "Create a password" } } },
|
|
16494
16557
|
Hint: {
|
|
16495
|
-
|
|
16496
|
-
|
|
16558
|
+
extend: IconText,
|
|
16559
|
+
props: {
|
|
16560
|
+
icon: "info",
|
|
16561
|
+
text: "8 character minimum"
|
|
16562
|
+
}
|
|
16497
16563
|
}
|
|
16498
16564
|
},
|
|
16499
16565
|
{
|
|
16500
|
-
Title: { text: "Confirm password" },
|
|
16501
|
-
Field: { Input: { placeholder: "Repeat password" } },
|
|
16566
|
+
Title: { props: { text: "Confirm password" } },
|
|
16567
|
+
Field: { Input: { props: { placeholder: "Repeat password" } } },
|
|
16502
16568
|
Hint: {
|
|
16503
|
-
|
|
16504
|
-
|
|
16569
|
+
extend: IconText,
|
|
16570
|
+
props: {
|
|
16571
|
+
icon: "info",
|
|
16572
|
+
text: "8 character minimum"
|
|
16573
|
+
}
|
|
16505
16574
|
}
|
|
16506
16575
|
}
|
|
16507
16576
|
]
|
|
16508
16577
|
},
|
|
16509
16578
|
ParagraphButtonWithCheckbox: {
|
|
16510
|
-
padding: "
|
|
16511
|
-
|
|
16512
|
-
|
|
16513
|
-
|
|
16514
|
-
|
|
16515
|
-
}
|
|
16516
|
-
}
|
|
16517
|
-
},
|
|
16518
|
-
Footer: {
|
|
16519
|
-
CommonButton: {
|
|
16520
|
-
flex: "1",
|
|
16521
|
-
round: "Y+W",
|
|
16522
|
-
Caption: { text: "Create an account" }
|
|
16579
|
+
padding: "Z2 Z1 - Z1",
|
|
16580
|
+
justifyContent: "flex-end"
|
|
16581
|
+
},
|
|
16582
|
+
Submit: {
|
|
16583
|
+
extend: CommonButton,
|
|
16584
|
+
caption: { props: { text: "Create an account" } }
|
|
16523
16585
|
}
|
|
16524
16586
|
}
|
|
16525
16587
|
};
|
|
16526
16588
|
|
|
16527
|
-
//
|
|
16589
|
+
// ../uikit/Form/LogIn.js
|
|
16528
16590
|
var LogIn = {
|
|
16529
|
-
extend:
|
|
16530
|
-
props: {
|
|
16531
|
-
minWidth: "H+B",
|
|
16532
|
-
maxWidth: "H+B",
|
|
16533
|
-
padding: "B A"
|
|
16534
|
-
},
|
|
16591
|
+
extend: CommonForm,
|
|
16592
|
+
props: { minWidth: "G3+C1" },
|
|
16535
16593
|
Header: {
|
|
16536
|
-
props: {
|
|
16537
|
-
|
|
16538
|
-
h5: {
|
|
16539
|
-
props: {
|
|
16540
|
-
text: "Log in to your account",
|
|
16541
|
-
fontSize: "D1"
|
|
16542
|
-
}
|
|
16543
|
-
}
|
|
16544
|
-
},
|
|
16545
|
-
Paragraph: {
|
|
16546
|
-
p: {
|
|
16547
|
-
props: {
|
|
16548
|
-
text: "Enter your email address and password to log in.",
|
|
16549
|
-
color: "gray4"
|
|
16550
|
-
}
|
|
16551
|
-
}
|
|
16552
|
-
}
|
|
16594
|
+
Title: { caption: { props: { text: "Log in to your account" } } },
|
|
16595
|
+
Paragraph: { props: { text: "Enter your email address and password to log in." } }
|
|
16553
16596
|
},
|
|
16554
|
-
|
|
16597
|
+
Form: {
|
|
16555
16598
|
props: {
|
|
16556
|
-
|
|
16557
|
-
padding: "B - - -"
|
|
16599
|
+
ParagraphButtonWithCheckbox: { margin: "A -" }
|
|
16558
16600
|
},
|
|
16559
|
-
|
|
16560
|
-
extend: CommonForm,
|
|
16561
|
-
props: {
|
|
16562
|
-
gap: "B",
|
|
16563
|
-
childProps: {
|
|
16564
|
-
Field: {
|
|
16565
|
-
background: "gray3",
|
|
16566
|
-
border: "none"
|
|
16567
|
-
}
|
|
16568
|
-
}
|
|
16569
|
-
},
|
|
16601
|
+
Fields: {
|
|
16570
16602
|
...[
|
|
16571
16603
|
{
|
|
16572
|
-
Title: { text: "Email" },
|
|
16573
|
-
Field: { Input: { placeholder: "Enter your email" } }
|
|
16604
|
+
Title: { props: { text: "Email" } },
|
|
16605
|
+
Field: { Input: { props: { placeholder: "Enter your email" } } }
|
|
16574
16606
|
},
|
|
16575
16607
|
{
|
|
16576
|
-
Title: { text: "Password" },
|
|
16608
|
+
Title: { props: { text: "Password" } },
|
|
16577
16609
|
Field: {
|
|
16578
|
-
|
|
16579
|
-
|
|
16610
|
+
Icon: null,
|
|
16611
|
+
Input: { props: { placeholder: "Enter your password" } },
|
|
16612
|
+
Button: { props: { icon: "eye" } }
|
|
16580
16613
|
}
|
|
16581
16614
|
}
|
|
16582
16615
|
]
|
|
16583
16616
|
},
|
|
16584
16617
|
ParagraphButtonWithCheckbox: {
|
|
16585
|
-
padding: "
|
|
16618
|
+
padding: "- Y1",
|
|
16586
16619
|
Checkbox: {},
|
|
16587
16620
|
ParagraphButton: {
|
|
16588
16621
|
flex: "1",
|
|
@@ -16590,53 +16623,46 @@ var LogIn = {
|
|
|
16590
16623
|
P: { text: "Keep me logged in" },
|
|
16591
16624
|
Button: {
|
|
16592
16625
|
text: "Forgot your password?",
|
|
16626
|
+
fontWeight: "400",
|
|
16593
16627
|
textDecoration: "none"
|
|
16594
16628
|
}
|
|
16595
16629
|
}
|
|
16596
16630
|
},
|
|
16597
|
-
|
|
16598
|
-
|
|
16599
|
-
|
|
16600
|
-
|
|
16601
|
-
},
|
|
16602
|
-
DoubleHr: {
|
|
16603
|
-
padding: "B -"
|
|
16631
|
+
Submit: {
|
|
16632
|
+
extend: CommonButton,
|
|
16633
|
+
props: { margin: "A - - -" },
|
|
16634
|
+
caption: { props: { text: "Sign in" } }
|
|
16604
16635
|
}
|
|
16605
16636
|
},
|
|
16637
|
+
DoubleHr: {},
|
|
16606
16638
|
Footer: {
|
|
16639
|
+
extend: Flex,
|
|
16607
16640
|
props: {
|
|
16608
16641
|
flow: "column",
|
|
16609
|
-
gap: "
|
|
16642
|
+
gap: "Z2"
|
|
16610
16643
|
},
|
|
16611
16644
|
childExtend: {
|
|
16612
16645
|
extend: SocialLink,
|
|
16613
16646
|
props: {
|
|
16614
|
-
|
|
16647
|
+
minWidth: "100%",
|
|
16648
|
+
color: "gray4"
|
|
16615
16649
|
}
|
|
16616
16650
|
},
|
|
16617
|
-
...[
|
|
16618
|
-
{},
|
|
16619
|
-
{
|
|
16620
|
-
props: {
|
|
16621
|
-
Icon: { name: "facebook" },
|
|
16622
|
-
text: "Continue with Facebook"
|
|
16623
|
-
}
|
|
16624
|
-
}
|
|
16625
|
-
]
|
|
16651
|
+
...[{}, {}]
|
|
16626
16652
|
}
|
|
16627
16653
|
};
|
|
16628
16654
|
|
|
16629
|
-
//
|
|
16655
|
+
// ../uikit/Upload/UploadImage.js
|
|
16630
16656
|
var UploadImage = {
|
|
16631
16657
|
props: {
|
|
16632
|
-
padding: "
|
|
16633
|
-
|
|
16658
|
+
padding: "A+V",
|
|
16659
|
+
theme: "tertiary",
|
|
16634
16660
|
boxSize: "fit-content",
|
|
16635
|
-
round: "
|
|
16661
|
+
round: "Z2"
|
|
16636
16662
|
},
|
|
16637
16663
|
Icon: {
|
|
16638
16664
|
name: "file",
|
|
16639
|
-
fontSize: "
|
|
16665
|
+
fontSize: "C2"
|
|
16640
16666
|
}
|
|
16641
16667
|
};
|
|
16642
16668
|
var UploadIcon = {
|
|
@@ -16683,7 +16709,7 @@ var UploadIcon = {
|
|
|
16683
16709
|
}
|
|
16684
16710
|
};
|
|
16685
16711
|
|
|
16686
|
-
//
|
|
16712
|
+
// ../uikit/Upload/UploadButton.js
|
|
16687
16713
|
var UploadButton = {
|
|
16688
16714
|
extend: CommonButton,
|
|
16689
16715
|
props: {
|
|
@@ -16693,14 +16719,16 @@ var UploadButton = {
|
|
|
16693
16719
|
color: "#0474F2",
|
|
16694
16720
|
boxSize: "fit-content fit-content",
|
|
16695
16721
|
overflow: "hidden",
|
|
16696
|
-
|
|
16697
|
-
|
|
16698
|
-
|
|
16722
|
+
cursor: "pointer"
|
|
16723
|
+
},
|
|
16724
|
+
caption: {
|
|
16725
|
+
props: {
|
|
16726
|
+
text: "Choose file"
|
|
16727
|
+
}
|
|
16699
16728
|
},
|
|
16700
16729
|
Input: {
|
|
16701
16730
|
type: "file",
|
|
16702
16731
|
inset: "0 0 0 0",
|
|
16703
|
-
border: "2px solid red",
|
|
16704
16732
|
position: "absolute",
|
|
16705
16733
|
boxSize: "100% 100%",
|
|
16706
16734
|
top: "0",
|
|
@@ -16709,65 +16737,63 @@ var UploadButton = {
|
|
|
16709
16737
|
cursor: "pointer"
|
|
16710
16738
|
}
|
|
16711
16739
|
};
|
|
16712
|
-
var
|
|
16740
|
+
var UploadButtonWithBackground = {
|
|
16713
16741
|
extend: UploadButton,
|
|
16714
16742
|
props: {
|
|
16715
|
-
|
|
16743
|
+
fontFamily: "Avenir",
|
|
16716
16744
|
theme: "primary",
|
|
16717
|
-
|
|
16718
|
-
|
|
16719
|
-
color: "white"
|
|
16720
|
-
},
|
|
16721
|
-
Icon: {
|
|
16722
|
-
props: {
|
|
16723
|
-
name: "upload",
|
|
16724
|
-
fontSize: "B"
|
|
16725
|
-
}
|
|
16745
|
+
color: "white",
|
|
16746
|
+
padding: "Z2 A1"
|
|
16726
16747
|
},
|
|
16727
|
-
|
|
16748
|
+
caption: { props: { text: "Browse files" } }
|
|
16728
16749
|
};
|
|
16729
16750
|
|
|
16730
|
-
//
|
|
16751
|
+
// ../uikit/Upload/UploadLabel.js
|
|
16731
16752
|
var UploadLabel = {
|
|
16732
16753
|
extend: Flex,
|
|
16733
16754
|
props: {
|
|
16734
16755
|
flow: "column",
|
|
16735
16756
|
align: "center flex-start",
|
|
16736
16757
|
boxSize: "fit-content fit-content",
|
|
16737
|
-
gap: "
|
|
16738
|
-
|
|
16739
|
-
|
|
16740
|
-
|
|
16741
|
-
|
|
16758
|
+
gap: "B2",
|
|
16759
|
+
padding: "C D1",
|
|
16760
|
+
round: "A",
|
|
16761
|
+
border: "solid, gray2 .05",
|
|
16762
|
+
borderWidth: "1px",
|
|
16763
|
+
theme: "dialog"
|
|
16742
16764
|
},
|
|
16743
16765
|
Icon: {
|
|
16744
|
-
name: "
|
|
16745
|
-
fontSize: "
|
|
16766
|
+
name: "file",
|
|
16767
|
+
fontSize: "I1",
|
|
16746
16768
|
color: "#818186"
|
|
16747
16769
|
},
|
|
16748
16770
|
TitleParagraph: {
|
|
16749
16771
|
props: {
|
|
16750
16772
|
align: "center flex-start",
|
|
16751
|
-
gap: "
|
|
16773
|
+
gap: "Z",
|
|
16774
|
+
fontWeight: "400"
|
|
16752
16775
|
},
|
|
16753
16776
|
Title: {
|
|
16754
16777
|
props: {
|
|
16755
|
-
|
|
16756
|
-
|
|
16757
|
-
|
|
16758
|
-
|
|
16759
|
-
|
|
16760
|
-
|
|
16778
|
+
text: "Drag & drop your files here or",
|
|
16779
|
+
flow: "row-reverse",
|
|
16780
|
+
fontWeight: "400",
|
|
16781
|
+
gap: "Y2",
|
|
16782
|
+
align: "center flex-start",
|
|
16783
|
+
fontSize: "Z1",
|
|
16784
|
+
color: "gray2"
|
|
16761
16785
|
},
|
|
16762
|
-
|
|
16763
|
-
|
|
16786
|
+
UploadButton: {
|
|
16787
|
+
caption: {
|
|
16788
|
+
fontSize: "A1",
|
|
16789
|
+
fontWeight: "500"
|
|
16790
|
+
}
|
|
16791
|
+
}
|
|
16764
16792
|
},
|
|
16765
16793
|
Paragraph: {
|
|
16766
16794
|
props: {
|
|
16767
|
-
|
|
16768
|
-
|
|
16769
|
-
fontSize: "Z"
|
|
16770
|
-
}
|
|
16795
|
+
text: "50 MB max file size",
|
|
16796
|
+
fontSize: "Z"
|
|
16771
16797
|
}
|
|
16772
16798
|
}
|
|
16773
16799
|
}
|
|
@@ -16775,89 +16801,108 @@ var UploadLabel = {
|
|
|
16775
16801
|
var UploadLabel2 = {
|
|
16776
16802
|
extend: UploadLabel,
|
|
16777
16803
|
props: {
|
|
16778
|
-
|
|
16779
|
-
|
|
16780
|
-
},
|
|
16781
|
-
Icon: { name: "file" },
|
|
16782
|
-
TitleParagraph: {
|
|
16783
|
-
Title: {
|
|
16784
|
-
h5: { text: "Drag & drop your files here" },
|
|
16785
|
-
UploadButton: { display: "none" }
|
|
16786
|
-
},
|
|
16787
|
-
Paragraph: {
|
|
16788
|
-
p: { text: "50 MB max file size" }
|
|
16789
|
-
}
|
|
16804
|
+
padding: "B2 E1",
|
|
16805
|
+
gap: "B"
|
|
16790
16806
|
},
|
|
16791
|
-
|
|
16807
|
+
Icon: {},
|
|
16808
|
+
TitleParagraph: { Title: { UploadButton: null } },
|
|
16809
|
+
UploadButtonWithBackground: {
|
|
16810
|
+
padding: "A C",
|
|
16811
|
+
margin: "Z - - -",
|
|
16812
|
+
caption: { fontWeight: "500" }
|
|
16813
|
+
}
|
|
16792
16814
|
};
|
|
16793
16815
|
|
|
16794
|
-
//
|
|
16795
|
-
var
|
|
16796
|
-
extend:
|
|
16797
|
-
props: {
|
|
16798
|
-
|
|
16799
|
-
|
|
16800
|
-
|
|
16801
|
-
Paragraph: null
|
|
16816
|
+
// ../uikit/Upload/UploadModal.js
|
|
16817
|
+
var UploadFooter = {
|
|
16818
|
+
extend: Flex,
|
|
16819
|
+
props: {
|
|
16820
|
+
gap: "E",
|
|
16821
|
+
align: "center space-between",
|
|
16822
|
+
boxSize: "fit-content"
|
|
16802
16823
|
},
|
|
16803
|
-
|
|
16804
|
-
extend:
|
|
16805
|
-
props: {
|
|
16806
|
-
|
|
16807
|
-
|
|
16808
|
-
|
|
16809
|
-
|
|
16810
|
-
|
|
16811
|
-
}
|
|
16824
|
+
IconText: {
|
|
16825
|
+
extend: IconText,
|
|
16826
|
+
props: {
|
|
16827
|
+
icon: "info",
|
|
16828
|
+
text: "Support",
|
|
16829
|
+
gap: "Y",
|
|
16830
|
+
fontSize: "Z",
|
|
16831
|
+
fontWeight: "400"
|
|
16812
16832
|
}
|
|
16813
16833
|
},
|
|
16814
|
-
|
|
16815
|
-
|
|
16816
|
-
|
|
16817
|
-
|
|
16818
|
-
|
|
16819
|
-
|
|
16834
|
+
Buttons: {
|
|
16835
|
+
extend: CancelConfirmButtons,
|
|
16836
|
+
props: {
|
|
16837
|
+
childProps: {
|
|
16838
|
+
padding: "Z2 A1",
|
|
16839
|
+
":first-child": {
|
|
16840
|
+
theme: "tertiary",
|
|
16841
|
+
padding: "- A1"
|
|
16842
|
+
},
|
|
16843
|
+
caption: {
|
|
16844
|
+
fontSize: "Z2",
|
|
16845
|
+
fontWeight: "400",
|
|
16846
|
+
letterSpacing: ".3px"
|
|
16847
|
+
}
|
|
16848
|
+
}
|
|
16849
|
+
},
|
|
16850
|
+
...[
|
|
16851
|
+
{ caption: { props: { text: "Cancel" } } },
|
|
16852
|
+
{
|
|
16853
|
+
extend: UploadButtonWithBackground,
|
|
16854
|
+
caption: { props: { text: "Attach file" } }
|
|
16855
|
+
}
|
|
16856
|
+
]
|
|
16820
16857
|
}
|
|
16821
16858
|
};
|
|
16822
|
-
var
|
|
16859
|
+
var UploadModal = {
|
|
16823
16860
|
extend: Modal,
|
|
16824
|
-
props: {
|
|
16825
|
-
|
|
16826
|
-
|
|
16827
|
-
|
|
16828
|
-
Paragraph: null
|
|
16861
|
+
props: {
|
|
16862
|
+
gap: "A",
|
|
16863
|
+
round: "A1",
|
|
16864
|
+
padding: "A"
|
|
16829
16865
|
},
|
|
16830
|
-
|
|
16831
|
-
|
|
16832
|
-
|
|
16833
|
-
|
|
16834
|
-
|
|
16835
|
-
|
|
16836
|
-
IconText: {
|
|
16837
|
-
Icon: { name: "info" },
|
|
16838
|
-
text: "Support",
|
|
16839
|
-
gap: "Z"
|
|
16840
|
-
},
|
|
16841
|
-
CancelConfirmButtons: {
|
|
16842
|
-
props: {
|
|
16843
|
-
childProps: {
|
|
16844
|
-
":first-child": { background: "gray" }
|
|
16866
|
+
Header: {
|
|
16867
|
+
Title: {
|
|
16868
|
+
caption: {
|
|
16869
|
+
props: {
|
|
16870
|
+
text: "File Upload",
|
|
16871
|
+
fontSize: "C"
|
|
16845
16872
|
}
|
|
16846
16873
|
},
|
|
16847
|
-
|
|
16848
|
-
|
|
16849
|
-
|
|
16850
|
-
|
|
16851
|
-
|
|
16874
|
+
x: {
|
|
16875
|
+
props: { margin: "-V2 - - -" }
|
|
16876
|
+
}
|
|
16877
|
+
},
|
|
16878
|
+
Paragraph: null
|
|
16879
|
+
},
|
|
16880
|
+
UploadLabel: {},
|
|
16881
|
+
UploadFooter: {
|
|
16882
|
+
props: { minWidth: "100%", margin: "-W - - -" },
|
|
16883
|
+
IconText: { props: { padding: "- Z" } },
|
|
16884
|
+
Buttons: { props: { gap: "Z2" } }
|
|
16885
|
+
}
|
|
16886
|
+
};
|
|
16887
|
+
var UploadModal2 = {
|
|
16888
|
+
extend: UploadModal,
|
|
16889
|
+
Header: {},
|
|
16890
|
+
UploadLabel: null,
|
|
16891
|
+
UploadLabel2: {
|
|
16892
|
+
width: "100%",
|
|
16893
|
+
Icon: {},
|
|
16894
|
+
TitleParagraph: {},
|
|
16895
|
+
UploadButtonWithBackground: { theme: "tertiary" }
|
|
16852
16896
|
}
|
|
16853
16897
|
};
|
|
16854
16898
|
var UploadModal3 = {
|
|
16855
16899
|
extend: UploadModal2,
|
|
16856
16900
|
Header: {},
|
|
16857
|
-
|
|
16858
|
-
|
|
16901
|
+
UploadLabel2: {},
|
|
16902
|
+
UploadFooter: {
|
|
16903
|
+
props: { padding: "0" },
|
|
16859
16904
|
IconText: null,
|
|
16860
|
-
|
|
16905
|
+
Buttons: {
|
|
16861
16906
|
props: {
|
|
16862
16907
|
minWidth: "100%",
|
|
16863
16908
|
childProps: { flex: "1" }
|
|
@@ -16868,193 +16913,220 @@ var UploadModal3 = {
|
|
|
16868
16913
|
var UploadModal4 = {
|
|
16869
16914
|
extend: UploadModal3,
|
|
16870
16915
|
Header: {},
|
|
16871
|
-
|
|
16916
|
+
UploadLabel2: {},
|
|
16872
16917
|
UploadingProcess4: {
|
|
16873
|
-
minWidth: "100%"
|
|
16874
|
-
background: "black",
|
|
16875
|
-
ProgressCircleWithUnitValue: {
|
|
16876
|
-
boxSize: "C+A C+A"
|
|
16877
|
-
}
|
|
16918
|
+
minWidth: "100%"
|
|
16878
16919
|
},
|
|
16879
|
-
|
|
16920
|
+
UploadFooter: {}
|
|
16880
16921
|
};
|
|
16881
16922
|
|
|
16882
|
-
//
|
|
16923
|
+
// ../uikit/Upload/UploadingProcess.js
|
|
16883
16924
|
var UploadingProcess = {
|
|
16884
|
-
extend:
|
|
16925
|
+
extend: Dialog,
|
|
16885
16926
|
props: {
|
|
16886
|
-
|
|
16887
|
-
|
|
16888
|
-
|
|
16889
|
-
|
|
16890
|
-
|
|
16927
|
+
boxSize: "fit-content",
|
|
16928
|
+
padding: "Y2 Z2 Y2 Y2",
|
|
16929
|
+
round: "A",
|
|
16930
|
+
gap: "Y2",
|
|
16931
|
+
position: "relative"
|
|
16891
16932
|
},
|
|
16892
16933
|
Image: { extend: UploadImage },
|
|
16893
16934
|
Flex: {
|
|
16935
|
+
extend: TitleParagraph,
|
|
16894
16936
|
props: {
|
|
16895
|
-
|
|
16896
|
-
|
|
16897
|
-
boxSizing: "border-box",
|
|
16898
|
-
justifyContent: "center",
|
|
16899
|
-
gap: "Y2"
|
|
16937
|
+
justifyContent: "space-between",
|
|
16938
|
+
padding: "W2 -"
|
|
16900
16939
|
},
|
|
16901
|
-
|
|
16902
|
-
|
|
16903
|
-
|
|
16904
|
-
|
|
16905
|
-
|
|
16906
|
-
|
|
16907
|
-
|
|
16940
|
+
Title: {
|
|
16941
|
+
props: { justifyContent: "space-between" },
|
|
16942
|
+
caption: {
|
|
16943
|
+
props: {
|
|
16944
|
+
text: "Image.jpg",
|
|
16945
|
+
fontSize: "Z2"
|
|
16946
|
+
}
|
|
16947
|
+
},
|
|
16948
|
+
x: {
|
|
16949
|
+
extend: Button,
|
|
16950
|
+
props: {
|
|
16951
|
+
icon: "x",
|
|
16952
|
+
fontSize: "B",
|
|
16953
|
+
boxSize: "fit-content",
|
|
16954
|
+
padding: "0",
|
|
16955
|
+
theme: "transparent",
|
|
16956
|
+
margin: "- -V1 - -"
|
|
16957
|
+
}
|
|
16908
16958
|
}
|
|
16909
16959
|
},
|
|
16910
|
-
|
|
16960
|
+
Paragraph: {
|
|
16961
|
+
props: {
|
|
16962
|
+
flow: "column",
|
|
16963
|
+
gap: "Y2"
|
|
16964
|
+
},
|
|
16965
|
+
DoubleUnitValue: { fontSize: "Y" },
|
|
16966
|
+
ProgressLine: {}
|
|
16967
|
+
}
|
|
16911
16968
|
}
|
|
16912
16969
|
};
|
|
16913
16970
|
var UploadedProcess = {
|
|
16914
16971
|
extend: UploadingProcess,
|
|
16915
16972
|
Image: {},
|
|
16916
16973
|
Flex: {
|
|
16917
|
-
|
|
16918
|
-
|
|
16919
|
-
|
|
16920
|
-
|
|
16921
|
-
|
|
16974
|
+
Title: {},
|
|
16975
|
+
Paragraph: {
|
|
16976
|
+
DoubleUnitValue: null,
|
|
16977
|
+
span: {
|
|
16978
|
+
props: {
|
|
16979
|
+
text: "Done",
|
|
16980
|
+
fontSize: "Y",
|
|
16981
|
+
lineHeight: "1em",
|
|
16982
|
+
color: "gray2",
|
|
16983
|
+
display: "block"
|
|
16984
|
+
}
|
|
16985
|
+
},
|
|
16986
|
+
ProgressLine: {
|
|
16987
|
+
value: "1",
|
|
16988
|
+
style: { "&::-webkit-progress-value": { background: "#04F214" } }
|
|
16922
16989
|
}
|
|
16923
|
-
},
|
|
16924
|
-
ProgressLine: {
|
|
16925
|
-
value: "1",
|
|
16926
|
-
style: { "&::-webkit-progress-value": { background: "#04F214" } }
|
|
16927
16990
|
}
|
|
16928
16991
|
}
|
|
16929
16992
|
};
|
|
16930
16993
|
var UploadingProcess2 = {
|
|
16931
16994
|
extend: UploadingProcess,
|
|
16932
16995
|
props: {
|
|
16933
|
-
border: "
|
|
16996
|
+
border: "solid, gray3",
|
|
16997
|
+
borderWidth: "1px"
|
|
16998
|
+
},
|
|
16999
|
+
Image: {
|
|
17000
|
+
props: { padding: "Z2" },
|
|
17001
|
+
Icon: { fontSize: "D" }
|
|
16934
17002
|
},
|
|
16935
|
-
Image: { props: { padding: "Z+Y" } },
|
|
16936
17003
|
Flex: {
|
|
16937
|
-
props: {
|
|
16938
|
-
|
|
16939
|
-
|
|
16940
|
-
|
|
16941
|
-
|
|
16942
|
-
|
|
16943
|
-
|
|
16944
|
-
|
|
16945
|
-
|
|
16946
|
-
},
|
|
16947
|
-
ProgressLine: null,
|
|
16948
|
-
ProgressLineWithUnitValue: {}
|
|
17004
|
+
Title: { caption: { props: { fontSize: "A1" } } },
|
|
17005
|
+
Paragraph: {
|
|
17006
|
+
ProgressLineWithUnitValue: {
|
|
17007
|
+
ProgressLine: {},
|
|
17008
|
+
UnitValue: { fontSize: "Y1" }
|
|
17009
|
+
},
|
|
17010
|
+
DoubleUnitValue: null,
|
|
17011
|
+
ProgressLine: null
|
|
17012
|
+
}
|
|
16949
17013
|
}
|
|
16950
17014
|
};
|
|
16951
17015
|
var UploadedProcess2 = {
|
|
16952
17016
|
extend: UploadingProcess2,
|
|
16953
17017
|
Image: {},
|
|
16954
17018
|
Flex: {
|
|
16955
|
-
|
|
16956
|
-
|
|
16957
|
-
|
|
16958
|
-
|
|
16959
|
-
|
|
16960
|
-
|
|
16961
|
-
|
|
17019
|
+
props: { margin: "- - -V2 -" },
|
|
17020
|
+
Title: {},
|
|
17021
|
+
Paragraph: {
|
|
17022
|
+
ProgressLineWithUnitValue: {
|
|
17023
|
+
ProgressLine: {
|
|
17024
|
+
value: 1,
|
|
17025
|
+
style: { "&::-webkit-progress-value": { background: "#04F214" } }
|
|
17026
|
+
},
|
|
17027
|
+
UnitValue: { Value: { text: "100" } }
|
|
17028
|
+
}
|
|
16962
17029
|
}
|
|
16963
17030
|
}
|
|
16964
17031
|
};
|
|
16965
17032
|
var UploadingProcess3 = {
|
|
16966
17033
|
extend: UploadingProcess2,
|
|
16967
17034
|
props: {
|
|
16968
|
-
minWidth: "G+
|
|
17035
|
+
minWidth: "G+C2",
|
|
17036
|
+
gap: "Z"
|
|
16969
17037
|
},
|
|
16970
17038
|
Image: {},
|
|
16971
17039
|
Flex: {
|
|
16972
|
-
|
|
16973
|
-
|
|
16974
|
-
|
|
16975
|
-
|
|
16976
|
-
|
|
16977
|
-
|
|
16978
|
-
|
|
16979
|
-
|
|
16980
|
-
top: "50%",
|
|
16981
|
-
right: "0",
|
|
16982
|
-
transform: "translate(0%, -50%)"
|
|
16983
|
-
}
|
|
16984
|
-
}
|
|
17040
|
+
props: {
|
|
17041
|
+
padding: "0",
|
|
17042
|
+
justifyContent: "center",
|
|
17043
|
+
gap: "Z"
|
|
17044
|
+
},
|
|
17045
|
+
Title: {
|
|
17046
|
+
caption: {
|
|
17047
|
+
props: { fontSize: "Z2" }
|
|
16985
17048
|
},
|
|
16986
|
-
|
|
17049
|
+
x: {
|
|
17050
|
+
props: {
|
|
17051
|
+
position: "absolute",
|
|
17052
|
+
top: "50%",
|
|
17053
|
+
right: "B+W1",
|
|
17054
|
+
transform: "translate(50%, -50%)",
|
|
17055
|
+
padding: "Y",
|
|
17056
|
+
fontSize: "A1",
|
|
17057
|
+
theme: "tertiary"
|
|
17058
|
+
}
|
|
17059
|
+
}
|
|
16987
17060
|
},
|
|
16988
|
-
|
|
16989
|
-
|
|
17061
|
+
Paragraph: {
|
|
17062
|
+
ProgressLineWithUnitValue: null,
|
|
17063
|
+
ProgressCircleWithSideUnitValue: {}
|
|
17064
|
+
}
|
|
16990
17065
|
}
|
|
16991
17066
|
};
|
|
16992
17067
|
var UploadedProcess3 = {
|
|
16993
17068
|
extend: UploadingProcess3,
|
|
16994
17069
|
Image: {},
|
|
16995
17070
|
Flex: {
|
|
16996
|
-
|
|
16997
|
-
|
|
16998
|
-
|
|
16999
|
-
|
|
17000
|
-
|
|
17001
|
-
|
|
17071
|
+
Title: {},
|
|
17072
|
+
Paragraph: {
|
|
17073
|
+
ProgressCircleWithSideUnitValue: {
|
|
17074
|
+
ProgressCircle: {
|
|
17075
|
+
Progress: {
|
|
17076
|
+
value: 1,
|
|
17077
|
+
style: { "&::-webkit-progress-value": { background: "#04F214" } }
|
|
17078
|
+
}
|
|
17079
|
+
},
|
|
17080
|
+
UnitValue: {
|
|
17081
|
+
Value: { text: "Done" },
|
|
17082
|
+
Unit: { display: "none" }
|
|
17002
17083
|
}
|
|
17003
|
-
},
|
|
17004
|
-
UnitValue: {
|
|
17005
|
-
Value: { text: "Done" },
|
|
17006
|
-
Unit: { display: "none" }
|
|
17007
17084
|
}
|
|
17008
17085
|
}
|
|
17009
17086
|
}
|
|
17010
17087
|
};
|
|
17011
17088
|
var UploadingProcess4 = {
|
|
17012
|
-
extend:
|
|
17089
|
+
extend: UploadingProcess3,
|
|
17013
17090
|
props: {
|
|
17014
|
-
|
|
17015
|
-
|
|
17016
|
-
|
|
17017
|
-
gap: "A",
|
|
17018
|
-
padding: "A",
|
|
17019
|
-
round: "Z+X"
|
|
17091
|
+
alignItems: "center",
|
|
17092
|
+
padding: "Y2 Y2 Y2 Z",
|
|
17093
|
+
gap: "Z1"
|
|
17020
17094
|
},
|
|
17021
17095
|
Image: null,
|
|
17022
|
-
|
|
17096
|
+
ProgressCircleWithIcon: {
|
|
17097
|
+
boxSize: "C+X1",
|
|
17098
|
+
Icon: { fontSize: "C" }
|
|
17099
|
+
},
|
|
17023
17100
|
Flex: {
|
|
17024
17101
|
props: {
|
|
17025
|
-
|
|
17026
|
-
|
|
17102
|
+
gap: "Y1",
|
|
17103
|
+
padding: "W2 - - -"
|
|
17027
17104
|
},
|
|
17028
|
-
|
|
17029
|
-
|
|
17030
|
-
|
|
17031
|
-
|
|
17032
|
-
|
|
17033
|
-
|
|
17034
|
-
|
|
17035
|
-
|
|
17036
|
-
|
|
17037
|
-
transform: "translate(0%, -50%)",
|
|
17038
|
-
padding: "0"
|
|
17039
|
-
}
|
|
17040
|
-
}
|
|
17105
|
+
Title: {},
|
|
17106
|
+
Paragraph: {
|
|
17107
|
+
tag: "p",
|
|
17108
|
+
props: {
|
|
17109
|
+
text: "Uploading . . .",
|
|
17110
|
+
margin: "0",
|
|
17111
|
+
padding: "0",
|
|
17112
|
+
fontSize: "Y1",
|
|
17113
|
+
color: "gray2"
|
|
17041
17114
|
},
|
|
17042
|
-
|
|
17043
|
-
|
|
17044
|
-
DoubleUnitValue: { display: "none" }
|
|
17045
|
-
}
|
|
17046
|
-
},
|
|
17047
|
-
ProgressLine: null
|
|
17115
|
+
ProgressCircleWithSideUnitValue: null
|
|
17116
|
+
}
|
|
17048
17117
|
}
|
|
17049
17118
|
};
|
|
17050
17119
|
var UploadedProcess4 = {
|
|
17051
17120
|
extend: UploadingProcess4,
|
|
17052
|
-
ProgressCircleWithUnitValue: null,
|
|
17053
17121
|
ProgressCircleWithIcon: {
|
|
17122
|
+
":after": {
|
|
17123
|
+
width: "calc(100% - 3px)",
|
|
17124
|
+
height: "calc(100% - 3px)"
|
|
17125
|
+
},
|
|
17054
17126
|
Icon: {
|
|
17055
17127
|
name: "check",
|
|
17056
17128
|
color: "#04F214",
|
|
17057
|
-
fontSize: "
|
|
17129
|
+
fontSize: "E1"
|
|
17058
17130
|
},
|
|
17059
17131
|
Progress: {
|
|
17060
17132
|
value: 1,
|
|
@@ -17064,126 +17136,117 @@ var UploadedProcess4 = {
|
|
|
17064
17136
|
}
|
|
17065
17137
|
},
|
|
17066
17138
|
Flex: {
|
|
17067
|
-
|
|
17068
|
-
|
|
17069
|
-
Paragraph: { p: { text: "Uploaded" } }
|
|
17070
|
-
}
|
|
17139
|
+
Title: {},
|
|
17140
|
+
Paragraph: { text: "Uploaded" }
|
|
17071
17141
|
}
|
|
17072
17142
|
};
|
|
17073
17143
|
|
|
17074
|
-
//
|
|
17144
|
+
// ../uikit/User/User.js
|
|
17075
17145
|
var User = {
|
|
17076
17146
|
extend: Flex,
|
|
17077
17147
|
props: {
|
|
17078
|
-
|
|
17079
|
-
|
|
17148
|
+
boxSize: "fit-content",
|
|
17149
|
+
theme: "dialog",
|
|
17150
|
+
padding: "Z A Z Z",
|
|
17151
|
+
round: "A",
|
|
17152
|
+
gap: "Y1",
|
|
17153
|
+
align: "center flex-start"
|
|
17080
17154
|
},
|
|
17081
|
-
|
|
17082
|
-
|
|
17155
|
+
Avatar: {
|
|
17156
|
+
extend: AvatarIndicator,
|
|
17157
|
+
Avatar: { props: { boxSize: "C+V" } }
|
|
17083
17158
|
},
|
|
17084
17159
|
Notes: {
|
|
17085
17160
|
extend: TitleParagraph,
|
|
17086
17161
|
props: {
|
|
17087
|
-
|
|
17088
|
-
|
|
17162
|
+
justifyContent: "center",
|
|
17163
|
+
gap: "W2",
|
|
17164
|
+
margin: "X2 - - -"
|
|
17089
17165
|
},
|
|
17090
17166
|
Title: {
|
|
17091
|
-
|
|
17092
|
-
|
|
17093
|
-
|
|
17094
|
-
fontWeight: "500",
|
|
17095
|
-
fontSize: "A"
|
|
17096
|
-
}
|
|
17167
|
+
props: {
|
|
17168
|
+
fontSize: "A1",
|
|
17169
|
+
fontWeight: "500"
|
|
17097
17170
|
}
|
|
17098
17171
|
},
|
|
17099
17172
|
Paragraph: {
|
|
17100
|
-
|
|
17101
|
-
|
|
17102
|
-
|
|
17103
|
-
fontSize: "Z1"
|
|
17104
|
-
}
|
|
17173
|
+
props: {
|
|
17174
|
+
fontSize: "Z",
|
|
17175
|
+
alignItems: "center"
|
|
17105
17176
|
}
|
|
17106
17177
|
}
|
|
17107
17178
|
}
|
|
17108
17179
|
};
|
|
17109
17180
|
|
|
17110
|
-
//
|
|
17181
|
+
// ../uikit/User/ChatUser.js
|
|
17111
17182
|
var ChatUser = {
|
|
17112
17183
|
extend: User,
|
|
17113
|
-
props: {
|
|
17114
|
-
|
|
17115
|
-
background: "gray3",
|
|
17116
|
-
padding: "A",
|
|
17117
|
-
round: "Z"
|
|
17118
|
-
},
|
|
17119
|
-
AvatarIndicator: { margin: "0" },
|
|
17184
|
+
props: { gap: "Y2" },
|
|
17185
|
+
Avatar: {},
|
|
17120
17186
|
Notes: {
|
|
17121
|
-
props: {
|
|
17187
|
+
props: { gap: "X1" },
|
|
17122
17188
|
Title: {
|
|
17123
|
-
props: {
|
|
17124
|
-
|
|
17125
|
-
minWidth: "100%"
|
|
17126
|
-
},
|
|
17127
|
-
h5: {},
|
|
17189
|
+
props: { align: "center space-between" },
|
|
17190
|
+
caption: { props: { text: "Maria Kenter" } },
|
|
17128
17191
|
time: {
|
|
17129
17192
|
extend: UnitValue,
|
|
17130
17193
|
props: {
|
|
17131
|
-
|
|
17194
|
+
fontSize: "X1",
|
|
17195
|
+
gap: "X2"
|
|
17132
17196
|
},
|
|
17133
|
-
|
|
17134
|
-
|
|
17197
|
+
Unit: { props: { text: "2:22" } },
|
|
17198
|
+
Value: { props: { text: "AM" } }
|
|
17135
17199
|
}
|
|
17136
17200
|
},
|
|
17137
17201
|
Paragraph: {
|
|
17138
|
-
props: {
|
|
17139
|
-
align: "center space-between",
|
|
17140
|
-
gap: "C2"
|
|
17141
|
-
},
|
|
17202
|
+
props: { gap: "C1" },
|
|
17142
17203
|
p: {
|
|
17204
|
+
extend: Flex,
|
|
17143
17205
|
props: {
|
|
17144
17206
|
text: "Hey team, I\u2019ve finished the requirements document",
|
|
17145
|
-
maxWidth: "
|
|
17207
|
+
maxWidth: "F1",
|
|
17146
17208
|
overflow: "hidden",
|
|
17147
|
-
whiteSpace: "nowrap"
|
|
17148
|
-
fontSize: "Z"
|
|
17209
|
+
whiteSpace: "nowrap"
|
|
17149
17210
|
}
|
|
17150
17211
|
},
|
|
17151
|
-
|
|
17152
|
-
|
|
17212
|
+
notification: {
|
|
17213
|
+
extend: CountIndicator,
|
|
17214
|
+
props: { fontSize: "X2" }
|
|
17153
17215
|
}
|
|
17154
17216
|
}
|
|
17155
17217
|
}
|
|
17156
17218
|
};
|
|
17157
17219
|
|
|
17158
|
-
//
|
|
17220
|
+
// ../uikit/User/UserButtonSet.js
|
|
17159
17221
|
var UserButtonSet = {
|
|
17160
17222
|
extend: Flex,
|
|
17161
17223
|
props: {
|
|
17162
|
-
gap: "E2",
|
|
17163
|
-
background: "gray",
|
|
17164
17224
|
boxSize: "fit-content",
|
|
17165
|
-
|
|
17166
|
-
|
|
17225
|
+
theme: "dialog",
|
|
17226
|
+
padding: "Z1 Z1 Z Z",
|
|
17227
|
+
round: "A",
|
|
17228
|
+
alignItems: "center",
|
|
17229
|
+
gap: "E"
|
|
17167
17230
|
},
|
|
17168
17231
|
User: {
|
|
17169
|
-
|
|
17232
|
+
padding: "0",
|
|
17233
|
+
gap: "Y2",
|
|
17234
|
+
Avatar: { fontSize: "A1" },
|
|
17170
17235
|
Notes: {
|
|
17236
|
+
margin: "W - - -",
|
|
17237
|
+
gap: "X2",
|
|
17171
17238
|
Title: {
|
|
17172
|
-
|
|
17173
|
-
|
|
17174
|
-
fontWeight: "700"
|
|
17175
|
-
}
|
|
17239
|
+
text: "Group",
|
|
17240
|
+
fontSize: "C1"
|
|
17176
17241
|
},
|
|
17177
17242
|
Paragraph: {
|
|
17178
|
-
|
|
17179
|
-
|
|
17180
|
-
|
|
17181
|
-
}
|
|
17243
|
+
text: "Active now",
|
|
17244
|
+
fontSize: "Y",
|
|
17245
|
+
padding: "- - - W1"
|
|
17182
17246
|
}
|
|
17183
17247
|
}
|
|
17184
17248
|
},
|
|
17185
17249
|
ButtonSet: {
|
|
17186
|
-
extend: ButtonSet,
|
|
17187
17250
|
props: { gap: "Y2" },
|
|
17188
17251
|
...[
|
|
17189
17252
|
{ props: { Icon: { name: "phone" } } },
|
|
@@ -17192,111 +17255,111 @@ var UserButtonSet = {
|
|
|
17192
17255
|
]
|
|
17193
17256
|
}
|
|
17194
17257
|
};
|
|
17258
|
+
var UserButtonSetCircle = {
|
|
17259
|
+
extend: UserButtonSet,
|
|
17260
|
+
User: {},
|
|
17261
|
+
ButtonSet: {
|
|
17262
|
+
childExtend: {
|
|
17263
|
+
props: {
|
|
17264
|
+
round: "100%"
|
|
17265
|
+
}
|
|
17266
|
+
}
|
|
17267
|
+
}
|
|
17268
|
+
};
|
|
17195
17269
|
|
|
17196
|
-
//
|
|
17270
|
+
// ../uikit/User/UserMessage.js
|
|
17197
17271
|
var UserMessage = {
|
|
17198
17272
|
extend: User,
|
|
17199
|
-
props: { gap: "Z" },
|
|
17200
|
-
|
|
17201
|
-
fontSize: "Z"
|
|
17202
|
-
},
|
|
17273
|
+
props: { gap: "Z", theme: "transparent" },
|
|
17274
|
+
Avatar: {},
|
|
17203
17275
|
Notes: {
|
|
17204
17276
|
Title: null,
|
|
17277
|
+
props: { margin: "0" },
|
|
17205
17278
|
Paragraph: {
|
|
17206
|
-
|
|
17207
|
-
|
|
17208
|
-
|
|
17209
|
-
|
|
17210
|
-
|
|
17211
|
-
|
|
17212
|
-
theme: "secondary"
|
|
17213
|
-
}
|
|
17279
|
+
props: {
|
|
17280
|
+
text: "Can you please review the latest design?",
|
|
17281
|
+
padding: "Z1 Z2",
|
|
17282
|
+
round: "Z2",
|
|
17283
|
+
theme: "dialog",
|
|
17284
|
+
color: "white"
|
|
17214
17285
|
}
|
|
17215
17286
|
}
|
|
17216
17287
|
}
|
|
17217
17288
|
};
|
|
17218
17289
|
|
|
17219
|
-
//
|
|
17290
|
+
// ../uikit/User/UserWithLabel.js
|
|
17220
17291
|
var UserWithLabel = {
|
|
17221
17292
|
extend: User,
|
|
17222
|
-
|
|
17293
|
+
props: { gap: "Y2" },
|
|
17294
|
+
Avatar: {
|
|
17223
17295
|
StatusIndicator: null,
|
|
17224
|
-
Avatar: { boxSize: "
|
|
17296
|
+
Avatar: { props: { boxSize: "B2+W" } }
|
|
17225
17297
|
},
|
|
17226
17298
|
Notes: {
|
|
17227
|
-
props: {
|
|
17299
|
+
props: { margin: "V2 - - -" },
|
|
17228
17300
|
Title: {
|
|
17229
17301
|
props: {
|
|
17230
|
-
|
|
17231
|
-
|
|
17232
|
-
},
|
|
17233
|
-
h5: {
|
|
17234
|
-
props: {
|
|
17235
|
-
text: "ETHDOWN",
|
|
17236
|
-
fontSize: "Z"
|
|
17237
|
-
}
|
|
17302
|
+
gap: "Y1",
|
|
17303
|
+
fontSize: "Z2"
|
|
17238
17304
|
},
|
|
17239
|
-
|
|
17305
|
+
caption: { props: { text: "ETHDOWN" } },
|
|
17306
|
+
label: { extend: Label }
|
|
17240
17307
|
},
|
|
17241
17308
|
Paragraph: {
|
|
17242
|
-
|
|
17243
|
-
|
|
17244
|
-
|
|
17245
|
-
|
|
17246
|
-
}
|
|
17309
|
+
tag: "p",
|
|
17310
|
+
props: {
|
|
17311
|
+
text: "Short ETH with up to 4x Leverage",
|
|
17312
|
+
fontSize: "Y1"
|
|
17247
17313
|
}
|
|
17248
17314
|
}
|
|
17249
17315
|
}
|
|
17250
17316
|
};
|
|
17251
17317
|
|
|
17252
|
-
//
|
|
17318
|
+
// ../uikit/User/UserWithButton.js
|
|
17253
17319
|
var UserWithButton = {
|
|
17254
|
-
extend:
|
|
17320
|
+
extend: Flex,
|
|
17255
17321
|
props: {
|
|
17256
|
-
background: "gray",
|
|
17257
17322
|
boxSize: "fit-content",
|
|
17258
|
-
|
|
17259
|
-
round: "Z",
|
|
17323
|
+
theme: "dialog",
|
|
17260
17324
|
border: "1px, solid, gray3",
|
|
17261
|
-
|
|
17325
|
+
padding: "Y Z2 Y Y",
|
|
17326
|
+
alignItems: "center",
|
|
17327
|
+
gap: "B",
|
|
17328
|
+
round: "A"
|
|
17262
17329
|
},
|
|
17263
|
-
|
|
17330
|
+
User: {
|
|
17331
|
+
extend: User,
|
|
17332
|
+
props: { padding: "0" },
|
|
17264
17333
|
Avatar: {
|
|
17265
|
-
|
|
17334
|
+
Avatar: {
|
|
17335
|
+
props: { fontSize: "Z2", round: "Z1" }
|
|
17336
|
+
},
|
|
17337
|
+
StatusIndicator: null
|
|
17266
17338
|
},
|
|
17267
|
-
|
|
17268
|
-
|
|
17269
|
-
|
|
17270
|
-
Title: {
|
|
17271
|
-
h5: {
|
|
17339
|
+
Notes: {
|
|
17340
|
+
props: { gap: "X" },
|
|
17341
|
+
Title: {
|
|
17272
17342
|
props: {
|
|
17273
17343
|
text: "Wallet ID",
|
|
17274
|
-
fontSize: "
|
|
17344
|
+
fontSize: "Y1"
|
|
17275
17345
|
}
|
|
17276
|
-
}
|
|
17277
|
-
|
|
17278
|
-
Paragraph: {
|
|
17279
|
-
p: {
|
|
17346
|
+
},
|
|
17347
|
+
Paragraph: {
|
|
17280
17348
|
props: {
|
|
17281
17349
|
text: "0xfb59...d862",
|
|
17282
|
-
fontSize: "
|
|
17350
|
+
fontSize: "Y1"
|
|
17283
17351
|
}
|
|
17284
17352
|
}
|
|
17285
17353
|
}
|
|
17286
17354
|
},
|
|
17287
17355
|
IconCommonButton: {
|
|
17288
|
-
round: "Y1",
|
|
17289
17356
|
background: "transparent",
|
|
17290
17357
|
theme: null,
|
|
17291
17358
|
color: "currentColor",
|
|
17292
17359
|
opacity: "0.5",
|
|
17293
17360
|
transition: "A defaultBezier",
|
|
17294
17361
|
transitionProperty: "opacity, background",
|
|
17295
|
-
|
|
17296
|
-
opacity: "1",
|
|
17297
|
-
theme: "secondary"
|
|
17298
|
-
},
|
|
17299
|
-
margin: "- - - Z2",
|
|
17362
|
+
padding: "0",
|
|
17300
17363
|
Icon: {
|
|
17301
17364
|
name: "copy",
|
|
17302
17365
|
fontSize: "C"
|
|
@@ -17304,51 +17367,104 @@ var UserWithButton = {
|
|
|
17304
17367
|
}
|
|
17305
17368
|
};
|
|
17306
17369
|
|
|
17307
|
-
//
|
|
17370
|
+
// ../uikit/Table/index.js
|
|
17308
17371
|
var Table = {};
|
|
17309
17372
|
|
|
17310
|
-
//
|
|
17311
|
-
var
|
|
17312
|
-
extend:
|
|
17373
|
+
// ../uikit/Card/Card.js
|
|
17374
|
+
var Card = {
|
|
17375
|
+
extend: Flex,
|
|
17313
17376
|
props: {
|
|
17314
17377
|
boxSize: "fit-content",
|
|
17315
17378
|
padding: "Z2 A",
|
|
17316
|
-
round: "Z",
|
|
17317
17379
|
gap: "Z1",
|
|
17318
|
-
|
|
17380
|
+
round: "Z2",
|
|
17381
|
+
theme: "card"
|
|
17382
|
+
}
|
|
17383
|
+
};
|
|
17384
|
+
|
|
17385
|
+
// ../uikit/Card/BalanceCard.js
|
|
17386
|
+
var BalanceCard = {
|
|
17387
|
+
extend: [Card, TitleParagraph],
|
|
17388
|
+
props: {
|
|
17389
|
+
theme: "card .secondary",
|
|
17390
|
+
gap: "Z2",
|
|
17391
|
+
padding: "A A"
|
|
17319
17392
|
},
|
|
17320
17393
|
Title: {
|
|
17321
|
-
props: {
|
|
17322
|
-
|
|
17323
|
-
|
|
17394
|
+
props: {
|
|
17395
|
+
justifyContent: "space-between",
|
|
17396
|
+
gap: "E"
|
|
17397
|
+
},
|
|
17398
|
+
caption: {
|
|
17399
|
+
props: {
|
|
17400
|
+
text: "Total crypto assets",
|
|
17401
|
+
fontSize: "Z2",
|
|
17402
|
+
fontWeight: "500"
|
|
17403
|
+
}
|
|
17404
|
+
},
|
|
17405
|
+
arrowBtn: {
|
|
17406
|
+
extend: Button,
|
|
17407
|
+
props: {
|
|
17408
|
+
padding: "0",
|
|
17409
|
+
theme: "transparent",
|
|
17410
|
+
fontSize: "D",
|
|
17411
|
+
color: "gray4",
|
|
17412
|
+
margin: "-X -W2 - -",
|
|
17413
|
+
Icon: { name: "arrowUpRight" }
|
|
17414
|
+
}
|
|
17415
|
+
}
|
|
17324
17416
|
},
|
|
17325
17417
|
Paragraph: {
|
|
17326
17418
|
props: {
|
|
17327
17419
|
flow: "column",
|
|
17328
|
-
|
|
17420
|
+
align: "flex-start flex-start",
|
|
17421
|
+
gap: "A"
|
|
17329
17422
|
},
|
|
17330
17423
|
UnitValueWithLabel: {
|
|
17331
17424
|
UnitValue: {},
|
|
17332
|
-
UnitValue2: {
|
|
17333
|
-
background: "black .35",
|
|
17334
|
-
color: "white"
|
|
17335
|
-
}
|
|
17425
|
+
UnitValue2: { theme: "card .secondary .child" }
|
|
17336
17426
|
},
|
|
17337
17427
|
UnitValue: {
|
|
17338
|
-
color: "gray4",
|
|
17339
17428
|
flow: "row-reverse",
|
|
17340
|
-
|
|
17341
|
-
gap: "X",
|
|
17342
|
-
fontSize: "Z",
|
|
17429
|
+
color: "white .75",
|
|
17343
17430
|
fontWeight: "400",
|
|
17344
|
-
|
|
17345
|
-
|
|
17346
|
-
|
|
17347
|
-
|
|
17348
|
-
|
|
17349
|
-
}
|
|
17350
|
-
|
|
17351
|
-
//
|
|
17431
|
+
fontSize: "Z",
|
|
17432
|
+
gap: "Y",
|
|
17433
|
+
Value: { text: "an hour ago" },
|
|
17434
|
+
Unit: { text: "Last update:" }
|
|
17435
|
+
}
|
|
17436
|
+
}
|
|
17437
|
+
// Title: {
|
|
17438
|
+
// props: { gap: 'E1' },
|
|
17439
|
+
// h5: { props: { text: 'Total crypto assets' } },
|
|
17440
|
+
// Button: { props: { Icon: { name: 'arrowUpRight' } } }
|
|
17441
|
+
// },
|
|
17442
|
+
// Paragraph: {
|
|
17443
|
+
// props: {
|
|
17444
|
+
// flow: 'column',
|
|
17445
|
+
// gap: 'Z1'
|
|
17446
|
+
// },
|
|
17447
|
+
// UnitValueWithLabel: {
|
|
17448
|
+
// UnitValue: {},
|
|
17449
|
+
// UnitValue2: {
|
|
17450
|
+
// theme: 'card .secondary .child'
|
|
17451
|
+
// }
|
|
17452
|
+
// },
|
|
17453
|
+
// UnitValue: {
|
|
17454
|
+
// color: 'gray4',
|
|
17455
|
+
// flow: 'row-reverse',
|
|
17456
|
+
// justifyContent: 'flex-end',
|
|
17457
|
+
// gap: 'X',
|
|
17458
|
+
// fontSize: 'Z',
|
|
17459
|
+
// fontWeight: '400',
|
|
17460
|
+
// Unit: { text: 'Last update:' },
|
|
17461
|
+
// Value: { text: 'an hour ago' }
|
|
17462
|
+
// },
|
|
17463
|
+
// p: null
|
|
17464
|
+
// }
|
|
17465
|
+
};
|
|
17466
|
+
|
|
17467
|
+
// ../uikit/Card/StepCard.js
|
|
17352
17468
|
var StepCard = {
|
|
17353
17469
|
props: {
|
|
17354
17470
|
boxSize: "fit-content",
|
|
@@ -17376,113 +17492,125 @@ var StepCard = {
|
|
|
17376
17492
|
}
|
|
17377
17493
|
};
|
|
17378
17494
|
|
|
17379
|
-
//
|
|
17495
|
+
// ../uikit/Card/ConvertCard.js
|
|
17380
17496
|
var ConvertCard = {
|
|
17381
|
-
extend: TitleParagraph,
|
|
17497
|
+
extend: [Card, TitleParagraph],
|
|
17382
17498
|
props: {
|
|
17383
|
-
|
|
17384
|
-
|
|
17385
|
-
|
|
17386
|
-
padding: "Z2
|
|
17387
|
-
|
|
17499
|
+
minWidth: "G1",
|
|
17500
|
+
theme: "dialog",
|
|
17501
|
+
round: "Z2",
|
|
17502
|
+
padding: "A Z2+V Y1 Z2+V",
|
|
17503
|
+
gap: "A1"
|
|
17388
17504
|
},
|
|
17389
17505
|
Title: {
|
|
17390
|
-
props: {
|
|
17391
|
-
|
|
17506
|
+
props: {
|
|
17507
|
+
justifyContent: "space-between",
|
|
17508
|
+
fontWeight: "400",
|
|
17509
|
+
color: "gray4"
|
|
17510
|
+
},
|
|
17511
|
+
caption: {
|
|
17392
17512
|
props: {
|
|
17393
|
-
text: "From"
|
|
17394
|
-
fontSize: "Z1",
|
|
17395
|
-
color: "gray4",
|
|
17396
|
-
fontWeight: "400"
|
|
17513
|
+
text: "From"
|
|
17397
17514
|
}
|
|
17398
17515
|
},
|
|
17399
|
-
|
|
17516
|
+
balance: {
|
|
17517
|
+
extend: UnitValueWithTitle,
|
|
17518
|
+
props: {
|
|
17519
|
+
// border: '1px sol'
|
|
17520
|
+
}
|
|
17521
|
+
}
|
|
17400
17522
|
},
|
|
17401
17523
|
Paragraph: {
|
|
17402
|
-
|
|
17403
|
-
|
|
17524
|
+
props: {
|
|
17525
|
+
align: "center space-between",
|
|
17526
|
+
margin: "0",
|
|
17527
|
+
padding: "0"
|
|
17528
|
+
},
|
|
17529
|
+
value: {
|
|
17404
17530
|
props: {
|
|
17405
|
-
|
|
17406
|
-
|
|
17407
|
-
}
|
|
17408
|
-
|
|
17409
|
-
|
|
17410
|
-
|
|
17411
|
-
|
|
17412
|
-
|
|
17413
|
-
|
|
17414
|
-
|
|
17415
|
-
|
|
17416
|
-
|
|
17417
|
-
|
|
17418
|
-
|
|
17419
|
-
|
|
17420
|
-
//
|
|
17531
|
+
text: "0.00",
|
|
17532
|
+
fontSize: "E2"
|
|
17533
|
+
}
|
|
17534
|
+
},
|
|
17535
|
+
dropDownButton: {
|
|
17536
|
+
extend: DropDownButtonWithAvatar,
|
|
17537
|
+
props: {
|
|
17538
|
+
theme: "tertiary",
|
|
17539
|
+
margin: "- -V"
|
|
17540
|
+
}
|
|
17541
|
+
}
|
|
17542
|
+
}
|
|
17543
|
+
// props: {
|
|
17544
|
+
// boxSize: 'fit-content',
|
|
17545
|
+
// gap: 'A',
|
|
17546
|
+
// padding: 'Z2'
|
|
17547
|
+
// },
|
|
17548
|
+
// Title: {
|
|
17549
|
+
// props: { gap: 'F' },
|
|
17550
|
+
// caption: {
|
|
17551
|
+
// props: {
|
|
17552
|
+
// text: 'From',
|
|
17553
|
+
// fontSize: 'Z1',
|
|
17554
|
+
// fontWeight: '400'
|
|
17555
|
+
// }
|
|
17556
|
+
// },
|
|
17557
|
+
// UnitValueWithTitle: { props: { fontWeight: '400' } }
|
|
17558
|
+
// },
|
|
17559
|
+
// Paragraph: {
|
|
17560
|
+
// props: { align: 'center space-between' },
|
|
17561
|
+
// Value: {
|
|
17562
|
+
// props: {
|
|
17563
|
+
// text: '0.00',
|
|
17564
|
+
// fontSize: 'E2'
|
|
17565
|
+
// }
|
|
17566
|
+
// },
|
|
17567
|
+
// DropDownButtonWithAvatar: { theme: 'card .child' }
|
|
17568
|
+
// }
|
|
17569
|
+
};
|
|
17570
|
+
|
|
17571
|
+
// ../uikit/Card/CurrencyConvertCard.js
|
|
17421
17572
|
var CurrencyConvert = {
|
|
17422
|
-
extend:
|
|
17573
|
+
extend: Flex,
|
|
17423
17574
|
props: {
|
|
17424
17575
|
boxSize: "fit-content",
|
|
17425
|
-
|
|
17426
|
-
|
|
17427
|
-
|
|
17576
|
+
gap: "Z",
|
|
17577
|
+
padding: "Z A A A",
|
|
17578
|
+
flow: "column",
|
|
17579
|
+
theme: "dialog",
|
|
17580
|
+
round: "A1"
|
|
17428
17581
|
},
|
|
17429
|
-
|
|
17430
|
-
|
|
17431
|
-
|
|
17432
|
-
|
|
17433
|
-
|
|
17434
|
-
|
|
17435
|
-
|
|
17436
|
-
|
|
17437
|
-
Button: null
|
|
17438
|
-
},
|
|
17439
|
-
Paragraph: null
|
|
17582
|
+
Title: {
|
|
17583
|
+
props: {
|
|
17584
|
+
text: "convert",
|
|
17585
|
+
textTransform: "capitalize",
|
|
17586
|
+
fontSize: "A2",
|
|
17587
|
+
padding: "- W",
|
|
17588
|
+
fontWeight: "500"
|
|
17589
|
+
}
|
|
17440
17590
|
},
|
|
17441
|
-
|
|
17591
|
+
Cards: {
|
|
17592
|
+
extend: Flex,
|
|
17442
17593
|
props: {
|
|
17443
|
-
margin: "- -X2",
|
|
17444
17594
|
flow: "column",
|
|
17445
|
-
gap: "
|
|
17595
|
+
gap: "A"
|
|
17446
17596
|
},
|
|
17447
17597
|
childExtend: {
|
|
17448
17598
|
extend: ConvertCard,
|
|
17449
17599
|
props: {
|
|
17450
|
-
theme: "
|
|
17600
|
+
theme: "tertiary",
|
|
17601
|
+
Paragraph: {
|
|
17602
|
+
dropDownButton: { theme: "secondary" }
|
|
17603
|
+
}
|
|
17451
17604
|
}
|
|
17452
17605
|
},
|
|
17453
17606
|
...[{}, {}]
|
|
17454
17607
|
},
|
|
17455
|
-
|
|
17456
|
-
|
|
17457
|
-
|
|
17458
|
-
|
|
17459
|
-
|
|
17460
|
-
|
|
17461
|
-
extend: "Button",
|
|
17462
|
-
props: {
|
|
17463
|
-
theme: "primary",
|
|
17464
|
-
boxSize: "fit-content",
|
|
17465
|
-
padding: "A A2",
|
|
17466
|
-
round: "Z2",
|
|
17467
|
-
gap: "Y2",
|
|
17468
|
-
position: "relative"
|
|
17469
|
-
},
|
|
17470
|
-
Icon: {
|
|
17471
|
-
props: { fontSize: "C" }
|
|
17472
|
-
},
|
|
17473
|
-
Caption: {
|
|
17474
|
-
props: {
|
|
17475
|
-
text: "Button",
|
|
17476
|
-
line_height: "1em"
|
|
17477
|
-
}
|
|
17478
|
-
}
|
|
17479
|
-
},
|
|
17480
|
-
props: {
|
|
17481
|
-
flex: "1",
|
|
17482
|
-
padding: "Z1 -",
|
|
17483
|
-
round: "Z",
|
|
17484
|
-
Caption: { text: "Convert", fontWeight: "500" }
|
|
17485
|
-
}
|
|
17608
|
+
CommonButton: {
|
|
17609
|
+
minWidth: "100%",
|
|
17610
|
+
margin: "Z - - -",
|
|
17611
|
+
caption: {
|
|
17612
|
+
text: "convert",
|
|
17613
|
+
textTransform: "capitalize"
|
|
17486
17614
|
}
|
|
17487
17615
|
}
|
|
17488
17616
|
};
|
|
@@ -17697,7 +17825,8 @@ var DESIGN_SYSTEM_OPTIONS = {
|
|
|
17697
17825
|
useIconSprite: true,
|
|
17698
17826
|
useSvgSprite: true,
|
|
17699
17827
|
useDocumentTheme: true,
|
|
17700
|
-
useFontImport: true
|
|
17828
|
+
useFontImport: true,
|
|
17829
|
+
useDefaultConfig: true
|
|
17701
17830
|
};
|
|
17702
17831
|
var CREATE_OPTIONS = {
|
|
17703
17832
|
defaultConfig: true,
|
|
@@ -17713,8 +17842,8 @@ var CREATE_OPTIONS = {
|
|
|
17713
17842
|
};
|
|
17714
17843
|
var options_default = CREATE_OPTIONS;
|
|
17715
17844
|
|
|
17716
|
-
//
|
|
17717
|
-
var
|
|
17845
|
+
// ../icons/default/index.js
|
|
17846
|
+
var default_default = {
|
|
17718
17847
|
symbols: require_logo(),
|
|
17719
17848
|
arrowDownCircle: require_arrow_down_circle(),
|
|
17720
17849
|
arrowDownLeft: require_arrow_down_left(),
|
|
@@ -17779,10 +17908,14 @@ var COLOR = {
|
|
|
17779
17908
|
gray4: "#BDBDC1"
|
|
17780
17909
|
};
|
|
17781
17910
|
var GRADIENT = {
|
|
17782
|
-
"gradient-blue": `linear-gradient(to right,
|
|
17911
|
+
"gradient-blue-light": `linear-gradient(to right,
|
|
17783
17912
|
rgba(4, 116, 242, 1),
|
|
17784
17913
|
rgba(0, 48, 103, 1)
|
|
17785
17914
|
)`,
|
|
17915
|
+
"gradient-blue-dark": `linear-gradient(to right,
|
|
17916
|
+
#0474F2,
|
|
17917
|
+
#003067
|
|
17918
|
+
)`,
|
|
17786
17919
|
"gradient-dark": `linear-gradient(0deg,
|
|
17787
17920
|
rgba(0,0,0,0.06) 0%,
|
|
17788
17921
|
rgba(0,0,0,0.07) 100%
|
|
@@ -17906,7 +18039,9 @@ var PRIORITIES = {
|
|
|
17906
18039
|
background: "gradient-dark-active"
|
|
17907
18040
|
}
|
|
17908
18041
|
}
|
|
17909
|
-
}
|
|
18042
|
+
}
|
|
18043
|
+
};
|
|
18044
|
+
var STATES = {
|
|
17910
18045
|
alert: {
|
|
17911
18046
|
"@dark": {
|
|
17912
18047
|
color: "white",
|
|
@@ -17927,6 +18062,44 @@ var PRIORITIES = {
|
|
|
17927
18062
|
};
|
|
17928
18063
|
var UI = {
|
|
17929
18064
|
field: "--tertiary",
|
|
18065
|
+
label: {
|
|
18066
|
+
"@dark": {
|
|
18067
|
+
color: "white",
|
|
18068
|
+
background: "gray .92 +8"
|
|
18069
|
+
},
|
|
18070
|
+
"@light": {
|
|
18071
|
+
background: "gray .1"
|
|
18072
|
+
},
|
|
18073
|
+
".light": {
|
|
18074
|
+
color: "white",
|
|
18075
|
+
background: "gray3"
|
|
18076
|
+
},
|
|
18077
|
+
".dark": {
|
|
18078
|
+
color: "white",
|
|
18079
|
+
background: "black .35"
|
|
18080
|
+
}
|
|
18081
|
+
},
|
|
18082
|
+
card: {
|
|
18083
|
+
"@dark": {
|
|
18084
|
+
color: "white",
|
|
18085
|
+
background: "gray .92 +8"
|
|
18086
|
+
},
|
|
18087
|
+
"@light": {
|
|
18088
|
+
background: "gray .1"
|
|
18089
|
+
},
|
|
18090
|
+
".child": {
|
|
18091
|
+
color: "white",
|
|
18092
|
+
background: "gray3"
|
|
18093
|
+
},
|
|
18094
|
+
".secondary": {
|
|
18095
|
+
color: "white",
|
|
18096
|
+
background: "gradient-blue-dark",
|
|
18097
|
+
".child": {
|
|
18098
|
+
color: "white",
|
|
18099
|
+
background: "black .35"
|
|
18100
|
+
}
|
|
18101
|
+
}
|
|
18102
|
+
},
|
|
17930
18103
|
dialog: {
|
|
17931
18104
|
"@dark": {
|
|
17932
18105
|
color: "white",
|
|
@@ -17954,6 +18127,7 @@ var THEME = {
|
|
|
17954
18127
|
}
|
|
17955
18128
|
},
|
|
17956
18129
|
...PRIORITIES,
|
|
18130
|
+
...STATES,
|
|
17957
18131
|
...UI,
|
|
17958
18132
|
none: {
|
|
17959
18133
|
color: "none",
|
|
@@ -18001,7 +18175,7 @@ var DEFAULT_CONFIG = {
|
|
|
18001
18175
|
FONT,
|
|
18002
18176
|
FONT_FAMILY,
|
|
18003
18177
|
TIMING: {},
|
|
18004
|
-
ICONS:
|
|
18178
|
+
ICONS: default_default,
|
|
18005
18179
|
MEDIA: {
|
|
18006
18180
|
tv: "(min-width: 2780px)",
|
|
18007
18181
|
screenL: "(max-width: 1920px)",
|
|
@@ -18033,7 +18207,8 @@ var initEmotion = (key, options = DESIGN_SYSTEM_OPTIONS) => {
|
|
|
18033
18207
|
if (!initOptions.emotion)
|
|
18034
18208
|
initOptions.emotion = emotion;
|
|
18035
18209
|
const registry = options.registry || transformDOMQLEmotion(initOptions.emotion, options);
|
|
18036
|
-
const
|
|
18210
|
+
const defaultDesignSystem = (0, import_utils20.deepClone)(src_default);
|
|
18211
|
+
const designSystem = options.useDefaultConfig ? (0, import_utils20.deepMerge)(options.designSystem, defaultDesignSystem) : options.designSystem;
|
|
18037
18212
|
const scratchSystem2 = init(designSystem, {
|
|
18038
18213
|
key,
|
|
18039
18214
|
emotion: emotion2,
|
|
@@ -21507,7 +21682,7 @@ var DevFocus = {
|
|
|
21507
21682
|
if ((0, import_utils21.isObject)(components)) {
|
|
21508
21683
|
const { Content, ...rest } = components;
|
|
21509
21684
|
for (const key in rest) {
|
|
21510
|
-
if (
|
|
21685
|
+
if (uikit_exports[key])
|
|
21511
21686
|
continue;
|
|
21512
21687
|
if (!rest[key].__ref)
|
|
21513
21688
|
rest[key].__ref = {};
|
|
@@ -21746,7 +21921,7 @@ var create = async (App, options = options_default, optionsExternalFile) => {
|
|
|
21746
21921
|
if (App && App.state)
|
|
21747
21922
|
(0, import_utils23.deepMerge)(state, App.state);
|
|
21748
21923
|
const pages = options.pages || {};
|
|
21749
|
-
const components = options.components ? { ...
|
|
21924
|
+
const components = options.components ? { ...uikit_exports, ...options.components } : uikit_exports;
|
|
21750
21925
|
const designSystem = scratcDesignhSystem || {};
|
|
21751
21926
|
const snippets = { ...utilImports_exports, ...import_scratch2.scratchUtils, ...options.snippets || {} };
|
|
21752
21927
|
const define = options.define || defaultDefine;
|
|
@@ -21814,7 +21989,7 @@ var createSync = (App, options = options_default, optionsExternalFile) => {
|
|
|
21814
21989
|
else
|
|
21815
21990
|
state = {};
|
|
21816
21991
|
const pages = options.pages || {};
|
|
21817
|
-
const components = options.components ? { ...
|
|
21992
|
+
const components = options.components ? { ...uikit_exports, ...options.components } : uikit_exports;
|
|
21818
21993
|
const designSystem = scratcDesignhSystem || {};
|
|
21819
21994
|
const snippets = { ...utilImports_exports, ...import_scratch2.scratchUtils, ...options.snippets || {} };
|
|
21820
21995
|
const define = options.define || defaultDefine;
|