@plaidev/karte-action-sdk 1.1.229-28646443.12e5acc3 → 1.1.229
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/hydrate/index.es.d.ts +11 -17
- package/dist/hydrate/index.es.js +169 -223
- package/dist/index.es.d.ts +11 -17
- package/dist/index.es.js +172 -226
- package/meta/karte-action-sdk.api.json +6318 -0
- package/package.json +1 -1
package/dist/hydrate/index.es.js
CHANGED
@@ -1335,7 +1335,9 @@ function showOnTime(props, show = NOOP) {
|
|
1335
1335
|
/**
|
1336
1336
|
* アクションテーブルに関連するコードの管理
|
1337
1337
|
*/
|
1338
|
-
const DEFAULT_COLLECTION_ENDPOINT = '
|
1338
|
+
const DEFAULT_COLLECTION_ENDPOINT = typeof __FLYER_GEN_COLLECTION_API_ENDPOINT__ === 'string'
|
1339
|
+
? __FLYER_GEN_COLLECTION_API_ENDPOINT__
|
1340
|
+
: 'https://action-table.karte.io/collection';
|
1339
1341
|
/**
|
1340
1342
|
* アクションテーブルを管理するメソッドを取得する
|
1341
1343
|
*
|
@@ -1346,7 +1348,7 @@ const DEFAULT_COLLECTION_ENDPOINT = 'https://action-table.karte.io/collection';
|
|
1346
1348
|
* @public
|
1347
1349
|
*/
|
1348
1350
|
function collection$1(config) {
|
1349
|
-
const endpoint = config.
|
1351
|
+
const endpoint = config.endpoint || DEFAULT_COLLECTION_ENDPOINT;
|
1350
1352
|
const api_key = config.api_key;
|
1351
1353
|
const table = config.table;
|
1352
1354
|
return {
|
@@ -1428,7 +1430,7 @@ function request(url, data, cb) {
|
|
1428
1430
|
});
|
1429
1431
|
}
|
1430
1432
|
/** @internal */
|
1431
|
-
const loadActionTableRow = async (config, data, api_key,
|
1433
|
+
const loadActionTableRow = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
|
1432
1434
|
const defaultValue = config.query.default_value ?? null;
|
1433
1435
|
const key = data[config.query.key] ?? null;
|
1434
1436
|
if (key == null) {
|
@@ -1438,7 +1440,7 @@ const loadActionTableRow = async (config, data, api_key, collection_endpoint) =>
|
|
1438
1440
|
}
|
1439
1441
|
return reject('key is not found.');
|
1440
1442
|
}
|
1441
|
-
return collection$1({
|
1443
|
+
return collection$1({ endpoint, api_key, table: config.query.table_name }).get(key, (err, data) => {
|
1442
1444
|
if (err) {
|
1443
1445
|
if (defaultValue != null) {
|
1444
1446
|
return resolve(defaultValue);
|
@@ -1458,7 +1460,7 @@ const loadActionTableRow = async (config, data, api_key, collection_endpoint) =>
|
|
1458
1460
|
});
|
1459
1461
|
});
|
1460
1462
|
/** @internal */
|
1461
|
-
const loadActionTableRows = async (config, data, api_key,
|
1463
|
+
const loadActionTableRows = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
|
1462
1464
|
if (config.query.keys == null) {
|
1463
1465
|
console.warn('key is not defined.');
|
1464
1466
|
return reject('key is not defined.');
|
@@ -1481,7 +1483,7 @@ const loadActionTableRows = async (config, data, api_key, collection_endpoint) =
|
|
1481
1483
|
}
|
1482
1484
|
return reject('key is not found.');
|
1483
1485
|
}
|
1484
|
-
return collection$1({
|
1486
|
+
return collection$1({ endpoint, api_key, table: config.query.table_name }).get(keys, (err, data) => {
|
1485
1487
|
if (err) {
|
1486
1488
|
if (defaultValue != null) {
|
1487
1489
|
return resolve(defaultValue);
|
@@ -1501,7 +1503,7 @@ const loadActionTableRows = async (config, data, api_key, collection_endpoint) =
|
|
1501
1503
|
});
|
1502
1504
|
});
|
1503
1505
|
/** @internal */
|
1504
|
-
const loadActionTableQuery = async (config, data, api_key,
|
1506
|
+
const loadActionTableQuery = async (config, data, api_key, endpoint) => new Promise((resolve, reject) => {
|
1505
1507
|
if (config.query.params == null) {
|
1506
1508
|
console.warn('key is not defined.');
|
1507
1509
|
return reject('key is not defined.');
|
@@ -1523,7 +1525,7 @@ const loadActionTableQuery = async (config, data, api_key, collection_endpoint)
|
|
1523
1525
|
}
|
1524
1526
|
return reject('key is not found.');
|
1525
1527
|
}
|
1526
|
-
return collection$1({
|
1528
|
+
return collection$1({ endpoint, api_key, table: config.query.table_name }).getByQuery(config.query.query_name, params, null, (err, data) => {
|
1527
1529
|
if (err) {
|
1528
1530
|
if (defaultValue != null) {
|
1529
1531
|
return resolve(defaultValue);
|
@@ -1543,8 +1545,8 @@ const loadActionTableQuery = async (config, data, api_key, collection_endpoint)
|
|
1543
1545
|
});
|
1544
1546
|
});
|
1545
1547
|
/** @internal */
|
1546
|
-
const loadActionTable = async (config, data, api_key,
|
1547
|
-
console.debug('[debug] loadActionTable', isPreview(), api_key,
|
1548
|
+
const loadActionTable = async (config, data, api_key, endpoint) => {
|
1549
|
+
console.debug('[debug] loadActionTable', isPreview(), api_key, endpoint, JSON.stringify(config));
|
1548
1550
|
const results = config.map(c => c.preview_value)
|
1549
1551
|
;
|
1550
1552
|
return config.reduce((acc, c, i) => {
|
@@ -1556,8 +1558,8 @@ const loadActionTable = async (config, data, api_key, collection_endpoint) => {
|
|
1556
1558
|
}, {});
|
1557
1559
|
};
|
1558
1560
|
/** @internal */
|
1559
|
-
async function setupActionTable(localVariablesQuery, data, apiKey
|
1560
|
-
const result = await loadActionTable(localVariablesQuery, data, apiKey
|
1561
|
+
async function setupActionTable(localVariablesQuery, data, apiKey) {
|
1562
|
+
const result = await loadActionTable(localVariablesQuery, data, apiKey);
|
1561
1563
|
let success = false;
|
1562
1564
|
if (Object.keys(result).length === localVariablesQuery.length) {
|
1563
1565
|
setVariables(result);
|
@@ -1773,7 +1775,7 @@ function createModal(App, options = {
|
|
1773
1775
|
variables: {},
|
1774
1776
|
localVariablesQuery: undefined,
|
1775
1777
|
karteTemplate: {},
|
1776
|
-
context: { api_key: ''
|
1778
|
+
context: { api_key: '' },
|
1777
1779
|
}) {
|
1778
1780
|
let app = null;
|
1779
1781
|
const data = getVariables();
|
@@ -1880,7 +1882,7 @@ function createModal(App, options = {
|
|
1880
1882
|
initActionTable(options.localVariablesQuery);
|
1881
1883
|
let actionTablePromise = null;
|
1882
1884
|
if (options.localVariablesQuery && data.api_key) {
|
1883
|
-
actionTablePromise = setupActionTable(options.localVariablesQuery, data, data.api_key
|
1885
|
+
actionTablePromise = setupActionTable(options.localVariablesQuery, data, data.api_key);
|
1884
1886
|
}
|
1885
1887
|
// NOTE: onCreateより前にListenする必要がある
|
1886
1888
|
window.addEventListener(ACTION_SHOW_EVENT, handleShow);
|
@@ -2055,14 +2057,14 @@ async function runScript$1(options = {
|
|
2055
2057
|
variables: {},
|
2056
2058
|
localVariablesQuery: undefined,
|
2057
2059
|
karteTemplate: {},
|
2058
|
-
context: { api_key: ''
|
2060
|
+
context: { api_key: '' },
|
2059
2061
|
}) {
|
2060
2062
|
if (!options.onCreate)
|
2061
2063
|
return;
|
2062
2064
|
let data = getVariables();
|
2063
2065
|
initialize({ send: options.send, initialState: data.initial_state });
|
2064
2066
|
initActionTable(options.localVariablesQuery);
|
2065
|
-
const { success } = await setupActionTable(options.localVariablesQuery, data, data.api_key
|
2067
|
+
const { success } = await setupActionTable(options.localVariablesQuery, data, data.api_key);
|
2066
2068
|
if (!success)
|
2067
2069
|
return;
|
2068
2070
|
// Action Tableの取得結果を反映する
|
@@ -2148,15 +2150,6 @@ async function loadGlobalStyle(href) {
|
|
2148
2150
|
*
|
2149
2151
|
* アクションのCreate, Destroyの状態はここで管理する。
|
2150
2152
|
*/
|
2151
|
-
const emptyOptions = {
|
2152
|
-
send: () => { },
|
2153
|
-
publish: () => { },
|
2154
|
-
props: {},
|
2155
|
-
variables: {},
|
2156
|
-
localVariablesQuery: undefined,
|
2157
|
-
karteTemplate: {},
|
2158
|
-
context: { api_key: '', collection_endpoint: undefined },
|
2159
|
-
};
|
2160
2153
|
/**
|
2161
2154
|
* アクションを作成する
|
2162
2155
|
*
|
@@ -2167,9 +2160,15 @@ const emptyOptions = {
|
|
2167
2160
|
*
|
2168
2161
|
* @public
|
2169
2162
|
*/
|
2170
|
-
function create(App, options
|
2171
|
-
|
2172
|
-
|
2163
|
+
function create(App, options = {
|
2164
|
+
send: () => { },
|
2165
|
+
publish: () => { },
|
2166
|
+
props: {},
|
2167
|
+
variables: {},
|
2168
|
+
localVariablesQuery: undefined,
|
2169
|
+
karteTemplate: {},
|
2170
|
+
context: { api_key: '' },
|
2171
|
+
}) {
|
2173
2172
|
setVariables({
|
2174
2173
|
...options.props,
|
2175
2174
|
...options.variables,
|
@@ -2197,7 +2196,6 @@ function create(App, options) {
|
|
2197
2196
|
setSystem({
|
2198
2197
|
// @ts-ignore
|
2199
2198
|
apiKey: data.api_key || null,
|
2200
|
-
collection_endpoint: options.context.collection_endpoint,
|
2201
2199
|
shortenId: data.shorten_id || null,
|
2202
2200
|
campaignId: data.campaign_id || null,
|
2203
2201
|
});
|
@@ -2753,11 +2751,7 @@ const storage = {
|
|
2753
2751
|
function collection(table) {
|
2754
2752
|
const systemConfig = getSystem();
|
2755
2753
|
const collectionName = table.replace(/^v2\//, '');
|
2756
|
-
return collection$1({
|
2757
|
-
api_key: systemConfig.apiKey || 'mock',
|
2758
|
-
collection_endpoint: systemConfig.collection_endpoint,
|
2759
|
-
table: collectionName,
|
2760
|
-
});
|
2754
|
+
return collection$1({ api_key: systemConfig.apiKey || 'mock', table: collectionName });
|
2761
2755
|
}
|
2762
2756
|
|
2763
2757
|
var widget = /*#__PURE__*/Object.freeze({
|
@@ -3011,7 +3005,7 @@ class State extends SvelteComponent {
|
|
3011
3005
|
/* src/components/StateItem.svelte generated by Svelte v3.53.1 */
|
3012
3006
|
|
3013
3007
|
function add_css$w(target) {
|
3014
|
-
append_styles(target, "svelte-
|
3008
|
+
append_styles(target, "svelte-1amihue", ".state-item.svelte-1amihue{position:absolute;display:none}");
|
3015
3009
|
}
|
3016
3010
|
|
3017
3011
|
// (23:0) {#if $state === path}
|
@@ -3038,7 +3032,7 @@ function create_if_block$c(ctx) {
|
|
3038
3032
|
},
|
3039
3033
|
h() {
|
3040
3034
|
attr(div, "data-state-path", /*path*/ ctx[0]);
|
3041
|
-
attr(div, "class", "state-item svelte-
|
3035
|
+
attr(div, "class", "state-item svelte-1amihue");
|
3042
3036
|
},
|
3043
3037
|
m(target, anchor) {
|
3044
3038
|
insert_hydration(target, div, anchor);
|
@@ -3305,7 +3299,7 @@ function customAnimation(node, { transforms, animationStyle, delay = 0, duration
|
|
3305
3299
|
/* src/components/BackgroundOverlay.svelte generated by Svelte v3.53.1 */
|
3306
3300
|
|
3307
3301
|
function add_css$v(target) {
|
3308
|
-
append_styles(target, "svelte-
|
3302
|
+
append_styles(target, "svelte-g6ucc2", ".background.svelte-g6ucc2{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0, 0, 0, 0.3);z-index:2147483646}");
|
3309
3303
|
}
|
3310
3304
|
|
3311
3305
|
// (14:0) {#if backgroundOverlay}
|
@@ -3326,7 +3320,7 @@ function create_if_block$b(ctx) {
|
|
3326
3320
|
this.h();
|
3327
3321
|
},
|
3328
3322
|
h() {
|
3329
|
-
attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-
|
3323
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-g6ucc2"));
|
3330
3324
|
},
|
3331
3325
|
m(target, anchor) {
|
3332
3326
|
insert_hydration(target, div, anchor);
|
@@ -3337,7 +3331,7 @@ function create_if_block$b(ctx) {
|
|
3337
3331
|
}
|
3338
3332
|
},
|
3339
3333
|
p(ctx, dirty) {
|
3340
|
-
if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-
|
3334
|
+
if (dirty & /*className*/ 2 && div_class_value !== (div_class_value = "" + (null_to_empty(['background', /*className*/ ctx[1] || ''].join(' ')) + " svelte-g6ucc2"))) {
|
3341
3335
|
attr(div, "class", div_class_value);
|
3342
3336
|
}
|
3343
3337
|
},
|
@@ -3447,7 +3441,7 @@ function checkStopPropagation(eventName, handler) {
|
|
3447
3441
|
/* src/components/Button.svelte generated by Svelte v3.53.1 */
|
3448
3442
|
|
3449
3443
|
function add_css$u(target) {
|
3450
|
-
append_styles(target, "svelte-
|
3444
|
+
append_styles(target, "svelte-1kmu8zp", ".button.svelte-1kmu8zp{display:block;text-decoration:none;color:inherit;border:none;background:none;margin:0;padding:0}.button.svelte-1kmu8zp:link,.button.svelte-1kmu8zp:visited,.button.svelte-1kmu8zp:active,.button.svelte-1kmu8zp:hover{color:inherit}");
|
3451
3445
|
}
|
3452
3446
|
|
3453
3447
|
// (50:0) {:else}
|
@@ -3486,7 +3480,7 @@ function create_else_block$4(ctx) {
|
|
3486
3480
|
},
|
3487
3481
|
h() {
|
3488
3482
|
set_attributes(button, button_data);
|
3489
|
-
toggle_class(button, "svelte-
|
3483
|
+
toggle_class(button, "svelte-1kmu8zp", true);
|
3490
3484
|
},
|
3491
3485
|
m(target, anchor) {
|
3492
3486
|
insert_hydration(target, button, anchor);
|
@@ -3525,7 +3519,7 @@ function create_else_block$4(ctx) {
|
|
3525
3519
|
dataAttrStopPropagation('click')
|
3526
3520
|
]));
|
3527
3521
|
|
3528
|
-
toggle_class(button, "svelte-
|
3522
|
+
toggle_class(button, "svelte-1kmu8zp", true);
|
3529
3523
|
},
|
3530
3524
|
i(local) {
|
3531
3525
|
if (current) return;
|
@@ -3566,7 +3560,7 @@ function create_if_block_2$1(ctx) {
|
|
3566
3560
|
this.h();
|
3567
3561
|
},
|
3568
3562
|
h() {
|
3569
|
-
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-
|
3563
|
+
attr(div, "class", "" + (null_to_empty(BUTTON_CLASS) + " svelte-1kmu8zp"));
|
3570
3564
|
attr(div, "style", /*style*/ ctx[1]);
|
3571
3565
|
},
|
3572
3566
|
m(target, anchor) {
|
@@ -3666,7 +3660,7 @@ function create_if_block_1$2(ctx) {
|
|
3666
3660
|
},
|
3667
3661
|
h() {
|
3668
3662
|
set_attributes(a, a_data);
|
3669
|
-
toggle_class(a, "svelte-
|
3663
|
+
toggle_class(a, "svelte-1kmu8zp", true);
|
3670
3664
|
},
|
3671
3665
|
m(target, anchor) {
|
3672
3666
|
insert_hydration(target, a, anchor);
|
@@ -3708,7 +3702,7 @@ function create_if_block_1$2(ctx) {
|
|
3708
3702
|
dataAttrStopPropagation('click')
|
3709
3703
|
]));
|
3710
3704
|
|
3711
|
-
toggle_class(a, "svelte-
|
3705
|
+
toggle_class(a, "svelte-1kmu8zp", true);
|
3712
3706
|
},
|
3713
3707
|
i(local) {
|
3714
3708
|
if (current) return;
|
@@ -3749,7 +3743,7 @@ function create_if_block$a(ctx) {
|
|
3749
3743
|
this.h();
|
3750
3744
|
},
|
3751
3745
|
h() {
|
3752
|
-
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-
|
3746
|
+
attr(div, "class", "" + (BUTTON_CLASS + " _disabled" + " svelte-1kmu8zp"));
|
3753
3747
|
attr(div, "style", /*style*/ ctx[1]);
|
3754
3748
|
},
|
3755
3749
|
m(target, anchor) {
|
@@ -3957,7 +3951,7 @@ let Button$1 = class Button extends SvelteComponent {
|
|
3957
3951
|
/* src/components/Modal.svelte generated by Svelte v3.53.1 */
|
3958
3952
|
|
3959
3953
|
function add_css$t(target) {
|
3960
|
-
append_styles(target, "svelte-
|
3954
|
+
append_styles(target, "svelte-1i2vo31", ".modal.svelte-1i2vo31{position:fixed;box-sizing:border-box;z-index:2147483647;display:flex}.modal.svelte-1i2vo31 > .button{flex:auto;display:flex}.close.svelte-1i2vo31{position:absolute;top:0;right:0}.close.svelte-1i2vo31 > .button{position:absolute;display:flex;justify-content:center;align-items:center;background-color:transparent;border:none;cursor:pointer;padding:0;transition:all 0.25s}.close.svelte-1i2vo31 > .button:hover{transform:rotate(90deg)}.modal-content.svelte-1i2vo31{flex:auto;display:flex;justify-content:center;align-items:center;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}@media screen and (min-width: 641px){.modal-bp.svelte-1i2vo31{height:var(--modal-bp-height-pc) !important;width:var(--modal-bp-width-pc) !important;top:var(--modal-bp-top-pc) !important;left:var(--modal-bp-left-pc) !important;bottom:var(--modal-bp-bottom-pc) !important;right:var(--modal-bp-right-pc) !important;transform:var(--modal-bp-transform-pc);margin:var(--modal-bp-margin-pc) !important}.background-bp-pc{display:block}.background-bp-sp{display:none}}@media screen and (max-width: 640px){.modal-bp.svelte-1i2vo31{height:var(--modal-bp-height-sp) !important;width:var(--modal-bp-width-sp) !important;top:var(--modal-bp-top-sp) !important;left:var(--modal-bp-left-sp) !important;bottom:var(--modal-bp-bottom-sp) !important;right:var(--modal-bp-right-sp) !important;transform:var(--modal-bp-transform-sp);margin:var(--modal-bp-margin-sp) !important}.background-bp-pc{display:none}.background-bp-sp{display:block}}");
|
3961
3955
|
}
|
3962
3956
|
|
3963
3957
|
// (277:0) {:else}
|
@@ -4132,7 +4126,7 @@ function create_if_block$9(ctx) {
|
|
4132
4126
|
this.h();
|
4133
4127
|
},
|
4134
4128
|
h() {
|
4135
|
-
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-
|
4129
|
+
attr(div, "class", div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1i2vo31"));
|
4136
4130
|
attr(div, "role", "dialog");
|
4137
4131
|
attr(div, "aria-modal", "true");
|
4138
4132
|
attr(div, "style", Array.from(/*modalStyles*/ ctx[23]).join(';'));
|
@@ -4156,7 +4150,7 @@ function create_if_block$9(ctx) {
|
|
4156
4150
|
|
4157
4151
|
button.$set(button_changes);
|
4158
4152
|
|
4159
|
-
if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-
|
4153
|
+
if (!current || dirty[0] & /*useBreakPoint*/ 8 && div_class_value !== (div_class_value = "" + (null_to_empty(['modal', /*useBreakPoint*/ ctx[3] ? 'modal-bp' : ''].join(' ')) + " svelte-1i2vo31"))) {
|
4160
4154
|
attr(div, "class", div_class_value);
|
4161
4155
|
}
|
4162
4156
|
},
|
@@ -4220,7 +4214,7 @@ function create_if_block_1$1(ctx) {
|
|
4220
4214
|
this.h();
|
4221
4215
|
},
|
4222
4216
|
h() {
|
4223
|
-
attr(div, "class", "close svelte-
|
4217
|
+
attr(div, "class", "close svelte-1i2vo31");
|
4224
4218
|
set_style(div, "z-index", /*$maximumZindex*/ ctx[22] + 1);
|
4225
4219
|
},
|
4226
4220
|
m(target, anchor) {
|
@@ -4345,7 +4339,7 @@ function create_default_slot$6(ctx) {
|
|
4345
4339
|
this.h();
|
4346
4340
|
},
|
4347
4341
|
h() {
|
4348
|
-
attr(div, "class", "modal-content svelte-
|
4342
|
+
attr(div, "class", "modal-content svelte-1i2vo31");
|
4349
4343
|
attr(div, "style", /*_style*/ ctx[5]);
|
4350
4344
|
},
|
4351
4345
|
m(target, anchor) {
|
@@ -4982,7 +4976,7 @@ class Grid extends SvelteComponent {
|
|
4982
4976
|
/* src/components/GridItem.svelte generated by Svelte v3.53.1 */
|
4983
4977
|
|
4984
4978
|
function add_css$s(target) {
|
4985
|
-
append_styles(target, "svelte-
|
4979
|
+
append_styles(target, "svelte-1cryhmb", ".grid-item.svelte-1cryhmb{word-break:break-all;position:relative}.grid-item-inner.svelte-1cryhmb{position:absolute;inset:0}");
|
4986
4980
|
}
|
4987
4981
|
|
4988
4982
|
function create_fragment$_(ctx) {
|
@@ -5016,8 +5010,8 @@ function create_fragment$_(ctx) {
|
|
5016
5010
|
this.h();
|
5017
5011
|
},
|
5018
5012
|
h() {
|
5019
|
-
attr(div0, "class", "grid-item-inner svelte-
|
5020
|
-
attr(div1, "class", "grid-item svelte-
|
5013
|
+
attr(div0, "class", "grid-item-inner svelte-1cryhmb");
|
5014
|
+
attr(div1, "class", "grid-item svelte-1cryhmb");
|
5021
5015
|
attr(div1, "data-element-id", /*gridItemId*/ ctx[0]);
|
5022
5016
|
attr(div1, "data-grid-item-id", /*gridItemId*/ ctx[0]);
|
5023
5017
|
attr(div1, "style", /*_style*/ ctx[1]);
|
@@ -5339,7 +5333,7 @@ class RenderText extends SvelteComponent {
|
|
5339
5333
|
/* src/components/TextElement.svelte generated by Svelte v3.53.1 */
|
5340
5334
|
|
5341
5335
|
function add_css$r(target) {
|
5342
|
-
append_styles(target, "svelte-
|
5336
|
+
append_styles(target, "svelte-vz6867", ".text-element-wrapper.svelte-vz6867.svelte-vz6867{position:relative;height:100%}.text-element.svelte-vz6867.svelte-vz6867{display:flex;position:relative;width:100%;height:100%;box-sizing:border-box;white-space:pre-wrap;margin:0px;padding:0px;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden;font-size:12px;line-height:1.5}.text-link-element.svelte-vz6867.svelte-vz6867{text-decoration:none;color:inherit}.text-element-inner.svelte-vz6867.svelte-vz6867{width:100%;height:auto}.text-direction-vertical.svelte-vz6867.svelte-vz6867{writing-mode:vertical-rl}.text-direction-vertical.svelte-vz6867 .text-element-inner.svelte-vz6867{width:auto;height:100%}.tooltip.svelte-vz6867.svelte-vz6867{display:none;position:absolute;bottom:-40px;left:50%;transform:translateX(-50%);color:#fff;background-color:#3d4948;white-space:nowrap;padding:4px 8px 4px 8px;border-radius:4px;font-size:12px;z-index:2147483647}.tooltip.svelte-vz6867.svelte-vz6867:before{content:'';position:absolute;top:-13px;left:50%;margin-left:-7px;border:7px solid transparent;border-bottom:7px solid #3d4948}.tooltip.show.svelte-vz6867.svelte-vz6867{display:block}.tooltip-error.svelte-vz6867.svelte-vz6867{background-color:#c00}.tooltip-error.svelte-vz6867.svelte-vz6867:before{border-bottom:7px solid #c00}");
|
5343
5337
|
}
|
5344
5338
|
|
5345
5339
|
// (94:2) {:else}
|
@@ -5369,8 +5363,8 @@ function create_else_block$1(ctx) {
|
|
5369
5363
|
this.h();
|
5370
5364
|
},
|
5371
5365
|
h() {
|
5372
|
-
attr(div0, "class", "text-element-inner svelte-
|
5373
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5366
|
+
attr(div0, "class", "text-element-inner svelte-vz6867");
|
5367
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
|
5374
5368
|
attr(div1, "style", /*style*/ ctx[5]);
|
5375
5369
|
},
|
5376
5370
|
m(target, anchor) {
|
@@ -5384,7 +5378,7 @@ function create_else_block$1(ctx) {
|
|
5384
5378
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
5385
5379
|
rendertext.$set(rendertext_changes);
|
5386
5380
|
|
5387
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5381
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"))) {
|
5388
5382
|
attr(div1, "class", div1_class_value);
|
5389
5383
|
}
|
5390
5384
|
|
@@ -5459,12 +5453,12 @@ function create_if_block$7(ctx) {
|
|
5459
5453
|
this.h();
|
5460
5454
|
},
|
5461
5455
|
h() {
|
5462
|
-
attr(div0, "class", "text-element-inner svelte-
|
5456
|
+
attr(div0, "class", "text-element-inner svelte-vz6867");
|
5463
5457
|
attr(a, "href", '');
|
5464
|
-
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5458
|
+
attr(a, "class", a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"));
|
5465
5459
|
attr(a, "style", /*style*/ ctx[5]);
|
5466
|
-
attr(div1, "class", "tooltip svelte-
|
5467
|
-
attr(div2, "class", "tooltip tooltip-error svelte-
|
5460
|
+
attr(div1, "class", "tooltip svelte-vz6867");
|
5461
|
+
attr(div2, "class", "tooltip tooltip-error svelte-vz6867");
|
5468
5462
|
},
|
5469
5463
|
m(target, anchor) {
|
5470
5464
|
insert_hydration(target, a, anchor);
|
@@ -5490,7 +5484,7 @@ function create_if_block$7(ctx) {
|
|
5490
5484
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
5491
5485
|
rendertext.$set(rendertext_changes);
|
5492
5486
|
|
5493
|
-
if (!current || dirty & /*textDirection*/ 2 && a_class_value !== (a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
5487
|
+
if (!current || dirty & /*textDirection*/ 2 && a_class_value !== (a_class_value = "" + (null_to_empty(`text-element text-link-element text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-vz6867"))) {
|
5494
5488
|
attr(a, "class", a_class_value);
|
5495
5489
|
}
|
5496
5490
|
|
@@ -5552,7 +5546,7 @@ function create_fragment$Y(ctx) {
|
|
5552
5546
|
this.h();
|
5553
5547
|
},
|
5554
5548
|
h() {
|
5555
|
-
attr(div, "class", "text-element-wrapper svelte-
|
5549
|
+
attr(div, "class", "text-element-wrapper svelte-vz6867");
|
5556
5550
|
},
|
5557
5551
|
m(target, anchor) {
|
5558
5552
|
insert_hydration(target, div, anchor);
|
@@ -5718,7 +5712,7 @@ class TextElement extends SvelteComponent {
|
|
5718
5712
|
/* src/components/TextButtonElement.svelte generated by Svelte v3.53.1 */
|
5719
5713
|
|
5720
5714
|
function add_css$q(target) {
|
5721
|
-
append_styles(target, "svelte-
|
5715
|
+
append_styles(target, "svelte-ujdxfc", ".text-button-element.svelte-ujdxfc{width:100%;height:100%}.text-button-element.svelte-ujdxfc > .button{display:flex;width:100%;height:100%;border:none;box-shadow:transparent;box-sizing:border-box;transition:box-shadow 0.2s;white-space:pre-wrap;overflow:hidden;color:#ffffff;font-size:14px;font-weight:bold;justify-content:center;align-items:center;padding:1px 6px 1px 6px;line-height:1.5;background-color:#33403e;border-radius:4px;cursor:pointer;border-width:0px;border-style:solid;border-color:#000000}.text-button-element.svelte-ujdxfc > .button._disabled{cursor:not-allowed !important;opacity:0.2}.text-button-element.svelte-ujdxfc > .button:not(._disabled):active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button-element.svelte-ujdxfc > .button:not(._disabled):hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
|
5722
5716
|
}
|
5723
5717
|
|
5724
5718
|
// (48:2) <Button {onClick} {style} {eventName}>
|
@@ -5787,7 +5781,7 @@ function create_fragment$X(ctx) {
|
|
5787
5781
|
this.h();
|
5788
5782
|
},
|
5789
5783
|
h() {
|
5790
|
-
attr(div, "class", "text-button-element svelte-
|
5784
|
+
attr(div, "class", "text-button-element svelte-ujdxfc");
|
5791
5785
|
},
|
5792
5786
|
m(target, anchor) {
|
5793
5787
|
insert_hydration(target, div, anchor);
|
@@ -5879,7 +5873,7 @@ class TextButtonElement extends SvelteComponent {
|
|
5879
5873
|
/* src/components/ImageElement.svelte generated by Svelte v3.53.1 */
|
5880
5874
|
|
5881
5875
|
function add_css$p(target) {
|
5882
|
-
append_styles(target, "svelte-
|
5876
|
+
append_styles(target, "svelte-1alkh1m", ".image-element.svelte-1alkh1m{width:100%;height:100%;max-width:100%;max-height:100%;box-sizing:border-box}.image-element.svelte-1alkh1m > .button{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.image-element.svelte-1alkh1m > .button._disabled{cursor:not-allowed !important;opacity:0.2}.image-element.transport.svelte-1alkh1m > .button:not(._disabled):hover,.image-element.transport.svelte-1alkh1m > .button:not(._disabled):focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.16)}.image.svelte-1alkh1m{width:100%;height:100%}");
|
5883
5877
|
}
|
5884
5878
|
|
5885
5879
|
// (44:2) <Button {onClick} style={_style} {eventName}>
|
@@ -5907,7 +5901,7 @@ function create_default_slot$4(ctx) {
|
|
5907
5901
|
this.h();
|
5908
5902
|
},
|
5909
5903
|
h() {
|
5910
|
-
attr(img, "class", "image svelte-
|
5904
|
+
attr(img, "class", "image svelte-1alkh1m");
|
5911
5905
|
attr(img, "loading", "lazy");
|
5912
5906
|
attr(img, "width", "auto");
|
5913
5907
|
attr(img, "height", "auto");
|
@@ -5979,7 +5973,7 @@ function create_fragment$W(ctx) {
|
|
5979
5973
|
this.h();
|
5980
5974
|
},
|
5981
5975
|
h() {
|
5982
|
-
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5976
|
+
attr(div, "class", div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m");
|
5983
5977
|
},
|
5984
5978
|
m(target, anchor) {
|
5985
5979
|
insert_hydration(target, div, anchor);
|
@@ -5998,7 +5992,7 @@ function create_fragment$W(ctx) {
|
|
5998
5992
|
|
5999
5993
|
button.$set(button_changes);
|
6000
5994
|
|
6001
|
-
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-
|
5995
|
+
if (!current || dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "image-element " + (/*transport*/ ctx[2] ? ' transport' : '') + " svelte-1alkh1m")) {
|
6002
5996
|
attr(div, "class", div_class_value);
|
6003
5997
|
}
|
6004
5998
|
},
|
@@ -6070,7 +6064,7 @@ class ImageElement extends SvelteComponent {
|
|
6070
6064
|
/* src/components/List.svelte generated by Svelte v3.53.1 */
|
6071
6065
|
|
6072
6066
|
function add_css$o(target) {
|
6073
|
-
append_styles(target, "svelte-
|
6067
|
+
append_styles(target, "svelte-1t8r9z", ".list.svelte-1t8r9z{display:flex;width:100%;height:100%;overflow:hidden;border-width:0px;border-style:solid;border-color:#000000}");
|
6074
6068
|
}
|
6075
6069
|
|
6076
6070
|
function create_fragment$V(ctx) {
|
@@ -6093,7 +6087,7 @@ function create_fragment$V(ctx) {
|
|
6093
6087
|
this.h();
|
6094
6088
|
},
|
6095
6089
|
h() {
|
6096
|
-
attr(div, "class", "list svelte-
|
6090
|
+
attr(div, "class", "list svelte-1t8r9z");
|
6097
6091
|
attr(div, "style", /*style*/ ctx[0]);
|
6098
6092
|
},
|
6099
6093
|
m(target, anchor) {
|
@@ -6227,7 +6221,7 @@ class List extends SvelteComponent {
|
|
6227
6221
|
/* src/components/ListItem.svelte generated by Svelte v3.53.1 */
|
6228
6222
|
|
6229
6223
|
function add_css$n(target) {
|
6230
|
-
append_styles(target, "svelte-
|
6224
|
+
append_styles(target, "svelte-1lbw8v2", ".list-item.svelte-1lbw8v2{flex:auto;box-sizing:border-box;min-width:0;min-height:0;position:relative}.list-item.svelte-1lbw8v2 > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
|
6231
6225
|
}
|
6232
6226
|
|
6233
6227
|
// (67:2) <Button {onClick} style={_style} eventName={clickEventName}>
|
@@ -6310,7 +6304,7 @@ function create_fragment$U(ctx) {
|
|
6310
6304
|
this.h();
|
6311
6305
|
},
|
6312
6306
|
h() {
|
6313
|
-
attr(div, "class", "list-item svelte-
|
6307
|
+
attr(div, "class", "list-item svelte-1lbw8v2");
|
6314
6308
|
attr(div, "style", /*listItemStyle*/ ctx[3]);
|
6315
6309
|
},
|
6316
6310
|
m(target, anchor) {
|
@@ -6436,7 +6430,7 @@ class ListItem extends SvelteComponent {
|
|
6436
6430
|
/* src/components/EmbedElement.svelte generated by Svelte v3.53.1 */
|
6437
6431
|
|
6438
6432
|
function add_css$m(target) {
|
6439
|
-
append_styles(target, "svelte-
|
6433
|
+
append_styles(target, "svelte-w6jkzh", ".embed.svelte-w6jkzh{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%}.embed.svelte-w6jkzh iframe{position:absolute;top:0;left:0;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
|
6440
6434
|
}
|
6441
6435
|
|
6442
6436
|
function create_fragment$T(ctx) {
|
@@ -6454,7 +6448,7 @@ function create_fragment$T(ctx) {
|
|
6454
6448
|
this.h();
|
6455
6449
|
},
|
6456
6450
|
h() {
|
6457
|
-
attr(div, "class", "embed svelte-
|
6451
|
+
attr(div, "class", "embed svelte-w6jkzh");
|
6458
6452
|
attr(div, "style", /*_style*/ ctx[1]);
|
6459
6453
|
},
|
6460
6454
|
m(target, anchor) {
|
@@ -6497,7 +6491,7 @@ class EmbedElement extends SvelteComponent {
|
|
6497
6491
|
/* src/components/MovieYouTubeElement.svelte generated by Svelte v3.53.1 */
|
6498
6492
|
|
6499
6493
|
function add_css$l(target) {
|
6500
|
-
append_styles(target, "svelte-
|
6494
|
+
append_styles(target, "svelte-ljxq7x", ".embed.svelte-ljxq7x{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.embed.svelte-ljxq7x iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
|
6501
6495
|
}
|
6502
6496
|
|
6503
6497
|
function create_fragment$S(ctx) {
|
@@ -6520,7 +6514,7 @@ function create_fragment$S(ctx) {
|
|
6520
6514
|
},
|
6521
6515
|
h() {
|
6522
6516
|
attr(div0, "class", "karte-player");
|
6523
|
-
attr(div1, "class", "embed svelte-
|
6517
|
+
attr(div1, "class", "embed svelte-ljxq7x");
|
6524
6518
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6525
6519
|
},
|
6526
6520
|
m(target, anchor) {
|
@@ -6862,7 +6856,7 @@ class MovieYouTubeElement extends SvelteComponent {
|
|
6862
6856
|
/* src/components/MovieVimeoElement.svelte generated by Svelte v3.53.1 */
|
6863
6857
|
|
6864
6858
|
function add_css$k(target) {
|
6865
|
-
append_styles(target, "svelte-
|
6859
|
+
append_styles(target, "svelte-ljxq7x", ".embed.svelte-ljxq7x{box-shadow:0 1px rgba(0, 0, 0, 0.06);overflow:hidden;width:100%;height:100%;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.embed.svelte-ljxq7x iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
|
6866
6860
|
}
|
6867
6861
|
|
6868
6862
|
function create_fragment$R(ctx) {
|
@@ -6885,7 +6879,7 @@ function create_fragment$R(ctx) {
|
|
6885
6879
|
},
|
6886
6880
|
h() {
|
6887
6881
|
attr(div0, "class", "karte-player");
|
6888
|
-
attr(div1, "class", "embed svelte-
|
6882
|
+
attr(div1, "class", "embed svelte-ljxq7x");
|
6889
6883
|
attr(div1, "style", /*_style*/ ctx[0]);
|
6890
6884
|
},
|
6891
6885
|
m(target, anchor) {
|
@@ -7069,7 +7063,7 @@ class MovieVimeoElement extends SvelteComponent {
|
|
7069
7063
|
/* src/components/FormTextarea.svelte generated by Svelte v3.53.1 */
|
7070
7064
|
|
7071
7065
|
function add_css$j(target) {
|
7072
|
-
append_styles(target, "svelte-
|
7066
|
+
append_styles(target, "svelte-1fjy5oo", ".textarea-wrapper.svelte-1fjy5oo{display:flex;align-items:center;width:100%;height:100%}.textarea.svelte-1fjy5oo{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.textarea.svelte-1fjy5oo::placeholder{color:var(--placeholder-color)}.textarea.svelte-1fjy5oo:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}");
|
7073
7067
|
}
|
7074
7068
|
|
7075
7069
|
function create_fragment$Q(ctx) {
|
@@ -7099,12 +7093,12 @@ function create_fragment$Q(ctx) {
|
|
7099
7093
|
this.h();
|
7100
7094
|
},
|
7101
7095
|
h() {
|
7102
|
-
attr(textarea, "class", "textarea svelte-
|
7096
|
+
attr(textarea, "class", "textarea svelte-1fjy5oo");
|
7103
7097
|
textarea.value = /*$value*/ ctx[4];
|
7104
7098
|
textarea.required = /*required*/ ctx[1];
|
7105
7099
|
attr(textarea, "placeholder", /*placeholder*/ ctx[0]);
|
7106
7100
|
attr(textarea, "style", /*style*/ ctx[3]);
|
7107
|
-
attr(div, "class", "textarea-wrapper svelte-
|
7101
|
+
attr(div, "class", "textarea-wrapper svelte-1fjy5oo");
|
7108
7102
|
attr(div, "style", /*styleVariables*/ ctx[2]);
|
7109
7103
|
},
|
7110
7104
|
m(target, anchor) {
|
@@ -7256,7 +7250,7 @@ class FormTextarea extends SvelteComponent {
|
|
7256
7250
|
/* src/components/FormRadioButtons.svelte generated by Svelte v3.53.1 */
|
7257
7251
|
|
7258
7252
|
function add_css$i(target) {
|
7259
|
-
append_styles(target, "svelte-
|
7253
|
+
append_styles(target, "svelte-1ntb6j8", ".radio-buttons.svelte-1ntb6j8{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-1ntb6j8{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-1ntb6j8{appearance:none;margin:0;box-sizing:border-box;border-radius:var(--size);position:relative;width:var(--size);height:var(--size);border:solid calc(var(--size) / 3) var(--color-main);background-color:var(--color-sub);cursor:pointer;flex:none}.radio-button-input.svelte-1ntb6j8:checked{border:solid calc(var(--size) / 3) var(--color-main-active);background-color:var(--color-sub-active);box-shadow:0px 1px 8px 2px rgba(18,160,160,.08),0px 1px 4px -1px rgba(18,160,160,.24)}.radio-button-text.svelte-1ntb6j8{margin-left:0.5em}");
|
7260
7254
|
}
|
7261
7255
|
|
7262
7256
|
function get_each_context$5(ctx, list, i) {
|
@@ -7313,14 +7307,14 @@ function create_each_block$5(ctx) {
|
|
7313
7307
|
},
|
7314
7308
|
h() {
|
7315
7309
|
attr(input, "type", "radio");
|
7316
|
-
attr(input, "class", "radio-button-input svelte-
|
7310
|
+
attr(input, "class", "radio-button-input svelte-1ntb6j8");
|
7317
7311
|
attr(input, "style", /*buttonStyle*/ ctx[5]);
|
7318
7312
|
attr(input, "name", /*name*/ ctx[0]);
|
7319
7313
|
input.value = input_value_value = /*option*/ ctx[17];
|
7320
7314
|
input.checked = input_checked_value = /*option*/ ctx[17] === /*_value*/ ctx[3];
|
7321
|
-
attr(span, "class", "radio-button-text svelte-
|
7315
|
+
attr(span, "class", "radio-button-text svelte-1ntb6j8");
|
7322
7316
|
attr(span, "style", span_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
7323
|
-
attr(label, "class", "radio-button svelte-
|
7317
|
+
attr(label, "class", "radio-button svelte-1ntb6j8");
|
7324
7318
|
},
|
7325
7319
|
m(target, anchor) {
|
7326
7320
|
insert_hydration(target, label, anchor);
|
@@ -7399,7 +7393,7 @@ function create_fragment$P(ctx) {
|
|
7399
7393
|
this.h();
|
7400
7394
|
},
|
7401
7395
|
h() {
|
7402
|
-
attr(div, "class", "radio-buttons svelte-
|
7396
|
+
attr(div, "class", "radio-buttons svelte-1ntb6j8");
|
7403
7397
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
7404
7398
|
},
|
7405
7399
|
m(target, anchor) {
|
@@ -7568,7 +7562,7 @@ class FormRadioButtons extends SvelteComponent {
|
|
7568
7562
|
/* src/components/FormSelect.svelte generated by Svelte v3.53.1 */
|
7569
7563
|
|
7570
7564
|
function add_css$h(target) {
|
7571
|
-
append_styles(target, "svelte-
|
7565
|
+
append_styles(target, "svelte-iejizj", ".select.svelte-iejizj{width:100%;height:100%}.select-select.svelte-iejizj{position:relative;appearance:none;width:100%;height:100%;cursor:pointer;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:0 0 0 10px;font-size:12px;line-height:1.5}.select-select.svelte-iejizj:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.select-icon.svelte-iejizj{position:absolute;width:calc(var(--icon-size) / 1.41);height:calc(var(--icon-size) / 1.41);top:calc(50% - calc(var(--icon-size) / 4));right:calc(var(--icon-size) * 1.2);box-sizing:border-box;border-right:solid 2px var(--icon-color);border-top:solid 2px var(--icon-color);transform:translateY(-35.4%) rotate(135deg);pointer-events:none}");
|
7572
7566
|
}
|
7573
7567
|
|
7574
7568
|
function get_each_context$4(ctx, list, i) {
|
@@ -7739,10 +7733,10 @@ function create_fragment$O(ctx) {
|
|
7739
7733
|
this.h();
|
7740
7734
|
},
|
7741
7735
|
h() {
|
7742
|
-
attr(select, "class", "select-select svelte-
|
7736
|
+
attr(select, "class", "select-select svelte-iejizj");
|
7743
7737
|
attr(select, "style", /*style*/ ctx[3]);
|
7744
|
-
attr(div0, "class", "select-icon svelte-
|
7745
|
-
attr(div1, "class", "select svelte-
|
7738
|
+
attr(div0, "class", "select-icon svelte-iejizj");
|
7739
|
+
attr(div1, "class", "select svelte-iejizj");
|
7746
7740
|
attr(div1, "style", /*styleVariables*/ ctx[2]);
|
7747
7741
|
},
|
7748
7742
|
m(target, anchor) {
|
@@ -7944,7 +7938,7 @@ class FormSelect extends SvelteComponent {
|
|
7944
7938
|
/* src/components/FormCheckBoxes.svelte generated by Svelte v3.53.1 */
|
7945
7939
|
|
7946
7940
|
function add_css$g(target) {
|
7947
|
-
append_styles(target, "svelte-
|
7941
|
+
append_styles(target, "svelte-2pz1us", ".check-boxes.svelte-2pz1us.svelte-2pz1us{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%;gap:0px}.check-box.svelte-2pz1us.svelte-2pz1us{display:flex;align-items:center;position:relative;cursor:pointer}.check-box-input.svelte-2pz1us.svelte-2pz1us{width:var(--size);height:var(--size);margin:0;position:absolute;appearance:none;cursor:pointer}.check-box-check.svelte-2pz1us.svelte-2pz1us{display:inline-flex;background-color:var(--color-main);width:var(--size);height:var(--size);border-radius:calc(var(--size) / 4);justify-content:center;align-items:center;flex:none}.check-box-icon.svelte-2pz1us.svelte-2pz1us{display:inline-block;--icon-size:calc(var(--size) * 3 / 4);width:var(--icon-size);height:var(--icon-size)}.check-box-icon.svelte-2pz1us.svelte-2pz1us:after{content:'';display:block;box-sizing:border-box;width:45%;height:91%;transform:translate(60%, -8%) rotate(45deg);border-style:none solid solid none;border-width:2px;border-color:var(--color-sub)}.check-box-check._checked.svelte-2pz1us.svelte-2pz1us{background-color:var(--color-main-active)}.check-box-check._checked.svelte-2pz1us .check-box-icon.svelte-2pz1us:after{border-color:var(--color-sub-active)}.check-box-text.svelte-2pz1us.svelte-2pz1us{margin-left:0.5em;color:#333;font-size:12px;line-height:1.5}");
|
7948
7942
|
}
|
7949
7943
|
|
7950
7944
|
function get_each_context$3(ctx, list, i) {
|
@@ -8006,19 +8000,19 @@ function create_each_block$3(ctx) {
|
|
8006
8000
|
this.h();
|
8007
8001
|
},
|
8008
8002
|
h() {
|
8009
|
-
attr(input, "class", "check-box-input svelte-
|
8003
|
+
attr(input, "class", "check-box-input svelte-2pz1us");
|
8010
8004
|
attr(input, "type", "checkbox");
|
8011
8005
|
attr(input, "name", /*name*/ ctx[0]);
|
8012
8006
|
input.checked = input_checked_value = /*isCheckedArray*/ ctx[4][/*i*/ ctx[19]];
|
8013
|
-
attr(span0, "class", "check-box-icon svelte-
|
8007
|
+
attr(span0, "class", "check-box-icon svelte-2pz1us");
|
8014
8008
|
|
8015
8009
|
attr(span1, "class", span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
8016
8010
|
? ' _checked'
|
8017
|
-
: ''}`) + " svelte-
|
8011
|
+
: ''}`) + " svelte-2pz1us"));
|
8018
8012
|
|
8019
|
-
attr(span2, "class", "check-box-text svelte-
|
8013
|
+
attr(span2, "class", "check-box-text svelte-2pz1us");
|
8020
8014
|
attr(span2, "style", span2_style_value = `${/*_textStyle*/ ctx[2]} ${/*fontCss*/ ctx[6]}`);
|
8021
|
-
attr(label, "class", "check-box svelte-
|
8015
|
+
attr(label, "class", "check-box svelte-2pz1us");
|
8022
8016
|
attr(label, "style", /*styleVariables*/ ctx[5]);
|
8023
8017
|
},
|
8024
8018
|
m(target, anchor) {
|
@@ -8050,7 +8044,7 @@ function create_each_block$3(ctx) {
|
|
8050
8044
|
|
8051
8045
|
if (dirty & /*isCheckedArray*/ 16 && span1_class_value !== (span1_class_value = "" + (null_to_empty(`check-box-check${/*isCheckedArray*/ ctx[4][/*i*/ ctx[19]]
|
8052
8046
|
? ' _checked'
|
8053
|
-
: ''}`) + " svelte-
|
8047
|
+
: ''}`) + " svelte-2pz1us"))) {
|
8054
8048
|
attr(span1, "class", span1_class_value);
|
8055
8049
|
}
|
8056
8050
|
|
@@ -8103,7 +8097,7 @@ function create_fragment$N(ctx) {
|
|
8103
8097
|
this.h();
|
8104
8098
|
},
|
8105
8099
|
h() {
|
8106
|
-
attr(div, "class", "check-boxes svelte-
|
8100
|
+
attr(div, "class", "check-boxes svelte-2pz1us");
|
8107
8101
|
attr(div, "style", /*_layoutStyle*/ ctx[1]);
|
8108
8102
|
},
|
8109
8103
|
m(target, anchor) {
|
@@ -8278,7 +8272,7 @@ class FormCheckBoxes extends SvelteComponent {
|
|
8278
8272
|
/* src/components/FormRatingButtonsNumber.svelte generated by Svelte v3.53.1 */
|
8279
8273
|
|
8280
8274
|
function add_css$f(target) {
|
8281
|
-
append_styles(target, "svelte-
|
8275
|
+
append_styles(target, "svelte-9idbf1", ".rating-buttons.svelte-9idbf1{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-9idbf1{cursor:pointer;display:flex;justify-content:center;align-items:center;transition:background-color 0.2s, box-shadow 0.2s;appearance:none;background:none;border:none;margin:0;padding:0}");
|
8282
8276
|
}
|
8283
8277
|
|
8284
8278
|
function get_each_context$2(ctx, list, i) {
|
@@ -8313,7 +8307,7 @@ function create_each_block$2(ctx) {
|
|
8313
8307
|
this.h();
|
8314
8308
|
},
|
8315
8309
|
h() {
|
8316
|
-
attr(button, "class", "rating-button svelte-
|
8310
|
+
attr(button, "class", "rating-button svelte-9idbf1");
|
8317
8311
|
attr(button, "style", button_style_value = /*getTextButtonStyle*/ ctx[5](/*i*/ ctx[14] === /*_value*/ ctx[2]));
|
8318
8312
|
},
|
8319
8313
|
m(target, anchor) {
|
@@ -8376,7 +8370,7 @@ function create_fragment$M(ctx) {
|
|
8376
8370
|
this.h();
|
8377
8371
|
},
|
8378
8372
|
h() {
|
8379
|
-
attr(div, "class", "rating-buttons svelte-
|
8373
|
+
attr(div, "class", "rating-buttons svelte-9idbf1");
|
8380
8374
|
},
|
8381
8375
|
m(target, anchor) {
|
8382
8376
|
insert_hydration(target, div, anchor);
|
@@ -8520,7 +8514,7 @@ class FormRatingButtonsNumber extends SvelteComponent {
|
|
8520
8514
|
/* src/components/FormRatingButtonsFace.svelte generated by Svelte v3.53.1 */
|
8521
8515
|
|
8522
8516
|
function add_css$e(target) {
|
8523
|
-
append_styles(target, "svelte-
|
8517
|
+
append_styles(target, "svelte-1b5dvzw", ".rating-buttons.svelte-1b5dvzw{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-1b5dvzw{appearance:none;background:none;border:none;margin:0;padding:0}.rating-button-image.svelte-1b5dvzw{cursor:pointer;user-select:none;-webkit-user-drag:none;width:100%;height:100%}.rating-button-image.svelte-1b5dvzw:not(._active){filter:grayscale(100%)}");
|
8524
8518
|
}
|
8525
8519
|
|
8526
8520
|
function get_each_context$1(ctx, list, i) {
|
@@ -8556,9 +8550,9 @@ function create_each_block$1(ctx) {
|
|
8556
8550
|
},
|
8557
8551
|
h() {
|
8558
8552
|
if (!src_url_equal(img.src, img_src_value = /*ICONS*/ ctx[2][/*i*/ ctx[10]])) attr(img, "src", img_src_value);
|
8559
|
-
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
8553
|
+
attr(img, "class", img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-1b5dvzw"));
|
8560
8554
|
attr(img, "alt", "rate" + /*i*/ ctx[10]);
|
8561
|
-
attr(button, "class", "rating-button svelte-
|
8555
|
+
attr(button, "class", "rating-button svelte-1b5dvzw");
|
8562
8556
|
attr(button, "style", /*buttonStyle*/ ctx[0]);
|
8563
8557
|
},
|
8564
8558
|
m(target, anchor) {
|
@@ -8574,7 +8568,7 @@ function create_each_block$1(ctx) {
|
|
8574
8568
|
p(new_ctx, dirty) {
|
8575
8569
|
ctx = new_ctx;
|
8576
8570
|
|
8577
|
-
if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-
|
8571
|
+
if (dirty & /*_value*/ 2 && img_class_value !== (img_class_value = "" + (null_to_empty(`rating-button-image${/*i*/ ctx[10] === /*_value*/ ctx[1] ? ' _active' : ''}`) + " svelte-1b5dvzw"))) {
|
8578
8572
|
attr(img, "class", img_class_value);
|
8579
8573
|
}
|
8580
8574
|
|
@@ -8621,7 +8615,7 @@ function create_fragment$L(ctx) {
|
|
8621
8615
|
this.h();
|
8622
8616
|
},
|
8623
8617
|
h() {
|
8624
|
-
attr(div, "class", "rating-buttons svelte-
|
8618
|
+
attr(div, "class", "rating-buttons svelte-1b5dvzw");
|
8625
8619
|
},
|
8626
8620
|
m(target, anchor) {
|
8627
8621
|
insert_hydration(target, div, anchor);
|
@@ -8729,7 +8723,7 @@ class FormRatingButtonsFace extends SvelteComponent {
|
|
8729
8723
|
/* src/components/FormIdentifyInput.svelte generated by Svelte v3.53.1 */
|
8730
8724
|
|
8731
8725
|
function add_css$d(target) {
|
8732
|
-
append_styles(target, "svelte-
|
8726
|
+
append_styles(target, "svelte-f14zo5", ".input-wrapper.svelte-f14zo5{display:flex;align-items:center;width:100%;height:100%}.input.svelte-f14zo5{width:100%;height:100%;box-sizing:border-box;resize:none;appearance:none;background-color:#fff;border:solid 2px #ccc;border-radius:6px;padding:6px 10px 6px 10px;font-size:12px;line-height:1.5}.input.svelte-f14zo5::placeholder{color:var(--placeholder-color)}.input.svelte-f14zo5:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}.input._error.svelte-f14zo5{outline:none;border-width:var(--error-border-width) !important;border-color:var(--error-border-color) !important;border-style:var(--error-border-style) !important}");
|
8733
8727
|
}
|
8734
8728
|
|
8735
8729
|
function create_fragment$K(ctx) {
|
@@ -8760,13 +8754,13 @@ function create_fragment$K(ctx) {
|
|
8760
8754
|
this.h();
|
8761
8755
|
},
|
8762
8756
|
h() {
|
8763
|
-
attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-
|
8757
|
+
attr(input, "class", input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-f14zo5"));
|
8764
8758
|
attr(input, "type", "text");
|
8765
8759
|
input.value = /*$value*/ ctx[2];
|
8766
8760
|
input.required = /*required*/ ctx[0];
|
8767
8761
|
attr(input, "placeholder", /*placeholder*/ ctx[1]);
|
8768
8762
|
attr(input, "style", /*style*/ ctx[5]);
|
8769
|
-
attr(div, "class", "input-wrapper svelte-
|
8763
|
+
attr(div, "class", "input-wrapper svelte-f14zo5");
|
8770
8764
|
attr(div, "style", /*styleVariables*/ ctx[4]);
|
8771
8765
|
},
|
8772
8766
|
m(target, anchor) {
|
@@ -8779,7 +8773,7 @@ function create_fragment$K(ctx) {
|
|
8779
8773
|
}
|
8780
8774
|
},
|
8781
8775
|
p(ctx, [dirty]) {
|
8782
|
-
if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-
|
8776
|
+
if (dirty & /*isValidForUI*/ 8 && input_class_value !== (input_class_value = "" + (null_to_empty(['input', /*isValidForUI*/ ctx[3] ? '' : '_error'].join(' ')) + " svelte-f14zo5"))) {
|
8783
8777
|
attr(input, "class", input_class_value);
|
8784
8778
|
}
|
8785
8779
|
|
@@ -8967,7 +8961,7 @@ class FormIdentifyInput extends SvelteComponent {
|
|
8967
8961
|
/* src/components/FormIdentifyChoices.svelte generated by Svelte v3.53.1 */
|
8968
8962
|
|
8969
8963
|
function add_css$c(target) {
|
8970
|
-
append_styles(target, "svelte-
|
8964
|
+
append_styles(target, "svelte-pzrwlo", ".radio-buttons.svelte-pzrwlo{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-pzrwlo{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-pzrwlo{appearance:none;margin:0;box-sizing:border-box;border-radius:var(--size);position:relative;width:var(--size);height:var(--size);border:solid calc(var(--size) / 3) var(--color-main);background-color:var(--color-sub);cursor:pointer;flex:none}.radio-button-input.svelte-pzrwlo:checked{border:solid calc(var(--size) / 3) var(--color-main-active);background-color:var(--color-sub-active);box-shadow:0px 1px 8px 2px rgba(18, 160, 160, 0.08), 0px 1px 4px -1px rgba(18, 160, 160, 0.24)}.radio-button-text.svelte-pzrwlo{margin-left:0.5em}");
|
8971
8965
|
}
|
8972
8966
|
|
8973
8967
|
function create_fragment$J(ctx) {
|
@@ -9033,20 +9027,20 @@ function create_fragment$J(ctx) {
|
|
9033
9027
|
},
|
9034
9028
|
h() {
|
9035
9029
|
attr(input0, "type", "radio");
|
9036
|
-
attr(input0, "class", "radio-button-input svelte-
|
9030
|
+
attr(input0, "class", "radio-button-input svelte-pzrwlo");
|
9037
9031
|
attr(input0, "style", /*buttonStyle*/ ctx[2]);
|
9038
9032
|
input0.checked = input0_checked_value = /*$value*/ ctx[3] === true;
|
9039
|
-
attr(span0, "class", "radio-button-text svelte-
|
9033
|
+
attr(span0, "class", "radio-button-text svelte-pzrwlo");
|
9040
9034
|
attr(span0, "style", span0_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
|
9041
|
-
attr(label0, "class", "radio-button svelte-
|
9035
|
+
attr(label0, "class", "radio-button svelte-pzrwlo");
|
9042
9036
|
attr(input1, "type", "radio");
|
9043
|
-
attr(input1, "class", "radio-button-input svelte-
|
9037
|
+
attr(input1, "class", "radio-button-input svelte-pzrwlo");
|
9044
9038
|
attr(input1, "style", /*buttonStyle*/ ctx[2]);
|
9045
9039
|
input1.checked = input1_checked_value = /*$value*/ ctx[3] === false;
|
9046
|
-
attr(span1, "class", "radio-button-text svelte-
|
9040
|
+
attr(span1, "class", "radio-button-text svelte-pzrwlo");
|
9047
9041
|
attr(span1, "style", span1_style_value = `${/*_textStyle*/ ctx[1]} ${/*fontCss*/ ctx[4]}`);
|
9048
|
-
attr(label1, "class", "radio-button svelte-
|
9049
|
-
attr(div, "class", "radio-buttons svelte-
|
9042
|
+
attr(label1, "class", "radio-button svelte-pzrwlo");
|
9043
|
+
attr(div, "class", "radio-buttons svelte-pzrwlo");
|
9050
9044
|
attr(div, "style", /*_layoutStyle*/ ctx[0]);
|
9051
9045
|
},
|
9052
9046
|
m(target, anchor) {
|
@@ -9214,7 +9208,7 @@ class FormIdentifyChoices extends SvelteComponent {
|
|
9214
9208
|
/* src/components/Slide.svelte generated by Svelte v3.53.1 */
|
9215
9209
|
|
9216
9210
|
function add_css$b(target) {
|
9217
|
-
append_styles(target, "svelte-
|
9211
|
+
append_styles(target, "svelte-1qfq79t", ".root.svelte-1qfq79t{width:100%;height:100%;position:relative}.container.svelte-1qfq79t{width:100%;height:100%;position:relative;overflow:hidden;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000}.slide.svelte-1qfq79t{height:100%;position:absolute;display:flex}.transition.svelte-1qfq79t{transition:left 0.2s cubic-bezier(.04,.67,.53,.96)}.item.svelte-1qfq79t{height:100%;flex:none}.prev-button-container.svelte-1qfq79t,.next-button-container.svelte-1qfq79t{top:50%;height:0;position:absolute;display:flex;overflow:visible;align-items:center}.prev-button-container.svelte-1qfq79t{left:0}.next-button-container.svelte-1qfq79t{right:0}.move-button.svelte-1qfq79t{display:flex;align-items:center;justify-content:center;cursor:pointer;box-sizing:border-box;border:none;background:none;margin:0;padding:0}.navigation.svelte-1qfq79t{position:absolute;width:0;left:50%;bottom:0;display:flex;justify-content:center;overflow:visible}.navigation-item.svelte-1qfq79t{flex-shrink:0;cursor:pointer;border:none;background:none;margin:0;padding:0;appearance:none}.navigation-item-inner.circle.svelte-1qfq79t{border-radius:51%}");
|
9218
9212
|
}
|
9219
9213
|
|
9220
9214
|
function get_each_context(ctx, list, i) {
|
@@ -9260,9 +9254,9 @@ function create_if_block_1(ctx) {
|
|
9260
9254
|
attr(svg, "viewBox", "0 0 10 16");
|
9261
9255
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
9262
9256
|
attr(svg, "style", /*prevIconStyle*/ ctx[10]);
|
9263
|
-
attr(button, "class", "move-button svelte-
|
9257
|
+
attr(button, "class", "move-button svelte-1qfq79t");
|
9264
9258
|
attr(button, "style", /*_prevButtonContainerStyle*/ ctx[9]);
|
9265
|
-
attr(div, "class", "prev-button-container svelte-
|
9259
|
+
attr(div, "class", "prev-button-container svelte-1qfq79t");
|
9266
9260
|
},
|
9267
9261
|
m(target, anchor) {
|
9268
9262
|
insert_hydration(target, div, anchor);
|
@@ -9328,9 +9322,9 @@ function create_if_block$5(ctx) {
|
|
9328
9322
|
attr(svg, "viewBox", "0 0 10 16");
|
9329
9323
|
attr(svg, "xmlns", "http://www.w3.org/2000/svg");
|
9330
9324
|
attr(svg, "style", /*nextIconStyle*/ ctx[8]);
|
9331
|
-
attr(button, "class", "move-button svelte-
|
9325
|
+
attr(button, "class", "move-button svelte-1qfq79t");
|
9332
9326
|
attr(button, "style", /*_nextButtonContainerStyle*/ ctx[7]);
|
9333
|
-
attr(div, "class", "next-button-container svelte-
|
9327
|
+
attr(div, "class", "next-button-container svelte-1qfq79t");
|
9334
9328
|
},
|
9335
9329
|
m(target, anchor) {
|
9336
9330
|
insert_hydration(target, div, anchor);
|
@@ -9390,9 +9384,9 @@ function create_each_block(ctx) {
|
|
9390
9384
|
this.h();
|
9391
9385
|
},
|
9392
9386
|
h() {
|
9393
|
-
attr(div, "class", "navigation-item-inner circle svelte-
|
9387
|
+
attr(div, "class", "navigation-item-inner circle svelte-1qfq79t");
|
9394
9388
|
attr(div, "style", div_style_value = /*getNavigationItemInnerStyle*/ ctx[5](/*i*/ ctx[63]));
|
9395
|
-
attr(button, "class", "navigation-item svelte-
|
9389
|
+
attr(button, "class", "navigation-item svelte-1qfq79t");
|
9396
9390
|
attr(button, "style", /*navigationItemStyle*/ ctx[6]);
|
9397
9391
|
},
|
9398
9392
|
m(target, anchor) {
|
@@ -9498,14 +9492,14 @@ function create_fragment$I(ctx) {
|
|
9498
9492
|
this.h();
|
9499
9493
|
},
|
9500
9494
|
h() {
|
9501
|
-
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
9495
|
+
attr(div0, "class", div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"));
|
9502
9496
|
attr(div0, "style", /*slideStyle*/ ctx[14]);
|
9503
|
-
attr(div1, "class", "container svelte-
|
9497
|
+
attr(div1, "class", "container svelte-1qfq79t");
|
9504
9498
|
attr(div1, "style", /*_style*/ ctx[0]);
|
9505
|
-
attr(div2, "class", "navigation svelte-
|
9499
|
+
attr(div2, "class", "navigation svelte-1qfq79t");
|
9506
9500
|
attr(div2, "style", /*navigationStyle*/ ctx[4]);
|
9507
9501
|
set_attributes(div3, div3_data);
|
9508
|
-
toggle_class(div3, "svelte-
|
9502
|
+
toggle_class(div3, "svelte-1qfq79t", true);
|
9509
9503
|
},
|
9510
9504
|
m(target, anchor) {
|
9511
9505
|
insert_hydration(target, div3, anchor);
|
@@ -9547,7 +9541,7 @@ function create_fragment$I(ctx) {
|
|
9547
9541
|
}
|
9548
9542
|
}
|
9549
9543
|
|
9550
|
-
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-
|
9544
|
+
if (!current || dirty[0] & /*slideClass*/ 8192 && div0_class_value !== (div0_class_value = "" + (null_to_empty(/*slideClass*/ ctx[13]) + " svelte-1qfq79t"))) {
|
9551
9545
|
attr(div0, "class", div0_class_value);
|
9552
9546
|
}
|
9553
9547
|
|
@@ -9613,7 +9607,7 @@ function create_fragment$I(ctx) {
|
|
9613
9607
|
}
|
9614
9608
|
|
9615
9609
|
set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation('click')]));
|
9616
|
-
toggle_class(div3, "svelte-
|
9610
|
+
toggle_class(div3, "svelte-1qfq79t", true);
|
9617
9611
|
},
|
9618
9612
|
i(local) {
|
9619
9613
|
if (current) return;
|
@@ -10125,7 +10119,7 @@ class Slide extends SvelteComponent {
|
|
10125
10119
|
/* src/components/SlideItem.svelte generated by Svelte v3.53.1 */
|
10126
10120
|
|
10127
10121
|
function add_css$a(target) {
|
10128
|
-
append_styles(target, "svelte-
|
10122
|
+
append_styles(target, "svelte-1rv0qgo", ".item.svelte-1rv0qgo{height:100%;flex:none;position:relative}.item.svelte-1rv0qgo img{user-select:none;-webkit-user-drag:none}.item-inner.svelte-1rv0qgo{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;cursor:default;overflow:hidden}");
|
10129
10123
|
}
|
10130
10124
|
|
10131
10125
|
function create_fragment$H(ctx) {
|
@@ -10153,9 +10147,9 @@ function create_fragment$H(ctx) {
|
|
10153
10147
|
this.h();
|
10154
10148
|
},
|
10155
10149
|
h() {
|
10156
|
-
attr(div0, "class", "item-inner svelte-
|
10150
|
+
attr(div0, "class", "item-inner svelte-1rv0qgo");
|
10157
10151
|
attr(div0, "style", /*_style*/ ctx[0]);
|
10158
|
-
attr(div1, "class", "item svelte-
|
10152
|
+
attr(div1, "class", "item svelte-1rv0qgo");
|
10159
10153
|
attr(div1, "style", /*itemStyle*/ ctx[1]);
|
10160
10154
|
},
|
10161
10155
|
m(target, anchor) {
|
@@ -10281,7 +10275,7 @@ class SlideItem extends SvelteComponent {
|
|
10281
10275
|
/* src/components/Countdown.svelte generated by Svelte v3.53.1 */
|
10282
10276
|
|
10283
10277
|
function add_css$9(target) {
|
10284
|
-
append_styles(target, "svelte-
|
10278
|
+
append_styles(target, "svelte-t87l6f", ".countdown.svelte-t87l6f{position:relative;width:100%;height:100%}.countdown-inner.svelte-t87l6f{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
|
10285
10279
|
}
|
10286
10280
|
|
10287
10281
|
const get_default_slot_changes = dirty => ({ countdown: dirty & /*countdown*/ 2 });
|
@@ -10312,9 +10306,9 @@ function create_fragment$G(ctx) {
|
|
10312
10306
|
this.h();
|
10313
10307
|
},
|
10314
10308
|
h() {
|
10315
|
-
attr(div0, "class", "countdown-inner svelte-
|
10309
|
+
attr(div0, "class", "countdown-inner svelte-t87l6f");
|
10316
10310
|
attr(div0, "style", /*_style*/ ctx[0]);
|
10317
|
-
attr(div1, "class", "countdown svelte-
|
10311
|
+
attr(div1, "class", "countdown svelte-t87l6f");
|
10318
10312
|
},
|
10319
10313
|
m(target, anchor) {
|
10320
10314
|
insert_hydration(target, div1, anchor);
|
@@ -10444,7 +10438,7 @@ class Countdown extends SvelteComponent {
|
|
10444
10438
|
/* src/components/Box.svelte generated by Svelte v3.53.1 */
|
10445
10439
|
|
10446
10440
|
function add_css$8(target) {
|
10447
|
-
append_styles(target, "svelte-
|
10441
|
+
append_styles(target, "svelte-1c91vpe", ".box.svelte-1c91vpe{position:relative;width:100%;height:100%}.box.svelte-1c91vpe > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
|
10448
10442
|
}
|
10449
10443
|
|
10450
10444
|
// (24:2) <Button {onClick} style={_style} {eventName}>
|
@@ -10527,7 +10521,7 @@ function create_fragment$F(ctx) {
|
|
10527
10521
|
this.h();
|
10528
10522
|
},
|
10529
10523
|
h() {
|
10530
|
-
attr(div, "class", "box svelte-
|
10524
|
+
attr(div, "class", "box svelte-1c91vpe");
|
10531
10525
|
},
|
10532
10526
|
m(target, anchor) {
|
10533
10527
|
insert_hydration(target, div, anchor);
|
@@ -10588,7 +10582,7 @@ class Box extends SvelteComponent {
|
|
10588
10582
|
/* src/components/IconElement.svelte generated by Svelte v3.53.1 */
|
10589
10583
|
|
10590
10584
|
function add_css$7(target) {
|
10591
|
-
append_styles(target, "svelte-
|
10585
|
+
append_styles(target, "svelte-1mk6wi4", ".icon.svelte-1mk6wi4{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.icon.svelte-1mk6wi4 > .button{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;overflow:hidden}.icon.svelte-1mk6wi4 > .button._disabled{cursor:not-allowed !important;opacity:0.2}.icon.svelte-1mk6wi4 svg{width:var(--width);height:var(--height);color:var(--color);stroke:var(--stroke);fill:var(--fill)}");
|
10592
10586
|
}
|
10593
10587
|
|
10594
10588
|
// (56:4) {#if svg}
|
@@ -10692,7 +10686,7 @@ function create_fragment$E(ctx) {
|
|
10692
10686
|
this.h();
|
10693
10687
|
},
|
10694
10688
|
h() {
|
10695
|
-
attr(div, "class", "icon svelte-
|
10689
|
+
attr(div, "class", "icon svelte-1mk6wi4");
|
10696
10690
|
},
|
10697
10691
|
m(target, anchor) {
|
10698
10692
|
insert_hydration(target, div, anchor);
|
@@ -10801,7 +10795,7 @@ class IconElement extends SvelteComponent {
|
|
10801
10795
|
/* src/components/CodeElement.svelte generated by Svelte v3.53.1 */
|
10802
10796
|
|
10803
10797
|
function add_css$6(target) {
|
10804
|
-
append_styles(target, "svelte-
|
10798
|
+
append_styles(target, "svelte-1ng2n51", ".codeElement.svelte-1ng2n51{box-sizing:border-box;margin:0px;padding:0px;width:100%;height:100%}");
|
10805
10799
|
}
|
10806
10800
|
|
10807
10801
|
function create_fragment$D(ctx) {
|
@@ -10837,7 +10831,7 @@ function create_fragment$D(ctx) {
|
|
10837
10831
|
this.h();
|
10838
10832
|
},
|
10839
10833
|
h() {
|
10840
|
-
attr(div, "class", "codeElement svelte-
|
10834
|
+
attr(div, "class", "codeElement svelte-1ng2n51");
|
10841
10835
|
attr(div, "style", /*style*/ ctx[3]);
|
10842
10836
|
},
|
10843
10837
|
m(target, anchor) {
|
@@ -10926,7 +10920,7 @@ class CodeElement extends SvelteComponent {
|
|
10926
10920
|
/* src/components/Flex.svelte generated by Svelte v3.53.1 */
|
10927
10921
|
|
10928
10922
|
function add_css$5(target) {
|
10929
|
-
append_styles(target, "svelte-
|
10923
|
+
append_styles(target, "svelte-9v2qdg", ".flex.svelte-9v2qdg{display:flex}");
|
10930
10924
|
}
|
10931
10925
|
|
10932
10926
|
function create_fragment$C(ctx) {
|
@@ -10950,7 +10944,7 @@ function create_fragment$C(ctx) {
|
|
10950
10944
|
this.h();
|
10951
10945
|
},
|
10952
10946
|
h() {
|
10953
|
-
attr(div, "class", "flex svelte-
|
10947
|
+
attr(div, "class", "flex svelte-9v2qdg");
|
10954
10948
|
attr(div, "style", div_style_value = "width:" + /*width*/ ctx[1] + "; height:" + /*height*/ ctx[2] + "; flex-direction:" + /*direction*/ ctx[0] + "; " + /*_style*/ ctx[3]);
|
10955
10949
|
},
|
10956
10950
|
m(target, anchor) {
|
@@ -11047,7 +11041,7 @@ class Flex extends SvelteComponent {
|
|
11047
11041
|
/* src/components/FlexItem.svelte generated by Svelte v3.53.1 */
|
11048
11042
|
|
11049
11043
|
function add_css$4(target) {
|
11050
|
-
append_styles(target, "svelte-
|
11044
|
+
append_styles(target, "svelte-164ah5d", ".flex-item.svelte-164ah5d{max-width:100%;max-height:100%;position:relative;isolation:isolate}");
|
11051
11045
|
}
|
11052
11046
|
|
11053
11047
|
function create_fragment$B(ctx) {
|
@@ -11070,7 +11064,7 @@ function create_fragment$B(ctx) {
|
|
11070
11064
|
this.h();
|
11071
11065
|
},
|
11072
11066
|
h() {
|
11073
|
-
attr(div, "class", "flex-item svelte-
|
11067
|
+
attr(div, "class", "flex-item svelte-164ah5d");
|
11074
11068
|
attr(div, "style", /*style*/ ctx[0]);
|
11075
11069
|
},
|
11076
11070
|
m(target, anchor) {
|
@@ -11490,7 +11484,7 @@ class GridModalState extends SvelteComponent {
|
|
11490
11484
|
/* src/components/TextBlock.svelte generated by Svelte v3.53.1 */
|
11491
11485
|
|
11492
11486
|
function add_css$3(target) {
|
11493
|
-
append_styles(target, "svelte-
|
11487
|
+
append_styles(target, "svelte-akic2e", ".text-block.svelte-akic2e.svelte-akic2e{display:flex;position:relative;width:100%;height:100%;box-sizing:border-box;white-space:pre-wrap;overflow:hidden}.text-block-inner.svelte-akic2e.svelte-akic2e{width:100%;height:auto}.text-direction-vertical.svelte-akic2e.svelte-akic2e{writing-mode:vertical-rl}.text-direction-vertical.svelte-akic2e .text-block-inner.svelte-akic2e{width:auto;height:100%}");
|
11494
11488
|
}
|
11495
11489
|
|
11496
11490
|
function create_fragment$z(ctx) {
|
@@ -11519,8 +11513,8 @@ function create_fragment$z(ctx) {
|
|
11519
11513
|
this.h();
|
11520
11514
|
},
|
11521
11515
|
h() {
|
11522
|
-
attr(div0, "class", "text-block-inner svelte-
|
11523
|
-
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
11516
|
+
attr(div0, "class", "text-block-inner svelte-akic2e");
|
11517
|
+
attr(div1, "class", div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"));
|
11524
11518
|
attr(div1, "style", /*style*/ ctx[2]);
|
11525
11519
|
},
|
11526
11520
|
m(target, anchor) {
|
@@ -11534,7 +11528,7 @@ function create_fragment$z(ctx) {
|
|
11534
11528
|
if (dirty & /*text*/ 1) rendertext_changes.text = /*text*/ ctx[0];
|
11535
11529
|
rendertext.$set(rendertext_changes);
|
11536
11530
|
|
11537
|
-
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-
|
11531
|
+
if (!current || dirty & /*textDirection*/ 2 && div1_class_value !== (div1_class_value = "" + (null_to_empty(`text-block text-direction-${/*textDirection*/ ctx[1]}`) + " svelte-akic2e"))) {
|
11538
11532
|
attr(div1, "class", div1_class_value);
|
11539
11533
|
}
|
11540
11534
|
|
@@ -11612,7 +11606,7 @@ class TextBlock extends SvelteComponent {
|
|
11612
11606
|
/* src/components/TextButtonBlock.svelte generated by Svelte v3.53.1 */
|
11613
11607
|
|
11614
11608
|
function add_css$2(target) {
|
11615
|
-
append_styles(target, "svelte-
|
11609
|
+
append_styles(target, "svelte-1c34p4n", ".text-button-block.svelte-1c34p4n{width:100%;height:100%;background-color:#000000;border-radius:4px}.text-button.svelte-1c34p4n{display:flex;width:100%;height:100%;background-color:transparent;border:none;box-shadow:transparent;box-sizing:border-box;cursor:pointer;transition:box-shadow 0.2s;color:#ffffff;font-size:14px;font-weight:bold;justify-content:center;align-items:center;padding:1px 6px 1px 6px;line-height:1.5}.text-button.svelte-1c34p4n:active{box-shadow:inset 0 0 100px 100px rgba(0, 0, 0, 0.3)}.text-button.svelte-1c34p4n:hover{box-shadow:inset 0 0 100px 100px rgba(255, 255, 255, 0.3)}");
|
11616
11610
|
}
|
11617
11611
|
|
11618
11612
|
function create_fragment$y(ctx) {
|
@@ -11642,9 +11636,9 @@ function create_fragment$y(ctx) {
|
|
11642
11636
|
this.h();
|
11643
11637
|
},
|
11644
11638
|
h() {
|
11645
|
-
attr(button, "class", "text-button svelte-
|
11639
|
+
attr(button, "class", "text-button svelte-1c34p4n");
|
11646
11640
|
attr(button, "style", /*_buttonStyle*/ ctx[1]);
|
11647
|
-
attr(div, "class", "text-button-block svelte-
|
11641
|
+
attr(div, "class", "text-button-block svelte-1c34p4n");
|
11648
11642
|
attr(div, "style", /*_style*/ ctx[2]);
|
11649
11643
|
},
|
11650
11644
|
m(target, anchor) {
|
@@ -11750,7 +11744,7 @@ class TextButtonBlock extends SvelteComponent {
|
|
11750
11744
|
/* src/components/ImageBlock.svelte generated by Svelte v3.53.1 */
|
11751
11745
|
|
11752
11746
|
function add_css$1(target) {
|
11753
|
-
append_styles(target, "svelte-
|
11747
|
+
append_styles(target, "svelte-1jus6sx", ".image-block.svelte-1jus6sx{display:flex;position:relative;width:100%;height:100%;max-width:100%;max-height:100%;justify-content:center;align-items:center;white-space:nowrap;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}.image.svelte-1jus6sx{width:100%;height:100%}.transport.svelte-1jus6sx:hover,.transport.svelte-1jus6sx:focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 0, 0, 0.16)}");
|
11754
11748
|
}
|
11755
11749
|
|
11756
11750
|
function create_fragment$x(ctx) {
|
@@ -11786,14 +11780,14 @@ function create_fragment$x(ctx) {
|
|
11786
11780
|
this.h();
|
11787
11781
|
},
|
11788
11782
|
h() {
|
11789
|
-
attr(img, "class", "image svelte-
|
11783
|
+
attr(img, "class", "image svelte-1jus6sx");
|
11790
11784
|
attr(img, "loading", "lazy");
|
11791
11785
|
attr(img, "width", "auto");
|
11792
11786
|
attr(img, "height", "auto");
|
11793
11787
|
attr(img, "style", img_style_value = `${/*_imageStyle*/ ctx[4]} object-fit: ${/*objectFit*/ ctx[3]};`);
|
11794
11788
|
if (!src_url_equal(img.src, img_src_value = /*src*/ ctx[0])) attr(img, "src", img_src_value);
|
11795
11789
|
attr(img, "alt", /*alt*/ ctx[1]);
|
11796
|
-
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
11790
|
+
attr(div, "class", div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"));
|
11797
11791
|
attr(div, "style", /*_style*/ ctx[5]);
|
11798
11792
|
},
|
11799
11793
|
m(target, anchor) {
|
@@ -11818,7 +11812,7 @@ function create_fragment$x(ctx) {
|
|
11818
11812
|
attr(img, "alt", /*alt*/ ctx[1]);
|
11819
11813
|
}
|
11820
11814
|
|
11821
|
-
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-
|
11815
|
+
if (dirty & /*transport*/ 4 && div_class_value !== (div_class_value = "" + (null_to_empty('image-block' + (/*transport*/ ctx[2] ? ' transport' : '')) + " svelte-1jus6sx"))) {
|
11822
11816
|
attr(div, "class", div_class_value);
|
11823
11817
|
}
|
11824
11818
|
|
@@ -13784,7 +13778,7 @@ function instance$6($$self, $$props, $$invalidate) {
|
|
13784
13778
|
let style;
|
13785
13779
|
let IconComponent;
|
13786
13780
|
let { layerId } = $$props;
|
13787
|
-
let { props
|
13781
|
+
let { props } = $$props;
|
13788
13782
|
let { overrideStyle } = $$props;
|
13789
13783
|
|
13790
13784
|
$$self.$$set = $$props => {
|
@@ -13823,10 +13817,10 @@ class Icon extends SvelteComponent {
|
|
13823
13817
|
/* src/components-v2/button/Button.svelte generated by Svelte v3.53.1 */
|
13824
13818
|
|
13825
13819
|
function add_css(target) {
|
13826
|
-
append_styles(target, "svelte-
|
13820
|
+
append_styles(target, "svelte-1uf4vt5", ".v2-button.svelte-1uf4vt5{display:inline-flex;align-content:center;justify-content:center;gap:0.65em;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.v2-button-icon.svelte-1uf4vt5{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
|
13827
13821
|
}
|
13828
13822
|
|
13829
|
-
// (
|
13823
|
+
// (116:2) {#if (props.isIcon && props.iconVariant)}
|
13830
13824
|
function create_if_block$2(ctx) {
|
13831
13825
|
let div;
|
13832
13826
|
let icon;
|
@@ -13858,7 +13852,7 @@ function create_if_block$2(ctx) {
|
|
13858
13852
|
this.h();
|
13859
13853
|
},
|
13860
13854
|
h() {
|
13861
|
-
attr(div, "class", "v2-button-icon svelte-
|
13855
|
+
attr(div, "class", "v2-button-icon svelte-1uf4vt5");
|
13862
13856
|
},
|
13863
13857
|
m(target, anchor) {
|
13864
13858
|
insert_hydration(target, div, anchor);
|
@@ -13900,8 +13894,6 @@ function create_fragment$5(ctx) {
|
|
13900
13894
|
let t1;
|
13901
13895
|
let button_style_value;
|
13902
13896
|
let current;
|
13903
|
-
let mounted;
|
13904
|
-
let dispose;
|
13905
13897
|
let if_block = /*props*/ ctx[1].isIcon && /*props*/ ctx[1].iconVariant && create_if_block$2(ctx);
|
13906
13898
|
|
13907
13899
|
return {
|
@@ -13933,7 +13925,7 @@ function create_fragment$5(ctx) {
|
|
13933
13925
|
h() {
|
13934
13926
|
attr(button, "data-layer-id", /*layerId*/ ctx[0]);
|
13935
13927
|
attr(button, "style", button_style_value = [/*style*/ ctx[3], /*overrideStyle*/ ctx[2]].join(' '));
|
13936
|
-
attr(button, "class", "v2-button svelte-
|
13928
|
+
attr(button, "class", "v2-button svelte-1uf4vt5");
|
13937
13929
|
},
|
13938
13930
|
m(target, anchor) {
|
13939
13931
|
insert_hydration(target, button, anchor);
|
@@ -13942,11 +13934,6 @@ function create_fragment$5(ctx) {
|
|
13942
13934
|
append_hydration(button, span);
|
13943
13935
|
append_hydration(span, t1);
|
13944
13936
|
current = true;
|
13945
|
-
|
13946
|
-
if (!mounted) {
|
13947
|
-
dispose = listen(button, "click", checkStopPropagation('click', /*handleClick*/ ctx[5]));
|
13948
|
-
mounted = true;
|
13949
|
-
}
|
13950
13937
|
},
|
13951
13938
|
p(ctx, [dirty]) {
|
13952
13939
|
if (/*props*/ ctx[1].isIcon && /*props*/ ctx[1].iconVariant) {
|
@@ -13994,20 +13981,12 @@ function create_fragment$5(ctx) {
|
|
13994
13981
|
d(detaching) {
|
13995
13982
|
if (detaching) detach(button);
|
13996
13983
|
if (if_block) if_block.d();
|
13997
|
-
mounted = false;
|
13998
|
-
dispose();
|
13999
13984
|
}
|
14000
13985
|
};
|
14001
13986
|
}
|
14002
13987
|
|
14003
13988
|
function instance$5($$self, $$props, $$invalidate) {
|
14004
13989
|
let style;
|
14005
|
-
let { layerId = '' } = $$props;
|
14006
|
-
let { onClick = { operation: 'none', args: [] } } = $$props;
|
14007
|
-
let { eventName = '' } = $$props;
|
14008
|
-
let { eventValue = undefined } = $$props;
|
14009
|
-
let { props = {} } = $$props;
|
14010
|
-
let { overrideStyle } = $$props;
|
14011
13990
|
|
14012
13991
|
const VARIANTS = {
|
14013
13992
|
size: {
|
@@ -14088,19 +14067,12 @@ function instance$5($$self, $$props, $$invalidate) {
|
|
14088
14067
|
}
|
14089
14068
|
};
|
14090
14069
|
|
14091
|
-
|
14092
|
-
|
14093
|
-
|
14094
|
-
}
|
14095
|
-
|
14096
|
-
execOnClickOperation(onClick);
|
14097
|
-
}
|
14070
|
+
let { layerId } = $$props;
|
14071
|
+
let { props } = $$props;
|
14072
|
+
let { overrideStyle } = $$props;
|
14098
14073
|
|
14099
14074
|
$$self.$$set = $$props => {
|
14100
14075
|
if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
|
14101
|
-
if ('onClick' in $$props) $$invalidate(6, onClick = $$props.onClick);
|
14102
|
-
if ('eventName' in $$props) $$invalidate(7, eventName = $$props.eventName);
|
14103
|
-
if ('eventValue' in $$props) $$invalidate(8, eventValue = $$props.eventValue);
|
14104
14076
|
if ('props' in $$props) $$invalidate(1, props = $$props.props);
|
14105
14077
|
if ('overrideStyle' in $$props) $$invalidate(2, overrideStyle = $$props.overrideStyle);
|
14106
14078
|
};
|
@@ -14129,39 +14101,13 @@ function instance$5($$self, $$props, $$invalidate) {
|
|
14129
14101
|
}
|
14130
14102
|
};
|
14131
14103
|
|
14132
|
-
return [
|
14133
|
-
layerId,
|
14134
|
-
props,
|
14135
|
-
overrideStyle,
|
14136
|
-
style,
|
14137
|
-
VARIANTS,
|
14138
|
-
handleClick,
|
14139
|
-
onClick,
|
14140
|
-
eventName,
|
14141
|
-
eventValue
|
14142
|
-
];
|
14104
|
+
return [layerId, props, overrideStyle, style, VARIANTS];
|
14143
14105
|
}
|
14144
14106
|
|
14145
14107
|
class Button extends SvelteComponent {
|
14146
14108
|
constructor(options) {
|
14147
14109
|
super();
|
14148
|
-
|
14149
|
-
init(
|
14150
|
-
this,
|
14151
|
-
options,
|
14152
|
-
instance$5,
|
14153
|
-
create_fragment$5,
|
14154
|
-
safe_not_equal,
|
14155
|
-
{
|
14156
|
-
layerId: 0,
|
14157
|
-
onClick: 6,
|
14158
|
-
eventName: 7,
|
14159
|
-
eventValue: 8,
|
14160
|
-
props: 1,
|
14161
|
-
overrideStyle: 2
|
14162
|
-
},
|
14163
|
-
add_css
|
14164
|
-
);
|
14110
|
+
init(this, options, instance$5, create_fragment$5, safe_not_equal, { layerId: 0, props: 1, overrideStyle: 2 }, add_css);
|
14165
14111
|
}
|
14166
14112
|
}
|
14167
14113
|
|
@@ -14357,7 +14303,7 @@ function instance$3($$self, $$props, $$invalidate) {
|
|
14357
14303
|
let escapedHTML;
|
14358
14304
|
let style;
|
14359
14305
|
let { layerId } = $$props;
|
14360
|
-
let { props
|
14306
|
+
let { props } = $$props;
|
14361
14307
|
|
14362
14308
|
$$self.$$set = $$props => {
|
14363
14309
|
if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
|
@@ -14503,8 +14449,8 @@ function create_fragment$2(ctx) {
|
|
14503
14449
|
function instance$2($$self, $$props, $$invalidate) {
|
14504
14450
|
let style;
|
14505
14451
|
let imgStyle;
|
14506
|
-
let { layerId
|
14507
|
-
let { props
|
14452
|
+
let { layerId } = $$props;
|
14453
|
+
let { props } = $$props;
|
14508
14454
|
let { overrideStyle } = $$props;
|
14509
14455
|
|
14510
14456
|
const VARIANTS = {
|
@@ -14665,7 +14611,7 @@ function instance$1($$self, $$props, $$invalidate) {
|
|
14665
14611
|
let objectStyle;
|
14666
14612
|
let imgStyle;
|
14667
14613
|
let { layerId } = $$props;
|
14668
|
-
let { props
|
14614
|
+
let { props } = $$props;
|
14669
14615
|
let { overrideStyle } = $$props;
|
14670
14616
|
|
14671
14617
|
$$self.$$set = $$props => {
|
@@ -14781,7 +14727,7 @@ function create_fragment(ctx) {
|
|
14781
14727
|
function instance($$self, $$props, $$invalidate) {
|
14782
14728
|
let style;
|
14783
14729
|
let { layerId } = $$props;
|
14784
|
-
let { props
|
14730
|
+
let { props } = $$props;
|
14785
14731
|
let { overrideStyle } = $$props;
|
14786
14732
|
const size = props.size ?? 24;
|
14787
14733
|
|