@sk-web-gui/core 3.1.0 → 3.2.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/cjs/components/ai/ai-feed.js +26 -4
- package/dist/cjs/components/ai/ai-feed.js.map +1 -1
- package/dist/cjs/components/ai/ai-module.js +41 -6
- package/dist/cjs/components/ai/ai-module.js.map +1 -1
- package/dist/cjs/components/ai/assistant-presentation.js +2 -2
- package/dist/cjs/components/ai/assistant-presentation.js.map +1 -1
- package/dist/cjs/components/ai/bubble.js +7 -6
- package/dist/cjs/components/ai/bubble.js.map +1 -1
- package/dist/cjs/components/ai/feedback.js +4 -3
- package/dist/cjs/components/ai/feedback.js.map +1 -1
- package/dist/cjs/components/ai/markdown-rendered.js +1 -1
- package/dist/cjs/components/ai/markdown-rendered.js.map +1 -1
- package/dist/cjs/components/menubar.js +0 -1
- package/dist/cjs/components/menubar.js.map +1 -1
- package/dist/esm/components/ai/ai-feed.js +26 -4
- package/dist/esm/components/ai/ai-feed.js.map +1 -1
- package/dist/esm/components/ai/ai-module.js +41 -6
- package/dist/esm/components/ai/ai-module.js.map +1 -1
- package/dist/esm/components/ai/assistant-presentation.js +2 -2
- package/dist/esm/components/ai/assistant-presentation.js.map +1 -1
- package/dist/esm/components/ai/bubble.js +7 -6
- package/dist/esm/components/ai/bubble.js.map +1 -1
- package/dist/esm/components/ai/feedback.js +4 -3
- package/dist/esm/components/ai/feedback.js.map +1 -1
- package/dist/esm/components/ai/markdown-rendered.js +1 -1
- package/dist/esm/components/ai/markdown-rendered.js.map +1 -1
- package/dist/esm/components/menubar.js +0 -1
- package/dist/esm/components/menubar.js.map +1 -1
- package/dist/types/components/ai/ai-feed.d.ts +24 -2
- package/dist/types/components/ai/ai-module.d.ts +39 -4
- package/dist/types/components/ai/assistant-presentation.d.ts +2 -2
- package/dist/types/components/ai/bubble.d.ts +6 -5
- package/dist/types/components/ai/feedback.d.ts +4 -3
- package/dist/types/components/ai/markdown-rendered.d.ts +1 -1
- package/dist/types/components/menubar.d.ts +0 -1
- package/package.json +2 -2
|
@@ -5,23 +5,28 @@ exports.AIFeed = void 0;
|
|
|
5
5
|
var AIFeed = exports.AIFeed = function AIFeed() {
|
|
6
6
|
return {
|
|
7
7
|
'.sk-ai-feed': {
|
|
8
|
-
'@apply
|
|
8
|
+
'@apply h-auto max-h-full flex flex-col gap-32': {},
|
|
9
9
|
'&-entry': {
|
|
10
10
|
'@apply flex items-start gap-12': {},
|
|
11
|
+
'@apply w-full': {},
|
|
11
12
|
'&-avatar': {
|
|
12
13
|
'@apply grow-0 shrink-0 w-fit': {}
|
|
13
14
|
},
|
|
14
15
|
'&-container': {
|
|
15
|
-
'@apply flex flex-col pb-20 gap-20': {}
|
|
16
|
+
'@apply flex flex-col pb-20 gap-20': {},
|
|
17
|
+
'@apply w-full': {}
|
|
16
18
|
},
|
|
17
19
|
'&-content': {
|
|
18
20
|
'@apply break-words max-w-full flex flex-col grow gap-4': {}
|
|
19
21
|
},
|
|
20
22
|
'&-heading': {
|
|
21
|
-
'@apply text-large font-bold': {}
|
|
23
|
+
'@apply text-large font-bold': {},
|
|
24
|
+
'&[data-showtitle="false"]': {
|
|
25
|
+
'@apply w-0 h-0 opacity-0': {}
|
|
26
|
+
}
|
|
22
27
|
},
|
|
23
28
|
'&-references': {
|
|
24
|
-
'@apply bg-background-200 rounded-button
|
|
29
|
+
'@apply bg-background-200 rounded-button py-0 pl-20 pr-12 gap-8 text-dark-primary': {},
|
|
25
30
|
'&-header': {
|
|
26
31
|
'@apply text-dark-primary': {}
|
|
27
32
|
},
|
|
@@ -34,6 +39,23 @@ var AIFeed = exports.AIFeed = function AIFeed() {
|
|
|
34
39
|
}
|
|
35
40
|
}
|
|
36
41
|
}
|
|
42
|
+
},
|
|
43
|
+
'&-live-wrapper': {
|
|
44
|
+
'@apply absolute w-1 h-1 -m-1 overflow-hidden whitespace-nowrap p-0 opacity-0': {}
|
|
45
|
+
},
|
|
46
|
+
'&[data-size="lg"]': {
|
|
47
|
+
'.sk-ai-feed-avatar, .sk-avatar': {
|
|
48
|
+
'@apply w-40 h-40': {}
|
|
49
|
+
},
|
|
50
|
+
'.sk-ai-feed-container': {
|
|
51
|
+
'@apply pb-32 gap-32': {},
|
|
52
|
+
'@apply w-full': {}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
'&[data-size="sm"]': {
|
|
56
|
+
'.sk-ai-feed-avatar, .sk-avatar': {
|
|
57
|
+
'@apply w-32 h-32': {}
|
|
58
|
+
}
|
|
37
59
|
}
|
|
38
60
|
}
|
|
39
61
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai-feed.js","names":["AIFeed","exports"],"sources":["../../../../src/components/ai/ai-feed.ts"],"sourcesContent":["export const AIFeed = () => ({\r\n '.sk-ai-feed': {\r\n '@apply
|
|
1
|
+
{"version":3,"file":"ai-feed.js","names":["AIFeed","exports"],"sources":["../../../../src/components/ai/ai-feed.ts"],"sourcesContent":["export const AIFeed = () => ({\r\n '.sk-ai-feed': {\r\n '@apply h-auto max-h-full flex flex-col gap-32': {},\r\n '&-entry': {\r\n '@apply flex items-start gap-12': {},\r\n '@apply w-full': {},\r\n '&-avatar': {\r\n '@apply grow-0 shrink-0 w-fit': {},\r\n },\r\n '&-container': {\r\n '@apply flex flex-col pb-20 gap-20': {},\r\n '@apply w-full': {},\r\n },\r\n '&-content': {\r\n '@apply break-words max-w-full flex flex-col grow gap-4': {},\r\n },\r\n '&-heading': {\r\n '@apply text-large font-bold': {},\r\n '&[data-showtitle=\"false\"]': {\r\n '@apply w-0 h-0 opacity-0': {},\r\n },\r\n },\r\n '&-references': {\r\n '@apply bg-background-200 rounded-button py-0 pl-20 pr-12 gap-8 text-dark-primary': {},\r\n '&-header': {\r\n '@apply text-dark-primary': {},\r\n },\r\n '&-list': {\r\n '&-item': {\r\n '@apply max-w-full w-full my-8 rounded-6 whitespace-normal text-base': {},\r\n '.sk-link': {\r\n '@apply dark:text-dark-primary': {},\r\n },\r\n },\r\n },\r\n },\r\n },\r\n '&-live-wrapper': {\r\n '@apply absolute w-1 h-1 -m-1 overflow-hidden whitespace-nowrap p-0 opacity-0': {},\r\n },\r\n\r\n '&[data-size=\"lg\"]': {\r\n '.sk-ai-feed-avatar, .sk-avatar': {\r\n '@apply w-40 h-40': {},\r\n },\r\n '.sk-ai-feed-container': {\r\n '@apply pb-32 gap-32': {},\r\n '@apply w-full': {},\r\n },\r\n },\r\n '&[data-size=\"sm\"]': {\r\n '.sk-ai-feed-avatar, .sk-avatar': {\r\n '@apply w-32 h-32': {},\r\n },\r\n },\r\n },\r\n});\r\n"],"mappings":";;;;AAAO,IAAMA,MAAM,GAAAC,OAAA,CAAAD,MAAA,GAAG,SAATA,MAAMA,CAAA;EAAA,OAAU;IAC3B,aAAa,EAAE;MACb,+CAA+C,EAAE,CAAC,CAAC;MACnD,SAAS,EAAE;QACT,gCAAgC,EAAE,CAAC,CAAC;QACpC,eAAe,EAAE,CAAC,CAAC;QACnB,UAAU,EAAE;UACV,8BAA8B,EAAE,CAAC;QACnC,CAAC;QACD,aAAa,EAAE;UACb,mCAAmC,EAAE,CAAC,CAAC;UACvC,eAAe,EAAE,CAAC;QACpB,CAAC;QACD,WAAW,EAAE;UACX,wDAAwD,EAAE,CAAC;QAC7D,CAAC;QACD,WAAW,EAAE;UACX,6BAA6B,EAAE,CAAC,CAAC;UACjC,2BAA2B,EAAE;YAC3B,0BAA0B,EAAE,CAAC;UAC/B;QACF,CAAC;QACD,cAAc,EAAE;UACd,kFAAkF,EAAE,CAAC,CAAC;UACtF,UAAU,EAAE;YACV,0BAA0B,EAAE,CAAC;UAC/B,CAAC;UACD,QAAQ,EAAE;YACR,QAAQ,EAAE;cACR,qEAAqE,EAAE,CAAC,CAAC;cACzE,UAAU,EAAE;gBACV,+BAA+B,EAAE,CAAC;cACpC;YACF;UACF;QACF;MACF,CAAC;MACD,gBAAgB,EAAE;QAChB,8EAA8E,EAAE,CAAC;MACnF,CAAC;MAED,mBAAmB,EAAE;QACnB,gCAAgC,EAAE;UAChC,kBAAkB,EAAE,CAAC;QACvB,CAAC;QACD,uBAAuB,EAAE;UACvB,qBAAqB,EAAE,CAAC,CAAC;UACzB,eAAe,EAAE,CAAC;QACpB;MACF,CAAC;MACD,mBAAmB,EAAE;QACnB,gCAAgC,EAAE;UAChC,kBAAkB,EAAE,CAAC;QACvB;MACF;IACF;EACF,CAAC;AAAA,CAAC","ignoreList":[]}
|
|
@@ -7,27 +7,40 @@ var AIModule = exports.AIModule = function AIModule(colors) {
|
|
|
7
7
|
return {
|
|
8
8
|
'.sk-ai-module': {
|
|
9
9
|
'@apply fixed': {},
|
|
10
|
+
'@apply overflow-hidden': {},
|
|
10
11
|
'@apply flex flex-col gap-0 items-center justify-start': {},
|
|
11
12
|
'@apply shadow-200': {},
|
|
12
|
-
'@apply overflow-hidden': {},
|
|
13
13
|
'@apply transition-all': {},
|
|
14
14
|
'@apply bottom-0 right-0': {},
|
|
15
15
|
'&-content': {
|
|
16
16
|
'@apply flex w-full gap-0 h-full justify-between': {},
|
|
17
|
+
'@apply overflow-hidden': {},
|
|
17
18
|
'&-row': {
|
|
18
19
|
'@apply flex flex-col': {}
|
|
20
|
+
},
|
|
21
|
+
'&-main': {
|
|
22
|
+
'@apply grow shrink max-h-full items-center': {}
|
|
19
23
|
}
|
|
20
24
|
},
|
|
21
25
|
'&-sidebar': {
|
|
22
26
|
'@apply flex flex-col': {},
|
|
23
27
|
'@apply min-w-[22em]': {},
|
|
24
28
|
'@apply h-full': {},
|
|
29
|
+
'@apply overflow-hidden': {},
|
|
25
30
|
'@apply border-r-1 border-r-divider': {},
|
|
26
|
-
'@apply pt-20 px-
|
|
31
|
+
'@apply pt-20 px-0 gap-16': {},
|
|
32
|
+
'&-sessions': {
|
|
33
|
+
'@apply flex flex-col': {},
|
|
34
|
+
'@apply grow w-full': {},
|
|
35
|
+
'@apply overflow-y-auto': {},
|
|
36
|
+
'@apply px-24 pb-20 gap-16': {}
|
|
37
|
+
}
|
|
27
38
|
},
|
|
28
39
|
'&-feed': {
|
|
29
40
|
'@apply flex flex-col grow': {},
|
|
30
41
|
'@apply px-16 pt-16 pb-24 gap-16': {},
|
|
42
|
+
'@apply w-full': {},
|
|
43
|
+
'@apply max-h-full overflow-y-auto': {},
|
|
31
44
|
'&-questions': {
|
|
32
45
|
'@apply flex flex-col gap-8 w-full': {},
|
|
33
46
|
'&-title': {
|
|
@@ -38,22 +51,44 @@ var AIModule = exports.AIModule = function AIModule(colors) {
|
|
|
38
51
|
}
|
|
39
52
|
}
|
|
40
53
|
},
|
|
54
|
+
'.sk-ai-inputsection': {
|
|
55
|
+
'@apply shrink-0': {}
|
|
56
|
+
},
|
|
41
57
|
'&[data-fullscreen="false"]': {
|
|
42
58
|
'@apply rounded-tl-groups': {},
|
|
43
|
-
'@apply max-w-[26em]': {}
|
|
59
|
+
'@apply max-w-[26em]': {},
|
|
60
|
+
'@apply w-[26em]': {},
|
|
61
|
+
'@apply max-h-[44em]': {},
|
|
62
|
+
'&[data-docked="false"]': {
|
|
63
|
+
'@apply h-full': {}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
'.sk-ai-feed': {
|
|
67
|
+
'@apply w-full': {}
|
|
44
68
|
},
|
|
45
69
|
'&[data-fullscreen="true"]': {
|
|
46
|
-
'@apply w-full
|
|
70
|
+
'@apply w-full': {},
|
|
47
71
|
'.sk-ai-module-feed': {
|
|
48
72
|
'@apply gap-40 grow w-full items-center': {},
|
|
73
|
+
'.sk-ai-feed': {
|
|
74
|
+
'@apply text-base max-w-[50em]': {}
|
|
75
|
+
},
|
|
49
76
|
'&-questions': {
|
|
50
|
-
'@apply flex-row gap-16': {}
|
|
77
|
+
'@apply flex-row gap-16': {},
|
|
78
|
+
'&-wrapper': {
|
|
79
|
+
'@apply text-base max-w-[50em]': {}
|
|
80
|
+
}
|
|
51
81
|
}
|
|
82
|
+
},
|
|
83
|
+
'.sk-ai-inputsection': {
|
|
84
|
+
'@apply text-base max-w-[50em]': {},
|
|
85
|
+
'@apply pt-20 pb-32': {}
|
|
52
86
|
}
|
|
53
87
|
},
|
|
54
88
|
'&-header': _extends({
|
|
55
89
|
'@apply flex items-center justify-between': {},
|
|
56
90
|
'@apply w-full': {},
|
|
91
|
+
'@apply shrink-0': {},
|
|
57
92
|
'@apply px-14 py-16': {},
|
|
58
93
|
'@apply transition-all': {},
|
|
59
94
|
'@apply bg-inverted-background-content': {},
|
|
@@ -79,7 +114,7 @@ var AIModule = exports.AIModule = function AIModule(colors) {
|
|
|
79
114
|
'@apply gap-12': {}
|
|
80
115
|
},
|
|
81
116
|
'&[data-variant="alt"]': {
|
|
82
|
-
'@apply
|
|
117
|
+
'@apply pt-0 px-24': {},
|
|
83
118
|
'@apply bg-transparent': {},
|
|
84
119
|
'.sk-avatar': {
|
|
85
120
|
'@apply w-56 h-56': {}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai-module.js","names":["AIModule","exports","colors","_extends","reduce","styles","color","_ref","_extends2"],"sources":["../../../../src/components/ai/ai-module.ts"],"sourcesContent":["export const AIModule = (colors: string[]) => ({\r\n '.sk-ai-module': {\r\n '@apply fixed': {},\r\n '@apply flex flex-col gap-0 items-center justify-start': {},\r\n '@apply shadow-200': {},\r\n '@apply
|
|
1
|
+
{"version":3,"file":"ai-module.js","names":["AIModule","exports","colors","_extends","reduce","styles","color","_ref","_extends2"],"sources":["../../../../src/components/ai/ai-module.ts"],"sourcesContent":["export const AIModule = (colors: string[]) => ({\r\n '.sk-ai-module': {\r\n '@apply fixed': {},\r\n '@apply overflow-hidden': {},\r\n '@apply flex flex-col gap-0 items-center justify-start': {},\r\n '@apply shadow-200': {},\r\n '@apply transition-all': {},\r\n '@apply bottom-0 right-0': {},\r\n\r\n '&-content': {\r\n '@apply flex w-full gap-0 h-full justify-between': {},\r\n '@apply overflow-hidden': {},\r\n '&-row': {\r\n '@apply flex flex-col': {},\r\n },\r\n '&-main': {\r\n '@apply grow shrink max-h-full items-center': {},\r\n },\r\n },\r\n\r\n '&-sidebar': {\r\n '@apply flex flex-col': {},\r\n '@apply min-w-[22em]': {},\r\n '@apply h-full': {},\r\n '@apply overflow-hidden': {},\r\n '@apply border-r-1 border-r-divider': {},\r\n '@apply pt-20 px-0 gap-16': {},\r\n '&-sessions': {\r\n '@apply flex flex-col': {},\r\n '@apply grow w-full': {},\r\n '@apply overflow-y-auto': {},\r\n '@apply px-24 pb-20 gap-16': {},\r\n },\r\n },\r\n '&-feed': {\r\n '@apply flex flex-col grow': {},\r\n '@apply px-16 pt-16 pb-24 gap-16': {},\r\n '@apply w-full': {},\r\n '@apply max-h-full overflow-y-auto': {},\r\n '&-questions': {\r\n '@apply flex flex-col gap-8 w-full': {},\r\n '&-title': {\r\n '@apply text-label-medium text-dark-primary': {},\r\n },\r\n '&-wrapper': {\r\n '@apply flex flex-col gap-16 w-full': {},\r\n },\r\n },\r\n },\r\n '.sk-ai-inputsection': {\r\n '@apply shrink-0': {},\r\n },\r\n '&[data-fullscreen=\"false\"]': {\r\n '@apply rounded-tl-groups': {},\r\n '@apply max-w-[26em]': {},\r\n '@apply w-[26em]': {},\r\n '@apply max-h-[44em]': {},\r\n '&[data-docked=\"false\"]': {\r\n '@apply h-full': {},\r\n },\r\n },\r\n '.sk-ai-feed': {\r\n '@apply w-full': {},\r\n },\r\n '&[data-fullscreen=\"true\"]': {\r\n '@apply w-full': {},\r\n '.sk-ai-module-feed': {\r\n '@apply gap-40 grow w-full items-center': {},\r\n '.sk-ai-feed': {\r\n '@apply text-base max-w-[50em]': {},\r\n },\r\n '&-questions': {\r\n '@apply flex-row gap-16': {},\r\n '&-wrapper': {\r\n '@apply text-base max-w-[50em]': {},\r\n },\r\n },\r\n },\r\n '.sk-ai-inputsection': {\r\n '@apply text-base max-w-[50em]': {},\r\n '@apply pt-20 pb-32': {},\r\n },\r\n },\r\n\r\n '&-header': {\r\n '@apply flex items-center justify-between': {},\r\n '@apply w-full': {},\r\n '@apply shrink-0': {},\r\n '@apply px-14 py-16': {},\r\n '@apply transition-all': {},\r\n '@apply bg-inverted-background-content': {},\r\n '@apply text-inverted-dark-primary': {},\r\n\r\n '&[data-docked=\"true\"]': {\r\n '@apply px-12 pt-10 pb-12': {},\r\n },\r\n\r\n '&-title': {\r\n '@apply flex justify-start items-center': {},\r\n '@apply gap-12 pr-16': {},\r\n },\r\n '&-heading': {\r\n '@apply flex flex-col gap-0': {},\r\n '&-name': {\r\n '@apply text-label-medium': {},\r\n },\r\n '&-subtitle': {\r\n '@apply text-small text-inverted-dark-secondary': {},\r\n },\r\n },\r\n\r\n '&-menu': {\r\n '@apply flex justify-center items-center': {},\r\n '@apply gap-12': {},\r\n },\r\n\r\n '&[data-variant=\"alt\"]': {\r\n '@apply pt-0 px-24': {},\r\n '@apply bg-transparent': {},\r\n '.sk-avatar': {\r\n '@apply w-56 h-56': {},\r\n },\r\n '.sk-ai-module-header-heading-name': {\r\n '@apply text-label-large text-dark-primary': {},\r\n },\r\n '.sk-ai-module-header-heading-subtitle': {\r\n '@apply text-small text-dark-secondary': {},\r\n },\r\n },\r\n\r\n ...colors.reduce(\r\n (styles, color) => ({\r\n ...styles,\r\n\r\n [`&[data-color=\"${color}\"]`]: {\r\n [`@apply bg-${color}-surface-primary`]: {},\r\n },\r\n }),\r\n {}\r\n ),\r\n '&[data-fullscreen=\"true\"]': {\r\n '@apply bg-background-content': {},\r\n '@apply text-dark-primary': {},\r\n '@apply px-20 pt-20 pb-12': {},\r\n },\r\n },\r\n '&-sessions': {\r\n '@apply px-20': {},\r\n '&-history': {\r\n '@apply flex flex-col p-8 gap-16': {},\r\n '&-list': {\r\n '@apply flex flex-col p-0 gap-8': {},\r\n },\r\n },\r\n },\r\n },\r\n});\r\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -7,6 +7,7 @@ var AssistantPresentation = exports.AssistantPresentation = function AssistantPr
|
|
|
7
7
|
'.sk-ai-assistant-presentation': {
|
|
8
8
|
'@apply flex flex-col gap-16 items-center justify-center': {},
|
|
9
9
|
'@apply text-base': {},
|
|
10
|
+
'@apply h-full grow': {},
|
|
10
11
|
'&-header': {
|
|
11
12
|
'@apply flex flex-col items-center justify-start': {},
|
|
12
13
|
'&-title': {
|
|
@@ -17,7 +18,7 @@ var AssistantPresentation = exports.AssistantPresentation = function AssistantPr
|
|
|
17
18
|
}
|
|
18
19
|
},
|
|
19
20
|
'&[data-size="lg"]': {
|
|
20
|
-
'@apply min-h-[25.5em]
|
|
21
|
+
'@apply min-h-[25.5em]': {},
|
|
21
22
|
'@apply p-24': {},
|
|
22
23
|
'@apply max-w-[27em]': {},
|
|
23
24
|
'.sk-avatar': {
|
|
@@ -35,7 +36,6 @@ var AssistantPresentation = exports.AssistantPresentation = function AssistantPr
|
|
|
35
36
|
}
|
|
36
37
|
},
|
|
37
38
|
'&[data-size="sm"]': {
|
|
38
|
-
'@apply min-h-[24em]': {},
|
|
39
39
|
'.sk-avatar': {
|
|
40
40
|
'@apply w-72 h-72': {},
|
|
41
41
|
'@apply max-w-72 max-h-72': {}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"assistant-presentation.js","names":["AssistantPresentation","exports"],"sources":["../../../../src/components/ai/assistant-presentation.ts"],"sourcesContent":["export const AssistantPresentation = () => ({\r\n '.sk-ai-assistant-presentation': {\r\n '@apply flex flex-col gap-16 items-center justify-center': {},\r\n '@apply text-base': {},\r\n\r\n '&-header': {\r\n '@apply flex flex-col items-center justify-start': {},\r\n '&-title': {\r\n '@apply text-dark-primary text-center w-full': {},\r\n },\r\n '&-description': {\r\n '@apply text-dark-secondary text-center w-full': {},\r\n },\r\n },\r\n\r\n '&[data-size=\"lg\"]': {\r\n '@apply min-h-[25.5em]
|
|
1
|
+
{"version":3,"file":"assistant-presentation.js","names":["AssistantPresentation","exports"],"sources":["../../../../src/components/ai/assistant-presentation.ts"],"sourcesContent":["export const AssistantPresentation = () => ({\r\n '.sk-ai-assistant-presentation': {\r\n '@apply flex flex-col gap-16 items-center justify-center': {},\r\n '@apply text-base': {},\r\n '@apply h-full grow': {},\r\n\r\n '&-header': {\r\n '@apply flex flex-col items-center justify-start': {},\r\n '&-title': {\r\n '@apply text-dark-primary text-center w-full': {},\r\n },\r\n '&-description': {\r\n '@apply text-dark-secondary text-center w-full': {},\r\n },\r\n },\r\n\r\n '&[data-size=\"lg\"]': {\r\n '@apply min-h-[25.5em]': {},\r\n '@apply p-24': {},\r\n '@apply max-w-[27em]': {},\r\n\r\n '.sk-avatar': {\r\n '@apply w-90-1 h-90-1': {},\r\n '@apply max-w-90-1 max-h-90-1': {},\r\n },\r\n '.sk-ai-assistant-presentation-header': {\r\n '@apply gap-6 pb-24': {},\r\n '&-title': {\r\n '@apply text-h3-lg': {},\r\n },\r\n '&-description': {\r\n '@apply text-lead': {},\r\n },\r\n },\r\n },\r\n '&[data-size=\"sm\"]': {\r\n '.sk-avatar': {\r\n '@apply w-72 h-72': {},\r\n '@apply max-w-72 max-h-72': {},\r\n },\r\n '.sk-ai-assistant-presentation-header': {\r\n '@apply gap-4 pb-16': {},\r\n '&-title': {\r\n '@apply text-h3-md': {},\r\n },\r\n '&-description': {\r\n '@apply text-small': {},\r\n },\r\n },\r\n },\r\n },\r\n});\r\n"],"mappings":";;;;AAAO,IAAMA,qBAAqB,GAAAC,OAAA,CAAAD,qBAAA,GAAG,SAAxBA,qBAAqBA,CAAA;EAAA,OAAU;IAC1C,+BAA+B,EAAE;MAC/B,yDAAyD,EAAE,CAAC,CAAC;MAC7D,kBAAkB,EAAE,CAAC,CAAC;MACtB,oBAAoB,EAAE,CAAC,CAAC;MAExB,UAAU,EAAE;QACV,iDAAiD,EAAE,CAAC,CAAC;QACrD,SAAS,EAAE;UACT,6CAA6C,EAAE,CAAC;QAClD,CAAC;QACD,eAAe,EAAE;UACf,+CAA+C,EAAE,CAAC;QACpD;MACF,CAAC;MAED,mBAAmB,EAAE;QACnB,uBAAuB,EAAE,CAAC,CAAC;QAC3B,aAAa,EAAE,CAAC,CAAC;QACjB,qBAAqB,EAAE,CAAC,CAAC;QAEzB,YAAY,EAAE;UACZ,sBAAsB,EAAE,CAAC,CAAC;UAC1B,8BAA8B,EAAE,CAAC;QACnC,CAAC;QACD,sCAAsC,EAAE;UACtC,oBAAoB,EAAE,CAAC,CAAC;UACxB,SAAS,EAAE;YACT,mBAAmB,EAAE,CAAC;UACxB,CAAC;UACD,eAAe,EAAE;YACf,kBAAkB,EAAE,CAAC;UACvB;QACF;MACF,CAAC;MACD,mBAAmB,EAAE;QACnB,YAAY,EAAE;UACZ,kBAAkB,EAAE,CAAC,CAAC;UACtB,0BAA0B,EAAE,CAAC;QAC/B,CAAC;QACD,sCAAsC,EAAE;UACtC,oBAAoB,EAAE,CAAC,CAAC;UACxB,SAAS,EAAE;YACT,mBAAmB,EAAE,CAAC;UACxB,CAAC;UACD,eAAe,EAAE;YACf,mBAAmB,EAAE,CAAC;UACxB;QACF;MACF;IACF;EACF,CAAC;AAAA,CAAC","ignoreList":[]}
|
|
@@ -12,7 +12,7 @@ var Bubble = exports.Bubble = function Bubble(colors) {
|
|
|
12
12
|
'@apply rounded-t-button rounded-br-button': {},
|
|
13
13
|
'@apply pt-10 pr-12 pb-10 pl-14': {},
|
|
14
14
|
'@apply gap-16': {},
|
|
15
|
-
'@apply shadow-[
|
|
15
|
+
'@apply shadow-[0_1px_0_0_rgba(0,0,0,0.2)]': {},
|
|
16
16
|
'@apply text-small': {},
|
|
17
17
|
'@apply text-dark-secondary': {}
|
|
18
18
|
}, colors.reduce(function (styles, color) {
|
|
@@ -22,20 +22,21 @@ var Bubble = exports.Bubble = function Bubble(colors) {
|
|
|
22
22
|
}, _ref), _extends2));
|
|
23
23
|
}, {}), {
|
|
24
24
|
'&-tail': {
|
|
25
|
-
'@apply
|
|
25
|
+
'@apply text-base': {},
|
|
26
|
+
'@apply absolute left-0 bottom-[-1.25em]': {},
|
|
26
27
|
'@apply w-32 h-32': {},
|
|
27
28
|
'@apply rounded-tl-16 rounded-bl-0': {},
|
|
28
29
|
'@apply bg-transparent': {},
|
|
29
|
-
'@apply shadow-[0_-
|
|
30
|
+
'@apply shadow-[0_-1em_0_0_var(--tw-shadow-color)]': {},
|
|
30
31
|
'@apply scale-y-[25%]': {},
|
|
31
32
|
'&:before': {
|
|
32
33
|
'@apply content-[""]': {},
|
|
33
|
-
'@apply absolute left-0 bottom-[-0.
|
|
34
|
+
'@apply absolute left-0 bottom-[-0.15625em]': {},
|
|
34
35
|
'@apply w-32 h-32': {},
|
|
35
36
|
'@apply rounded-tl-16 rounded-bl-0': {},
|
|
36
37
|
'@apply bg-transparent': {},
|
|
37
|
-
'@apply shadow-[0_-0.
|
|
38
|
-
'clip-path': 'polygon(0 0, 0
|
|
38
|
+
'@apply shadow-[0_-0.15625em_0_0_rgb(0,0,0,0.2)]': {},
|
|
39
|
+
'clip-path': 'polygon(0 0, 0 1em, 0.25em 1em, 0.59375em 0)'
|
|
39
40
|
}
|
|
40
41
|
}
|
|
41
42
|
})
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bubble.js","names":["Bubble","exports","colors","_extends","reduce","styles","color","_skAiBubbleTail","_skAiBubbleTail2","_ref","_extends2"],"sources":["../../../../src/components/ai/bubble.ts"],"sourcesContent":["export const Bubble = (colors: string[]) => ({\r\n '.sk-ai-bubble': {\r\n '@apply inline-flex text-left items-center justify-start': {},\r\n '@apply w-fit': {},\r\n '@apply relative': {},\r\n '@apply rounded-t-button rounded-br-button': {},\r\n '@apply pt-10 pr-12 pb-10 pl-14': {},\r\n '@apply gap-16': {},\r\n '@apply shadow-[
|
|
1
|
+
{"version":3,"file":"bubble.js","names":["Bubble","exports","colors","_extends","reduce","styles","color","_skAiBubbleTail","_skAiBubbleTail2","_ref","_extends2"],"sources":["../../../../src/components/ai/bubble.ts"],"sourcesContent":["export const Bubble = (colors: string[]) => ({\r\n '.sk-ai-bubble': {\r\n '@apply inline-flex text-left items-center justify-start': {},\r\n '@apply w-fit': {},\r\n '@apply relative': {},\r\n '@apply rounded-t-button rounded-br-button': {},\r\n '@apply pt-10 pr-12 pb-10 pl-14': {},\r\n '@apply gap-16': {},\r\n '@apply shadow-[0_1px_0_0_rgba(0,0,0,0.2)]': {},\r\n '@apply text-small': {},\r\n '@apply text-dark-secondary': {},\r\n ...colors.reduce(\r\n (styles, color) => ({\r\n ...styles,\r\n\r\n [`&[data-color=\"${color}\"]`]: {\r\n [`@apply bg-${color}-surface-accent hover:bg-${color}-surface-accent-hover`]: {},\r\n '.sk-ai-bubble-tail': {\r\n [`@apply shadow-${color}-surface-accent`]: {},\r\n },\r\n '&:hover': {\r\n '.sk-ai-bubble-tail': {\r\n [`@apply shadow-${color}-surface-accent-hover`]: {},\r\n },\r\n },\r\n },\r\n }),\r\n {}\r\n ),\r\n '&-tail': {\r\n '@apply text-base': {},\r\n '@apply absolute left-0 bottom-[-1.25em]': {},\r\n '@apply w-32 h-32': {},\r\n '@apply rounded-tl-16 rounded-bl-0': {},\r\n '@apply bg-transparent': {},\r\n '@apply shadow-[0_-1em_0_0_var(--tw-shadow-color)]': {},\r\n '@apply scale-y-[25%]': {},\r\n '&:before': {\r\n '@apply content-[\"\"]': {},\r\n '@apply absolute left-0 bottom-[-0.15625em]': {},\r\n '@apply w-32 h-32': {},\r\n '@apply rounded-tl-16 rounded-bl-0': {},\r\n '@apply bg-transparent': {},\r\n '@apply shadow-[0_-0.15625em_0_0_rgb(0,0,0,0.2)]': {},\r\n 'clip-path': 'polygon(0 0, 0 1em, 0.25em 1em, 0.59375em 0)',\r\n },\r\n },\r\n },\r\n});\r\n"],"mappings":";;;;;AAAO,IAAMA,MAAM,GAAAC,OAAA,CAAAD,MAAA,GAAG,SAATA,MAAMA,CAAIE,MAAgB;EAAA,OAAM;IAC3C,eAAe,EAAAC,QAAA;MACb,yDAAyD,EAAE,CAAC,CAAC;MAC7D,cAAc,EAAE,CAAC,CAAC;MAClB,iBAAiB,EAAE,CAAC,CAAC;MACrB,2CAA2C,EAAE,CAAC,CAAC;MAC/C,gCAAgC,EAAE,CAAC,CAAC;MACpC,eAAe,EAAE,CAAC,CAAC;MACnB,2CAA2C,EAAE,CAAC,CAAC;MAC/C,mBAAmB,EAAE,CAAC,CAAC;MACvB,4BAA4B,EAAE,CAAC;IAAC,GAC7BD,MAAM,CAACE,MAAM,CACd,UAACC,MAAM,EAAEC,KAAK;MAAA,IAAAC,eAAA,EAAAC,gBAAA,EAAAC,IAAA,EAAAC,SAAA;MAAA,OAAAP,QAAA,KACTE,MAAM,GAAAK,SAAA,OAAAA,SAAA,qBAESJ,KAAK,aAAAG,IAAA,OAAAA,IAAA,gBACPH,KAAK,iCAA4BA,KAAK,8BAA0B,CAAC,CAAC,EAAAG,IAAA,CAChF,oBAAoB,KAAAF,eAAA,OAAAA,eAAA,oBACAD,KAAK,wBAAoB,CAAC,CAAC,EAAAC,eAAA,GAAAE,IAAA,CAE/C,SAAS,IAAE;QACT,oBAAoB,GAAAD,gBAAA,OAAAA,gBAAA,oBACAF,KAAK,8BAA0B,CAAC,CAAC,EAAAE,gBAAA;MAEvD,CAAC,EAAAC,IAAA,GAAAC,SAAA;IAAA,CAEH,EACF,CAAC,CACH,CAAC;MACD,QAAQ,EAAE;QACR,kBAAkB,EAAE,CAAC,CAAC;QACtB,yCAAyC,EAAE,CAAC,CAAC;QAC7C,kBAAkB,EAAE,CAAC,CAAC;QACtB,mCAAmC,EAAE,CAAC,CAAC;QACvC,uBAAuB,EAAE,CAAC,CAAC;QAC3B,mDAAmD,EAAE,CAAC,CAAC;QACvD,sBAAsB,EAAE,CAAC,CAAC;QAC1B,UAAU,EAAE;UACV,qBAAqB,EAAE,CAAC,CAAC;UACzB,4CAA4C,EAAE,CAAC,CAAC;UAChD,kBAAkB,EAAE,CAAC,CAAC;UACtB,mCAAmC,EAAE,CAAC,CAAC;UACvC,uBAAuB,EAAE,CAAC,CAAC;UAC3B,iDAAiD,EAAE,CAAC,CAAC;UACrD,WAAW,EAAE;QACf;MACF;IAAC;EAEL,CAAC;AAAA,CAAC","ignoreList":[]}
|
|
@@ -5,19 +5,20 @@ exports.Feedback = void 0;
|
|
|
5
5
|
var Feedback = exports.Feedback = function Feedback() {
|
|
6
6
|
return {
|
|
7
7
|
'.sk-ai-feedback': {
|
|
8
|
-
'@apply ml-24 flex gap-24 justify-
|
|
8
|
+
'@apply ml-24 flex gap-24 justify-start mb-16': {},
|
|
9
|
+
'@apply max-w-full': {},
|
|
9
10
|
'&-button': {
|
|
10
11
|
'&[data-current="true"]': {
|
|
11
12
|
'@apply bg-tertiary-surface-hover': {}
|
|
12
13
|
}
|
|
13
14
|
},
|
|
14
15
|
'&-more': {
|
|
15
|
-
'@apply flex flex-col gap-8
|
|
16
|
+
'@apply flex flex-col gap-8 px-14 pt-8 pb-12 bg-background-color-mixin-1 text-dark-primary rounded-button': {},
|
|
16
17
|
'&-header': {
|
|
17
18
|
'@apply flex flex-row items-center justify-between text-label-small': {}
|
|
18
19
|
},
|
|
19
20
|
'&-reason': {
|
|
20
|
-
'@apply flex flex-row items-center gap-8 justify-start': {}
|
|
21
|
+
'@apply flex flex-row items-center gap-8 justify-start flex-wrap': {}
|
|
21
22
|
}
|
|
22
23
|
}
|
|
23
24
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feedback.js","names":["Feedback","exports"],"sources":["../../../../src/components/ai/feedback.ts"],"sourcesContent":["export const Feedback = () => ({\r\n '.sk-ai-feedback': {\r\n '@apply ml-24 flex gap-24 justify-
|
|
1
|
+
{"version":3,"file":"feedback.js","names":["Feedback","exports"],"sources":["../../../../src/components/ai/feedback.ts"],"sourcesContent":["export const Feedback = () => ({\r\n '.sk-ai-feedback': {\r\n '@apply ml-24 flex gap-24 justify-start mb-16': {},\r\n '@apply max-w-full': {},\r\n '&-button': {\r\n '&[data-current=\"true\"]': {\r\n '@apply bg-tertiary-surface-hover': {},\r\n },\r\n },\r\n '&-more': {\r\n '@apply flex flex-col gap-8 px-14 pt-8 pb-12 bg-background-color-mixin-1 text-dark-primary rounded-button': {},\r\n '&-header': {\r\n '@apply flex flex-row items-center justify-between text-label-small': {},\r\n },\r\n '&-reason': {\r\n '@apply flex flex-row items-center gap-8 justify-start flex-wrap': {},\r\n },\r\n },\r\n },\r\n});\r\n"],"mappings":";;;;AAAO,IAAMA,QAAQ,GAAAC,OAAA,CAAAD,QAAA,GAAG,SAAXA,QAAQA,CAAA;EAAA,OAAU;IAC7B,iBAAiB,EAAE;MACjB,8CAA8C,EAAE,CAAC,CAAC;MAClD,mBAAmB,EAAE,CAAC,CAAC;MACvB,UAAU,EAAE;QACV,wBAAwB,EAAE;UACxB,kCAAkC,EAAE,CAAC;QACvC;MACF,CAAC;MACD,QAAQ,EAAE;QACR,0GAA0G,EAAE,CAAC,CAAC;QAC9G,UAAU,EAAE;UACV,oEAAoE,EAAE,CAAC;QACzE,CAAC;QACD,UAAU,EAAE;UACV,iEAAiE,EAAE,CAAC;QACtE;MACF;IACF;EACF,CAAC;AAAA,CAAC","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"markdown-rendered.js","names":["MarkdownRendered","exports"],"sources":["../../../../src/components/ai/markdown-rendered.ts"],"sourcesContent":["export const MarkdownRendered = () => ({\r\n '.sk-ai-markdown': {\r\n '@apply flex flex-col gap-32': {},\r\n '&-p': {\r\n '@apply mb-
|
|
1
|
+
{"version":3,"file":"markdown-rendered.js","names":["MarkdownRendered","exports"],"sources":["../../../../src/components/ai/markdown-rendered.ts"],"sourcesContent":["export const MarkdownRendered = () => ({\r\n '.sk-ai-markdown': {\r\n '@apply flex flex-col gap-32': {},\r\n '&-p': {\r\n '@apply mb-0 my-0': {},\r\n },\r\n '&-a': {\r\n '@apply my-8': {},\r\n },\r\n '&-ol': {\r\n '@apply list-decimal ml-24 my-0': {},\r\n },\r\n '&-ul': {\r\n '@apply list-disc ml-24 my-0': {},\r\n },\r\n '&-li': {\r\n '@apply my-16': {},\r\n },\r\n },\r\n});\r\n"],"mappings":";;;;AAAO,IAAMA,gBAAgB,GAAAC,OAAA,CAAAD,gBAAA,GAAG,SAAnBA,gBAAgBA,CAAA;EAAA,OAAU;IACrC,iBAAiB,EAAE;MACjB,6BAA6B,EAAE,CAAC,CAAC;MACjC,KAAK,EAAE;QACL,kBAAkB,EAAE,CAAC;MACvB,CAAC;MACD,KAAK,EAAE;QACL,aAAa,EAAE,CAAC;MAClB,CAAC;MACD,MAAM,EAAE;QACN,gCAAgC,EAAE,CAAC;MACrC,CAAC;MACD,MAAM,EAAE;QACN,6BAA6B,EAAE,CAAC;MAClC,CAAC;MACD,MAAM,EAAE;QACN,cAAc,EAAE,CAAC;MACnB;IACF;EACF,CAAC;AAAA,CAAC","ignoreList":[]}
|
|
@@ -27,7 +27,6 @@ var MenuBar = exports.MenuBar = function MenuBar(colors) {
|
|
|
27
27
|
'@apply font-bold': {},
|
|
28
28
|
'@apply gap-2 px-14 py-8': {},
|
|
29
29
|
'@apply h-full min-h-full': {},
|
|
30
|
-
'@apply text-base leading-base': {},
|
|
31
30
|
'@apply inline-flex shrink-0 flex-nowrap': {},
|
|
32
31
|
'@apply border-0': {},
|
|
33
32
|
'@apply focus-visible:bg-background-content focus-visible:ring': {},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menubar.js","names":["MenuBar","exports","colors","_extends","color","reduce","styles","_ariaCurrentPage","_firstChild","_extends2"],"sources":["../../../src/components/menubar.ts"],"sourcesContent":["export const MenuBar = (colors: string[]) => ({\r\n '.sk-menubar': {\r\n '@apply flex flex-row': {},\r\n '@apply p-8 gap-16': {},\r\n '@apply rounded-cards': {},\r\n\r\n '&[data-background=\"true\"]': {\r\n '@apply bg-background-color-mixin-1': {},\r\n },\r\n\r\n '&-item': {\r\n '@apply inline-block': {},\r\n '@apply relative': {},\r\n '@apply h-40': {},\r\n 'a, button': {\r\n color: 'unset',\r\n },\r\n\r\n '> *:first-child': {\r\n '@apply rounded-button-sm md:rounded-button-md xl:rounded-button-lg': {},\r\n '@apply cursor-pointer': {},\r\n '@apply bg-transparent text-dark-primary': {},\r\n '@apply hover:bg-tertiary-surface': {},\r\n '@apply font-bold': {},\r\n '@apply gap-2 px-14 py-8': {},\r\n '@apply h-full min-h-full': {},\r\n '@apply
|
|
1
|
+
{"version":3,"file":"menubar.js","names":["MenuBar","exports","colors","_extends","color","reduce","styles","_ariaCurrentPage","_firstChild","_extends2"],"sources":["../../../src/components/menubar.ts"],"sourcesContent":["export const MenuBar = (colors: string[]) => ({\r\n '.sk-menubar': {\r\n '@apply flex flex-row': {},\r\n '@apply p-8 gap-16': {},\r\n '@apply rounded-cards': {},\r\n\r\n '&[data-background=\"true\"]': {\r\n '@apply bg-background-color-mixin-1': {},\r\n },\r\n\r\n '&-item': {\r\n '@apply inline-block': {},\r\n '@apply relative': {},\r\n '@apply h-40': {},\r\n 'a, button': {\r\n color: 'unset',\r\n },\r\n\r\n '> *:first-child': {\r\n '@apply rounded-button-sm md:rounded-button-md xl:rounded-button-lg': {},\r\n '@apply cursor-pointer': {},\r\n '@apply bg-transparent text-dark-primary': {},\r\n '@apply hover:bg-tertiary-surface': {},\r\n '@apply font-bold': {},\r\n '@apply gap-2 px-14 py-8': {},\r\n '@apply h-full min-h-full': {},\r\n '@apply inline-flex shrink-0 flex-nowrap': {},\r\n\r\n '@apply border-0': {},\r\n '@apply focus-visible:bg-background-content focus-visible:ring': {},\r\n '&[aria-current=\"page\"]:not(:hover),&[aria-selected=\"true\"]:not(:hover), ': {\r\n '@apply bg-primary-surface text-light-primary': {},\r\n '@apply focus-visible:ring': {},\r\n },\r\n },\r\n ...colors.reduce(\r\n (styles, color) => ({\r\n ...styles,\r\n [`&[data-color=\"${color}\"]`]: {\r\n '> *:first-child': {\r\n [`@apply hover:bg-${color}-surface-accent`]: {},\r\n [`@apply hover:text-${color}-text-primary`]: {},\r\n '@apply focus-visible:bg-background-content focus-visible:ring': {},\r\n '&[aria-current=\"page\"]:not(:hover),&[aria-selected=\"true\"]:not(:hover)': {\r\n [`@apply bg-${color}-surface-primary`]: {},\r\n '@apply focus-visible:ring': {},\r\n },\r\n },\r\n },\r\n }),\r\n {}\r\n ),\r\n },\r\n },\r\n});\r\n"],"mappings":";;;;;AAAO,IAAMA,OAAO,GAAAC,OAAA,CAAAD,OAAA,GAAG,SAAVA,OAAOA,CAAIE,MAAgB;EAAA,OAAM;IAC5C,aAAa,EAAE;MACb,sBAAsB,EAAE,CAAC,CAAC;MAC1B,mBAAmB,EAAE,CAAC,CAAC;MACvB,sBAAsB,EAAE,CAAC,CAAC;MAE1B,2BAA2B,EAAE;QAC3B,oCAAoC,EAAE,CAAC;MACzC,CAAC;MAED,QAAQ,EAAAC,QAAA;QACN,qBAAqB,EAAE,CAAC,CAAC;QACzB,iBAAiB,EAAE,CAAC,CAAC;QACrB,aAAa,EAAE,CAAC,CAAC;QACjB,WAAW,EAAE;UACXC,KAAK,EAAE;QACT,CAAC;QAED,iBAAiB,EAAE;UACjB,oEAAoE,EAAE,CAAC,CAAC;UACxE,uBAAuB,EAAE,CAAC,CAAC;UAC3B,yCAAyC,EAAE,CAAC,CAAC;UAC7C,kCAAkC,EAAE,CAAC,CAAC;UACtC,kBAAkB,EAAE,CAAC,CAAC;UACtB,yBAAyB,EAAE,CAAC,CAAC;UAC7B,0BAA0B,EAAE,CAAC,CAAC;UAC9B,yCAAyC,EAAE,CAAC,CAAC;UAE7C,iBAAiB,EAAE,CAAC,CAAC;UACrB,+DAA+D,EAAE,CAAC,CAAC;UACnE,0EAA0E,EAAE;YAC1E,8CAA8C,EAAE,CAAC,CAAC;YAClD,2BAA2B,EAAE,CAAC;UAChC;QACF;MAAC,GACEF,MAAM,CAACG,MAAM,CACd,UAACC,MAAM,EAAEF,KAAK;QAAA,IAAAG,gBAAA,EAAAC,WAAA,EAAAC,SAAA;QAAA,OAAAN,QAAA,KACTG,MAAM,GAAAG,SAAA,OAAAA,SAAA,qBACSL,KAAK,YAAO;UAC5B,iBAAiB,GAAAI,WAAA,OAAAA,WAAA,sBACKJ,KAAK,wBAAoB,CAAC,CAAC,EAAAI,WAAA,wBACzBJ,KAAK,sBAAkB,CAAC,CAAC,EAAAI,WAAA,CAC/C,+DAA+D,IAAE,CAAC,CAAC,EAAAA,WAAA,CACnE,wEAAwE,KAAAD,gBAAA,OAAAA,gBAAA,gBACxDH,KAAK,yBAAqB,CAAC,CAAC,EAAAG,gBAAA,CAC1C,2BAA2B,IAAE,CAAC,CAAC,EAAAA,gBAAA,GAAAC,WAAA;QAGrC,CAAC,EAAAC,SAAA;MAAA,CACD,EACF,CAAC,CACH,CAAC;IAEL;EACF,CAAC;AAAA,CAAC","ignoreList":[]}
|
|
@@ -1,22 +1,27 @@
|
|
|
1
1
|
export var AIFeed = () => ({
|
|
2
2
|
'.sk-ai-feed': {
|
|
3
|
-
'@apply
|
|
3
|
+
'@apply h-auto max-h-full flex flex-col gap-32': {},
|
|
4
4
|
'&-entry': {
|
|
5
5
|
'@apply flex items-start gap-12': {},
|
|
6
|
+
'@apply w-full': {},
|
|
6
7
|
'&-avatar': {
|
|
7
8
|
'@apply grow-0 shrink-0 w-fit': {}
|
|
8
9
|
},
|
|
9
10
|
'&-container': {
|
|
10
|
-
'@apply flex flex-col pb-20 gap-20': {}
|
|
11
|
+
'@apply flex flex-col pb-20 gap-20': {},
|
|
12
|
+
'@apply w-full': {}
|
|
11
13
|
},
|
|
12
14
|
'&-content': {
|
|
13
15
|
'@apply break-words max-w-full flex flex-col grow gap-4': {}
|
|
14
16
|
},
|
|
15
17
|
'&-heading': {
|
|
16
|
-
'@apply text-large font-bold': {}
|
|
18
|
+
'@apply text-large font-bold': {},
|
|
19
|
+
'&[data-showtitle="false"]': {
|
|
20
|
+
'@apply w-0 h-0 opacity-0': {}
|
|
21
|
+
}
|
|
17
22
|
},
|
|
18
23
|
'&-references': {
|
|
19
|
-
'@apply bg-background-200 rounded-button
|
|
24
|
+
'@apply bg-background-200 rounded-button py-0 pl-20 pr-12 gap-8 text-dark-primary': {},
|
|
20
25
|
'&-header': {
|
|
21
26
|
'@apply text-dark-primary': {}
|
|
22
27
|
},
|
|
@@ -29,6 +34,23 @@ export var AIFeed = () => ({
|
|
|
29
34
|
}
|
|
30
35
|
}
|
|
31
36
|
}
|
|
37
|
+
},
|
|
38
|
+
'&-live-wrapper': {
|
|
39
|
+
'@apply absolute w-1 h-1 -m-1 overflow-hidden whitespace-nowrap p-0 opacity-0': {}
|
|
40
|
+
},
|
|
41
|
+
'&[data-size="lg"]': {
|
|
42
|
+
'.sk-ai-feed-avatar, .sk-avatar': {
|
|
43
|
+
'@apply w-40 h-40': {}
|
|
44
|
+
},
|
|
45
|
+
'.sk-ai-feed-container': {
|
|
46
|
+
'@apply pb-32 gap-32': {},
|
|
47
|
+
'@apply w-full': {}
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
'&[data-size="sm"]': {
|
|
51
|
+
'.sk-ai-feed-avatar, .sk-avatar': {
|
|
52
|
+
'@apply w-32 h-32': {}
|
|
53
|
+
}
|
|
32
54
|
}
|
|
33
55
|
}
|
|
34
56
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai-feed.js","names":["AIFeed"],"sources":["../../../../src/components/ai/ai-feed.ts"],"sourcesContent":["export const AIFeed = () => ({\r\n '.sk-ai-feed': {\r\n '@apply
|
|
1
|
+
{"version":3,"file":"ai-feed.js","names":["AIFeed"],"sources":["../../../../src/components/ai/ai-feed.ts"],"sourcesContent":["export const AIFeed = () => ({\r\n '.sk-ai-feed': {\r\n '@apply h-auto max-h-full flex flex-col gap-32': {},\r\n '&-entry': {\r\n '@apply flex items-start gap-12': {},\r\n '@apply w-full': {},\r\n '&-avatar': {\r\n '@apply grow-0 shrink-0 w-fit': {},\r\n },\r\n '&-container': {\r\n '@apply flex flex-col pb-20 gap-20': {},\r\n '@apply w-full': {},\r\n },\r\n '&-content': {\r\n '@apply break-words max-w-full flex flex-col grow gap-4': {},\r\n },\r\n '&-heading': {\r\n '@apply text-large font-bold': {},\r\n '&[data-showtitle=\"false\"]': {\r\n '@apply w-0 h-0 opacity-0': {},\r\n },\r\n },\r\n '&-references': {\r\n '@apply bg-background-200 rounded-button py-0 pl-20 pr-12 gap-8 text-dark-primary': {},\r\n '&-header': {\r\n '@apply text-dark-primary': {},\r\n },\r\n '&-list': {\r\n '&-item': {\r\n '@apply max-w-full w-full my-8 rounded-6 whitespace-normal text-base': {},\r\n '.sk-link': {\r\n '@apply dark:text-dark-primary': {},\r\n },\r\n },\r\n },\r\n },\r\n },\r\n '&-live-wrapper': {\r\n '@apply absolute w-1 h-1 -m-1 overflow-hidden whitespace-nowrap p-0 opacity-0': {},\r\n },\r\n\r\n '&[data-size=\"lg\"]': {\r\n '.sk-ai-feed-avatar, .sk-avatar': {\r\n '@apply w-40 h-40': {},\r\n },\r\n '.sk-ai-feed-container': {\r\n '@apply pb-32 gap-32': {},\r\n '@apply w-full': {},\r\n },\r\n },\r\n '&[data-size=\"sm\"]': {\r\n '.sk-ai-feed-avatar, .sk-avatar': {\r\n '@apply w-32 h-32': {},\r\n },\r\n },\r\n },\r\n});\r\n"],"mappings":"AAAA,OAAO,IAAMA,MAAM,GAAGA,CAAA,MAAO;EAC3B,aAAa,EAAE;IACb,+CAA+C,EAAE,CAAC,CAAC;IACnD,SAAS,EAAE;MACT,gCAAgC,EAAE,CAAC,CAAC;MACpC,eAAe,EAAE,CAAC,CAAC;MACnB,UAAU,EAAE;QACV,8BAA8B,EAAE,CAAC;MACnC,CAAC;MACD,aAAa,EAAE;QACb,mCAAmC,EAAE,CAAC,CAAC;QACvC,eAAe,EAAE,CAAC;MACpB,CAAC;MACD,WAAW,EAAE;QACX,wDAAwD,EAAE,CAAC;MAC7D,CAAC;MACD,WAAW,EAAE;QACX,6BAA6B,EAAE,CAAC,CAAC;QACjC,2BAA2B,EAAE;UAC3B,0BAA0B,EAAE,CAAC;QAC/B;MACF,CAAC;MACD,cAAc,EAAE;QACd,kFAAkF,EAAE,CAAC,CAAC;QACtF,UAAU,EAAE;UACV,0BAA0B,EAAE,CAAC;QAC/B,CAAC;QACD,QAAQ,EAAE;UACR,QAAQ,EAAE;YACR,qEAAqE,EAAE,CAAC,CAAC;YACzE,UAAU,EAAE;cACV,+BAA+B,EAAE,CAAC;YACpC;UACF;QACF;MACF;IACF,CAAC;IACD,gBAAgB,EAAE;MAChB,8EAA8E,EAAE,CAAC;IACnF,CAAC;IAED,mBAAmB,EAAE;MACnB,gCAAgC,EAAE;QAChC,kBAAkB,EAAE,CAAC;MACvB,CAAC;MACD,uBAAuB,EAAE;QACvB,qBAAqB,EAAE,CAAC,CAAC;QACzB,eAAe,EAAE,CAAC;MACpB;IACF,CAAC;IACD,mBAAmB,EAAE;MACnB,gCAAgC,EAAE;QAChC,kBAAkB,EAAE,CAAC;MACvB;IACF;EACF;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -2,27 +2,40 @@ function _extends() { _extends = Object.assign ? Object.assign.bind() : function
|
|
|
2
2
|
export var AIModule = colors => ({
|
|
3
3
|
'.sk-ai-module': {
|
|
4
4
|
'@apply fixed': {},
|
|
5
|
+
'@apply overflow-hidden': {},
|
|
5
6
|
'@apply flex flex-col gap-0 items-center justify-start': {},
|
|
6
7
|
'@apply shadow-200': {},
|
|
7
|
-
'@apply overflow-hidden': {},
|
|
8
8
|
'@apply transition-all': {},
|
|
9
9
|
'@apply bottom-0 right-0': {},
|
|
10
10
|
'&-content': {
|
|
11
11
|
'@apply flex w-full gap-0 h-full justify-between': {},
|
|
12
|
+
'@apply overflow-hidden': {},
|
|
12
13
|
'&-row': {
|
|
13
14
|
'@apply flex flex-col': {}
|
|
15
|
+
},
|
|
16
|
+
'&-main': {
|
|
17
|
+
'@apply grow shrink max-h-full items-center': {}
|
|
14
18
|
}
|
|
15
19
|
},
|
|
16
20
|
'&-sidebar': {
|
|
17
21
|
'@apply flex flex-col': {},
|
|
18
22
|
'@apply min-w-[22em]': {},
|
|
19
23
|
'@apply h-full': {},
|
|
24
|
+
'@apply overflow-hidden': {},
|
|
20
25
|
'@apply border-r-1 border-r-divider': {},
|
|
21
|
-
'@apply pt-20 px-
|
|
26
|
+
'@apply pt-20 px-0 gap-16': {},
|
|
27
|
+
'&-sessions': {
|
|
28
|
+
'@apply flex flex-col': {},
|
|
29
|
+
'@apply grow w-full': {},
|
|
30
|
+
'@apply overflow-y-auto': {},
|
|
31
|
+
'@apply px-24 pb-20 gap-16': {}
|
|
32
|
+
}
|
|
22
33
|
},
|
|
23
34
|
'&-feed': {
|
|
24
35
|
'@apply flex flex-col grow': {},
|
|
25
36
|
'@apply px-16 pt-16 pb-24 gap-16': {},
|
|
37
|
+
'@apply w-full': {},
|
|
38
|
+
'@apply max-h-full overflow-y-auto': {},
|
|
26
39
|
'&-questions': {
|
|
27
40
|
'@apply flex flex-col gap-8 w-full': {},
|
|
28
41
|
'&-title': {
|
|
@@ -33,22 +46,44 @@ export var AIModule = colors => ({
|
|
|
33
46
|
}
|
|
34
47
|
}
|
|
35
48
|
},
|
|
49
|
+
'.sk-ai-inputsection': {
|
|
50
|
+
'@apply shrink-0': {}
|
|
51
|
+
},
|
|
36
52
|
'&[data-fullscreen="false"]': {
|
|
37
53
|
'@apply rounded-tl-groups': {},
|
|
38
|
-
'@apply max-w-[26em]': {}
|
|
54
|
+
'@apply max-w-[26em]': {},
|
|
55
|
+
'@apply w-[26em]': {},
|
|
56
|
+
'@apply max-h-[44em]': {},
|
|
57
|
+
'&[data-docked="false"]': {
|
|
58
|
+
'@apply h-full': {}
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
'.sk-ai-feed': {
|
|
62
|
+
'@apply w-full': {}
|
|
39
63
|
},
|
|
40
64
|
'&[data-fullscreen="true"]': {
|
|
41
|
-
'@apply w-full
|
|
65
|
+
'@apply w-full': {},
|
|
42
66
|
'.sk-ai-module-feed': {
|
|
43
67
|
'@apply gap-40 grow w-full items-center': {},
|
|
68
|
+
'.sk-ai-feed': {
|
|
69
|
+
'@apply text-base max-w-[50em]': {}
|
|
70
|
+
},
|
|
44
71
|
'&-questions': {
|
|
45
|
-
'@apply flex-row gap-16': {}
|
|
72
|
+
'@apply flex-row gap-16': {},
|
|
73
|
+
'&-wrapper': {
|
|
74
|
+
'@apply text-base max-w-[50em]': {}
|
|
75
|
+
}
|
|
46
76
|
}
|
|
77
|
+
},
|
|
78
|
+
'.sk-ai-inputsection': {
|
|
79
|
+
'@apply text-base max-w-[50em]': {},
|
|
80
|
+
'@apply pt-20 pb-32': {}
|
|
47
81
|
}
|
|
48
82
|
},
|
|
49
83
|
'&-header': _extends({
|
|
50
84
|
'@apply flex items-center justify-between': {},
|
|
51
85
|
'@apply w-full': {},
|
|
86
|
+
'@apply shrink-0': {},
|
|
52
87
|
'@apply px-14 py-16': {},
|
|
53
88
|
'@apply transition-all': {},
|
|
54
89
|
'@apply bg-inverted-background-content': {},
|
|
@@ -74,7 +109,7 @@ export var AIModule = colors => ({
|
|
|
74
109
|
'@apply gap-12': {}
|
|
75
110
|
},
|
|
76
111
|
'&[data-variant="alt"]': {
|
|
77
|
-
'@apply
|
|
112
|
+
'@apply pt-0 px-24': {},
|
|
78
113
|
'@apply bg-transparent': {},
|
|
79
114
|
'.sk-avatar': {
|
|
80
115
|
'@apply w-56 h-56': {}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai-module.js","names":["AIModule","colors","_extends","reduce","styles","color"],"sources":["../../../../src/components/ai/ai-module.ts"],"sourcesContent":["export const AIModule = (colors: string[]) => ({\r\n '.sk-ai-module': {\r\n '@apply fixed': {},\r\n '@apply flex flex-col gap-0 items-center justify-start': {},\r\n '@apply shadow-200': {},\r\n '@apply
|
|
1
|
+
{"version":3,"file":"ai-module.js","names":["AIModule","colors","_extends","reduce","styles","color"],"sources":["../../../../src/components/ai/ai-module.ts"],"sourcesContent":["export const AIModule = (colors: string[]) => ({\r\n '.sk-ai-module': {\r\n '@apply fixed': {},\r\n '@apply overflow-hidden': {},\r\n '@apply flex flex-col gap-0 items-center justify-start': {},\r\n '@apply shadow-200': {},\r\n '@apply transition-all': {},\r\n '@apply bottom-0 right-0': {},\r\n\r\n '&-content': {\r\n '@apply flex w-full gap-0 h-full justify-between': {},\r\n '@apply overflow-hidden': {},\r\n '&-row': {\r\n '@apply flex flex-col': {},\r\n },\r\n '&-main': {\r\n '@apply grow shrink max-h-full items-center': {},\r\n },\r\n },\r\n\r\n '&-sidebar': {\r\n '@apply flex flex-col': {},\r\n '@apply min-w-[22em]': {},\r\n '@apply h-full': {},\r\n '@apply overflow-hidden': {},\r\n '@apply border-r-1 border-r-divider': {},\r\n '@apply pt-20 px-0 gap-16': {},\r\n '&-sessions': {\r\n '@apply flex flex-col': {},\r\n '@apply grow w-full': {},\r\n '@apply overflow-y-auto': {},\r\n '@apply px-24 pb-20 gap-16': {},\r\n },\r\n },\r\n '&-feed': {\r\n '@apply flex flex-col grow': {},\r\n '@apply px-16 pt-16 pb-24 gap-16': {},\r\n '@apply w-full': {},\r\n '@apply max-h-full overflow-y-auto': {},\r\n '&-questions': {\r\n '@apply flex flex-col gap-8 w-full': {},\r\n '&-title': {\r\n '@apply text-label-medium text-dark-primary': {},\r\n },\r\n '&-wrapper': {\r\n '@apply flex flex-col gap-16 w-full': {},\r\n },\r\n },\r\n },\r\n '.sk-ai-inputsection': {\r\n '@apply shrink-0': {},\r\n },\r\n '&[data-fullscreen=\"false\"]': {\r\n '@apply rounded-tl-groups': {},\r\n '@apply max-w-[26em]': {},\r\n '@apply w-[26em]': {},\r\n '@apply max-h-[44em]': {},\r\n '&[data-docked=\"false\"]': {\r\n '@apply h-full': {},\r\n },\r\n },\r\n '.sk-ai-feed': {\r\n '@apply w-full': {},\r\n },\r\n '&[data-fullscreen=\"true\"]': {\r\n '@apply w-full': {},\r\n '.sk-ai-module-feed': {\r\n '@apply gap-40 grow w-full items-center': {},\r\n '.sk-ai-feed': {\r\n '@apply text-base max-w-[50em]': {},\r\n },\r\n '&-questions': {\r\n '@apply flex-row gap-16': {},\r\n '&-wrapper': {\r\n '@apply text-base max-w-[50em]': {},\r\n },\r\n },\r\n },\r\n '.sk-ai-inputsection': {\r\n '@apply text-base max-w-[50em]': {},\r\n '@apply pt-20 pb-32': {},\r\n },\r\n },\r\n\r\n '&-header': {\r\n '@apply flex items-center justify-between': {},\r\n '@apply w-full': {},\r\n '@apply shrink-0': {},\r\n '@apply px-14 py-16': {},\r\n '@apply transition-all': {},\r\n '@apply bg-inverted-background-content': {},\r\n '@apply text-inverted-dark-primary': {},\r\n\r\n '&[data-docked=\"true\"]': {\r\n '@apply px-12 pt-10 pb-12': {},\r\n },\r\n\r\n '&-title': {\r\n '@apply flex justify-start items-center': {},\r\n '@apply gap-12 pr-16': {},\r\n },\r\n '&-heading': {\r\n '@apply flex flex-col gap-0': {},\r\n '&-name': {\r\n '@apply text-label-medium': {},\r\n },\r\n '&-subtitle': {\r\n '@apply text-small text-inverted-dark-secondary': {},\r\n },\r\n },\r\n\r\n '&-menu': {\r\n '@apply flex justify-center items-center': {},\r\n '@apply gap-12': {},\r\n },\r\n\r\n '&[data-variant=\"alt\"]': {\r\n '@apply pt-0 px-24': {},\r\n '@apply bg-transparent': {},\r\n '.sk-avatar': {\r\n '@apply w-56 h-56': {},\r\n },\r\n '.sk-ai-module-header-heading-name': {\r\n '@apply text-label-large text-dark-primary': {},\r\n },\r\n '.sk-ai-module-header-heading-subtitle': {\r\n '@apply text-small text-dark-secondary': {},\r\n },\r\n },\r\n\r\n ...colors.reduce(\r\n (styles, color) => ({\r\n ...styles,\r\n\r\n [`&[data-color=\"${color}\"]`]: {\r\n [`@apply bg-${color}-surface-primary`]: {},\r\n },\r\n }),\r\n {}\r\n ),\r\n '&[data-fullscreen=\"true\"]': {\r\n '@apply bg-background-content': {},\r\n '@apply text-dark-primary': {},\r\n '@apply px-20 pt-20 pb-12': {},\r\n },\r\n },\r\n '&-sessions': {\r\n '@apply px-20': {},\r\n '&-history': {\r\n '@apply flex flex-col p-8 gap-16': {},\r\n '&-list': {\r\n '@apply flex flex-col p-0 gap-8': {},\r\n },\r\n },\r\n },\r\n },\r\n});\r\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -2,6 +2,7 @@ export var AssistantPresentation = () => ({
|
|
|
2
2
|
'.sk-ai-assistant-presentation': {
|
|
3
3
|
'@apply flex flex-col gap-16 items-center justify-center': {},
|
|
4
4
|
'@apply text-base': {},
|
|
5
|
+
'@apply h-full grow': {},
|
|
5
6
|
'&-header': {
|
|
6
7
|
'@apply flex flex-col items-center justify-start': {},
|
|
7
8
|
'&-title': {
|
|
@@ -12,7 +13,7 @@ export var AssistantPresentation = () => ({
|
|
|
12
13
|
}
|
|
13
14
|
},
|
|
14
15
|
'&[data-size="lg"]': {
|
|
15
|
-
'@apply min-h-[25.5em]
|
|
16
|
+
'@apply min-h-[25.5em]': {},
|
|
16
17
|
'@apply p-24': {},
|
|
17
18
|
'@apply max-w-[27em]': {},
|
|
18
19
|
'.sk-avatar': {
|
|
@@ -30,7 +31,6 @@ export var AssistantPresentation = () => ({
|
|
|
30
31
|
}
|
|
31
32
|
},
|
|
32
33
|
'&[data-size="sm"]': {
|
|
33
|
-
'@apply min-h-[24em]': {},
|
|
34
34
|
'.sk-avatar': {
|
|
35
35
|
'@apply w-72 h-72': {},
|
|
36
36
|
'@apply max-w-72 max-h-72': {}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"assistant-presentation.js","names":["AssistantPresentation"],"sources":["../../../../src/components/ai/assistant-presentation.ts"],"sourcesContent":["export const AssistantPresentation = () => ({\r\n '.sk-ai-assistant-presentation': {\r\n '@apply flex flex-col gap-16 items-center justify-center': {},\r\n '@apply text-base': {},\r\n\r\n '&-header': {\r\n '@apply flex flex-col items-center justify-start': {},\r\n '&-title': {\r\n '@apply text-dark-primary text-center w-full': {},\r\n },\r\n '&-description': {\r\n '@apply text-dark-secondary text-center w-full': {},\r\n },\r\n },\r\n\r\n '&[data-size=\"lg\"]': {\r\n '@apply min-h-[25.5em]
|
|
1
|
+
{"version":3,"file":"assistant-presentation.js","names":["AssistantPresentation"],"sources":["../../../../src/components/ai/assistant-presentation.ts"],"sourcesContent":["export const AssistantPresentation = () => ({\r\n '.sk-ai-assistant-presentation': {\r\n '@apply flex flex-col gap-16 items-center justify-center': {},\r\n '@apply text-base': {},\r\n '@apply h-full grow': {},\r\n\r\n '&-header': {\r\n '@apply flex flex-col items-center justify-start': {},\r\n '&-title': {\r\n '@apply text-dark-primary text-center w-full': {},\r\n },\r\n '&-description': {\r\n '@apply text-dark-secondary text-center w-full': {},\r\n },\r\n },\r\n\r\n '&[data-size=\"lg\"]': {\r\n '@apply min-h-[25.5em]': {},\r\n '@apply p-24': {},\r\n '@apply max-w-[27em]': {},\r\n\r\n '.sk-avatar': {\r\n '@apply w-90-1 h-90-1': {},\r\n '@apply max-w-90-1 max-h-90-1': {},\r\n },\r\n '.sk-ai-assistant-presentation-header': {\r\n '@apply gap-6 pb-24': {},\r\n '&-title': {\r\n '@apply text-h3-lg': {},\r\n },\r\n '&-description': {\r\n '@apply text-lead': {},\r\n },\r\n },\r\n },\r\n '&[data-size=\"sm\"]': {\r\n '.sk-avatar': {\r\n '@apply w-72 h-72': {},\r\n '@apply max-w-72 max-h-72': {},\r\n },\r\n '.sk-ai-assistant-presentation-header': {\r\n '@apply gap-4 pb-16': {},\r\n '&-title': {\r\n '@apply text-h3-md': {},\r\n },\r\n '&-description': {\r\n '@apply text-small': {},\r\n },\r\n },\r\n },\r\n },\r\n});\r\n"],"mappings":"AAAA,OAAO,IAAMA,qBAAqB,GAAGA,CAAA,MAAO;EAC1C,+BAA+B,EAAE;IAC/B,yDAAyD,EAAE,CAAC,CAAC;IAC7D,kBAAkB,EAAE,CAAC,CAAC;IACtB,oBAAoB,EAAE,CAAC,CAAC;IAExB,UAAU,EAAE;MACV,iDAAiD,EAAE,CAAC,CAAC;MACrD,SAAS,EAAE;QACT,6CAA6C,EAAE,CAAC;MAClD,CAAC;MACD,eAAe,EAAE;QACf,+CAA+C,EAAE,CAAC;MACpD;IACF,CAAC;IAED,mBAAmB,EAAE;MACnB,uBAAuB,EAAE,CAAC,CAAC;MAC3B,aAAa,EAAE,CAAC,CAAC;MACjB,qBAAqB,EAAE,CAAC,CAAC;MAEzB,YAAY,EAAE;QACZ,sBAAsB,EAAE,CAAC,CAAC;QAC1B,8BAA8B,EAAE,CAAC;MACnC,CAAC;MACD,sCAAsC,EAAE;QACtC,oBAAoB,EAAE,CAAC,CAAC;QACxB,SAAS,EAAE;UACT,mBAAmB,EAAE,CAAC;QACxB,CAAC;QACD,eAAe,EAAE;UACf,kBAAkB,EAAE,CAAC;QACvB;MACF;IACF,CAAC;IACD,mBAAmB,EAAE;MACnB,YAAY,EAAE;QACZ,kBAAkB,EAAE,CAAC,CAAC;QACtB,0BAA0B,EAAE,CAAC;MAC/B,CAAC;MACD,sCAAsC,EAAE;QACtC,oBAAoB,EAAE,CAAC,CAAC;QACxB,SAAS,EAAE;UACT,mBAAmB,EAAE,CAAC;QACxB,CAAC;QACD,eAAe,EAAE;UACf,mBAAmB,EAAE,CAAC;QACxB;MACF;IACF;EACF;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -7,7 +7,7 @@ export var Bubble = colors => ({
|
|
|
7
7
|
'@apply rounded-t-button rounded-br-button': {},
|
|
8
8
|
'@apply pt-10 pr-12 pb-10 pl-14': {},
|
|
9
9
|
'@apply gap-16': {},
|
|
10
|
-
'@apply shadow-[
|
|
10
|
+
'@apply shadow-[0_1px_0_0_rgba(0,0,0,0.2)]': {},
|
|
11
11
|
'@apply text-small': {},
|
|
12
12
|
'@apply text-dark-secondary': {}
|
|
13
13
|
}, colors.reduce((styles, color) => _extends({}, styles, {
|
|
@@ -24,20 +24,21 @@ export var Bubble = colors => ({
|
|
|
24
24
|
}
|
|
25
25
|
}), {}), {
|
|
26
26
|
'&-tail': {
|
|
27
|
-
'@apply
|
|
27
|
+
'@apply text-base': {},
|
|
28
|
+
'@apply absolute left-0 bottom-[-1.25em]': {},
|
|
28
29
|
'@apply w-32 h-32': {},
|
|
29
30
|
'@apply rounded-tl-16 rounded-bl-0': {},
|
|
30
31
|
'@apply bg-transparent': {},
|
|
31
|
-
'@apply shadow-[0_-
|
|
32
|
+
'@apply shadow-[0_-1em_0_0_var(--tw-shadow-color)]': {},
|
|
32
33
|
'@apply scale-y-[25%]': {},
|
|
33
34
|
'&:before': {
|
|
34
35
|
'@apply content-[""]': {},
|
|
35
|
-
'@apply absolute left-0 bottom-[-0.
|
|
36
|
+
'@apply absolute left-0 bottom-[-0.15625em]': {},
|
|
36
37
|
'@apply w-32 h-32': {},
|
|
37
38
|
'@apply rounded-tl-16 rounded-bl-0': {},
|
|
38
39
|
'@apply bg-transparent': {},
|
|
39
|
-
'@apply shadow-[0_-0.
|
|
40
|
-
'clip-path': 'polygon(0 0, 0
|
|
40
|
+
'@apply shadow-[0_-0.15625em_0_0_rgb(0,0,0,0.2)]': {},
|
|
41
|
+
'clip-path': 'polygon(0 0, 0 1em, 0.25em 1em, 0.59375em 0)'
|
|
41
42
|
}
|
|
42
43
|
}
|
|
43
44
|
})
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bubble.js","names":["Bubble","colors","_extends","reduce","styles","color"],"sources":["../../../../src/components/ai/bubble.ts"],"sourcesContent":["export const Bubble = (colors: string[]) => ({\r\n '.sk-ai-bubble': {\r\n '@apply inline-flex text-left items-center justify-start': {},\r\n '@apply w-fit': {},\r\n '@apply relative': {},\r\n '@apply rounded-t-button rounded-br-button': {},\r\n '@apply pt-10 pr-12 pb-10 pl-14': {},\r\n '@apply gap-16': {},\r\n '@apply shadow-[
|
|
1
|
+
{"version":3,"file":"bubble.js","names":["Bubble","colors","_extends","reduce","styles","color"],"sources":["../../../../src/components/ai/bubble.ts"],"sourcesContent":["export const Bubble = (colors: string[]) => ({\r\n '.sk-ai-bubble': {\r\n '@apply inline-flex text-left items-center justify-start': {},\r\n '@apply w-fit': {},\r\n '@apply relative': {},\r\n '@apply rounded-t-button rounded-br-button': {},\r\n '@apply pt-10 pr-12 pb-10 pl-14': {},\r\n '@apply gap-16': {},\r\n '@apply shadow-[0_1px_0_0_rgba(0,0,0,0.2)]': {},\r\n '@apply text-small': {},\r\n '@apply text-dark-secondary': {},\r\n ...colors.reduce(\r\n (styles, color) => ({\r\n ...styles,\r\n\r\n [`&[data-color=\"${color}\"]`]: {\r\n [`@apply bg-${color}-surface-accent hover:bg-${color}-surface-accent-hover`]: {},\r\n '.sk-ai-bubble-tail': {\r\n [`@apply shadow-${color}-surface-accent`]: {},\r\n },\r\n '&:hover': {\r\n '.sk-ai-bubble-tail': {\r\n [`@apply shadow-${color}-surface-accent-hover`]: {},\r\n },\r\n },\r\n },\r\n }),\r\n {}\r\n ),\r\n '&-tail': {\r\n '@apply text-base': {},\r\n '@apply absolute left-0 bottom-[-1.25em]': {},\r\n '@apply w-32 h-32': {},\r\n '@apply rounded-tl-16 rounded-bl-0': {},\r\n '@apply bg-transparent': {},\r\n '@apply shadow-[0_-1em_0_0_var(--tw-shadow-color)]': {},\r\n '@apply scale-y-[25%]': {},\r\n '&:before': {\r\n '@apply content-[\"\"]': {},\r\n '@apply absolute left-0 bottom-[-0.15625em]': {},\r\n '@apply w-32 h-32': {},\r\n '@apply rounded-tl-16 rounded-bl-0': {},\r\n '@apply bg-transparent': {},\r\n '@apply shadow-[0_-0.15625em_0_0_rgb(0,0,0,0.2)]': {},\r\n 'clip-path': 'polygon(0 0, 0 1em, 0.25em 1em, 0.59375em 0)',\r\n },\r\n },\r\n },\r\n});\r\n"],"mappings":";AAAA,OAAO,IAAMA,MAAM,GAAIC,MAAgB,KAAM;EAC3C,eAAe,EAAAC,QAAA;IACb,yDAAyD,EAAE,CAAC,CAAC;IAC7D,cAAc,EAAE,CAAC,CAAC;IAClB,iBAAiB,EAAE,CAAC,CAAC;IACrB,2CAA2C,EAAE,CAAC,CAAC;IAC/C,gCAAgC,EAAE,CAAC,CAAC;IACpC,eAAe,EAAE,CAAC,CAAC;IACnB,2CAA2C,EAAE,CAAC,CAAC;IAC/C,mBAAmB,EAAE,CAAC,CAAC;IACvB,4BAA4B,EAAE,CAAC;EAAC,GAC7BD,MAAM,CAACE,MAAM,CACd,CAACC,MAAM,EAAEC,KAAK,KAAAH,QAAA,KACTE,MAAM;IAET,qBAAkBC,KAAK,WAAO;MAC5B,gBAAcA,KAAK,iCAA4BA,KAAK,6BAA0B,CAAC,CAAC;MAChF,oBAAoB,EAAE;QACpB,oBAAkBA,KAAK,uBAAoB,CAAC;MAC9C,CAAC;MACD,SAAS,EAAE;QACT,oBAAoB,EAAE;UACpB,oBAAkBA,KAAK,6BAA0B,CAAC;QACpD;MACF;IACF;EAAC,EACD,EACF,CAAC,CACH,CAAC;IACD,QAAQ,EAAE;MACR,kBAAkB,EAAE,CAAC,CAAC;MACtB,yCAAyC,EAAE,CAAC,CAAC;MAC7C,kBAAkB,EAAE,CAAC,CAAC;MACtB,mCAAmC,EAAE,CAAC,CAAC;MACvC,uBAAuB,EAAE,CAAC,CAAC;MAC3B,mDAAmD,EAAE,CAAC,CAAC;MACvD,sBAAsB,EAAE,CAAC,CAAC;MAC1B,UAAU,EAAE;QACV,qBAAqB,EAAE,CAAC,CAAC;QACzB,4CAA4C,EAAE,CAAC,CAAC;QAChD,kBAAkB,EAAE,CAAC,CAAC;QACtB,mCAAmC,EAAE,CAAC,CAAC;QACvC,uBAAuB,EAAE,CAAC,CAAC;QAC3B,iDAAiD,EAAE,CAAC,CAAC;QACrD,WAAW,EAAE;MACf;IACF;EAAC;AAEL,CAAC,CAAC","ignoreList":[]}
|
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
export var Feedback = () => ({
|
|
2
2
|
'.sk-ai-feedback': {
|
|
3
|
-
'@apply ml-24 flex gap-24 justify-
|
|
3
|
+
'@apply ml-24 flex gap-24 justify-start mb-16': {},
|
|
4
|
+
'@apply max-w-full': {},
|
|
4
5
|
'&-button': {
|
|
5
6
|
'&[data-current="true"]': {
|
|
6
7
|
'@apply bg-tertiary-surface-hover': {}
|
|
7
8
|
}
|
|
8
9
|
},
|
|
9
10
|
'&-more': {
|
|
10
|
-
'@apply flex flex-col gap-8
|
|
11
|
+
'@apply flex flex-col gap-8 px-14 pt-8 pb-12 bg-background-color-mixin-1 text-dark-primary rounded-button': {},
|
|
11
12
|
'&-header': {
|
|
12
13
|
'@apply flex flex-row items-center justify-between text-label-small': {}
|
|
13
14
|
},
|
|
14
15
|
'&-reason': {
|
|
15
|
-
'@apply flex flex-row items-center gap-8 justify-start': {}
|
|
16
|
+
'@apply flex flex-row items-center gap-8 justify-start flex-wrap': {}
|
|
16
17
|
}
|
|
17
18
|
}
|
|
18
19
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feedback.js","names":["Feedback"],"sources":["../../../../src/components/ai/feedback.ts"],"sourcesContent":["export const Feedback = () => ({\r\n '.sk-ai-feedback': {\r\n '@apply ml-24 flex gap-24 justify-
|
|
1
|
+
{"version":3,"file":"feedback.js","names":["Feedback"],"sources":["../../../../src/components/ai/feedback.ts"],"sourcesContent":["export const Feedback = () => ({\r\n '.sk-ai-feedback': {\r\n '@apply ml-24 flex gap-24 justify-start mb-16': {},\r\n '@apply max-w-full': {},\r\n '&-button': {\r\n '&[data-current=\"true\"]': {\r\n '@apply bg-tertiary-surface-hover': {},\r\n },\r\n },\r\n '&-more': {\r\n '@apply flex flex-col gap-8 px-14 pt-8 pb-12 bg-background-color-mixin-1 text-dark-primary rounded-button': {},\r\n '&-header': {\r\n '@apply flex flex-row items-center justify-between text-label-small': {},\r\n },\r\n '&-reason': {\r\n '@apply flex flex-row items-center gap-8 justify-start flex-wrap': {},\r\n },\r\n },\r\n },\r\n});\r\n"],"mappings":"AAAA,OAAO,IAAMA,QAAQ,GAAGA,CAAA,MAAO;EAC7B,iBAAiB,EAAE;IACjB,8CAA8C,EAAE,CAAC,CAAC;IAClD,mBAAmB,EAAE,CAAC,CAAC;IACvB,UAAU,EAAE;MACV,wBAAwB,EAAE;QACxB,kCAAkC,EAAE,CAAC;MACvC;IACF,CAAC;IACD,QAAQ,EAAE;MACR,0GAA0G,EAAE,CAAC,CAAC;MAC9G,UAAU,EAAE;QACV,oEAAoE,EAAE,CAAC;MACzE,CAAC;MACD,UAAU,EAAE;QACV,iEAAiE,EAAE,CAAC;MACtE;IACF;EACF;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"markdown-rendered.js","names":["MarkdownRendered"],"sources":["../../../../src/components/ai/markdown-rendered.ts"],"sourcesContent":["export const MarkdownRendered = () => ({\r\n '.sk-ai-markdown': {\r\n '@apply flex flex-col gap-32': {},\r\n '&-p': {\r\n '@apply mb-
|
|
1
|
+
{"version":3,"file":"markdown-rendered.js","names":["MarkdownRendered"],"sources":["../../../../src/components/ai/markdown-rendered.ts"],"sourcesContent":["export const MarkdownRendered = () => ({\r\n '.sk-ai-markdown': {\r\n '@apply flex flex-col gap-32': {},\r\n '&-p': {\r\n '@apply mb-0 my-0': {},\r\n },\r\n '&-a': {\r\n '@apply my-8': {},\r\n },\r\n '&-ol': {\r\n '@apply list-decimal ml-24 my-0': {},\r\n },\r\n '&-ul': {\r\n '@apply list-disc ml-24 my-0': {},\r\n },\r\n '&-li': {\r\n '@apply my-16': {},\r\n },\r\n },\r\n});\r\n"],"mappings":"AAAA,OAAO,IAAMA,gBAAgB,GAAGA,CAAA,MAAO;EACrC,iBAAiB,EAAE;IACjB,6BAA6B,EAAE,CAAC,CAAC;IACjC,KAAK,EAAE;MACL,kBAAkB,EAAE,CAAC;IACvB,CAAC;IACD,KAAK,EAAE;MACL,aAAa,EAAE,CAAC;IAClB,CAAC;IACD,MAAM,EAAE;MACN,gCAAgC,EAAE,CAAC;IACrC,CAAC;IACD,MAAM,EAAE;MACN,6BAA6B,EAAE,CAAC;IAClC,CAAC;IACD,MAAM,EAAE;MACN,cAAc,EAAE,CAAC;IACnB;EACF;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -22,7 +22,6 @@ export var MenuBar = colors => ({
|
|
|
22
22
|
'@apply font-bold': {},
|
|
23
23
|
'@apply gap-2 px-14 py-8': {},
|
|
24
24
|
'@apply h-full min-h-full': {},
|
|
25
|
-
'@apply text-base leading-base': {},
|
|
26
25
|
'@apply inline-flex shrink-0 flex-nowrap': {},
|
|
27
26
|
'@apply border-0': {},
|
|
28
27
|
'@apply focus-visible:bg-background-content focus-visible:ring': {},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menubar.js","names":["MenuBar","colors","_extends","color","reduce","styles"],"sources":["../../../src/components/menubar.ts"],"sourcesContent":["export const MenuBar = (colors: string[]) => ({\r\n '.sk-menubar': {\r\n '@apply flex flex-row': {},\r\n '@apply p-8 gap-16': {},\r\n '@apply rounded-cards': {},\r\n\r\n '&[data-background=\"true\"]': {\r\n '@apply bg-background-color-mixin-1': {},\r\n },\r\n\r\n '&-item': {\r\n '@apply inline-block': {},\r\n '@apply relative': {},\r\n '@apply h-40': {},\r\n 'a, button': {\r\n color: 'unset',\r\n },\r\n\r\n '> *:first-child': {\r\n '@apply rounded-button-sm md:rounded-button-md xl:rounded-button-lg': {},\r\n '@apply cursor-pointer': {},\r\n '@apply bg-transparent text-dark-primary': {},\r\n '@apply hover:bg-tertiary-surface': {},\r\n '@apply font-bold': {},\r\n '@apply gap-2 px-14 py-8': {},\r\n '@apply h-full min-h-full': {},\r\n '@apply
|
|
1
|
+
{"version":3,"file":"menubar.js","names":["MenuBar","colors","_extends","color","reduce","styles"],"sources":["../../../src/components/menubar.ts"],"sourcesContent":["export const MenuBar = (colors: string[]) => ({\r\n '.sk-menubar': {\r\n '@apply flex flex-row': {},\r\n '@apply p-8 gap-16': {},\r\n '@apply rounded-cards': {},\r\n\r\n '&[data-background=\"true\"]': {\r\n '@apply bg-background-color-mixin-1': {},\r\n },\r\n\r\n '&-item': {\r\n '@apply inline-block': {},\r\n '@apply relative': {},\r\n '@apply h-40': {},\r\n 'a, button': {\r\n color: 'unset',\r\n },\r\n\r\n '> *:first-child': {\r\n '@apply rounded-button-sm md:rounded-button-md xl:rounded-button-lg': {},\r\n '@apply cursor-pointer': {},\r\n '@apply bg-transparent text-dark-primary': {},\r\n '@apply hover:bg-tertiary-surface': {},\r\n '@apply font-bold': {},\r\n '@apply gap-2 px-14 py-8': {},\r\n '@apply h-full min-h-full': {},\r\n '@apply inline-flex shrink-0 flex-nowrap': {},\r\n\r\n '@apply border-0': {},\r\n '@apply focus-visible:bg-background-content focus-visible:ring': {},\r\n '&[aria-current=\"page\"]:not(:hover),&[aria-selected=\"true\"]:not(:hover), ': {\r\n '@apply bg-primary-surface text-light-primary': {},\r\n '@apply focus-visible:ring': {},\r\n },\r\n },\r\n ...colors.reduce(\r\n (styles, color) => ({\r\n ...styles,\r\n [`&[data-color=\"${color}\"]`]: {\r\n '> *:first-child': {\r\n [`@apply hover:bg-${color}-surface-accent`]: {},\r\n [`@apply hover:text-${color}-text-primary`]: {},\r\n '@apply focus-visible:bg-background-content focus-visible:ring': {},\r\n '&[aria-current=\"page\"]:not(:hover),&[aria-selected=\"true\"]:not(:hover)': {\r\n [`@apply bg-${color}-surface-primary`]: {},\r\n '@apply focus-visible:ring': {},\r\n },\r\n },\r\n },\r\n }),\r\n {}\r\n ),\r\n },\r\n },\r\n});\r\n"],"mappings":";AAAA,OAAO,IAAMA,OAAO,GAAIC,MAAgB,KAAM;EAC5C,aAAa,EAAE;IACb,sBAAsB,EAAE,CAAC,CAAC;IAC1B,mBAAmB,EAAE,CAAC,CAAC;IACvB,sBAAsB,EAAE,CAAC,CAAC;IAE1B,2BAA2B,EAAE;MAC3B,oCAAoC,EAAE,CAAC;IACzC,CAAC;IAED,QAAQ,EAAAC,QAAA;MACN,qBAAqB,EAAE,CAAC,CAAC;MACzB,iBAAiB,EAAE,CAAC,CAAC;MACrB,aAAa,EAAE,CAAC,CAAC;MACjB,WAAW,EAAE;QACXC,KAAK,EAAE;MACT,CAAC;MAED,iBAAiB,EAAE;QACjB,oEAAoE,EAAE,CAAC,CAAC;QACxE,uBAAuB,EAAE,CAAC,CAAC;QAC3B,yCAAyC,EAAE,CAAC,CAAC;QAC7C,kCAAkC,EAAE,CAAC,CAAC;QACtC,kBAAkB,EAAE,CAAC,CAAC;QACtB,yBAAyB,EAAE,CAAC,CAAC;QAC7B,0BAA0B,EAAE,CAAC,CAAC;QAC9B,yCAAyC,EAAE,CAAC,CAAC;QAE7C,iBAAiB,EAAE,CAAC,CAAC;QACrB,+DAA+D,EAAE,CAAC,CAAC;QACnE,0EAA0E,EAAE;UAC1E,8CAA8C,EAAE,CAAC,CAAC;UAClD,2BAA2B,EAAE,CAAC;QAChC;MACF;IAAC,GACEF,MAAM,CAACG,MAAM,CACd,CAACC,MAAM,EAAEF,KAAK,KAAAD,QAAA,KACTG,MAAM;MACT,qBAAkBF,KAAK,WAAO;QAC5B,iBAAiB,EAAE;UACjB,sBAAoBA,KAAK,uBAAoB,CAAC,CAAC;UAC/C,wBAAsBA,KAAK,qBAAkB,CAAC,CAAC;UAC/C,+DAA+D,EAAE,CAAC,CAAC;UACnE,wEAAwE,EAAE;YACxE,gBAAcA,KAAK,wBAAqB,CAAC,CAAC;YAC1C,2BAA2B,EAAE,CAAC;UAChC;QACF;MACF;IAAC,EACD,EACF,CAAC,CACH,CAAC;EAEL;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -1,22 +1,27 @@
|
|
|
1
1
|
export declare const AIFeed: () => {
|
|
2
2
|
'.sk-ai-feed': {
|
|
3
|
-
'@apply
|
|
3
|
+
'@apply h-auto max-h-full flex flex-col gap-32': {};
|
|
4
4
|
'&-entry': {
|
|
5
5
|
'@apply flex items-start gap-12': {};
|
|
6
|
+
'@apply w-full': {};
|
|
6
7
|
'&-avatar': {
|
|
7
8
|
'@apply grow-0 shrink-0 w-fit': {};
|
|
8
9
|
};
|
|
9
10
|
'&-container': {
|
|
10
11
|
'@apply flex flex-col pb-20 gap-20': {};
|
|
12
|
+
'@apply w-full': {};
|
|
11
13
|
};
|
|
12
14
|
'&-content': {
|
|
13
15
|
'@apply break-words max-w-full flex flex-col grow gap-4': {};
|
|
14
16
|
};
|
|
15
17
|
'&-heading': {
|
|
16
18
|
'@apply text-large font-bold': {};
|
|
19
|
+
'&[data-showtitle="false"]': {
|
|
20
|
+
'@apply w-0 h-0 opacity-0': {};
|
|
21
|
+
};
|
|
17
22
|
};
|
|
18
23
|
'&-references': {
|
|
19
|
-
'@apply bg-background-200 rounded-button
|
|
24
|
+
'@apply bg-background-200 rounded-button py-0 pl-20 pr-12 gap-8 text-dark-primary': {};
|
|
20
25
|
'&-header': {
|
|
21
26
|
'@apply text-dark-primary': {};
|
|
22
27
|
};
|
|
@@ -30,5 +35,22 @@ export declare const AIFeed: () => {
|
|
|
30
35
|
};
|
|
31
36
|
};
|
|
32
37
|
};
|
|
38
|
+
'&-live-wrapper': {
|
|
39
|
+
'@apply absolute w-1 h-1 -m-1 overflow-hidden whitespace-nowrap p-0 opacity-0': {};
|
|
40
|
+
};
|
|
41
|
+
'&[data-size="lg"]': {
|
|
42
|
+
'.sk-ai-feed-avatar, .sk-avatar': {
|
|
43
|
+
'@apply w-40 h-40': {};
|
|
44
|
+
};
|
|
45
|
+
'.sk-ai-feed-container': {
|
|
46
|
+
'@apply pb-32 gap-32': {};
|
|
47
|
+
'@apply w-full': {};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
'&[data-size="sm"]': {
|
|
51
|
+
'.sk-ai-feed-avatar, .sk-avatar': {
|
|
52
|
+
'@apply w-32 h-32': {};
|
|
53
|
+
};
|
|
54
|
+
};
|
|
33
55
|
};
|
|
34
56
|
};
|
|
@@ -1,27 +1,40 @@
|
|
|
1
1
|
export declare const AIModule: (colors: string[]) => {
|
|
2
2
|
'.sk-ai-module': {
|
|
3
3
|
'@apply fixed': {};
|
|
4
|
+
'@apply overflow-hidden': {};
|
|
4
5
|
'@apply flex flex-col gap-0 items-center justify-start': {};
|
|
5
6
|
'@apply shadow-200': {};
|
|
6
|
-
'@apply overflow-hidden': {};
|
|
7
7
|
'@apply transition-all': {};
|
|
8
8
|
'@apply bottom-0 right-0': {};
|
|
9
9
|
'&-content': {
|
|
10
10
|
'@apply flex w-full gap-0 h-full justify-between': {};
|
|
11
|
+
'@apply overflow-hidden': {};
|
|
11
12
|
'&-row': {
|
|
12
13
|
'@apply flex flex-col': {};
|
|
13
14
|
};
|
|
15
|
+
'&-main': {
|
|
16
|
+
'@apply grow shrink max-h-full items-center': {};
|
|
17
|
+
};
|
|
14
18
|
};
|
|
15
19
|
'&-sidebar': {
|
|
16
20
|
'@apply flex flex-col': {};
|
|
17
21
|
'@apply min-w-[22em]': {};
|
|
18
22
|
'@apply h-full': {};
|
|
23
|
+
'@apply overflow-hidden': {};
|
|
19
24
|
'@apply border-r-1 border-r-divider': {};
|
|
20
|
-
'@apply pt-20 px-
|
|
25
|
+
'@apply pt-20 px-0 gap-16': {};
|
|
26
|
+
'&-sessions': {
|
|
27
|
+
'@apply flex flex-col': {};
|
|
28
|
+
'@apply grow w-full': {};
|
|
29
|
+
'@apply overflow-y-auto': {};
|
|
30
|
+
'@apply px-24 pb-20 gap-16': {};
|
|
31
|
+
};
|
|
21
32
|
};
|
|
22
33
|
'&-feed': {
|
|
23
34
|
'@apply flex flex-col grow': {};
|
|
24
35
|
'@apply px-16 pt-16 pb-24 gap-16': {};
|
|
36
|
+
'@apply w-full': {};
|
|
37
|
+
'@apply max-h-full overflow-y-auto': {};
|
|
25
38
|
'&-questions': {
|
|
26
39
|
'@apply flex flex-col gap-8 w-full': {};
|
|
27
40
|
'&-title': {
|
|
@@ -32,18 +45,39 @@ export declare const AIModule: (colors: string[]) => {
|
|
|
32
45
|
};
|
|
33
46
|
};
|
|
34
47
|
};
|
|
48
|
+
'.sk-ai-inputsection': {
|
|
49
|
+
'@apply shrink-0': {};
|
|
50
|
+
};
|
|
35
51
|
'&[data-fullscreen="false"]': {
|
|
36
52
|
'@apply rounded-tl-groups': {};
|
|
37
53
|
'@apply max-w-[26em]': {};
|
|
54
|
+
'@apply w-[26em]': {};
|
|
55
|
+
'@apply max-h-[44em]': {};
|
|
56
|
+
'&[data-docked="false"]': {
|
|
57
|
+
'@apply h-full': {};
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
'.sk-ai-feed': {
|
|
61
|
+
'@apply w-full': {};
|
|
38
62
|
};
|
|
39
63
|
'&[data-fullscreen="true"]': {
|
|
40
|
-
'@apply w-full
|
|
64
|
+
'@apply w-full': {};
|
|
41
65
|
'.sk-ai-module-feed': {
|
|
42
66
|
'@apply gap-40 grow w-full items-center': {};
|
|
67
|
+
'.sk-ai-feed': {
|
|
68
|
+
'@apply text-base max-w-[50em]': {};
|
|
69
|
+
};
|
|
43
70
|
'&-questions': {
|
|
44
71
|
'@apply flex-row gap-16': {};
|
|
72
|
+
'&-wrapper': {
|
|
73
|
+
'@apply text-base max-w-[50em]': {};
|
|
74
|
+
};
|
|
45
75
|
};
|
|
46
76
|
};
|
|
77
|
+
'.sk-ai-inputsection': {
|
|
78
|
+
'@apply text-base max-w-[50em]': {};
|
|
79
|
+
'@apply pt-20 pb-32': {};
|
|
80
|
+
};
|
|
47
81
|
};
|
|
48
82
|
'&-header': {
|
|
49
83
|
'&[data-fullscreen="true"]': {
|
|
@@ -53,6 +87,7 @@ export declare const AIModule: (colors: string[]) => {
|
|
|
53
87
|
};
|
|
54
88
|
'@apply flex items-center justify-between': {};
|
|
55
89
|
'@apply w-full': {};
|
|
90
|
+
'@apply shrink-0': {};
|
|
56
91
|
'@apply px-14 py-16': {};
|
|
57
92
|
'@apply transition-all': {};
|
|
58
93
|
'@apply bg-inverted-background-content': {};
|
|
@@ -78,7 +113,7 @@ export declare const AIModule: (colors: string[]) => {
|
|
|
78
113
|
'@apply gap-12': {};
|
|
79
114
|
};
|
|
80
115
|
'&[data-variant="alt"]': {
|
|
81
|
-
'@apply
|
|
116
|
+
'@apply pt-0 px-24': {};
|
|
82
117
|
'@apply bg-transparent': {};
|
|
83
118
|
'.sk-avatar': {
|
|
84
119
|
'@apply w-56 h-56': {};
|
|
@@ -2,6 +2,7 @@ export declare const AssistantPresentation: () => {
|
|
|
2
2
|
'.sk-ai-assistant-presentation': {
|
|
3
3
|
'@apply flex flex-col gap-16 items-center justify-center': {};
|
|
4
4
|
'@apply text-base': {};
|
|
5
|
+
'@apply h-full grow': {};
|
|
5
6
|
'&-header': {
|
|
6
7
|
'@apply flex flex-col items-center justify-start': {};
|
|
7
8
|
'&-title': {
|
|
@@ -12,7 +13,7 @@ export declare const AssistantPresentation: () => {
|
|
|
12
13
|
};
|
|
13
14
|
};
|
|
14
15
|
'&[data-size="lg"]': {
|
|
15
|
-
'@apply min-h-[25.5em]
|
|
16
|
+
'@apply min-h-[25.5em]': {};
|
|
16
17
|
'@apply p-24': {};
|
|
17
18
|
'@apply max-w-[27em]': {};
|
|
18
19
|
'.sk-avatar': {
|
|
@@ -30,7 +31,6 @@ export declare const AssistantPresentation: () => {
|
|
|
30
31
|
};
|
|
31
32
|
};
|
|
32
33
|
'&[data-size="sm"]': {
|
|
33
|
-
'@apply min-h-[24em]': {};
|
|
34
34
|
'.sk-avatar': {
|
|
35
35
|
'@apply w-72 h-72': {};
|
|
36
36
|
'@apply max-w-72 max-h-72': {};
|
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
export declare const Bubble: (colors: string[]) => {
|
|
2
2
|
'.sk-ai-bubble': {
|
|
3
3
|
'&-tail': {
|
|
4
|
-
'@apply
|
|
4
|
+
'@apply text-base': {};
|
|
5
|
+
'@apply absolute left-0 bottom-[-1.25em]': {};
|
|
5
6
|
'@apply w-32 h-32': {};
|
|
6
7
|
'@apply rounded-tl-16 rounded-bl-0': {};
|
|
7
8
|
'@apply bg-transparent': {};
|
|
8
|
-
'@apply shadow-[0_-
|
|
9
|
+
'@apply shadow-[0_-1em_0_0_var(--tw-shadow-color)]': {};
|
|
9
10
|
'@apply scale-y-[25%]': {};
|
|
10
11
|
'&:before': {
|
|
11
12
|
'@apply content-[""]': {};
|
|
12
|
-
'@apply absolute left-0 bottom-[-0.
|
|
13
|
+
'@apply absolute left-0 bottom-[-0.15625em]': {};
|
|
13
14
|
'@apply w-32 h-32': {};
|
|
14
15
|
'@apply rounded-tl-16 rounded-bl-0': {};
|
|
15
16
|
'@apply bg-transparent': {};
|
|
16
|
-
'@apply shadow-[0_-0.
|
|
17
|
+
'@apply shadow-[0_-0.15625em_0_0_rgb(0,0,0,0.2)]': {};
|
|
17
18
|
'clip-path': string;
|
|
18
19
|
};
|
|
19
20
|
};
|
|
@@ -23,7 +24,7 @@ export declare const Bubble: (colors: string[]) => {
|
|
|
23
24
|
'@apply rounded-t-button rounded-br-button': {};
|
|
24
25
|
'@apply pt-10 pr-12 pb-10 pl-14': {};
|
|
25
26
|
'@apply gap-16': {};
|
|
26
|
-
'@apply shadow-[
|
|
27
|
+
'@apply shadow-[0_1px_0_0_rgba(0,0,0,0.2)]': {};
|
|
27
28
|
'@apply text-small': {};
|
|
28
29
|
'@apply text-dark-secondary': {};
|
|
29
30
|
};
|
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
export declare const Feedback: () => {
|
|
2
2
|
'.sk-ai-feedback': {
|
|
3
|
-
'@apply ml-24 flex gap-24 justify-
|
|
3
|
+
'@apply ml-24 flex gap-24 justify-start mb-16': {};
|
|
4
|
+
'@apply max-w-full': {};
|
|
4
5
|
'&-button': {
|
|
5
6
|
'&[data-current="true"]': {
|
|
6
7
|
'@apply bg-tertiary-surface-hover': {};
|
|
7
8
|
};
|
|
8
9
|
};
|
|
9
10
|
'&-more': {
|
|
10
|
-
'@apply flex flex-col gap-8
|
|
11
|
+
'@apply flex flex-col gap-8 px-14 pt-8 pb-12 bg-background-color-mixin-1 text-dark-primary rounded-button': {};
|
|
11
12
|
'&-header': {
|
|
12
13
|
'@apply flex flex-row items-center justify-between text-label-small': {};
|
|
13
14
|
};
|
|
14
15
|
'&-reason': {
|
|
15
|
-
'@apply flex flex-row items-center gap-8 justify-start': {};
|
|
16
|
+
'@apply flex flex-row items-center gap-8 justify-start flex-wrap': {};
|
|
16
17
|
};
|
|
17
18
|
};
|
|
18
19
|
};
|
|
@@ -21,7 +21,6 @@ export declare const MenuBar: (colors: string[]) => {
|
|
|
21
21
|
'@apply font-bold': {};
|
|
22
22
|
'@apply gap-2 px-14 py-8': {};
|
|
23
23
|
'@apply h-full min-h-full': {};
|
|
24
|
-
'@apply text-base leading-base': {};
|
|
25
24
|
'@apply inline-flex shrink-0 flex-nowrap': {};
|
|
26
25
|
'@apply border-0': {};
|
|
27
26
|
'@apply focus-visible:bg-background-content focus-visible:ring': {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sk-web-gui/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"@sk-web-gui/theme": "2.1.1",
|
|
44
44
|
"mini-svg-data-uri": "^1.4.4"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "af5bd1267d1cd2c9fabd3d83c9503663765e5725"
|
|
47
47
|
}
|