@pathscale/ui 2.9.3 → 2.10.0
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/inline-edit/InlineEdit.css +79 -0
- package/dist/components/inline-edit/InlineEdit.generated.d.ts +27 -0
- package/dist/components/inline-edit/InlineEdit.generated.js +117 -0
- package/dist/components/inline-edit/InlineEdit.recipe.d.ts +26 -0
- package/dist/components/inline-edit/InlineEdit.recipe.js +65 -0
- package/dist/components/inline-edit/index.d.ts +3 -0
- package/dist/components/inline-edit/index.js +3 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/dist/layouts.manifest.json +4 -1
- package/dist/purge-manifest.json +125 -0
- package/package.json +1 -1
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
@layer components {
|
|
2
|
+
.inline-edit {
|
|
3
|
+
display: inline-flex;
|
|
4
|
+
min-width: 0;
|
|
5
|
+
align-items: center;
|
|
6
|
+
gap: 0.375rem;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.inline-edit--full-width {
|
|
10
|
+
width: 100%;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.inline-edit__read {
|
|
14
|
+
display: inline-flex;
|
|
15
|
+
min-width: 0;
|
|
16
|
+
flex: 1 1 auto;
|
|
17
|
+
align-items: center;
|
|
18
|
+
gap: 0.375rem;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.inline-edit__value {
|
|
22
|
+
min-width: 0;
|
|
23
|
+
overflow: hidden;
|
|
24
|
+
text-overflow: ellipsis;
|
|
25
|
+
white-space: nowrap;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.inline-edit__trigger {
|
|
29
|
+
display: inline-flex;
|
|
30
|
+
height: 1.125rem;
|
|
31
|
+
width: 1.125rem;
|
|
32
|
+
flex: none;
|
|
33
|
+
align-items: center;
|
|
34
|
+
justify-content: center;
|
|
35
|
+
border-radius: 0.25rem;
|
|
36
|
+
padding: 0;
|
|
37
|
+
color: var(--color-base-content);
|
|
38
|
+
opacity: 0.55;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.inline-edit__trigger:hover {
|
|
42
|
+
background-color: oklch(100% 0 0 / 0.08);
|
|
43
|
+
opacity: 1;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.inline-edit__edit {
|
|
47
|
+
display: none;
|
|
48
|
+
min-width: 0;
|
|
49
|
+
flex: 1 1 auto;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.inline-edit--editing .inline-edit__read {
|
|
53
|
+
display: none;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.inline-edit--editing .inline-edit__edit {
|
|
57
|
+
display: inline-flex;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.inline-edit__field {
|
|
61
|
+
min-width: 0;
|
|
62
|
+
flex: 1 1 auto;
|
|
63
|
+
border-radius: 0.375rem;
|
|
64
|
+
border: var(--border, 1px) solid var(--color-base-300);
|
|
65
|
+
background-color: var(--color-base-100);
|
|
66
|
+
padding: 0.125rem 0.5rem;
|
|
67
|
+
color: var(--color-base-content);
|
|
68
|
+
outline: none;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.inline-edit__field:focus {
|
|
72
|
+
border-color: var(--color-primary);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.inline-edit--disabled .inline-edit__trigger {
|
|
76
|
+
pointer-events: none;
|
|
77
|
+
opacity: 0.4;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { Component as __LayoutComponent } from "solid-js";
|
|
2
|
+
import "./InlineEdit.css";
|
|
3
|
+
import type { JSX } from "@solidjs/web";
|
|
4
|
+
import type { UIBaseProps } from "../vocabulary";
|
|
5
|
+
/**
|
|
6
|
+
* A value that is read in place until someone chooses to change it.
|
|
7
|
+
*
|
|
8
|
+
* Enter commits, Escape abandons, and moving focus away commits, so the mode
|
|
9
|
+
* has an exit for a reader who never touches the keyboard.
|
|
10
|
+
*/
|
|
11
|
+
export type InlineEditProps = Omit<JSX.HTMLAttributes<HTMLSpanElement>, "onChange" | "children"> & UIBaseProps & {
|
|
12
|
+
/** The current value, shown while not editing and used as the draft. */
|
|
13
|
+
value: string;
|
|
14
|
+
/** Called with the trimmed draft when it differs from `value`. */
|
|
15
|
+
onCommit?: (value: string) => void | Promise<unknown>;
|
|
16
|
+
/** Accessible name for the trigger and the field. Both need one. */
|
|
17
|
+
label?: string;
|
|
18
|
+
/** Rendered inside the trigger. An icon, usually. */
|
|
19
|
+
trigger?: JSX.Element;
|
|
20
|
+
/** Rendered in place of the plain value, for a value that is also a link. */
|
|
21
|
+
children?: JSX.Element;
|
|
22
|
+
fullWidth?: boolean;
|
|
23
|
+
disabled?: boolean;
|
|
24
|
+
fieldClass?: string;
|
|
25
|
+
};
|
|
26
|
+
declare const InlineEdit: __LayoutComponent<InlineEditProps>;
|
|
27
|
+
export default InlineEdit;
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { className, delegateEvents, effect, insert, mergeProps, ref, setAttribute, spread, template } from "@solidjs/web";
|
|
2
|
+
import { defineComponent } from "solid-layouts/solid-2/application-boundary";
|
|
3
|
+
import "./InlineEdit.css";
|
|
4
|
+
import { omit } from "solid-js";
|
|
5
|
+
import { twMerge } from "../../lib/twMerge.js";
|
|
6
|
+
import { CLASSES, componentRecipe } from "./InlineEdit.recipe.js";
|
|
7
|
+
var _tmpl$ = /*#__PURE__*/ template("<span><span data-slot=inline-edit-read><span data-slot=inline-edit-value></span><button type=button data-slot=inline-edit-trigger></button></span><span data-slot=inline-edit-edit><input type=text data-slot=inline-edit-field>");
|
|
8
|
+
const __solidLayoutInlineEdit = (_stable, p)=>{
|
|
9
|
+
const others = omit(p, "class", "value", "onCommit", "label", "trigger", "children", "fullWidth", "disabled", "fieldClass");
|
|
10
|
+
let readRow;
|
|
11
|
+
let editRow;
|
|
12
|
+
let field;
|
|
13
|
+
let open = false;
|
|
14
|
+
let focused = false;
|
|
15
|
+
let draft = "";
|
|
16
|
+
const apply = (next)=>{
|
|
17
|
+
open = next;
|
|
18
|
+
if (readRow) readRow.style.display = next ? "none" : "inline-flex";
|
|
19
|
+
if (editRow) editRow.style.display = next ? "inline-flex" : "none";
|
|
20
|
+
};
|
|
21
|
+
const start = ()=>{
|
|
22
|
+
if (p.disabled) return;
|
|
23
|
+
draft = p.value;
|
|
24
|
+
if (field) field.value = draft;
|
|
25
|
+
apply(true);
|
|
26
|
+
queueMicrotask(()=>{
|
|
27
|
+
field?.focus();
|
|
28
|
+
field?.select();
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
const cancel = ()=>{
|
|
32
|
+
draft = p.value;
|
|
33
|
+
if (field) field.value = draft;
|
|
34
|
+
focused = false;
|
|
35
|
+
apply(false);
|
|
36
|
+
};
|
|
37
|
+
const commit = ()=>{
|
|
38
|
+
const next = draft.trim();
|
|
39
|
+
focused = false;
|
|
40
|
+
apply(false);
|
|
41
|
+
if (!next || next === p.value) return;
|
|
42
|
+
p.onCommit?.(next);
|
|
43
|
+
};
|
|
44
|
+
const rootClasses = ()=>twMerge(CLASSES.base, p.fullWidth && CLASSES.flag.fullWidth, p.disabled && CLASSES.flag.disabled, p.class);
|
|
45
|
+
var _el$ = _tmpl$(), _el$2 = _el$.firstChild, _el$3 = _el$2.firstChild, _el$4 = _el$3.nextSibling, _el$5 = _el$2.nextSibling, _el$6 = _el$5.firstChild;
|
|
46
|
+
spread(_el$, mergeProps(others, {
|
|
47
|
+
get ["class"] () {
|
|
48
|
+
return rootClasses();
|
|
49
|
+
},
|
|
50
|
+
"data-slot": "root"
|
|
51
|
+
}), true);
|
|
52
|
+
ref(()=>(element)=>{
|
|
53
|
+
readRow = element;
|
|
54
|
+
}, _el$2);
|
|
55
|
+
insert(_el$3, ()=>p.children ?? p.value);
|
|
56
|
+
_el$4.$$click = start;
|
|
57
|
+
insert(_el$4, ()=>p.trigger);
|
|
58
|
+
ref(()=>(element)=>{
|
|
59
|
+
editRow = element;
|
|
60
|
+
}, _el$5);
|
|
61
|
+
_el$6.$$keydown = (event)=>{
|
|
62
|
+
if ("Enter" === event.key) {
|
|
63
|
+
event.preventDefault();
|
|
64
|
+
commit();
|
|
65
|
+
} else if ("Escape" === event.key) {
|
|
66
|
+
event.preventDefault();
|
|
67
|
+
cancel();
|
|
68
|
+
}
|
|
69
|
+
};
|
|
70
|
+
_el$6.addEventListener("blur", ()=>{
|
|
71
|
+
if (!focused) return;
|
|
72
|
+
if (open) commit();
|
|
73
|
+
});
|
|
74
|
+
_el$6.addEventListener("focus", ()=>{
|
|
75
|
+
focused = true;
|
|
76
|
+
});
|
|
77
|
+
_el$6.$$input = (event)=>{
|
|
78
|
+
draft = event.currentTarget.value;
|
|
79
|
+
};
|
|
80
|
+
ref(()=>(element)=>{
|
|
81
|
+
field = element;
|
|
82
|
+
}, _el$6);
|
|
83
|
+
effect(()=>({
|
|
84
|
+
e: CLASSES.slot.read,
|
|
85
|
+
t: CLASSES.slot.value,
|
|
86
|
+
a: p.disabled,
|
|
87
|
+
o: p.label,
|
|
88
|
+
i: CLASSES.slot.trigger,
|
|
89
|
+
n: CLASSES.slot.edit,
|
|
90
|
+
s: p.value,
|
|
91
|
+
h: p.label,
|
|
92
|
+
r: twMerge(CLASSES.slot.field, p.fieldClass)
|
|
93
|
+
}), ({ e, t, a, o, i, n, s, h, r }, _p$)=>{
|
|
94
|
+
className(_el$2, e, _p$?.e);
|
|
95
|
+
className(_el$3, t, _p$?.t);
|
|
96
|
+
a !== _p$?.a && setAttribute(_el$4, "disabled", a);
|
|
97
|
+
o !== _p$?.o && setAttribute(_el$4, "aria-label", o);
|
|
98
|
+
className(_el$4, i, _p$?.i);
|
|
99
|
+
className(_el$5, n, _p$?.n);
|
|
100
|
+
_el$6.value = s ?? "";
|
|
101
|
+
h !== _p$?.h && setAttribute(_el$6, "aria-label", h);
|
|
102
|
+
className(_el$6, r, _p$?.r);
|
|
103
|
+
});
|
|
104
|
+
return _el$;
|
|
105
|
+
};
|
|
106
|
+
const InlineEdit = defineComponent({
|
|
107
|
+
recipe: componentRecipe,
|
|
108
|
+
layout: __solidLayoutInlineEdit,
|
|
109
|
+
embedded: true
|
|
110
|
+
});
|
|
111
|
+
const InlineEdit_generated = InlineEdit;
|
|
112
|
+
delegateEvents([
|
|
113
|
+
"click",
|
|
114
|
+
"input",
|
|
115
|
+
"keydown"
|
|
116
|
+
]);
|
|
117
|
+
export default InlineEdit_generated;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export declare const CLASSES: {
|
|
2
|
+
readonly base: "inline-edit";
|
|
3
|
+
readonly slot: {
|
|
4
|
+
readonly read: "inline-edit__read";
|
|
5
|
+
readonly value: "inline-edit__value";
|
|
6
|
+
readonly trigger: "inline-edit__trigger";
|
|
7
|
+
readonly edit: "inline-edit__edit";
|
|
8
|
+
readonly field: "inline-edit__field";
|
|
9
|
+
};
|
|
10
|
+
readonly flag: {
|
|
11
|
+
readonly editing: "inline-edit--editing";
|
|
12
|
+
readonly fullWidth: "inline-edit--full-width";
|
|
13
|
+
readonly disabled: "inline-edit--disabled";
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
export declare const componentRecipe: import("solid-layouts/solid-2").Recipe<{
|
|
17
|
+
readonly component: "inline-edit";
|
|
18
|
+
readonly slots: {
|
|
19
|
+
readonly root: {};
|
|
20
|
+
readonly "inline-edit-read": {};
|
|
21
|
+
readonly "inline-edit-value": {};
|
|
22
|
+
readonly "inline-edit-trigger": {};
|
|
23
|
+
readonly "inline-edit-edit": {};
|
|
24
|
+
readonly "inline-edit-field": {};
|
|
25
|
+
};
|
|
26
|
+
}>;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { recipe } from "../../lib/layouts/index.js";
|
|
2
|
+
const CLASSES = {
|
|
3
|
+
base: "inline-edit",
|
|
4
|
+
slot: {
|
|
5
|
+
read: "inline-edit__read",
|
|
6
|
+
value: "inline-edit__value",
|
|
7
|
+
trigger: "inline-edit__trigger",
|
|
8
|
+
edit: "inline-edit__edit",
|
|
9
|
+
field: "inline-edit__field"
|
|
10
|
+
},
|
|
11
|
+
flag: {
|
|
12
|
+
editing: "inline-edit--editing",
|
|
13
|
+
fullWidth: "inline-edit--full-width",
|
|
14
|
+
disabled: "inline-edit--disabled"
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const componentRecipe = recipe({
|
|
18
|
+
component: "inline-edit",
|
|
19
|
+
slots: {
|
|
20
|
+
root: {},
|
|
21
|
+
"inline-edit-read": {},
|
|
22
|
+
"inline-edit-value": {},
|
|
23
|
+
"inline-edit-trigger": {},
|
|
24
|
+
"inline-edit-edit": {},
|
|
25
|
+
"inline-edit-field": {}
|
|
26
|
+
},
|
|
27
|
+
_layouts: {
|
|
28
|
+
slots: {
|
|
29
|
+
root: {
|
|
30
|
+
base: "",
|
|
31
|
+
axes: {}
|
|
32
|
+
},
|
|
33
|
+
"inline-edit-read": {
|
|
34
|
+
base: "",
|
|
35
|
+
axes: {}
|
|
36
|
+
},
|
|
37
|
+
"inline-edit-value": {
|
|
38
|
+
base: "",
|
|
39
|
+
axes: {}
|
|
40
|
+
},
|
|
41
|
+
"inline-edit-trigger": {
|
|
42
|
+
base: "",
|
|
43
|
+
axes: {}
|
|
44
|
+
},
|
|
45
|
+
"inline-edit-edit": {
|
|
46
|
+
base: "",
|
|
47
|
+
axes: {}
|
|
48
|
+
},
|
|
49
|
+
"inline-edit-field": {
|
|
50
|
+
base: "",
|
|
51
|
+
axes: {}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
stateKeys: [],
|
|
55
|
+
slotIds: {
|
|
56
|
+
root: 5,
|
|
57
|
+
"inline-edit-read": 2,
|
|
58
|
+
"inline-edit-value": 4,
|
|
59
|
+
"inline-edit-trigger": 3,
|
|
60
|
+
"inline-edit-edit": 0,
|
|
61
|
+
"inline-edit-field": 1
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
export { CLASSES, componentRecipe };
|
package/dist/index.d.ts
CHANGED
|
@@ -58,6 +58,8 @@ export { default as Header } from "./components/header";
|
|
|
58
58
|
export { default as Icon } from "./components/icon";
|
|
59
59
|
export type { CookieConsentProps, CookieConsentStorageKeys, CookieConsentTexts, FirefoxPWABannerProps, FirefoxPWABannerTexts, ImmersiveLandingArrowsProps, ImmersiveLandingContextValue, ImmersiveLandingNavigationProps, ImmersiveLandingPageProps, ImmersiveLandingProps, PWAInstallPromptProps, PWAInstallPromptTexts, UseImmersiveLandingOptions, UseImmersiveLandingReturn, } from "./components/immersive-landing";
|
|
60
60
|
export { CookieConsent, default as ImmersiveLanding, FirefoxPWABanner, ImmersiveLandingContext, PWAInstallPrompt, useImmersiveLanding, useImmersiveLandingContext, } from "./components/immersive-landing";
|
|
61
|
+
export type { InlineEditProps } from "./components/inline-edit";
|
|
62
|
+
export { default as InlineEdit } from "./components/inline-edit";
|
|
61
63
|
export { default as Input } from "./components/input";
|
|
62
64
|
export type { InputOTPGroupProps, InputOTPProps, InputOTPRootProps, InputOTPSeparatorProps, InputOTPSlotProps, InputOTPVariant, } from "./components/input-otp";
|
|
63
65
|
export { default as InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, REGEXP_ONLY_CHARS, REGEXP_ONLY_DIGITS, REGEXP_ONLY_DIGITS_AND_CHARS, } from "./components/input-otp";
|
package/dist/index.js
CHANGED
|
@@ -38,6 +38,7 @@ export { default as Grid } from "./components/grid/index.js";
|
|
|
38
38
|
export { default as Header } from "./components/header/index.js";
|
|
39
39
|
export { default as Icon } from "./components/icon/index.js";
|
|
40
40
|
export { CookieConsent, FirefoxPWABanner, ImmersiveLandingContext, PWAInstallPrompt, default as ImmersiveLanding, useImmersiveLanding, useImmersiveLandingContext } from "./components/immersive-landing/index.js";
|
|
41
|
+
export { default as InlineEdit } from "./components/inline-edit/index.js";
|
|
41
42
|
export { default as Input } from "./components/input/index.js";
|
|
42
43
|
export { InputOTPGroup, InputOTPSeparator, InputOTPSlot, REGEXP_ONLY_CHARS, REGEXP_ONLY_DIGITS, REGEXP_ONLY_DIGITS_AND_CHARS, default as InputOTP } from "./components/input-otp/index.js";
|
|
43
44
|
export { default as Label } from "./components/label/index.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"format": "solid-layouts-library-v2",
|
|
3
3
|
"package": "@pathscale/ui",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.10.0",
|
|
5
5
|
"components": {
|
|
6
6
|
"Accordion": {
|
|
7
7
|
"kind": "embedded"
|
|
@@ -321,6 +321,9 @@
|
|
|
321
321
|
"ImmersiveLandingContext": {
|
|
322
322
|
"kind": "embedded"
|
|
323
323
|
},
|
|
324
|
+
"InlineEdit": {
|
|
325
|
+
"kind": "embedded"
|
|
326
|
+
},
|
|
324
327
|
"Input": {
|
|
325
328
|
"kind": "embedded"
|
|
326
329
|
},
|
package/dist/purge-manifest.json
CHANGED
|
@@ -7631,6 +7631,54 @@
|
|
|
7631
7631
|
"CheckboxGroup"
|
|
7632
7632
|
]
|
|
7633
7633
|
},
|
|
7634
|
+
"InlineEdit": {
|
|
7635
|
+
"key": "InlineEdit",
|
|
7636
|
+
"component": "InlineEdit",
|
|
7637
|
+
"classes": {
|
|
7638
|
+
"always": [],
|
|
7639
|
+
"byProp": {
|
|
7640
|
+
"slot": {
|
|
7641
|
+
"read": [],
|
|
7642
|
+
"value": [],
|
|
7643
|
+
"trigger": [],
|
|
7644
|
+
"edit": [],
|
|
7645
|
+
"field": []
|
|
7646
|
+
},
|
|
7647
|
+
"editing": [],
|
|
7648
|
+
"fullWidth": [],
|
|
7649
|
+
"disabled": []
|
|
7650
|
+
}
|
|
7651
|
+
},
|
|
7652
|
+
"attributeSelectors": [],
|
|
7653
|
+
"selectors": [
|
|
7654
|
+
".inline-edit",
|
|
7655
|
+
".inline-edit--disabled .inline-edit__trigger",
|
|
7656
|
+
".inline-edit--editing .inline-edit__edit",
|
|
7657
|
+
".inline-edit--editing .inline-edit__read",
|
|
7658
|
+
".inline-edit--full-width",
|
|
7659
|
+
".inline-edit__edit",
|
|
7660
|
+
".inline-edit__field",
|
|
7661
|
+
".inline-edit__field:focus",
|
|
7662
|
+
".inline-edit__read",
|
|
7663
|
+
".inline-edit__trigger",
|
|
7664
|
+
".inline-edit__trigger:hover",
|
|
7665
|
+
".inline-edit__value"
|
|
7666
|
+
],
|
|
7667
|
+
"cssVars": {
|
|
7668
|
+
"declared": [],
|
|
7669
|
+
"referenced": [
|
|
7670
|
+
"--border",
|
|
7671
|
+
"--color-base-100",
|
|
7672
|
+
"--color-base-300",
|
|
7673
|
+
"--color-base-content",
|
|
7674
|
+
"--color-primary"
|
|
7675
|
+
]
|
|
7676
|
+
},
|
|
7677
|
+
"keyframes": {
|
|
7678
|
+
"declared": [],
|
|
7679
|
+
"referenced": []
|
|
7680
|
+
}
|
|
7681
|
+
},
|
|
7634
7682
|
"Navbar.navbar": {
|
|
7635
7683
|
"key": "Navbar.navbar",
|
|
7636
7684
|
"component": "Navbar",
|
|
@@ -25333,6 +25381,78 @@
|
|
|
25333
25381
|
"ImmersiveLanding.pwaPrompt"
|
|
25334
25382
|
]
|
|
25335
25383
|
},
|
|
25384
|
+
{
|
|
25385
|
+
"selector": ".inline-edit",
|
|
25386
|
+
"components": [
|
|
25387
|
+
"InlineEdit"
|
|
25388
|
+
]
|
|
25389
|
+
},
|
|
25390
|
+
{
|
|
25391
|
+
"selector": ".inline-edit__edit",
|
|
25392
|
+
"components": [
|
|
25393
|
+
"InlineEdit"
|
|
25394
|
+
]
|
|
25395
|
+
},
|
|
25396
|
+
{
|
|
25397
|
+
"selector": ".inline-edit__field",
|
|
25398
|
+
"components": [
|
|
25399
|
+
"InlineEdit"
|
|
25400
|
+
]
|
|
25401
|
+
},
|
|
25402
|
+
{
|
|
25403
|
+
"selector": ".inline-edit__field:focus",
|
|
25404
|
+
"components": [
|
|
25405
|
+
"InlineEdit"
|
|
25406
|
+
]
|
|
25407
|
+
},
|
|
25408
|
+
{
|
|
25409
|
+
"selector": ".inline-edit__read",
|
|
25410
|
+
"components": [
|
|
25411
|
+
"InlineEdit"
|
|
25412
|
+
]
|
|
25413
|
+
},
|
|
25414
|
+
{
|
|
25415
|
+
"selector": ".inline-edit__trigger",
|
|
25416
|
+
"components": [
|
|
25417
|
+
"InlineEdit"
|
|
25418
|
+
]
|
|
25419
|
+
},
|
|
25420
|
+
{
|
|
25421
|
+
"selector": ".inline-edit__trigger:hover",
|
|
25422
|
+
"components": [
|
|
25423
|
+
"InlineEdit"
|
|
25424
|
+
]
|
|
25425
|
+
},
|
|
25426
|
+
{
|
|
25427
|
+
"selector": ".inline-edit__value",
|
|
25428
|
+
"components": [
|
|
25429
|
+
"InlineEdit"
|
|
25430
|
+
]
|
|
25431
|
+
},
|
|
25432
|
+
{
|
|
25433
|
+
"selector": ".inline-edit--disabled .inline-edit__trigger",
|
|
25434
|
+
"components": [
|
|
25435
|
+
"InlineEdit"
|
|
25436
|
+
]
|
|
25437
|
+
},
|
|
25438
|
+
{
|
|
25439
|
+
"selector": ".inline-edit--editing .inline-edit__edit",
|
|
25440
|
+
"components": [
|
|
25441
|
+
"InlineEdit"
|
|
25442
|
+
]
|
|
25443
|
+
},
|
|
25444
|
+
{
|
|
25445
|
+
"selector": ".inline-edit--editing .inline-edit__read",
|
|
25446
|
+
"components": [
|
|
25447
|
+
"InlineEdit"
|
|
25448
|
+
]
|
|
25449
|
+
},
|
|
25450
|
+
{
|
|
25451
|
+
"selector": ".inline-edit--full-width",
|
|
25452
|
+
"components": [
|
|
25453
|
+
"InlineEdit"
|
|
25454
|
+
]
|
|
25455
|
+
},
|
|
25336
25456
|
{
|
|
25337
25457
|
"selector": ".input__icon",
|
|
25338
25458
|
"components": [
|
|
@@ -30828,6 +30948,7 @@
|
|
|
30828
30948
|
"ImmersiveLanding.navigation",
|
|
30829
30949
|
"ImmersiveLanding.page",
|
|
30830
30950
|
"ImmersiveLanding.pwaPrompt",
|
|
30951
|
+
"InlineEdit",
|
|
30831
30952
|
"Input",
|
|
30832
30953
|
"InputOTP.Group",
|
|
30833
30954
|
"InputOTP.Input",
|
|
@@ -31065,6 +31186,7 @@
|
|
|
31065
31186
|
"ImmersiveLanding.navigation",
|
|
31066
31187
|
"ImmersiveLanding.page",
|
|
31067
31188
|
"ImmersiveLanding.pwaPrompt",
|
|
31189
|
+
"InlineEdit",
|
|
31068
31190
|
"Input",
|
|
31069
31191
|
"InputOTP.Group",
|
|
31070
31192
|
"InputOTP.Input",
|
|
@@ -31996,6 +32118,7 @@
|
|
|
31996
32118
|
"ImmersiveLanding.navigation",
|
|
31997
32119
|
"ImmersiveLanding.page",
|
|
31998
32120
|
"ImmersiveLanding.pwaPrompt",
|
|
32121
|
+
"InlineEdit",
|
|
31999
32122
|
"Input",
|
|
32000
32123
|
"Kbd",
|
|
32001
32124
|
"LanguageSwitcher",
|
|
@@ -32053,6 +32176,7 @@
|
|
|
32053
32176
|
"ImmersiveLanding.navigation",
|
|
32054
32177
|
"ImmersiveLanding.page",
|
|
32055
32178
|
"ImmersiveLanding.pwaPrompt",
|
|
32179
|
+
"InlineEdit",
|
|
32056
32180
|
"Input",
|
|
32057
32181
|
"InputOTP.Group",
|
|
32058
32182
|
"InputOTP.Input",
|
|
@@ -32133,6 +32257,7 @@
|
|
|
32133
32257
|
"ImmersiveLanding.navigation",
|
|
32134
32258
|
"ImmersiveLanding.page",
|
|
32135
32259
|
"ImmersiveLanding.pwaPrompt",
|
|
32260
|
+
"InlineEdit",
|
|
32136
32261
|
"LanguageSwitcher",
|
|
32137
32262
|
"LiveChat.bubble",
|
|
32138
32263
|
"LiveChat.panel",
|