@plaidev/karte-action-sdk 1.1.268-29127795.266c63a4 → 1.1.268-29130290.f4c098fe
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/components-flex/avatar/types.d.ts +2 -2
- package/dist/components-flex/close-button/types.d.ts +4 -4
- package/dist/components-flex/image/types.d.ts +2 -2
- package/dist/components-flex/layout/types.d.ts +1 -0
- package/dist/components-flex/list/types.d.ts +2 -5
- package/dist/components-flex/multi-column/types.d.ts +2 -5
- package/dist/components-flex/props.d.ts +18 -11
- package/dist/components-flex/utils/prop-to-style.d.ts +3 -2
- package/dist/components-flex/variants.d.ts +8 -2
- package/dist/hydrate/components-flex/avatar/types.d.ts +2 -2
- package/dist/hydrate/components-flex/close-button/types.d.ts +4 -4
- package/dist/hydrate/components-flex/image/types.d.ts +2 -2
- package/dist/hydrate/components-flex/layout/types.d.ts +1 -0
- package/dist/hydrate/components-flex/list/types.d.ts +2 -5
- package/dist/hydrate/components-flex/multi-column/types.d.ts +2 -5
- package/dist/hydrate/components-flex/props.d.ts +18 -11
- package/dist/hydrate/components-flex/utils/prop-to-style.d.ts +3 -2
- package/dist/hydrate/components-flex/variants.d.ts +8 -2
- package/dist/hydrate/index.es.js +304 -181
- package/dist/index.es.js +300 -178
- package/dist/svelte5/components-flex/avatar/types.d.ts +2 -2
- package/dist/svelte5/components-flex/close-button/types.d.ts +4 -4
- package/dist/svelte5/components-flex/image/types.d.ts +2 -2
- package/dist/svelte5/components-flex/layout/types.d.ts +1 -0
- package/dist/svelte5/components-flex/list/types.d.ts +2 -5
- package/dist/svelte5/components-flex/multi-column/types.d.ts +2 -5
- package/dist/svelte5/components-flex/props.d.ts +18 -11
- package/dist/svelte5/components-flex/utils/prop-to-style.d.ts +3 -2
- package/dist/svelte5/components-flex/variants.d.ts +8 -2
- package/dist/svelte5/hydrate/components-flex/avatar/types.d.ts +2 -2
- package/dist/svelte5/hydrate/components-flex/close-button/types.d.ts +4 -4
- package/dist/svelte5/hydrate/components-flex/image/types.d.ts +2 -2
- package/dist/svelte5/hydrate/components-flex/layout/types.d.ts +1 -0
- package/dist/svelte5/hydrate/components-flex/list/types.d.ts +2 -5
- package/dist/svelte5/hydrate/components-flex/multi-column/types.d.ts +2 -5
- package/dist/svelte5/hydrate/components-flex/props.d.ts +18 -11
- package/dist/svelte5/hydrate/components-flex/utils/prop-to-style.d.ts +3 -2
- package/dist/svelte5/hydrate/components-flex/variants.d.ts +8 -2
- package/dist/svelte5/hydrate/index.es.js +206 -93
- package/dist/svelte5/index.es.js +206 -93
- package/dist/svelte5/index.front2.es.js +209 -92
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
@@ -6432,7 +6432,7 @@ var TextButtonElement_default = TextButtonElement;
|
|
6432
6432
|
//#endregion
|
6433
6433
|
//#region src/components/ImageElement.svelte
|
6434
6434
|
function add_css$48(target) {
|
6435
|
-
append_styles(target, "svelte-
|
6435
|
+
append_styles(target, "svelte-1vf67bu", ".image-element.svelte-1vf67bu{width:100%;height:100%;max-width:100%;max-height:100%;box-sizing:border-box}.image-element.svelte-1vf67bu > .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-1vf67bu > .button._disabled{cursor:not-allowed !important;opacity:0.2}.image-element.transport.svelte-1vf67bu > .button:not(._disabled):hover,.image-element.transport.svelte-1vf67bu > .button:not(._disabled):focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1),\n 0 8px 28px rgba(0, 0, 0, 0.16)}.image.svelte-1vf67bu{width:100%;height:100%}");
|
6436
6436
|
}
|
6437
6437
|
function create_default_slot$5(ctx) {
|
6438
6438
|
let img;
|
@@ -6441,7 +6441,7 @@ function create_default_slot$5(ctx) {
|
|
6441
6441
|
return {
|
6442
6442
|
c() {
|
6443
6443
|
img = element("img");
|
6444
|
-
attr(img, "class", "image svelte-
|
6444
|
+
attr(img, "class", "image svelte-1vf67bu");
|
6445
6445
|
attr(img, "loading", "lazy");
|
6446
6446
|
attr(img, "width", "auto");
|
6447
6447
|
attr(img, "height", "auto");
|
@@ -6488,7 +6488,7 @@ function create_fragment$84(ctx) {
|
|
6488
6488
|
c() {
|
6489
6489
|
div = element("div");
|
6490
6490
|
create_component(button.$$.fragment);
|
6491
|
-
attr(div, "class", div_class_value = "image-element " + (ctx[2] ? " transport" : "") + " svelte-
|
6491
|
+
attr(div, "class", div_class_value = "image-element " + (ctx[2] ? " transport" : "") + " svelte-1vf67bu");
|
6492
6492
|
},
|
6493
6493
|
m(target, anchor) {
|
6494
6494
|
insert(target, div, anchor);
|
@@ -6505,7 +6505,7 @@ function create_fragment$84(ctx) {
|
|
6505
6505
|
ctx: ctx$1
|
6506
6506
|
};
|
6507
6507
|
button.$set(button_changes);
|
6508
|
-
if (!current || dirty & 4 && div_class_value !== (div_class_value = "image-element " + (ctx$1[2] ? " transport" : "") + " svelte-
|
6508
|
+
if (!current || dirty & 4 && div_class_value !== (div_class_value = "image-element " + (ctx$1[2] ? " transport" : "") + " svelte-1vf67bu")) attr(div, "class", div_class_value);
|
6509
6509
|
},
|
6510
6510
|
i(local) {
|
6511
6511
|
if (current) return;
|
@@ -6723,7 +6723,7 @@ var List_default$1 = List$1;
|
|
6723
6723
|
//#endregion
|
6724
6724
|
//#region src/components/ListItem.svelte
|
6725
6725
|
function add_css$46(target) {
|
6726
|
-
append_styles(target, "svelte-
|
6726
|
+
append_styles(target, "svelte-r2zttu", ".list-item.svelte-r2zttu{flex:auto;box-sizing:border-box;min-width:0;min-height:0;position:relative}.list-item.svelte-r2zttu > .button{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;overflow:hidden}");
|
6727
6727
|
}
|
6728
6728
|
function create_default_slot$4(ctx) {
|
6729
6729
|
let current;
|
@@ -6794,7 +6794,7 @@ function create_fragment$82(ctx) {
|
|
6794
6794
|
c() {
|
6795
6795
|
div = element("div");
|
6796
6796
|
create_component(button.$$.fragment);
|
6797
|
-
attr(div, "class", "list-item svelte-
|
6797
|
+
attr(div, "class", "list-item svelte-r2zttu");
|
6798
6798
|
attr(
|
6799
6799
|
div,
|
6800
6800
|
"style",
|
@@ -6973,7 +6973,7 @@ var EmbedElement_default = EmbedElement;
|
|
6973
6973
|
//#endregion
|
6974
6974
|
//#region src/components/MovieYouTubeElement.svelte
|
6975
6975
|
function add_css$44(target) {
|
6976
|
-
append_styles(target, "svelte-
|
6976
|
+
append_styles(target, "svelte-1fyqoy1", ".embed.svelte-1fyqoy1{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-1fyqoy1 iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
|
6977
6977
|
}
|
6978
6978
|
function create_fragment$80(ctx) {
|
6979
6979
|
let div1;
|
@@ -6983,7 +6983,7 @@ function create_fragment$80(ctx) {
|
|
6983
6983
|
div1 = element("div");
|
6984
6984
|
div0 = element("div");
|
6985
6985
|
attr(div0, "class", "karte-player");
|
6986
|
-
attr(div1, "class", "embed svelte-
|
6986
|
+
attr(div1, "class", "embed svelte-1fyqoy1");
|
6987
6987
|
attr(
|
6988
6988
|
div1,
|
6989
6989
|
"style",
|
@@ -7262,7 +7262,7 @@ var MovieYouTubeElement_default = MovieYouTubeElement;
|
|
7262
7262
|
//#endregion
|
7263
7263
|
//#region src/components/MovieVimeoElement.svelte
|
7264
7264
|
function add_css$43(target) {
|
7265
|
-
append_styles(target, "svelte-
|
7265
|
+
append_styles(target, "svelte-1fyqoy1", ".embed.svelte-1fyqoy1{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-1fyqoy1 iframe{position:absolute;top:0;left:0;width:100%;height:100%}");
|
7266
7266
|
}
|
7267
7267
|
function create_fragment$79(ctx) {
|
7268
7268
|
let div1;
|
@@ -7272,7 +7272,7 @@ function create_fragment$79(ctx) {
|
|
7272
7272
|
div1 = element("div");
|
7273
7273
|
div0 = element("div");
|
7274
7274
|
attr(div0, "class", "karte-player");
|
7275
|
-
attr(div1, "class", "embed svelte-
|
7275
|
+
attr(div1, "class", "embed svelte-1fyqoy1");
|
7276
7276
|
attr(
|
7277
7277
|
div1,
|
7278
7278
|
"style",
|
@@ -7426,7 +7426,7 @@ var MovieVimeoElement_default = MovieVimeoElement;
|
|
7426
7426
|
//#endregion
|
7427
7427
|
//#region src/components/FormTextarea.svelte
|
7428
7428
|
function add_css$42(target) {
|
7429
|
-
append_styles(target, "svelte-
|
7429
|
+
append_styles(target, "svelte-augwt8", ".textarea-wrapper.svelte-augwt8{display:flex;align-items:center;width:100%;height:100%}.textarea.svelte-augwt8{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-augwt8::placeholder{color:var(--placeholder-color)}.textarea.svelte-augwt8:focus{outline:none;border-width:var(--focus-border-width) !important;border-color:var(--focus-border-color) !important;border-style:var(--focus-border-style) !important}");
|
7430
7430
|
}
|
7431
7431
|
function create_fragment$78(ctx) {
|
7432
7432
|
let div;
|
@@ -7437,7 +7437,7 @@ function create_fragment$78(ctx) {
|
|
7437
7437
|
c() {
|
7438
7438
|
div = element("div");
|
7439
7439
|
textarea = element("textarea");
|
7440
|
-
attr(textarea, "class", "textarea svelte-
|
7440
|
+
attr(textarea, "class", "textarea svelte-augwt8");
|
7441
7441
|
textarea.value = ctx[4];
|
7442
7442
|
textarea.required = ctx[1];
|
7443
7443
|
attr(
|
@@ -7452,7 +7452,7 @@ function create_fragment$78(ctx) {
|
|
7452
7452
|
/*style*/
|
7453
7453
|
ctx[3]
|
7454
7454
|
);
|
7455
|
-
attr(div, "class", "textarea-wrapper svelte-
|
7455
|
+
attr(div, "class", "textarea-wrapper svelte-augwt8");
|
7456
7456
|
attr(
|
7457
7457
|
div,
|
7458
7458
|
"style",
|
@@ -7594,7 +7594,7 @@ var FormTextarea_default = FormTextarea;
|
|
7594
7594
|
//#endregion
|
7595
7595
|
//#region src/components/FormRadioButtons.svelte
|
7596
7596
|
function add_css$41(target) {
|
7597
|
-
append_styles(target, "svelte-
|
7597
|
+
append_styles(target, "svelte-152kveg", ".radio-buttons.svelte-152kveg{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-152kveg{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-152kveg{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-152kveg: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),\n 0px 1px 4px -1px rgba(18, 160, 160, 0.24)}.radio-button-text.svelte-152kveg{margin-left:0.5em}");
|
7598
7598
|
}
|
7599
7599
|
function get_each_context$7(ctx, list, i) {
|
7600
7600
|
const child_ctx = ctx.slice();
|
@@ -7624,7 +7624,7 @@ function create_each_block$7(ctx) {
|
|
7624
7624
|
t1 = text(t1_value);
|
7625
7625
|
t2 = space();
|
7626
7626
|
attr(input, "type", "radio");
|
7627
|
-
attr(input, "class", "radio-button-input svelte-
|
7627
|
+
attr(input, "class", "radio-button-input svelte-152kveg");
|
7628
7628
|
attr(
|
7629
7629
|
input,
|
7630
7630
|
"style",
|
@@ -7639,9 +7639,9 @@ function create_each_block$7(ctx) {
|
|
7639
7639
|
);
|
7640
7640
|
input.value = input_value_value = ctx[17];
|
7641
7641
|
input.checked = input_checked_value = ctx[17] === ctx[3];
|
7642
|
-
attr(span, "class", "radio-button-text svelte-
|
7642
|
+
attr(span, "class", "radio-button-text svelte-152kveg");
|
7643
7643
|
attr(span, "style", span_style_value = `${ctx[2]} ${ctx[6]}`);
|
7644
|
-
attr(label, "class", "radio-button svelte-
|
7644
|
+
attr(label, "class", "radio-button svelte-152kveg");
|
7645
7645
|
},
|
7646
7646
|
m(target, anchor) {
|
7647
7647
|
insert(target, label, anchor);
|
@@ -7698,7 +7698,7 @@ function create_fragment$77(ctx) {
|
|
7698
7698
|
c() {
|
7699
7699
|
div = element("div");
|
7700
7700
|
for (let i = 0; i < each_blocks.length; i += 1) each_blocks[i].c();
|
7701
|
-
attr(div, "class", "radio-buttons svelte-
|
7701
|
+
attr(div, "class", "radio-buttons svelte-152kveg");
|
7702
7702
|
attr(
|
7703
7703
|
div,
|
7704
7704
|
"style",
|
@@ -7841,7 +7841,7 @@ var FormRadioButtons_default = FormRadioButtons;
|
|
7841
7841
|
//#endregion
|
7842
7842
|
//#region src/components/FormSelect.svelte
|
7843
7843
|
function add_css$40(target) {
|
7844
|
-
append_styles(target, "svelte-
|
7844
|
+
append_styles(target, "svelte-163uiff", ".select.svelte-163uiff{width:100%;height:100%}.select-select.svelte-163uiff{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-163uiff: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-163uiff{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}");
|
7845
7845
|
}
|
7846
7846
|
function get_each_context$6(ctx, list, i) {
|
7847
7847
|
const child_ctx = ctx.slice();
|
@@ -7955,15 +7955,15 @@ function create_fragment$76(ctx) {
|
|
7955
7955
|
for (let i = 0; i < each_blocks.length; i += 1) each_blocks[i].c();
|
7956
7956
|
t = space();
|
7957
7957
|
div0 = element("div");
|
7958
|
-
attr(select, "class", "select-select svelte-
|
7958
|
+
attr(select, "class", "select-select svelte-163uiff");
|
7959
7959
|
attr(
|
7960
7960
|
select,
|
7961
7961
|
"style",
|
7962
7962
|
/*style*/
|
7963
7963
|
ctx[3]
|
7964
7964
|
);
|
7965
|
-
attr(div0, "class", "select-icon svelte-
|
7966
|
-
attr(div1, "class", "select svelte-
|
7965
|
+
attr(div0, "class", "select-icon svelte-163uiff");
|
7966
|
+
attr(div1, "class", "select svelte-163uiff");
|
7967
7967
|
attr(
|
7968
7968
|
div1,
|
7969
7969
|
"style",
|
@@ -8137,7 +8137,7 @@ var FormSelect_default = FormSelect;
|
|
8137
8137
|
//#endregion
|
8138
8138
|
//#region src/components/FormCheckBoxes.svelte
|
8139
8139
|
function add_css$39(target) {
|
8140
|
-
append_styles(target, "svelte-
|
8140
|
+
append_styles(target, "svelte-1fqm5oa", ".check-boxes.svelte-1fqm5oa.svelte-1fqm5oa{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%;gap:0px}.check-box.svelte-1fqm5oa.svelte-1fqm5oa{display:flex;align-items:center;position:relative;cursor:pointer}.check-box-input.svelte-1fqm5oa.svelte-1fqm5oa{width:var(--size);height:var(--size);margin:0;position:absolute;appearance:none;cursor:pointer}.check-box-check.svelte-1fqm5oa.svelte-1fqm5oa{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-1fqm5oa.svelte-1fqm5oa{display:inline-block;--icon-size:calc(var(--size) * 3 / 4);width:var(--icon-size);height:var(--icon-size)}.check-box-icon.svelte-1fqm5oa.svelte-1fqm5oa: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-1fqm5oa.svelte-1fqm5oa{background-color:var(--color-main-active)}.check-box-check._checked.svelte-1fqm5oa .check-box-icon.svelte-1fqm5oa:after{border-color:var(--color-sub-active)}.check-box-text.svelte-1fqm5oa.svelte-1fqm5oa{margin-left:0.5em;color:#333;font-size:12px;line-height:1.5}");
|
8141
8141
|
}
|
8142
8142
|
function get_each_context$5(ctx, list, i) {
|
8143
8143
|
const child_ctx = ctx.slice();
|
@@ -8172,7 +8172,7 @@ function create_each_block$5(ctx) {
|
|
8172
8172
|
span2 = element("span");
|
8173
8173
|
t2 = text(t2_value);
|
8174
8174
|
t3 = space();
|
8175
|
-
attr(input, "class", "check-box-input svelte-
|
8175
|
+
attr(input, "class", "check-box-input svelte-1fqm5oa");
|
8176
8176
|
attr(input, "type", "checkbox");
|
8177
8177
|
attr(
|
8178
8178
|
input,
|
@@ -8181,11 +8181,11 @@ function create_each_block$5(ctx) {
|
|
8181
8181
|
ctx[0]
|
8182
8182
|
);
|
8183
8183
|
input.checked = input_checked_value = ctx[4][ctx[19]];
|
8184
|
-
attr(span0, "class", "check-box-icon svelte-
|
8185
|
-
attr(span1, "class", span1_class_value = null_to_empty(`check-box-check${ctx[4][ctx[19]] ? " _checked" : ""}`) + " svelte-
|
8186
|
-
attr(span2, "class", "check-box-text svelte-
|
8184
|
+
attr(span0, "class", "check-box-icon svelte-1fqm5oa");
|
8185
|
+
attr(span1, "class", span1_class_value = null_to_empty(`check-box-check${ctx[4][ctx[19]] ? " _checked" : ""}`) + " svelte-1fqm5oa");
|
8186
|
+
attr(span2, "class", "check-box-text svelte-1fqm5oa");
|
8187
8187
|
attr(span2, "style", span2_style_value = `${ctx[2]} ${ctx[6]}`);
|
8188
|
-
attr(label, "class", "check-box svelte-
|
8188
|
+
attr(label, "class", "check-box svelte-1fqm5oa");
|
8189
8189
|
attr(
|
8190
8190
|
label,
|
8191
8191
|
"style",
|
@@ -8225,7 +8225,7 @@ function create_each_block$5(ctx) {
|
|
8225
8225
|
ctx[0]
|
8226
8226
|
);
|
8227
8227
|
if (dirty & 16 && input_checked_value !== (input_checked_value = ctx[4][ctx[19]])) input.checked = input_checked_value;
|
8228
|
-
if (dirty & 16 && span1_class_value !== (span1_class_value = null_to_empty(`check-box-check${ctx[4][ctx[19]] ? " _checked" : ""}`) + " svelte-
|
8228
|
+
if (dirty & 16 && span1_class_value !== (span1_class_value = null_to_empty(`check-box-check${ctx[4][ctx[19]] ? " _checked" : ""}`) + " svelte-1fqm5oa")) attr(span1, "class", span1_class_value);
|
8229
8229
|
if (dirty & 8 && t2_value !== (t2_value = ctx[17] + "")) set_data(t2, t2_value);
|
8230
8230
|
if (dirty & 4 && span2_style_value !== (span2_style_value = `${ctx[2]} ${ctx[6]}`)) attr(span2, "style", span2_style_value);
|
8231
8231
|
if (dirty & 32) attr(
|
@@ -8251,7 +8251,7 @@ function create_fragment$75(ctx) {
|
|
8251
8251
|
c() {
|
8252
8252
|
div = element("div");
|
8253
8253
|
for (let i = 0; i < each_blocks.length; i += 1) each_blocks[i].c();
|
8254
|
-
attr(div, "class", "check-boxes svelte-
|
8254
|
+
attr(div, "class", "check-boxes svelte-1fqm5oa");
|
8255
8255
|
attr(
|
8256
8256
|
div,
|
8257
8257
|
"style",
|
@@ -8402,7 +8402,7 @@ var FormCheckBoxes_default = FormCheckBoxes;
|
|
8402
8402
|
//#endregion
|
8403
8403
|
//#region src/components/FormRatingButtonsNumber.svelte
|
8404
8404
|
function add_css$38(target) {
|
8405
|
-
append_styles(target, "svelte-
|
8405
|
+
append_styles(target, "svelte-1b5niix", ".rating-buttons.svelte-1b5niix{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-1b5niix{cursor:pointer;display:flex;justify-content:center;align-items:center;transition:background-color 0.2s,\n box-shadow 0.2s;appearance:none;background:none;border:none;margin:0;padding:0}");
|
8406
8406
|
}
|
8407
8407
|
function get_each_context$4(ctx, list, i) {
|
8408
8408
|
const child_ctx = ctx.slice();
|
@@ -8422,7 +8422,7 @@ function create_each_block$4(ctx) {
|
|
8422
8422
|
button = element("button");
|
8423
8423
|
t0 = text(t0_value);
|
8424
8424
|
t1 = space();
|
8425
|
-
attr(button, "class", "rating-button svelte-
|
8425
|
+
attr(button, "class", "rating-button svelte-1b5niix");
|
8426
8426
|
attr(button, "style", button_style_value = ctx[5](
|
8427
8427
|
/*i*/
|
8428
8428
|
ctx[14] === ctx[2]
|
@@ -8478,7 +8478,7 @@ function create_fragment$74(ctx) {
|
|
8478
8478
|
c() {
|
8479
8479
|
div = element("div");
|
8480
8480
|
for (let i = 0; i < each_blocks.length; i += 1) each_blocks[i].c();
|
8481
|
-
attr(div, "class", "rating-buttons svelte-
|
8481
|
+
attr(div, "class", "rating-buttons svelte-1b5niix");
|
8482
8482
|
},
|
8483
8483
|
m(target, anchor) {
|
8484
8484
|
insert(target, div, anchor);
|
@@ -8595,7 +8595,7 @@ var FormRatingButtonsNumber_default = FormRatingButtonsNumber;
|
|
8595
8595
|
//#endregion
|
8596
8596
|
//#region src/components/FormRatingButtonsFace.svelte
|
8597
8597
|
function add_css$37(target) {
|
8598
|
-
append_styles(target, "svelte-
|
8598
|
+
append_styles(target, "svelte-rjdxzu", ".rating-buttons.svelte-rjdxzu{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%}.rating-button.svelte-rjdxzu{appearance:none;background:none;border:none;margin:0;padding:0}.rating-button-image.svelte-rjdxzu{cursor:pointer;user-select:none;-webkit-user-drag:none;width:100%;height:100%}.rating-button-image.svelte-rjdxzu:not(._active){filter:grayscale(100%)}");
|
8599
8599
|
}
|
8600
8600
|
function get_each_context$3(ctx, list, i) {
|
8601
8601
|
const child_ctx = ctx.slice();
|
@@ -8617,9 +8617,9 @@ function create_each_block$3(ctx) {
|
|
8617
8617
|
img = element("img");
|
8618
8618
|
t = space();
|
8619
8619
|
if (!src_url_equal(img.src, img_src_value = ctx[2][ctx[10]])) attr(img, "src", img_src_value);
|
8620
|
-
attr(img, "class", img_class_value = null_to_empty(`rating-button-image${ctx[10] === ctx[1] ? " _active" : ""}`) + " svelte-
|
8620
|
+
attr(img, "class", img_class_value = null_to_empty(`rating-button-image${ctx[10] === ctx[1] ? " _active" : ""}`) + " svelte-rjdxzu");
|
8621
8621
|
attr(img, "alt", img_alt_value = "rate" + ctx[10]);
|
8622
|
-
attr(button, "class", "rating-button svelte-
|
8622
|
+
attr(button, "class", "rating-button svelte-rjdxzu");
|
8623
8623
|
attr(
|
8624
8624
|
button,
|
8625
8625
|
"style",
|
@@ -8646,7 +8646,7 @@ function create_each_block$3(ctx) {
|
|
8646
8646
|
},
|
8647
8647
|
p(new_ctx, dirty) {
|
8648
8648
|
ctx = new_ctx;
|
8649
|
-
if (dirty & 2 && img_class_value !== (img_class_value = null_to_empty(`rating-button-image${ctx[10] === ctx[1] ? " _active" : ""}`) + " svelte-
|
8649
|
+
if (dirty & 2 && img_class_value !== (img_class_value = null_to_empty(`rating-button-image${ctx[10] === ctx[1] ? " _active" : ""}`) + " svelte-rjdxzu")) attr(img, "class", img_class_value);
|
8650
8650
|
if (dirty & 1) attr(
|
8651
8651
|
button,
|
8652
8652
|
"style",
|
@@ -8670,7 +8670,7 @@ function create_fragment$73(ctx) {
|
|
8670
8670
|
c() {
|
8671
8671
|
div = element("div");
|
8672
8672
|
for (let i = 0; i < each_blocks.length; i += 1) each_blocks[i].c();
|
8673
|
-
attr(div, "class", "rating-buttons svelte-
|
8673
|
+
attr(div, "class", "rating-buttons svelte-rjdxzu");
|
8674
8674
|
},
|
8675
8675
|
m(target, anchor) {
|
8676
8676
|
insert(target, div, anchor);
|
@@ -8970,7 +8970,7 @@ var FormIdentifyInput_default = FormIdentifyInput;
|
|
8970
8970
|
//#endregion
|
8971
8971
|
//#region src/components/FormIdentifyChoices.svelte
|
8972
8972
|
function add_css$35(target) {
|
8973
|
-
append_styles(target, "svelte-
|
8973
|
+
append_styles(target, "svelte-152kveg", ".radio-buttons.svelte-152kveg{display:flex;justify-content:space-between;flex-direction:column;width:100%;height:100%}.radio-button.svelte-152kveg{cursor:pointer;display:flex;align-items:center}.radio-button-input.svelte-152kveg{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-152kveg: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),\n 0px 1px 4px -1px rgba(18, 160, 160, 0.24)}.radio-button-text.svelte-152kveg{margin-left:0.5em}");
|
8974
8974
|
}
|
8975
8975
|
function create_fragment$71(ctx) {
|
8976
8976
|
let div;
|
@@ -9006,7 +9006,7 @@ function create_fragment$71(ctx) {
|
|
9006
9006
|
span1 = element("span");
|
9007
9007
|
t4 = text("いいえ");
|
9008
9008
|
attr(input0, "type", "radio");
|
9009
|
-
attr(input0, "class", "radio-button-input svelte-
|
9009
|
+
attr(input0, "class", "radio-button-input svelte-152kveg");
|
9010
9010
|
attr(
|
9011
9011
|
input0,
|
9012
9012
|
"style",
|
@@ -9014,11 +9014,11 @@ function create_fragment$71(ctx) {
|
|
9014
9014
|
ctx[2]
|
9015
9015
|
);
|
9016
9016
|
input0.checked = input0_checked_value = ctx[3] === true;
|
9017
|
-
attr(span0, "class", "radio-button-text svelte-
|
9017
|
+
attr(span0, "class", "radio-button-text svelte-152kveg");
|
9018
9018
|
attr(span0, "style", span0_style_value = `${ctx[1]} ${ctx[4]}`);
|
9019
|
-
attr(label0, "class", "radio-button svelte-
|
9019
|
+
attr(label0, "class", "radio-button svelte-152kveg");
|
9020
9020
|
attr(input1, "type", "radio");
|
9021
|
-
attr(input1, "class", "radio-button-input svelte-
|
9021
|
+
attr(input1, "class", "radio-button-input svelte-152kveg");
|
9022
9022
|
attr(
|
9023
9023
|
input1,
|
9024
9024
|
"style",
|
@@ -9026,10 +9026,10 @@ function create_fragment$71(ctx) {
|
|
9026
9026
|
ctx[2]
|
9027
9027
|
);
|
9028
9028
|
input1.checked = input1_checked_value = ctx[3] === false;
|
9029
|
-
attr(span1, "class", "radio-button-text svelte-
|
9029
|
+
attr(span1, "class", "radio-button-text svelte-152kveg");
|
9030
9030
|
attr(span1, "style", span1_style_value = `${ctx[1]} ${ctx[4]}`);
|
9031
|
-
attr(label1, "class", "radio-button svelte-
|
9032
|
-
attr(div, "class", "radio-buttons svelte-
|
9031
|
+
attr(label1, "class", "radio-button svelte-152kveg");
|
9032
|
+
attr(div, "class", "radio-buttons svelte-152kveg");
|
9033
9033
|
attr(
|
9034
9034
|
div,
|
9035
9035
|
"style",
|
@@ -9188,7 +9188,7 @@ var FormIdentifyChoices_default = FormIdentifyChoices;
|
|
9188
9188
|
//#endregion
|
9189
9189
|
//#region src/components/Slide.svelte
|
9190
9190
|
function add_css$34(target) {
|
9191
|
-
append_styles(target, "svelte-
|
9191
|
+
append_styles(target, "svelte-zx7o47", ".root.svelte-zx7o47{width:100%;height:100%;position:relative}.container.svelte-zx7o47{width:100%;height:100%;position:relative;overflow:hidden;box-sizing:border-box;border-width:0px;border-style:solid;border-color:#000000}.slide.svelte-zx7o47{height:100%;position:absolute;display:flex}.transition.svelte-zx7o47{transition:left 0.2s cubic-bezier(0.04, 0.67, 0.53, 0.96)}.item.svelte-zx7o47{height:100%;flex:none}.prev-button-container.svelte-zx7o47,.next-button-container.svelte-zx7o47{top:50%;height:0;position:absolute;display:flex;overflow:visible;align-items:center}.prev-button-container.svelte-zx7o47{left:0}.next-button-container.svelte-zx7o47{right:0}.move-button.svelte-zx7o47{display:flex;align-items:center;justify-content:center;cursor:pointer;box-sizing:border-box;border:none;background:none;margin:0;padding:0}.navigation.svelte-zx7o47{position:absolute;width:0;left:50%;bottom:0;display:flex;justify-content:center;overflow:visible}.navigation-item.svelte-zx7o47{flex-shrink:0;cursor:pointer;border:none;background:none;margin:0;padding:0;appearance:none}.navigation-item-inner.circle.svelte-zx7o47{border-radius:51%}");
|
9192
9192
|
}
|
9193
9193
|
function get_each_context$2(ctx, list, i) {
|
9194
9194
|
const child_ctx = ctx.slice();
|
@@ -9218,14 +9218,14 @@ function create_if_block_1$2(ctx) {
|
|
9218
9218
|
/*prevIconStyle*/
|
9219
9219
|
ctx[10]
|
9220
9220
|
);
|
9221
|
-
attr(button, "class", "move-button svelte-
|
9221
|
+
attr(button, "class", "move-button svelte-zx7o47");
|
9222
9222
|
attr(
|
9223
9223
|
button,
|
9224
9224
|
"style",
|
9225
9225
|
/*_prevButtonContainerStyle*/
|
9226
9226
|
ctx[9]
|
9227
9227
|
);
|
9228
|
-
attr(div, "class", "prev-button-container svelte-
|
9228
|
+
attr(div, "class", "prev-button-container svelte-zx7o47");
|
9229
9229
|
},
|
9230
9230
|
m(target, anchor) {
|
9231
9231
|
insert(target, div, anchor);
|
@@ -9285,14 +9285,14 @@ function create_if_block$11(ctx) {
|
|
9285
9285
|
/*nextIconStyle*/
|
9286
9286
|
ctx[8]
|
9287
9287
|
);
|
9288
|
-
attr(button, "class", "move-button svelte-
|
9288
|
+
attr(button, "class", "move-button svelte-zx7o47");
|
9289
9289
|
attr(
|
9290
9290
|
button,
|
9291
9291
|
"style",
|
9292
9292
|
/*_nextButtonContainerStyle*/
|
9293
9293
|
ctx[7]
|
9294
9294
|
);
|
9295
|
-
attr(div, "class", "next-button-container svelte-
|
9295
|
+
attr(div, "class", "next-button-container svelte-zx7o47");
|
9296
9296
|
},
|
9297
9297
|
m(target, anchor) {
|
9298
9298
|
insert(target, div, anchor);
|
@@ -9348,12 +9348,12 @@ function create_each_block$2(ctx) {
|
|
9348
9348
|
button = element("button");
|
9349
9349
|
div = element("div");
|
9350
9350
|
t = space();
|
9351
|
-
attr(div, "class", "navigation-item-inner circle svelte-
|
9351
|
+
attr(div, "class", "navigation-item-inner circle svelte-zx7o47");
|
9352
9352
|
attr(div, "style", div_style_value = ctx[5](
|
9353
9353
|
/*i*/
|
9354
9354
|
ctx[63]
|
9355
9355
|
));
|
9356
|
-
attr(button, "class", "navigation-item svelte-
|
9356
|
+
attr(button, "class", "navigation-item svelte-zx7o47");
|
9357
9357
|
attr(
|
9358
9358
|
button,
|
9359
9359
|
"style",
|
@@ -9432,21 +9432,21 @@ function create_fragment$70(ctx) {
|
|
9432
9432
|
attr(div0, "class", div0_class_value = null_to_empty(
|
9433
9433
|
/*slideClass*/
|
9434
9434
|
ctx[13]
|
9435
|
-
) + " svelte-
|
9435
|
+
) + " svelte-zx7o47");
|
9436
9436
|
attr(
|
9437
9437
|
div0,
|
9438
9438
|
"style",
|
9439
9439
|
/*slideStyle*/
|
9440
9440
|
ctx[14]
|
9441
9441
|
);
|
9442
|
-
attr(div1, "class", "container svelte-
|
9442
|
+
attr(div1, "class", "container svelte-zx7o47");
|
9443
9443
|
attr(
|
9444
9444
|
div1,
|
9445
9445
|
"style",
|
9446
9446
|
/*_style*/
|
9447
9447
|
ctx[0]
|
9448
9448
|
);
|
9449
|
-
attr(div2, "class", "navigation svelte-
|
9449
|
+
attr(div2, "class", "navigation svelte-zx7o47");
|
9450
9450
|
attr(
|
9451
9451
|
div2,
|
9452
9452
|
"style",
|
@@ -9454,7 +9454,7 @@ function create_fragment$70(ctx) {
|
|
9454
9454
|
ctx[4]
|
9455
9455
|
);
|
9456
9456
|
set_attributes(div3, div3_data);
|
9457
|
-
toggle_class(div3, "svelte-
|
9457
|
+
toggle_class(div3, "svelte-zx7o47", true);
|
9458
9458
|
},
|
9459
9459
|
m(target, anchor) {
|
9460
9460
|
insert(target, div3, anchor);
|
@@ -9496,7 +9496,7 @@ function create_fragment$70(ctx) {
|
|
9496
9496
|
if (!current || dirty[0] & 8192 && div0_class_value !== (div0_class_value = null_to_empty(
|
9497
9497
|
/*slideClass*/
|
9498
9498
|
ctx$1[13]
|
9499
|
-
) + " svelte-
|
9499
|
+
) + " svelte-zx7o47")) attr(div0, "class", div0_class_value);
|
9500
9500
|
if (!current || dirty[0] & 16384) attr(
|
9501
9501
|
div0,
|
9502
9502
|
"style",
|
@@ -9551,7 +9551,7 @@ function create_fragment$70(ctx) {
|
|
9551
9551
|
ctx$1[4]
|
9552
9552
|
);
|
9553
9553
|
set_attributes(div3, div3_data = get_spread_update(div3_levels, [{ class: "root" }, dataAttrStopPropagation("click")]));
|
9554
|
-
toggle_class(div3, "svelte-
|
9554
|
+
toggle_class(div3, "svelte-zx7o47", true);
|
9555
9555
|
},
|
9556
9556
|
i(local) {
|
9557
9557
|
if (current) return;
|
@@ -9943,7 +9943,7 @@ var Slide_default = Slide;
|
|
9943
9943
|
//#endregion
|
9944
9944
|
//#region src/components/SlideItem.svelte
|
9945
9945
|
function add_css$33(target) {
|
9946
|
-
append_styles(target, "svelte-
|
9946
|
+
append_styles(target, "svelte-18y82pg", ".item.svelte-18y82pg{height:100%;flex:none;position:relative}.item.svelte-18y82pg img{user-select:none;-webkit-user-drag:none}.item-inner.svelte-18y82pg{position:absolute;inset:0;border-width:0px;border-style:solid;border-color:#000000;cursor:default;overflow:hidden}");
|
9947
9947
|
}
|
9948
9948
|
function create_fragment$69(ctx) {
|
9949
9949
|
let div1;
|
@@ -9962,14 +9962,14 @@ function create_fragment$69(ctx) {
|
|
9962
9962
|
div1 = element("div");
|
9963
9963
|
div0 = element("div");
|
9964
9964
|
if (default_slot) default_slot.c();
|
9965
|
-
attr(div0, "class", "item-inner svelte-
|
9965
|
+
attr(div0, "class", "item-inner svelte-18y82pg");
|
9966
9966
|
attr(
|
9967
9967
|
div0,
|
9968
9968
|
"style",
|
9969
9969
|
/*_style*/
|
9970
9970
|
ctx[0]
|
9971
9971
|
);
|
9972
|
-
attr(div1, "class", "item svelte-
|
9972
|
+
attr(div1, "class", "item svelte-18y82pg");
|
9973
9973
|
attr(
|
9974
9974
|
div1,
|
9975
9975
|
"style",
|
@@ -10387,7 +10387,7 @@ var Box_default = Box;
|
|
10387
10387
|
//#endregion
|
10388
10388
|
//#region src/components/IconElement.svelte
|
10389
10389
|
function add_css$30(target) {
|
10390
|
-
append_styles(target, "svelte-
|
10390
|
+
append_styles(target, "svelte-1iet6ze", ".icon.svelte-1iet6ze{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.icon.svelte-1iet6ze > .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-1iet6ze > .button._disabled{cursor:not-allowed !important;opacity:0.2}.icon.svelte-1iet6ze svg{width:var(--width);height:var(--height);color:var(--color);stroke:var(--stroke);fill:var(--fill)}");
|
10391
10391
|
}
|
10392
10392
|
function create_if_block$10(ctx) {
|
10393
10393
|
let html_tag;
|
@@ -10464,7 +10464,7 @@ function create_fragment$66(ctx) {
|
|
10464
10464
|
c() {
|
10465
10465
|
div = element("div");
|
10466
10466
|
create_component(button.$$.fragment);
|
10467
|
-
attr(div, "class", "icon svelte-
|
10467
|
+
attr(div, "class", "icon svelte-1iet6ze");
|
10468
10468
|
},
|
10469
10469
|
m(target, anchor) {
|
10470
10470
|
insert(target, div, anchor);
|
@@ -11428,7 +11428,7 @@ var TextButtonBlock_default = TextButtonBlock;
|
|
11428
11428
|
//#endregion
|
11429
11429
|
//#region src/components/ImageBlock.svelte
|
11430
11430
|
function add_css$24(target) {
|
11431
|
-
append_styles(target, "svelte-
|
11431
|
+
append_styles(target, "svelte-1f85nmx", ".image-block.svelte-1f85nmx{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-1f85nmx{width:100%;height:100%}.transport.svelte-1f85nmx:hover,.transport.svelte-1f85nmx:focus{opacity:0.75;box-shadow:0 5px 16px rgba(0, 0, 0, 0.1),\n 0 8px 28px rgba(0, 0, 0, 0.16)}");
|
11432
11432
|
}
|
11433
11433
|
function create_fragment$59(ctx) {
|
11434
11434
|
let div;
|
@@ -11442,7 +11442,7 @@ function create_fragment$59(ctx) {
|
|
11442
11442
|
c() {
|
11443
11443
|
div = element("div");
|
11444
11444
|
img = element("img");
|
11445
|
-
attr(img, "class", "image svelte-
|
11445
|
+
attr(img, "class", "image svelte-1f85nmx");
|
11446
11446
|
attr(img, "loading", "lazy");
|
11447
11447
|
attr(img, "width", "auto");
|
11448
11448
|
attr(img, "height", "auto");
|
@@ -11454,7 +11454,7 @@ function create_fragment$59(ctx) {
|
|
11454
11454
|
/*alt*/
|
11455
11455
|
ctx[1]
|
11456
11456
|
);
|
11457
|
-
attr(div, "class", div_class_value = null_to_empty("image-block" + (ctx[2] ? " transport" : "")) + " svelte-
|
11457
|
+
attr(div, "class", div_class_value = null_to_empty("image-block" + (ctx[2] ? " transport" : "")) + " svelte-1f85nmx");
|
11458
11458
|
attr(
|
11459
11459
|
div,
|
11460
11460
|
"style",
|
@@ -11484,7 +11484,7 @@ function create_fragment$59(ctx) {
|
|
11484
11484
|
/*alt*/
|
11485
11485
|
ctx$1[1]
|
11486
11486
|
);
|
11487
|
-
if (dirty & 4 && div_class_value !== (div_class_value = null_to_empty("image-block" + (ctx$1[2] ? " transport" : "")) + " svelte-
|
11487
|
+
if (dirty & 4 && div_class_value !== (div_class_value = null_to_empty("image-block" + (ctx$1[2] ? " transport" : "")) + " svelte-1f85nmx")) attr(div, "class", div_class_value);
|
11488
11488
|
if (dirty & 32) attr(
|
11489
11489
|
div,
|
11490
11490
|
"style",
|
@@ -11725,6 +11725,52 @@ const SHADOW_VARIANT = {
|
|
11725
11725
|
}
|
11726
11726
|
};
|
11727
11727
|
const SHADOW_VARIANTS = toVariantArray(SHADOW_VARIANT);
|
11728
|
+
const BACKGROUND_COLOR_VARIANT = {
|
11729
|
+
base: {
|
11730
|
+
name: "ホワイト",
|
11731
|
+
getProps: () => ({ backgroundColor: "#FFFFFF" })
|
11732
|
+
},
|
11733
|
+
dark: {
|
11734
|
+
name: "ブラック",
|
11735
|
+
getProps: () => ({ backgroundColor: "#000000" })
|
11736
|
+
},
|
11737
|
+
gray: {
|
11738
|
+
name: "グレー",
|
11739
|
+
getProps: () => ({ backgroundColor: "#ECECEC" })
|
11740
|
+
},
|
11741
|
+
brand: {
|
11742
|
+
name: "ブランド",
|
11743
|
+
getProps: (kit) => ({ backgroundColor: getBrandKit(kit).color_brand })
|
11744
|
+
},
|
11745
|
+
danger: {
|
11746
|
+
name: "デンジャー",
|
11747
|
+
getProps: (kit) => ({ backgroundColor: getBrandKit(kit).color_danger })
|
11748
|
+
}
|
11749
|
+
};
|
11750
|
+
const BACKGROUND_COLOR_VARIANTS = toVariantArray(BACKGROUND_COLOR_VARIANT);
|
11751
|
+
const BORDER_COLOR_VARIANT = {
|
11752
|
+
black: {
|
11753
|
+
name: "ブラック",
|
11754
|
+
getProps: () => ({ borderColor: "#000000" })
|
11755
|
+
},
|
11756
|
+
gray: {
|
11757
|
+
name: "グレー",
|
11758
|
+
getProps: () => ({ borderColor: "#DBDBDB" })
|
11759
|
+
},
|
11760
|
+
brand: {
|
11761
|
+
name: "ブランド",
|
11762
|
+
getProps: (kit) => ({ borderColor: getBrandKit(kit).color_brand })
|
11763
|
+
},
|
11764
|
+
danger: {
|
11765
|
+
name: "デンジャー",
|
11766
|
+
getProps: (kit) => ({ borderColor: getBrandKit(kit).color_danger })
|
11767
|
+
},
|
11768
|
+
base: {
|
11769
|
+
name: "ホワイト",
|
11770
|
+
getProps: () => ({ borderColor: "#FFFFFF" })
|
11771
|
+
}
|
11772
|
+
};
|
11773
|
+
const BORDER_COLOR_VARIANTS = toVariantArray(BORDER_COLOR_VARIANT);
|
11728
11774
|
|
11729
11775
|
//#endregion
|
11730
11776
|
//#region src/components-flex/utils/prop-to-style.ts
|
@@ -11741,11 +11787,12 @@ const toCssPosition = (p) => {
|
|
11741
11787
|
const toCssCommon = (p) => {
|
11742
11788
|
return { ...toCssPosition(p) };
|
11743
11789
|
};
|
11744
|
-
const toCssBorder = (p) => {
|
11790
|
+
const toCssBorder = (p, brandKit) => {
|
11745
11791
|
const borderWidth = p?.borderTopWidth ?? p?.borderRightWidth ?? p?.borderLeftWidth ?? p?.borderBottomWidth ?? null;
|
11746
11792
|
if (borderWidth === null) return {};
|
11793
|
+
const variant = BORDER_COLOR_VARIANT[p?.borderColorVariant];
|
11747
11794
|
return {
|
11748
|
-
borderColor: p?.borderColor,
|
11795
|
+
borderColor: p?.borderColor ?? variant?.getProps(brandKit)?.borderColor,
|
11749
11796
|
borderStyle: "solid",
|
11750
11797
|
borderTopWidth: p?.borderTopWidth,
|
11751
11798
|
borderLeftWidth: p?.borderLeftWidth,
|
@@ -11761,16 +11808,19 @@ const toCssPadding = (p) => {
|
|
11761
11808
|
paddingBottom: p?.paddingBottom
|
11762
11809
|
};
|
11763
11810
|
};
|
11764
|
-
const toCssBackground = (p) => {
|
11811
|
+
const toCssBackground = (p, brandKit) => {
|
11765
11812
|
const url = p?.backgroundImageUrl;
|
11813
|
+
const variant = BACKGROUND_COLOR_VARIANT[p?.backgroundColorVariant];
|
11766
11814
|
return {
|
11767
|
-
|
11768
|
-
|
11769
|
-
|
11770
|
-
|
11771
|
-
|
11772
|
-
|
11773
|
-
|
11815
|
+
backgroundColor: p?.backgroundBlendColor ?? p?.backgroundColor ?? variant?.getProps(brandKit)?.backgroundColor,
|
11816
|
+
...url ? {
|
11817
|
+
backgroundSize: url ? "cover" : void 0,
|
11818
|
+
backgroundImage: url ? `url(${url})` : void 0,
|
11819
|
+
backgroundPositionX: p?.backgroundPositionX ?? "center",
|
11820
|
+
backgroundPositionY: p?.backgroundPositionY ?? "center",
|
11821
|
+
backgroundBlendMode: p?.backgroundBlendMode,
|
11822
|
+
backgroundRepeat: "no-repeat"
|
11823
|
+
} : {}
|
11774
11824
|
};
|
11775
11825
|
};
|
11776
11826
|
const toCssRadius = (p) => {
|
@@ -11883,7 +11933,7 @@ const AVATAR_SIZE_STYLES = {
|
|
11883
11933
|
//#endregion
|
11884
11934
|
//#region src/components-flex/avatar/Avatar.svelte
|
11885
11935
|
function add_css$23(target) {
|
11886
|
-
append_styles(target, "svelte-
|
11936
|
+
append_styles(target, "svelte-1xhdr99", ".avatar.svelte-1xhdr99{display:flex;align-items:center;justify-content:center;overflow:hidden;flex-shrink:0;border:0;background:none;padding:0;margin:0;text-align:left;-webkit-appearance:none}");
|
11887
11937
|
}
|
11888
11938
|
function create_dynamic_element$11(ctx) {
|
11889
11939
|
let svelte_element;
|
@@ -11908,7 +11958,7 @@ function create_dynamic_element$11(ctx) {
|
|
11908
11958
|
);
|
11909
11959
|
img = element("img");
|
11910
11960
|
if (!src_url_equal(img.src, img_src_value = ctx[0].image)) attr(img, "src", img_src_value);
|
11911
|
-
attr(img, "class", "avatar-image svelte-
|
11961
|
+
attr(img, "class", "avatar-image svelte-1xhdr99");
|
11912
11962
|
attr(img, "alt", img_alt_value = ctx[0].alt);
|
11913
11963
|
attr(
|
11914
11964
|
img,
|
@@ -11921,7 +11971,7 @@ function create_dynamic_element$11(ctx) {
|
|
11921
11971
|
ctx[5]
|
11922
11972
|
)) set_custom_element_data_map(svelte_element, svelte_element_data);
|
11923
11973
|
else set_attributes(svelte_element, svelte_element_data);
|
11924
|
-
toggle_class(svelte_element, "svelte-
|
11974
|
+
toggle_class(svelte_element, "svelte-1xhdr99", true);
|
11925
11975
|
},
|
11926
11976
|
m(target, anchor) {
|
11927
11977
|
insert(target, svelte_element, anchor);
|
@@ -11956,7 +12006,7 @@ function create_dynamic_element$11(ctx) {
|
|
11956
12006
|
ctx$1[5]
|
11957
12007
|
)) set_custom_element_data_map(svelte_element, svelte_element_data);
|
11958
12008
|
else set_attributes(svelte_element, svelte_element_data);
|
11959
|
-
toggle_class(svelte_element, "svelte-
|
12009
|
+
toggle_class(svelte_element, "svelte-1xhdr99", true);
|
11960
12010
|
},
|
11961
12011
|
d(detaching) {
|
11962
12012
|
if (detaching) detach(svelte_element);
|
@@ -12008,6 +12058,7 @@ function create_fragment$58(ctx) {
|
|
12008
12058
|
};
|
12009
12059
|
}
|
12010
12060
|
function instance$58($$self, $$props, $$invalidate) {
|
12061
|
+
let styleObj;
|
12011
12062
|
let style;
|
12012
12063
|
let imgStyle;
|
12013
12064
|
let { props = {} } = $$props;
|
@@ -12023,24 +12074,38 @@ function instance$58($$self, $$props, $$invalidate) {
|
|
12023
12074
|
square: { borderRadius: "0.25em" },
|
12024
12075
|
rounded: { borderRadius: "1em" }
|
12025
12076
|
} };
|
12077
|
+
const calcImgRadius = (parentRadius, borderWidth) => {
|
12078
|
+
const radiusSize = parentRadius ? parseInt(parentRadius) : 0;
|
12079
|
+
if (radiusSize === 0) return 0;
|
12080
|
+
if (parentRadius === "100%") return "100%";
|
12081
|
+
return radiusSize > 0 ? `calc(${parentRadius} - ${borderWidth})` : void 0;
|
12082
|
+
};
|
12026
12083
|
$$self.$$set = ($$props$1) => {
|
12027
12084
|
if ("props" in $$props$1) $$invalidate(0, props = $$props$1.props);
|
12028
12085
|
if ("layerId" in $$props$1) $$invalidate(1, layerId = $$props$1.layerId);
|
12029
12086
|
};
|
12030
12087
|
$$self.$$.update = () => {
|
12031
|
-
if ($$self.$$.dirty & 1) $: $$invalidate(
|
12088
|
+
if ($$self.$$.dirty & 1) $: $$invalidate(7, styleObj = {
|
12032
12089
|
...VARIANTS.shape[props.shape ?? "square"],
|
12033
12090
|
width: props.width ?? avatarSizeStyle.width,
|
12034
12091
|
height: props.height ?? avatarSizeStyle.height,
|
12035
12092
|
...toCssCommon(props),
|
12036
|
-
...toCssBorder(props)
|
12093
|
+
...toCssBorder(props),
|
12094
|
+
...toCssPadding(props)
|
12095
|
+
});
|
12096
|
+
if ($$self.$$.dirty & 128) $: $$invalidate(3, style = objToStyle(styleObj));
|
12097
|
+
if ($$self.$$.dirty & 128) $: $$invalidate(2, imgStyle = objToStyle({
|
12098
|
+
width: "100%",
|
12099
|
+
height: "100%",
|
12100
|
+
objectFit: "cover",
|
12101
|
+
...toCssRadius({
|
12102
|
+
borderTopLeftRadius: calcImgRadius(styleObj.borderRadius, styleObj.borderTopWidth),
|
12103
|
+
borderTopRightRadius: calcImgRadius(styleObj.borderRadius, styleObj.borderTopWidth),
|
12104
|
+
borderBottomLeftRadius: calcImgRadius(styleObj.borderRadius, styleObj.borderTopWidth),
|
12105
|
+
borderBottomRightRadius: calcImgRadius(styleObj.borderRadius, styleObj.borderTopWidth)
|
12106
|
+
})
|
12037
12107
|
}));
|
12038
12108
|
};
|
12039
|
-
$: $$invalidate(2, imgStyle = objToStyle({
|
12040
|
-
width: "100%",
|
12041
|
-
height: "100%",
|
12042
|
-
objectFit: "cover"
|
12043
|
-
}));
|
12044
12109
|
return [
|
12045
12110
|
props,
|
12046
12111
|
layerId,
|
@@ -12048,7 +12113,8 @@ function instance$58($$self, $$props, $$invalidate) {
|
|
12048
12113
|
style,
|
12049
12114
|
attributes,
|
12050
12115
|
element$1,
|
12051
|
-
handleClick
|
12116
|
+
handleClick,
|
12117
|
+
styleObj
|
12052
12118
|
];
|
12053
12119
|
}
|
12054
12120
|
var Avatar = class extends SvelteComponent {
|
@@ -14244,7 +14310,7 @@ function darkenColor(color, percent) {
|
|
14244
14310
|
//#endregion
|
14245
14311
|
//#region src/components-flex/button/Button.svelte
|
14246
14312
|
function add_css$21(target) {
|
14247
|
-
append_styles(target, "svelte-
|
14313
|
+
append_styles(target, "svelte-l0rauj", ".button.svelte-l0rauj{display:inline-flex;gap:0.8em;align-items:center;justify-content:center;text-decoration:none;outline:0;border-width:1px;border-style:solid;line-height:1.5;transition:background-color 0.12s,\n border-color 0.12s,\n color 0.12s;cursor:pointer;color:var(--color);border-color:var(--border-color);background-color:var(--bg-color)}.button.svelte-l0rauj:hover{background-color:var(--hover-bg-color);border-color:var(--hover-border-color)}.button-icon.svelte-l0rauj{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
|
14248
14314
|
}
|
14249
14315
|
function create_if_block$9(ctx) {
|
14250
14316
|
let div;
|
@@ -14260,7 +14326,7 @@ function create_if_block$9(ctx) {
|
|
14260
14326
|
c() {
|
14261
14327
|
div = element("div");
|
14262
14328
|
create_component(icon.$$.fragment);
|
14263
|
-
attr(div, "class", "button-icon svelte-
|
14329
|
+
attr(div, "class", "button-icon svelte-l0rauj");
|
14264
14330
|
},
|
14265
14331
|
m(target, anchor) {
|
14266
14332
|
insert(target, div, anchor);
|
@@ -14327,7 +14393,7 @@ function create_dynamic_element$9(ctx) {
|
|
14327
14393
|
ctx[4]
|
14328
14394
|
)) set_custom_element_data_map(svelte_element, svelte_element_data);
|
14329
14395
|
else set_attributes(svelte_element, svelte_element_data);
|
14330
|
-
toggle_class(svelte_element, "svelte-
|
14396
|
+
toggle_class(svelte_element, "svelte-l0rauj", true);
|
14331
14397
|
},
|
14332
14398
|
m(target, anchor) {
|
14333
14399
|
insert(target, svelte_element, anchor);
|
@@ -14376,7 +14442,7 @@ function create_dynamic_element$9(ctx) {
|
|
14376
14442
|
ctx$1[4]
|
14377
14443
|
)) set_custom_element_data_map(svelte_element, svelte_element_data);
|
14378
14444
|
else set_attributes(svelte_element, svelte_element_data);
|
14379
|
-
toggle_class(svelte_element, "svelte-
|
14445
|
+
toggle_class(svelte_element, "svelte-l0rauj", true);
|
14380
14446
|
},
|
14381
14447
|
i(local) {
|
14382
14448
|
if (current) return;
|
@@ -14630,7 +14696,7 @@ const BUTTON_OUTLINED_WRAP_STYLES = {
|
|
14630
14696
|
//#endregion
|
14631
14697
|
//#region src/components-flex/button-outlined/ButtonOutlined.svelte
|
14632
14698
|
function add_css$20(target) {
|
14633
|
-
append_styles(target, "svelte-
|
14699
|
+
append_styles(target, "svelte-z8gomx", ".button-outlined.svelte-z8gomx{display:inline-flex;gap:0.65em;align-items:center;justify-content:center;text-decoration:none;outline:0;border-width:1px;border-style:solid;line-height:1.5;transition:background-color 0.12s,\n border-color 0.12s,\n color 0.12s;cursor:pointer;background-color:var(--bg-color)}.button-outlined.svelte-z8gomx:hover{background-color:var(--hover-bg-color)}.button-outlined-icon.svelte-z8gomx{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em;margin-bottom:0.1em}");
|
14634
14700
|
}
|
14635
14701
|
function create_if_block$8(ctx) {
|
14636
14702
|
let div;
|
@@ -14646,7 +14712,7 @@ function create_if_block$8(ctx) {
|
|
14646
14712
|
c() {
|
14647
14713
|
div = element("div");
|
14648
14714
|
create_component(icon.$$.fragment);
|
14649
|
-
attr(div, "class", "button-outlined-icon svelte-
|
14715
|
+
attr(div, "class", "button-outlined-icon svelte-z8gomx");
|
14650
14716
|
},
|
14651
14717
|
m(target, anchor) {
|
14652
14718
|
insert(target, div, anchor);
|
@@ -14706,13 +14772,13 @@ function create_dynamic_element$8(ctx) {
|
|
14706
14772
|
t0 = space();
|
14707
14773
|
span = element("span");
|
14708
14774
|
t1 = text(t1_value);
|
14709
|
-
attr(span, "class", "button-outlined-label svelte-
|
14775
|
+
attr(span, "class", "button-outlined-label svelte-z8gomx");
|
14710
14776
|
if (/-/.test(
|
14711
14777
|
/*element*/
|
14712
14778
|
ctx[4]
|
14713
14779
|
)) set_custom_element_data_map(svelte_element, svelte_element_data);
|
14714
14780
|
else set_attributes(svelte_element, svelte_element_data);
|
14715
|
-
toggle_class(svelte_element, "svelte-
|
14781
|
+
toggle_class(svelte_element, "svelte-z8gomx", true);
|
14716
14782
|
},
|
14717
14783
|
m(target, anchor) {
|
14718
14784
|
insert(target, svelte_element, anchor);
|
@@ -14760,7 +14826,7 @@ function create_dynamic_element$8(ctx) {
|
|
14760
14826
|
ctx$1[4]
|
14761
14827
|
)) set_custom_element_data_map(svelte_element, svelte_element_data);
|
14762
14828
|
else set_attributes(svelte_element, svelte_element_data);
|
14763
|
-
toggle_class(svelte_element, "svelte-
|
14829
|
+
toggle_class(svelte_element, "svelte-z8gomx", true);
|
14764
14830
|
},
|
14765
14831
|
i(local) {
|
14766
14832
|
if (current) return;
|
@@ -14946,7 +15012,7 @@ const getButtonTextThemeStyles = getPropStyles(callback$2);
|
|
14946
15012
|
//#endregion
|
14947
15013
|
//#region src/components-flex/button-text/ButtonText.svelte
|
14948
15014
|
function add_css$19(target) {
|
14949
|
-
append_styles(target, "svelte-
|
15015
|
+
append_styles(target, "svelte-l90o4j", ".button-text.svelte-l90o4j{display:inline-flex;gap:0.65em;align-items:center;justify-content:center;text-decoration:none;outline:0;border:0;line-height:1.5;transition:background-color 0.12s,\n border-color 0.12s,\n color 0.12s;cursor:pointer;background-color:rgba(255, 255, 255, 0)}.button-text.svelte-l90o4j:hover{background-color:var(--hover-bg-color)}.button-text-icon.svelte-l90o4j{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
|
14950
15016
|
}
|
14951
15017
|
function create_if_block$7(ctx) {
|
14952
15018
|
let div;
|
@@ -14962,7 +15028,7 @@ function create_if_block$7(ctx) {
|
|
14962
15028
|
c() {
|
14963
15029
|
div = element("div");
|
14964
15030
|
create_component(icon.$$.fragment);
|
14965
|
-
attr(div, "class", "button-text-icon svelte-
|
15031
|
+
attr(div, "class", "button-text-icon svelte-l90o4j");
|
14966
15032
|
},
|
14967
15033
|
m(target, anchor) {
|
14968
15034
|
insert(target, div, anchor);
|
@@ -15022,13 +15088,13 @@ function create_dynamic_element$7(ctx) {
|
|
15022
15088
|
t0 = space();
|
15023
15089
|
span = element("span");
|
15024
15090
|
t1 = text(t1_value);
|
15025
|
-
attr(span, "class", "button-text-label svelte-
|
15091
|
+
attr(span, "class", "button-text-label svelte-l90o4j");
|
15026
15092
|
if (/-/.test(
|
15027
15093
|
/*element*/
|
15028
15094
|
ctx[4]
|
15029
15095
|
)) set_custom_element_data_map(svelte_element, svelte_element_data);
|
15030
15096
|
else set_attributes(svelte_element, svelte_element_data);
|
15031
|
-
toggle_class(svelte_element, "svelte-
|
15097
|
+
toggle_class(svelte_element, "svelte-l90o4j", true);
|
15032
15098
|
},
|
15033
15099
|
m(target, anchor) {
|
15034
15100
|
insert(target, svelte_element, anchor);
|
@@ -15076,7 +15142,7 @@ function create_dynamic_element$7(ctx) {
|
|
15076
15142
|
ctx$1[4]
|
15077
15143
|
)) set_custom_element_data_map(svelte_element, svelte_element_data);
|
15078
15144
|
else set_attributes(svelte_element, svelte_element_data);
|
15079
|
-
toggle_class(svelte_element, "svelte-
|
15145
|
+
toggle_class(svelte_element, "svelte-l90o4j", true);
|
15080
15146
|
},
|
15081
15147
|
i(local) {
|
15082
15148
|
if (current) return;
|
@@ -15213,10 +15279,24 @@ const BUTTON_TEXT_THEME = {
|
|
15213
15279
|
white: "White"
|
15214
15280
|
};
|
15215
15281
|
|
15282
|
+
//#endregion
|
15283
|
+
//#region src/components-flex/text/styles.ts
|
15284
|
+
const callback$1 = ({ brandKit }) => ({
|
15285
|
+
default: { color: brandKit.color_text_primary },
|
15286
|
+
gray: { color: brandKit.color_text_secondary },
|
15287
|
+
brand: { color: brandKit.color_brand },
|
15288
|
+
success: { color: brandKit.color_success },
|
15289
|
+
warning: { color: brandKit.color_warning },
|
15290
|
+
danger: { color: brandKit.color_danger },
|
15291
|
+
info: { color: brandKit.color_info },
|
15292
|
+
white: { color: brandKit.color_white }
|
15293
|
+
});
|
15294
|
+
const getTextThemeStyles = getPropStyles(callback$1);
|
15295
|
+
|
15216
15296
|
//#endregion
|
15217
15297
|
//#region src/components-flex/close-button/CloseButton.svelte
|
15218
15298
|
function add_css$18(target) {
|
15219
|
-
append_styles(target, "svelte-
|
15299
|
+
append_styles(target, "svelte-18wmfyq", ".close-button.svelte-18wmfyq.svelte-18wmfyq{display:inline-flex;align-items:center;justify-content:center;align-self:center;gap:8px;border-radius:100%;background:none;cursor:pointer;border:0;outline:0;flex-shrink:0;transition:background-color 0.12s,\n border-color 0.12s,\n color 0.12s}.close-button.svelte-18wmfyq svg.svelte-18wmfyq{transition:transform 0.12s}.close-button.svelte-18wmfyq:hover svg.svelte-18wmfyq{transform:rotate(90deg)}.close-button-order-one.svelte-18wmfyq.svelte-18wmfyq{order:1}.close-button-order-two.svelte-18wmfyq.svelte-18wmfyq{order:2}");
|
15220
15300
|
}
|
15221
15301
|
function create_if_block$6(ctx) {
|
15222
15302
|
let span;
|
@@ -15235,7 +15315,7 @@ function create_if_block$6(ctx) {
|
|
15235
15315
|
/*labelStyle*/
|
15236
15316
|
ctx[2]
|
15237
15317
|
);
|
15238
|
-
attr(span, "class", span_class_value = "close-button-label " + (ctx[10] ? "close-button-order-one" : "") + " svelte-
|
15318
|
+
attr(span, "class", span_class_value = "close-button-label " + (ctx[10] ? "close-button-order-one" : "") + " svelte-18wmfyq");
|
15239
15319
|
},
|
15240
15320
|
m(target, anchor) {
|
15241
15321
|
insert(target, span, anchor);
|
@@ -15294,7 +15374,7 @@ function create_dynamic_element$6(ctx) {
|
|
15294
15374
|
/*color*/
|
15295
15375
|
ctx[8]
|
15296
15376
|
);
|
15297
|
-
attr(svg, "class", "svelte-
|
15377
|
+
attr(svg, "class", "svelte-18wmfyq");
|
15298
15378
|
attr(
|
15299
15379
|
span,
|
15300
15380
|
"style",
|
@@ -15306,7 +15386,7 @@ function create_dynamic_element$6(ctx) {
|
|
15306
15386
|
ctx[6]
|
15307
15387
|
)) set_custom_element_data_map(svelte_element, svelte_element_data);
|
15308
15388
|
else set_attributes(svelte_element, svelte_element_data);
|
15309
|
-
toggle_class(svelte_element, "svelte-
|
15389
|
+
toggle_class(svelte_element, "svelte-18wmfyq", true);
|
15310
15390
|
},
|
15311
15391
|
m(target, anchor) {
|
15312
15392
|
insert(target, svelte_element, anchor);
|
@@ -15353,7 +15433,7 @@ function create_dynamic_element$6(ctx) {
|
|
15353
15433
|
ctx$1[6]
|
15354
15434
|
)) set_custom_element_data_map(svelte_element, svelte_element_data);
|
15355
15435
|
else set_attributes(svelte_element, svelte_element_data);
|
15356
|
-
toggle_class(svelte_element, "svelte-
|
15436
|
+
toggle_class(svelte_element, "svelte-18wmfyq", true);
|
15357
15437
|
},
|
15358
15438
|
d(detaching) {
|
15359
15439
|
if (detaching) detach(svelte_element);
|
@@ -15407,13 +15487,17 @@ function create_fragment$22(ctx) {
|
|
15407
15487
|
}
|
15408
15488
|
function instance$22($$self, $$props, $$invalidate) {
|
15409
15489
|
let hasLabel;
|
15490
|
+
let styleObj;
|
15410
15491
|
let style;
|
15492
|
+
let borderWidth;
|
15493
|
+
let paddingSize;
|
15411
15494
|
let labelStyle;
|
15412
15495
|
let iconStyle;
|
15413
15496
|
let { props = {} } = $$props;
|
15414
15497
|
let { layerId = "" } = $$props;
|
15415
15498
|
let { eventName = "" } = $$props;
|
15416
15499
|
let { eventValue = void 0 } = $$props;
|
15500
|
+
const { brandKit } = useBrandKit();
|
15417
15501
|
useInjectCustomizeCss(props);
|
15418
15502
|
const { attributes, element: element$1, handleClick } = useClickable_default({
|
15419
15503
|
onClick: {
|
@@ -15449,7 +15533,7 @@ function instance$22($$self, $$props, $$invalidate) {
|
|
15449
15533
|
}
|
15450
15534
|
};
|
15451
15535
|
const size = props.size ?? 24;
|
15452
|
-
const color = props.color ?? "#666";
|
15536
|
+
const color = props.color ?? getTextThemeStyles(brandKit)[props.colorVariant]?.color ?? "#666";
|
15453
15537
|
const label = props.label;
|
15454
15538
|
const isLeftLabelPlacement = props.labelPlacement === "left";
|
15455
15539
|
$$self.$$set = ($$props$1) => {
|
@@ -15459,26 +15543,40 @@ function instance$22($$self, $$props, $$invalidate) {
|
|
15459
15543
|
if ("eventValue" in $$props$1) $$invalidate(13, eventValue = $$props$1.eventValue);
|
15460
15544
|
};
|
15461
15545
|
$$self.$$.update = () => {
|
15462
|
-
if ($$self.$$.dirty & 2048) $: $$invalidate(
|
15463
|
-
...props.bordered && {
|
15464
|
-
|
15465
|
-
|
15546
|
+
if ($$self.$$.dirty & 2048) $: $$invalidate(16, styleObj = {
|
15547
|
+
...props.bordered && {
|
15548
|
+
borderTopWidth: "1px",
|
15549
|
+
borderLeftWidth: "1px",
|
15550
|
+
borderRightWidth: "1px",
|
15551
|
+
borderBottomWidth: "1px",
|
15552
|
+
borderStyle: "solid",
|
15553
|
+
borderColor: "#666666"
|
15554
|
+
},
|
15466
15555
|
padding: "6px",
|
15467
|
-
|
15556
|
+
boxSizing: "border-box",
|
15557
|
+
backgroundColor: toCssBackground(props, brandKit)?.backgroundColor ?? "rgba(255,255,255,0)",
|
15468
15558
|
...VARIANTS.round[props.round ?? "default"],
|
15559
|
+
...toCssPadding(props),
|
15469
15560
|
...toCssCommon(props),
|
15470
15561
|
...toCssBorder(props)
|
15471
|
-
})
|
15562
|
+
});
|
15563
|
+
if ($$self.$$.dirty & 65536) $: $$invalidate(3, style = objToStyle(styleObj));
|
15564
|
+
if ($$self.$$.dirty & 65536) $: $$invalidate(14, borderWidth = styleObj.borderTopWidth ? parseInt(styleObj.borderTopWidth) : 0);
|
15565
|
+
if ($$self.$$.dirty & 65536) $: $$invalidate(15, paddingSize = styleObj.paddingTop ? parseInt(styleObj.paddingTop) : 6);
|
15472
15566
|
if ($$self.$$.dirty & 2048) $: $$invalidate(2, labelStyle = objToStyle({
|
15473
|
-
color: props.labelColor ?? color,
|
15567
|
+
color: props.labelColor ?? getTextThemeStyles(brandKit)[props.labelColorVariant]?.color ?? color,
|
15474
15568
|
fontSize: `${size / 2.1}px`
|
15475
15569
|
}));
|
15570
|
+
if ($$self.$$.dirty & 49152) $: $$invalidate(1, iconStyle = objToStyle({
|
15571
|
+
width: `${size - paddingSize * 2 - borderWidth * 2}px`,
|
15572
|
+
height: `${size - paddingSize * 2 - borderWidth * 2}px`,
|
15573
|
+
display: "flex",
|
15574
|
+
alignItems: "center",
|
15575
|
+
justifyContent: "center",
|
15576
|
+
flexShrink: 0
|
15577
|
+
}));
|
15476
15578
|
};
|
15477
15579
|
$: $$invalidate(4, hasLabel = label !== void 0 && label !== "");
|
15478
|
-
$: $$invalidate(1, iconStyle = objToStyle({
|
15479
|
-
width: `${size - 12}px`,
|
15480
|
-
height: `${size - 12}px`
|
15481
|
-
}));
|
15482
15580
|
return [
|
15483
15581
|
layerId,
|
15484
15582
|
iconStyle,
|
@@ -15493,7 +15591,10 @@ function instance$22($$self, $$props, $$invalidate) {
|
|
15493
15591
|
isLeftLabelPlacement,
|
15494
15592
|
props,
|
15495
15593
|
eventName,
|
15496
|
-
eventValue
|
15594
|
+
eventValue,
|
15595
|
+
borderWidth,
|
15596
|
+
paddingSize,
|
15597
|
+
styleObj
|
15497
15598
|
];
|
15498
15599
|
}
|
15499
15600
|
var CloseButton = class extends SvelteComponent {
|
@@ -15570,16 +15671,16 @@ const IMAGE_ROUND_STYLES = {
|
|
15570
15671
|
borderBottomRightRadius: 0
|
15571
15672
|
},
|
15572
15673
|
rounded: {
|
15573
|
-
borderTopLeftRadius: "
|
15574
|
-
borderTopRightRadius: "
|
15575
|
-
borderBottomLeftRadius: "
|
15576
|
-
borderBottomRightRadius: "
|
15674
|
+
borderTopLeftRadius: "8px",
|
15675
|
+
borderTopRightRadius: "8px",
|
15676
|
+
borderBottomLeftRadius: "8px",
|
15677
|
+
borderBottomRightRadius: "8px"
|
15577
15678
|
},
|
15578
15679
|
circle: {
|
15579
|
-
borderTopLeftRadius: "
|
15580
|
-
borderTopRightRadius: "
|
15581
|
-
borderBottomLeftRadius: "
|
15582
|
-
borderBottomRightRadius: "
|
15680
|
+
borderTopLeftRadius: "16px",
|
15681
|
+
borderTopRightRadius: "16px",
|
15682
|
+
borderBottomLeftRadius: "16px",
|
15683
|
+
borderBottomRightRadius: "16px"
|
15583
15684
|
}
|
15584
15685
|
};
|
15585
15686
|
|
@@ -15596,9 +15697,9 @@ function create_dynamic_element$5(ctx) {
|
|
15596
15697
|
let mounted;
|
15597
15698
|
let dispose;
|
15598
15699
|
let svelte_element_levels = [
|
15599
|
-
ctx[
|
15700
|
+
ctx[4],
|
15600
15701
|
{ class: "image" },
|
15601
|
-
{ style: ctx[
|
15702
|
+
{ style: ctx[3] },
|
15602
15703
|
{ "data-layer-id": ctx[1] }
|
15603
15704
|
];
|
15604
15705
|
let svelte_element_data = {};
|
@@ -15607,15 +15708,21 @@ function create_dynamic_element$5(ctx) {
|
|
15607
15708
|
c() {
|
15608
15709
|
svelte_element = element(
|
15609
15710
|
/*element*/
|
15610
|
-
ctx[
|
15711
|
+
ctx[5]
|
15611
15712
|
);
|
15612
15713
|
img = element("img");
|
15613
15714
|
if (!src_url_equal(img.src, img_src_value = ctx[0].image)) attr(img, "src", img_src_value);
|
15614
15715
|
attr(img, "alt", img_alt_value = ctx[0].alt);
|
15716
|
+
attr(
|
15717
|
+
img,
|
15718
|
+
"style",
|
15719
|
+
/*imgStyle*/
|
15720
|
+
ctx[2]
|
15721
|
+
);
|
15615
15722
|
attr(img, "class", "image-img svelte-1olvu11");
|
15616
15723
|
if (/-/.test(
|
15617
15724
|
/*element*/
|
15618
|
-
ctx[
|
15725
|
+
ctx[5]
|
15619
15726
|
)) set_custom_element_data_map(svelte_element, svelte_element_data);
|
15620
15727
|
else set_attributes(svelte_element, svelte_element_data);
|
15621
15728
|
toggle_class(svelte_element, "svelte-1olvu11", true);
|
@@ -15628,7 +15735,7 @@ function create_dynamic_element$5(ctx) {
|
|
15628
15735
|
svelte_element,
|
15629
15736
|
"click",
|
15630
15737
|
/*handleClick*/
|
15631
|
-
ctx[
|
15738
|
+
ctx[6]
|
15632
15739
|
);
|
15633
15740
|
mounted = true;
|
15634
15741
|
}
|
@@ -15636,15 +15743,21 @@ function create_dynamic_element$5(ctx) {
|
|
15636
15743
|
p(ctx$1, dirty) {
|
15637
15744
|
if (dirty & 1 && !src_url_equal(img.src, img_src_value = ctx$1[0].image)) attr(img, "src", img_src_value);
|
15638
15745
|
if (dirty & 1 && img_alt_value !== (img_alt_value = ctx$1[0].alt)) attr(img, "alt", img_alt_value);
|
15746
|
+
if (dirty & 4) attr(
|
15747
|
+
img,
|
15748
|
+
"style",
|
15749
|
+
/*imgStyle*/
|
15750
|
+
ctx$1[2]
|
15751
|
+
);
|
15639
15752
|
svelte_element_data = get_spread_update(svelte_element_levels, [
|
15640
|
-
ctx$1[
|
15753
|
+
ctx$1[4],
|
15641
15754
|
{ class: "image" },
|
15642
|
-
dirty &
|
15755
|
+
dirty & 8 && { style: ctx$1[3] },
|
15643
15756
|
dirty & 2 && { "data-layer-id": ctx$1[1] }
|
15644
15757
|
]);
|
15645
15758
|
if (/-/.test(
|
15646
15759
|
/*element*/
|
15647
|
-
ctx$1[
|
15760
|
+
ctx$1[5]
|
15648
15761
|
)) set_custom_element_data_map(svelte_element, svelte_element_data);
|
15649
15762
|
else set_attributes(svelte_element, svelte_element_data);
|
15650
15763
|
toggle_class(svelte_element, "svelte-1olvu11", true);
|
@@ -15657,9 +15770,9 @@ function create_dynamic_element$5(ctx) {
|
|
15657
15770
|
};
|
15658
15771
|
}
|
15659
15772
|
function create_fragment$21(ctx) {
|
15660
|
-
let previous_tag = ctx[
|
15773
|
+
let previous_tag = ctx[5];
|
15661
15774
|
let svelte_element_anchor;
|
15662
|
-
let svelte_element = ctx[
|
15775
|
+
let svelte_element = ctx[5] && create_dynamic_element$5(ctx);
|
15663
15776
|
return {
|
15664
15777
|
c() {
|
15665
15778
|
if (svelte_element) svelte_element.c();
|
@@ -15670,14 +15783,14 @@ function create_fragment$21(ctx) {
|
|
15670
15783
|
insert(target, svelte_element_anchor, anchor);
|
15671
15784
|
},
|
15672
15785
|
p(ctx$1, [dirty]) {
|
15673
|
-
if (ctx$1[
|
15786
|
+
if (ctx$1[5]) if (!previous_tag) {
|
15674
15787
|
svelte_element = create_dynamic_element$5(ctx$1);
|
15675
15788
|
svelte_element.c();
|
15676
15789
|
svelte_element.m(svelte_element_anchor.parentNode, svelte_element_anchor);
|
15677
15790
|
} else if (safe_not_equal(
|
15678
15791
|
previous_tag,
|
15679
15792
|
/*element*/
|
15680
|
-
ctx$1[
|
15793
|
+
ctx$1[5]
|
15681
15794
|
)) {
|
15682
15795
|
svelte_element.d(1);
|
15683
15796
|
svelte_element = create_dynamic_element$5(ctx$1);
|
@@ -15688,7 +15801,7 @@ function create_fragment$21(ctx) {
|
|
15688
15801
|
svelte_element.d(1);
|
15689
15802
|
svelte_element = null;
|
15690
15803
|
}
|
15691
|
-
previous_tag = ctx$1[
|
15804
|
+
previous_tag = ctx$1[5];
|
15692
15805
|
},
|
15693
15806
|
i: noop,
|
15694
15807
|
o: noop,
|
@@ -15699,35 +15812,53 @@ function create_fragment$21(ctx) {
|
|
15699
15812
|
};
|
15700
15813
|
}
|
15701
15814
|
function instance$21($$self, $$props, $$invalidate) {
|
15815
|
+
let styleObj;
|
15702
15816
|
let style;
|
15817
|
+
let imgStyle;
|
15703
15818
|
let { props = {} } = $$props;
|
15704
15819
|
let { layerId = "" } = $$props;
|
15705
15820
|
useInjectCustomizeCss(props);
|
15706
15821
|
const { attributes, element: element$1, handleClick } = useClickable_default(props);
|
15707
15822
|
const aspectVariantStyles = ASPECT_VARIANT[props.aspectVariant]?.getProps();
|
15708
15823
|
const width = props.width ?? "100%";
|
15824
|
+
const calcImgRadius = (parentRadius, borderWidth) => {
|
15825
|
+
const radiusSize = parentRadius ? parseInt(parentRadius) : 0;
|
15826
|
+
if (radiusSize === 0) return 0;
|
15827
|
+
if (parentRadius === "100%") return "100%";
|
15828
|
+
return radiusSize > 0 ? `calc(${parentRadius} - ${borderWidth})` : void 0;
|
15829
|
+
};
|
15709
15830
|
$$self.$$set = ($$props$1) => {
|
15710
15831
|
if ("props" in $$props$1) $$invalidate(0, props = $$props$1.props);
|
15711
15832
|
if ("layerId" in $$props$1) $$invalidate(1, layerId = $$props$1.layerId);
|
15712
15833
|
};
|
15713
15834
|
$$self.$$.update = () => {
|
15714
|
-
if ($$self.$$.dirty & 1) $: $$invalidate(
|
15835
|
+
if ($$self.$$.dirty & 1) $: $$invalidate(7, styleObj = {
|
15715
15836
|
...props.borderTopLeftRadius ? toCssRadius(props) : IMAGE_ROUND_STYLES[props.shape ?? "square"],
|
15716
15837
|
width,
|
15717
15838
|
flexShrink: String(width).indexOf("px") !== -1 ? 0 : 1,
|
15718
15839
|
height: props.height ?? "auto",
|
15719
15840
|
aspectRatio: props.aspect ?? aspectVariantStyles?.aspect,
|
15720
15841
|
...toCssCommon(props),
|
15721
|
-
...toCssBorder(props)
|
15722
|
-
|
15842
|
+
...toCssBorder(props),
|
15843
|
+
...toCssPadding(props)
|
15844
|
+
});
|
15845
|
+
if ($$self.$$.dirty & 128) $: $$invalidate(3, style = objToStyle(styleObj));
|
15846
|
+
if ($$self.$$.dirty & 128) $: $$invalidate(2, imgStyle = objToStyle({ ...toCssRadius({
|
15847
|
+
borderTopLeftRadius: calcImgRadius(styleObj.borderTopLeftRadius, styleObj.borderTopWidth),
|
15848
|
+
borderTopRightRadius: calcImgRadius(styleObj.borderTopRightRadius, styleObj.borderTopWidth),
|
15849
|
+
borderBottomLeftRadius: calcImgRadius(styleObj.borderBottomLeftRadius, styleObj.borderTopWidth),
|
15850
|
+
borderBottomRightRadius: calcImgRadius(styleObj.borderBottomRightRadius, styleObj.borderTopWidth)
|
15851
|
+
}) }));
|
15723
15852
|
};
|
15724
15853
|
return [
|
15725
15854
|
props,
|
15726
15855
|
layerId,
|
15856
|
+
imgStyle,
|
15727
15857
|
style,
|
15728
15858
|
attributes,
|
15729
15859
|
element$1,
|
15730
|
-
handleClick
|
15860
|
+
handleClick,
|
15861
|
+
styleObj
|
15731
15862
|
];
|
15732
15863
|
}
|
15733
15864
|
var Image = class extends SvelteComponent {
|
@@ -15764,7 +15895,7 @@ const IMAGE_ASPECT_VARIANTS = {
|
|
15764
15895
|
//#endregion
|
15765
15896
|
//#region src/components-flex/layout/Layout.svelte
|
15766
15897
|
function add_css$16(target) {
|
15767
|
-
append_styles(target, "svelte-
|
15898
|
+
append_styles(target, "svelte-1o103hp", ".layout.svelte-1o103hp{text-decoration:none;color:inherit}.layout[data-clickable='true'].svelte-1o103hp{cursor:pointer}.layout[data-clickable='true'].svelte-1o103hp:hover{opacity:0.8}");
|
15768
15899
|
}
|
15769
15900
|
function create_dynamic_element$4(ctx) {
|
15770
15901
|
let svelte_element;
|
@@ -15793,7 +15924,7 @@ function create_dynamic_element$4(ctx) {
|
|
15793
15924
|
if (default_slot) default_slot.c();
|
15794
15925
|
if (/-/.test("div")) set_custom_element_data_map(svelte_element, svelte_element_data);
|
15795
15926
|
else set_attributes(svelte_element, svelte_element_data);
|
15796
|
-
toggle_class(svelte_element, "svelte-
|
15927
|
+
toggle_class(svelte_element, "svelte-1o103hp", true);
|
15797
15928
|
},
|
15798
15929
|
m(target, anchor) {
|
15799
15930
|
insert(target, svelte_element, anchor);
|
@@ -15838,7 +15969,7 @@ function create_dynamic_element$4(ctx) {
|
|
15838
15969
|
]);
|
15839
15970
|
if (/-/.test("div")) set_custom_element_data_map(svelte_element, svelte_element_data);
|
15840
15971
|
else set_attributes(svelte_element, svelte_element_data);
|
15841
|
-
toggle_class(svelte_element, "svelte-
|
15972
|
+
toggle_class(svelte_element, "svelte-1o103hp", true);
|
15842
15973
|
},
|
15843
15974
|
i(local) {
|
15844
15975
|
if (current) return;
|
@@ -15905,6 +16036,7 @@ function instance$20($$self, $$props, $$invalidate) {
|
|
15905
16036
|
let { $$slots: slots = {}, $$scope } = $$props;
|
15906
16037
|
let { props = {} } = $$props;
|
15907
16038
|
let { layerId = "" } = $$props;
|
16039
|
+
const { brandKit } = useBrandKit();
|
15908
16040
|
useInjectCustomizeCss(props);
|
15909
16041
|
const { attributes, element: element$1, handleClick } = useClickable_default(props);
|
15910
16042
|
$$self.$$set = ($$props$1) => {
|
@@ -15921,13 +16053,14 @@ function instance$20($$self, $$props, $$invalidate) {
|
|
15921
16053
|
rowGap: props.rowGap ?? props.gap,
|
15922
16054
|
columnGap: props.columnGap ?? props.gap,
|
15923
16055
|
width: props.width,
|
16056
|
+
height: props.height,
|
15924
16057
|
...toCssOverflow(props),
|
15925
16058
|
...toCssShadow(props),
|
15926
16059
|
...toCssRadius(props),
|
15927
|
-
...toCssBackground(props),
|
16060
|
+
...toCssBackground(props, brandKit),
|
15928
16061
|
...toCssCommon(props),
|
15929
16062
|
...toCssPadding(props),
|
15930
|
-
...toCssBorder(props)
|
16063
|
+
...toCssBorder(props, brandKit)
|
15931
16064
|
}));
|
15932
16065
|
};
|
15933
16066
|
return [
|
@@ -16581,20 +16714,6 @@ var SliderItem = class extends SvelteComponent {
|
|
16581
16714
|
};
|
16582
16715
|
var SliderItem_default = SliderItem;
|
16583
16716
|
|
16584
|
-
//#endregion
|
16585
|
-
//#region src/components-flex/text/styles.ts
|
16586
|
-
const callback$1 = ({ brandKit }) => ({
|
16587
|
-
default: { color: brandKit.color_text_primary },
|
16588
|
-
gray: { color: brandKit.color_text_secondary },
|
16589
|
-
brand: { color: brandKit.color_brand },
|
16590
|
-
success: { color: brandKit.color_success },
|
16591
|
-
warning: { color: brandKit.color_warning },
|
16592
|
-
danger: { color: brandKit.color_danger },
|
16593
|
-
info: { color: brandKit.color_info },
|
16594
|
-
white: { color: brandKit.color_white }
|
16595
|
-
});
|
16596
|
-
const getTextThemeStyles = getPropStyles(callback$1);
|
16597
|
-
|
16598
16717
|
//#endregion
|
16599
16718
|
//#region src/components-flex/text/constants.ts
|
16600
16719
|
const TEXT_VARIANTS = { size: {
|
@@ -18018,11 +18137,9 @@ function instance$11($$self, $$props, $$invalidate) {
|
|
18018
18137
|
let { $$slots: slots = {}, $$scope } = $$props;
|
18019
18138
|
let { layerId } = $$props;
|
18020
18139
|
let { props } = $$props;
|
18140
|
+
const { brandKit } = useBrandKit();
|
18021
18141
|
useInjectCustomizeCss(props);
|
18022
18142
|
const vars = getVariables();
|
18023
|
-
console.log(vars);
|
18024
|
-
console.log(props.actionTableKey);
|
18025
|
-
console.log(vars[props.actionTableKey]);
|
18026
18143
|
setContext(LIST_ITEM_CONTEXT_KEY, {
|
18027
18144
|
paddingTop: props.itemPaddingTop,
|
18028
18145
|
paddingLeft: props.itemPaddingLeft,
|
@@ -18030,8 +18147,8 @@ function instance$11($$self, $$props, $$invalidate) {
|
|
18030
18147
|
paddingBottom: props.itemPaddingBottom,
|
18031
18148
|
height: props.itemHeight,
|
18032
18149
|
borderTopWidth: props.borderWidth,
|
18033
|
-
borderTopColor: props.borderColor,
|
18034
|
-
borderTopStyle:
|
18150
|
+
borderTopColor: props.borderColor ?? BORDER_COLOR_VARIANT[props.borderColorVariant]?.getProps(brandKit)?.borderColor,
|
18151
|
+
borderTopStyle: "solid",
|
18035
18152
|
gap: props.itemGap
|
18036
18153
|
});
|
18037
18154
|
$$self.$$set = ($$props$1) => {
|
@@ -18426,6 +18543,7 @@ function instance$9($$self, $$props, $$invalidate) {
|
|
18426
18543
|
let { $$slots: slots = {}, $$scope } = $$props;
|
18427
18544
|
let { layerId } = $$props;
|
18428
18545
|
let { props } = $$props;
|
18546
|
+
const { brandKit } = useBrandKit();
|
18429
18547
|
useInjectCustomizeCss(props);
|
18430
18548
|
let listGap = (() => {
|
18431
18549
|
if (!props.gap) return "0";
|
@@ -18443,8 +18561,8 @@ function instance$9($$self, $$props, $$invalidate) {
|
|
18443
18561
|
paddingRight: props.itemPaddingRight,
|
18444
18562
|
paddingBottom: props.itemPaddingBottom,
|
18445
18563
|
borderLeftWidth: props.borderWidth,
|
18446
|
-
borderLeftColor: props.borderColor,
|
18447
|
-
borderLeftStyle: props.borderStyle,
|
18564
|
+
borderLeftColor: props.borderColor ?? BORDER_COLOR_VARIANT[props.borderColorVariant]?.getProps(brandKit)?.borderColor,
|
18565
|
+
borderLeftStyle: props.borderStyle ?? "solid",
|
18448
18566
|
gap: listGap,
|
18449
18567
|
innerGap: props.itemGap
|
18450
18568
|
});
|
@@ -19181,7 +19299,7 @@ var CountDownValue_default = CountDownValue;
|
|
19181
19299
|
//#endregion
|
19182
19300
|
//#region src/components-flex/clip-copy/ClipCopy.svelte
|
19183
19301
|
function add_css$1(target) {
|
19184
|
-
append_styles(target, "svelte-
|
19302
|
+
append_styles(target, "svelte-orhp4c", ".clipboard.svelte-orhp4c{position:relative;display:inline-flex}.clipboard-button.svelte-orhp4c{position:relative;display:inline-flex;align-items:center;white-space:nowrap;gap:12px;background:none;border:0;transition:0.12s;cursor:pointer}.clipboard-button.svelte-orhp4c:hover{opacity:0.8}.clipboard-button.svelte-orhp4c:active{opacity:0.6}.clipboard-tooltip.svelte-orhp4c{position:absolute;top:-8px;left:50%;display:block;transform:translate(-50%, -100%);padding:4px 10px;background-color:#333333;color:#ffffff;font-size:11px;font-weight:bold;border-radius:4px;transition:transform 0.2s ease-out;white-space:nowrap;pointer-events:none}.clipboard-tooltip.svelte-orhp4c:after{content:'';display:block;position:absolute;bottom:0;left:50%;width:8px;height:8px;background-color:#333333;border-radius:1px;transform:translate(-50%, 40%) rotate(45deg)}.clipboard-tooltip[aria-hidden='true'].svelte-orhp4c{opacity:0;transform:translate(-50%, -80%)}");
|
19185
19303
|
}
|
19186
19304
|
function create_fragment$4(ctx) {
|
19187
19305
|
let div;
|
@@ -19209,10 +19327,10 @@ function create_fragment$4(ctx) {
|
|
19209
19327
|
t0 = space();
|
19210
19328
|
span = element("span");
|
19211
19329
|
t1 = text("コピーしました");
|
19212
|
-
attr(button, "class", "clipboard-button svelte-
|
19330
|
+
attr(button, "class", "clipboard-button svelte-orhp4c");
|
19213
19331
|
attr(span, "aria-hidden", span_aria_hidden_value = !ctx[2]);
|
19214
|
-
attr(span, "class", "clipboard-tooltip svelte-
|
19215
|
-
attr(div, "class", "clipboard svelte-
|
19332
|
+
attr(span, "class", "clipboard-tooltip svelte-orhp4c");
|
19333
|
+
attr(div, "class", "clipboard svelte-orhp4c");
|
19216
19334
|
attr(
|
19217
19335
|
div,
|
19218
19336
|
"data-layer-id",
|
@@ -19888,6 +20006,10 @@ __export(index_svelte5_exports, {
|
|
19888
20006
|
AVATAR_SIZE_STYLES: () => AVATAR_SIZE_STYLES,
|
19889
20007
|
Alignments: () => Alignments,
|
19890
20008
|
AnimationStyles: () => AnimationStyles,
|
20009
|
+
BACKGROUND_COLOR_VARIANT: () => BACKGROUND_COLOR_VARIANT,
|
20010
|
+
BACKGROUND_COLOR_VARIANTS: () => BACKGROUND_COLOR_VARIANTS,
|
20011
|
+
BORDER_COLOR_VARIANT: () => BORDER_COLOR_VARIANT,
|
20012
|
+
BORDER_COLOR_VARIANTS: () => BORDER_COLOR_VARIANTS,
|
19891
20013
|
BUTTON_ICON_ANGLE: () => BUTTON_ICON_ANGLE,
|
19892
20014
|
BUTTON_LINK_TARGET: () => BUTTON_LINK_TARGET,
|
19893
20015
|
BUTTON_OUTLINED_ROUND_STYLES: () => BUTTON_OUTLINED_ROUND_STYLES,
|
@@ -20369,4 +20491,4 @@ var ThumbnailPreview = class extends SvelteComponent {
|
|
20369
20491
|
var ThumbnailPreview_default = ThumbnailPreview;
|
20370
20492
|
|
20371
20493
|
//#endregion
|
20372
|
-
export { ACTION_HOOK_LABEL, ASPECT_VARIANT, ASPECT_VARIANTS, AVATAR_SHAPE, AVATAR_SIZE, AVATAR_SIZE_STYLES, Alignments, AnimationStyles, BUTTON_ICON_ANGLE, BUTTON_LINK_TARGET, BUTTON_OUTLINED_ROUND_STYLES, BUTTON_OUTLINED_SIZE_STYLES, BUTTON_OUTLINED_WRAP_STYLES, BUTTON_ROUND, BUTTON_ROUND_STYLES, BUTTON_SIZE, BUTTON_SIZE_STYLES, BUTTON_TEXT_SIZE, BUTTON_TEXT_SIZE_STYLES, BUTTON_TEXT_THEME, BUTTON_THEME, BUTTON_VARIANT, BUTTON_WRAP_STYLES, BackgroundSizes, Box_default as Box, CLOSE_BUTTON_LABEL_PLACEMENT, CLOSE_BUTTON_PLACEMENT, CLOSE_BUTTON_ROUND, ClipPaths, CodeElement_default as CodeElement, Countdown_default as Countdown, Cursors, DefaultEdgePosition, DefaultElasticity, DefaultFormButtonColor, DefaultFormIdentifyBooleanField, DefaultFormIdentifyTextField, DefaultListBackground, DefaultListBackgroundNone, DefaultListBackgroundStripe, DefaultListSeparator, DefaultListSeparatorBorder, DefaultListSeparatorGap, DefaultListSeparatorNone, DefaultModalBreakPoint, DefaultModalPlacement, DefaultSlideButton, DefaultSlideNavigationButton, Directions, Elasticities, ElasticityStyle, EmbedElement_default as EmbedElement, FONT_FAMILY_VARIANT, FONT_FAMILY_VARIANTS, FONT_FAMILY_VARIANT_GROUPS, Flex_default as Flex, Avatar_default as FlexAvatar, Button_default as FlexButton, ButtonOutlined_default as FlexButtonOutlined, ButtonText_default as FlexButtonText, ClipCopy_default as FlexClipCopy, CloseButton_default as FlexCloseButton, Code_default as FlexCode, CountDown_default as FlexCountDown, CountDownValue_default as FlexCountDownValue, FlexDirections, Icon_default as FlexIcon, Image_default as FlexImage, FlexItem_default as FlexItem, Layout_default as FlexLayout, List_default as FlexList, ListItem_default as FlexListItem, Modal_default as FlexModal, MultiColumn_default as FlexMultiColumn, MultiColumnItem_default as FlexMultiColumnItem, RichText_default as FlexRichText, Slider_default as FlexSlider, SliderItem_default as FlexSliderItem, Text_default as FlexText, TextLink_default as FlexTextLink, Youtube_default as FlexYoutube, Fonts, FormCheckBoxes_default as FormCheckBoxes, FormIdentifyBooleanFields, FormIdentifyChoices_default as FormIdentifyChoices, FormIdentifyInput_default as FormIdentifyInput, FormIdentifyTextFieldPlaceholders, FormIdentifyTextFieldValidations, FormIdentifyTextFields, FormRadioButtons_default as FormRadioButtons, FormRatingButtonsFace_default as FormRatingButtonsFace, FormRatingButtonsNumber_default as FormRatingButtonsNumber, FormSelect_default as FormSelect, FormTextarea_default as FormTextarea, Grid_default as Grid, GridItem_default as GridItem, GridModalState_default as GridModalState, ICON_SIZE, ICON_SIZE_STYLES, ICON_VARIANTS, IMAGE_ASPECT_VARIANTS, IMAGE_ROUND_SHAPE, IMAGE_ROUND_STYLES, IconElement_default as IconElement, ImageBlock_default as ImageBlock, ImageElement_default as ImageElement, Justifies, KARTE_MODAL_ROOT, LAYER_TEXT_SIZE, LAYOUT_ALIGN, LAYOUT_COMPONENT_NAMES, LAYOUT_DIRECTION, LAYOUT_DISPLAY_TYPE, LAYOUT_JUSTIFY, LIST_ITEM_CONTEXT_KEY, LengthUnits, List_default$1 as List, ListBackgroundTypes, ListDirections, ListItem_default$1 as ListItem, ListSeparatorTypes, MULTI_COLUMN_ITEM_CONTEXT_KEY, MediaQueries, Modal_default$1 as Modal, ModalPositions, MovieVimeoElement_default as MovieVimeoElement, MovieYouTubeElement_default as MovieYouTubeElement, ObjectFits, OnClickOperationOptions, Overflows, PropTypes, ROUND_STYLES, ROUND_VARIANT, Repeats, SHADOW_VARIANT, SHADOW_VARIANTS, SYSTEM_FONT, Slide_default as Slide, SlideItem_default as SlideItem, State_default as State, StateItem_default as StateItem, TEXT_LINK_SIZE, TEXT_LINK_SIZE_STYLES, TEXT_LINK_THEME, TEXT_LINK_UNDERLINE, TEXT_STYLE, TEXT_THEME, TEXT_VARIANTS, TextBlock_default as TextBlock, TextButtonBlock_default as TextButtonBlock, TextButtonElement_default as TextButtonElement, TextDirections, TextElement_default as TextElement, ThumbnailPreview_default as ThumbnailPreview, WritingModes, addChoiceAnswer, addFreeAnswer, afterUpdate, applyCss, applyGlobalCss, avatarPropsDefault, beforeUpdate, buttonOutlinedPropsDefault, buttonPropsDefault, close, closeAction, collection, create, createApp, createFog, createProp, destroy, destroyAction, ensureModalRoot, eventHandlers, finalize, flexComponentSchemes, formData, getActionRoot, getAnsweredQuestion, getAnsweredQuestionIds, getBrandKit, getButtonOutlinedThemeStyles, getButtonTextThemeStyles, getButtonThemeStyles, getCssVariables, getEventHandlers, getEvents, getLogs, getState, getStates, getSystem, getTextLinkThemeStyles, getTextThemeStyles, getVariables, hideOnScroll, hideOnTime, initialize, isOpened, listenLogger, loadActionTable, loadActionTableQuery, loadActionTableRow, loadActionTableRows, loadGlobalScript, loadGlobalStyle, loadStyle, logger, onChangeState, onClose, onCreate, onDestory, onDestroy, onMount, onScroll, onShow, onTime, removeAnswer, resetEventHandlers, resetVariables, sendAnswer, sendAnswers, setEventHandlers, setSetting, setState, setVariables, show, showAction, showModal, showOnScroll, showOnTime, state, tick, useBrandKit, variables, widget_exports as widget };
|
20494
|
+
export { ACTION_HOOK_LABEL, ASPECT_VARIANT, ASPECT_VARIANTS, AVATAR_SHAPE, AVATAR_SIZE, AVATAR_SIZE_STYLES, Alignments, AnimationStyles, BACKGROUND_COLOR_VARIANT, BACKGROUND_COLOR_VARIANTS, BORDER_COLOR_VARIANT, BORDER_COLOR_VARIANTS, BUTTON_ICON_ANGLE, BUTTON_LINK_TARGET, BUTTON_OUTLINED_ROUND_STYLES, BUTTON_OUTLINED_SIZE_STYLES, BUTTON_OUTLINED_WRAP_STYLES, BUTTON_ROUND, BUTTON_ROUND_STYLES, BUTTON_SIZE, BUTTON_SIZE_STYLES, BUTTON_TEXT_SIZE, BUTTON_TEXT_SIZE_STYLES, BUTTON_TEXT_THEME, BUTTON_THEME, BUTTON_VARIANT, BUTTON_WRAP_STYLES, BackgroundSizes, Box_default as Box, CLOSE_BUTTON_LABEL_PLACEMENT, CLOSE_BUTTON_PLACEMENT, CLOSE_BUTTON_ROUND, ClipPaths, CodeElement_default as CodeElement, Countdown_default as Countdown, Cursors, DefaultEdgePosition, DefaultElasticity, DefaultFormButtonColor, DefaultFormIdentifyBooleanField, DefaultFormIdentifyTextField, DefaultListBackground, DefaultListBackgroundNone, DefaultListBackgroundStripe, DefaultListSeparator, DefaultListSeparatorBorder, DefaultListSeparatorGap, DefaultListSeparatorNone, DefaultModalBreakPoint, DefaultModalPlacement, DefaultSlideButton, DefaultSlideNavigationButton, Directions, Elasticities, ElasticityStyle, EmbedElement_default as EmbedElement, FONT_FAMILY_VARIANT, FONT_FAMILY_VARIANTS, FONT_FAMILY_VARIANT_GROUPS, Flex_default as Flex, Avatar_default as FlexAvatar, Button_default as FlexButton, ButtonOutlined_default as FlexButtonOutlined, ButtonText_default as FlexButtonText, ClipCopy_default as FlexClipCopy, CloseButton_default as FlexCloseButton, Code_default as FlexCode, CountDown_default as FlexCountDown, CountDownValue_default as FlexCountDownValue, FlexDirections, Icon_default as FlexIcon, Image_default as FlexImage, FlexItem_default as FlexItem, Layout_default as FlexLayout, List_default as FlexList, ListItem_default as FlexListItem, Modal_default as FlexModal, MultiColumn_default as FlexMultiColumn, MultiColumnItem_default as FlexMultiColumnItem, RichText_default as FlexRichText, Slider_default as FlexSlider, SliderItem_default as FlexSliderItem, Text_default as FlexText, TextLink_default as FlexTextLink, Youtube_default as FlexYoutube, Fonts, FormCheckBoxes_default as FormCheckBoxes, FormIdentifyBooleanFields, FormIdentifyChoices_default as FormIdentifyChoices, FormIdentifyInput_default as FormIdentifyInput, FormIdentifyTextFieldPlaceholders, FormIdentifyTextFieldValidations, FormIdentifyTextFields, FormRadioButtons_default as FormRadioButtons, FormRatingButtonsFace_default as FormRatingButtonsFace, FormRatingButtonsNumber_default as FormRatingButtonsNumber, FormSelect_default as FormSelect, FormTextarea_default as FormTextarea, Grid_default as Grid, GridItem_default as GridItem, GridModalState_default as GridModalState, ICON_SIZE, ICON_SIZE_STYLES, ICON_VARIANTS, IMAGE_ASPECT_VARIANTS, IMAGE_ROUND_SHAPE, IMAGE_ROUND_STYLES, IconElement_default as IconElement, ImageBlock_default as ImageBlock, ImageElement_default as ImageElement, Justifies, KARTE_MODAL_ROOT, LAYER_TEXT_SIZE, LAYOUT_ALIGN, LAYOUT_COMPONENT_NAMES, LAYOUT_DIRECTION, LAYOUT_DISPLAY_TYPE, LAYOUT_JUSTIFY, LIST_ITEM_CONTEXT_KEY, LengthUnits, List_default$1 as List, ListBackgroundTypes, ListDirections, ListItem_default$1 as ListItem, ListSeparatorTypes, MULTI_COLUMN_ITEM_CONTEXT_KEY, MediaQueries, Modal_default$1 as Modal, ModalPositions, MovieVimeoElement_default as MovieVimeoElement, MovieYouTubeElement_default as MovieYouTubeElement, ObjectFits, OnClickOperationOptions, Overflows, PropTypes, ROUND_STYLES, ROUND_VARIANT, Repeats, SHADOW_VARIANT, SHADOW_VARIANTS, SYSTEM_FONT, Slide_default as Slide, SlideItem_default as SlideItem, State_default as State, StateItem_default as StateItem, TEXT_LINK_SIZE, TEXT_LINK_SIZE_STYLES, TEXT_LINK_THEME, TEXT_LINK_UNDERLINE, TEXT_STYLE, TEXT_THEME, TEXT_VARIANTS, TextBlock_default as TextBlock, TextButtonBlock_default as TextButtonBlock, TextButtonElement_default as TextButtonElement, TextDirections, TextElement_default as TextElement, ThumbnailPreview_default as ThumbnailPreview, WritingModes, addChoiceAnswer, addFreeAnswer, afterUpdate, applyCss, applyGlobalCss, avatarPropsDefault, beforeUpdate, buttonOutlinedPropsDefault, buttonPropsDefault, close, closeAction, collection, create, createApp, createFog, createProp, destroy, destroyAction, ensureModalRoot, eventHandlers, finalize, flexComponentSchemes, formData, getActionRoot, getAnsweredQuestion, getAnsweredQuestionIds, getBrandKit, getButtonOutlinedThemeStyles, getButtonTextThemeStyles, getButtonThemeStyles, getCssVariables, getEventHandlers, getEvents, getLogs, getState, getStates, getSystem, getTextLinkThemeStyles, getTextThemeStyles, getVariables, hideOnScroll, hideOnTime, initialize, isOpened, listenLogger, loadActionTable, loadActionTableQuery, loadActionTableRow, loadActionTableRows, loadGlobalScript, loadGlobalStyle, loadStyle, logger, onChangeState, onClose, onCreate, onDestory, onDestroy, onMount, onScroll, onShow, onTime, removeAnswer, resetEventHandlers, resetVariables, sendAnswer, sendAnswers, setEventHandlers, setSetting, setState, setVariables, show, showAction, showModal, showOnScroll, showOnTime, state, tick, useBrandKit, variables, widget_exports as widget };
|