@xpert-ai/plugin-motion 0.1.0 → 0.3.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/.xpertai-plugin/plugin.json +16 -6
- package/README.md +19 -5
- package/assets/upstream/UPSTREAM-BASELINE.md +27 -0
- package/assets/upstream/app/data/reicon-LICENSE.txt +21 -0
- package/dist/assets/upstream/UPSTREAM-BASELINE.md +27 -0
- package/dist/assets/upstream/app/data/reicon-LICENSE.txt +21 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +18 -9
- package/dist/index.js.map +1 -1
- package/dist/lib/constants.d.ts +7 -1
- package/dist/lib/constants.d.ts.map +1 -1
- package/dist/lib/constants.js +7 -0
- package/dist/lib/constants.js.map +1 -1
- package/dist/lib/entities/motion-export.entity.d.ts +13 -1
- package/dist/lib/entities/motion-export.entity.d.ts.map +1 -1
- package/dist/lib/entities/motion-export.entity.js +49 -1
- package/dist/lib/entities/motion-export.entity.js.map +1 -1
- package/dist/lib/entities/motion-project-version.entity.d.ts +3 -1
- package/dist/lib/entities/motion-project-version.entity.d.ts.map +1 -1
- package/dist/lib/entities/motion-project-version.entity.js +8 -0
- package/dist/lib/entities/motion-project-version.entity.js.map +1 -1
- package/dist/lib/entities/motion-project.entity.d.ts +4 -1
- package/dist/lib/entities/motion-project.entity.d.ts.map +1 -1
- package/dist/lib/entities/motion-project.entity.js +8 -0
- package/dist/lib/entities/motion-project.entity.js.map +1 -1
- package/dist/lib/hyperframes-composition.d.ts +16 -0
- package/dist/lib/hyperframes-composition.d.ts.map +1 -0
- package/dist/lib/hyperframes-composition.js +106 -0
- package/dist/lib/hyperframes-composition.js.map +1 -0
- package/dist/lib/motion-agent-response.d.ts +8 -0
- package/dist/lib/motion-agent-response.d.ts.map +1 -1
- package/dist/lib/motion-agent-response.js +13 -0
- package/dist/lib/motion-agent-response.js.map +1 -1
- package/dist/lib/motion-render.processor.d.ts +9 -0
- package/dist/lib/motion-render.processor.d.ts.map +1 -0
- package/dist/lib/motion-render.processor.js +25 -0
- package/dist/lib/motion-render.processor.js.map +1 -0
- package/dist/lib/motion-view.provider.d.ts.map +1 -1
- package/dist/lib/motion-view.provider.js +31 -2
- package/dist/lib/motion-view.provider.js.map +1 -1
- package/dist/lib/motion.middleware.d.ts.map +1 -1
- package/dist/lib/motion.middleware.js +20 -6
- package/dist/lib/motion.middleware.js.map +1 -1
- package/dist/lib/motion.plugin.d.ts.map +1 -1
- package/dist/lib/motion.plugin.js +2 -1
- package/dist/lib/motion.plugin.js.map +1 -1
- package/dist/lib/motion.service.d.ts +174 -3
- package/dist/lib/motion.service.d.ts.map +1 -1
- package/dist/lib/motion.service.js +376 -19
- package/dist/lib/motion.service.js.map +1 -1
- package/dist/lib/remote-components/motion-workbench/app.css +1 -1
- package/dist/lib/remote-components/motion-workbench/app.js +555 -946
- package/dist/lib/types.d.ts +26 -1
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/lib/types.js.map +1 -1
- package/dist/sandbox-actions/hyperframes-render/action.json +10 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runner.mjs +188 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@esbuild/darwin-arm64/README.md +3 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@esbuild/darwin-arm64/bin/esbuild +0 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@esbuild/darwin-arm64/package.json +20 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@esbuild/linux-x64/README.md +3 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@esbuild/linux-x64/bin/esbuild +0 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@esbuild/linux-x64/package.json +20 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/LICENSE +190 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/README.md +156 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/distributed.js +156122 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/hyperframe.manifest.json +22 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/hyperframe.runtime.iife.js +356 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/index.js +169375 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/public-server.js +167618 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/services/healthWorkerThread.js +53 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/dist/services/shaderTransitionWorker.js +606 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/@hyperframes/producer/package.json +109 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/esbuild/LICENSE.md +21 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/esbuild/README.md +3 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/esbuild/bin/esbuild +0 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/esbuild/install.js +289 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/esbuild/lib/main.js +2532 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/esbuild/package.json +49 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/LICENSE +20 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/README.md +36 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/async/index.browser.cjs +42 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/async/index.browser.js +42 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/async/index.cjs +44 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/async/index.js +44 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/async/index.native.js +35 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/async/package.json +12 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/bin/nanoid.cjs +55 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/index.browser.cjs +44 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/index.browser.js +44 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/index.cjs +57 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/index.d.cts +91 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/index.js +62 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/nanoid.js +1 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/non-secure/index.cjs +24 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/non-secure/index.js +24 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/non-secure/package.json +6 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/package.json +89 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/url-alphabet/index.cjs +4 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/url-alphabet/index.js +4 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/nanoid/url-alphabet/package.json +6 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/picocolors/LICENSE +15 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/picocolors/README.md +21 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/picocolors/package.json +25 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/picocolors/picocolors.browser.js +4 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/picocolors/picocolors.js +75 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/LICENSE +20 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/README.md +25 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/at-rule.js +25 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/comment.js +13 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/container.js +447 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/css-syntax-error.js +133 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/declaration.js +24 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/document.js +33 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/fromJSON.js +68 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/input.js +276 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/lazy-result.js +563 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/list.js +58 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/map-generator.js +376 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/no-work-result.js +137 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/node.js +456 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/parse.js +42 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/parser.js +618 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/postcss.d.mts +66 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/postcss.js +101 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/postcss.mjs +30 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/previous-map.js +161 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/processor.js +67 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/result.js +42 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/root.js +61 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/rule.js +27 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/stringifier.js +374 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/stringify.js +11 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/symbols.js +5 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/terminal-highlight.js +70 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/tokenize.js +270 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/warn-once.js +13 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/warning.js +37 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/package.json +88 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/LICENSE +28 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/README.md +765 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/array-set.js +121 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/base64-vlq.js +140 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/base64.js +67 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/binary-search.js +111 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/mapping-list.js +79 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/quick-sort.js +132 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/source-map-generator.js +444 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/source-node.js +413 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/lib/util.js +594 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/package.json +71 -0
- package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/source-map-js/source-map.js +8 -0
- package/dist/xpert-motion-assistant.yaml +240 -37
- package/package.json +19 -10
- package/skills/motion-agent-skill/SKILL.md +19 -7
package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/tokenize.js
ADDED
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const SINGLE_QUOTE = "'".charCodeAt(0)
|
|
4
|
+
const DOUBLE_QUOTE = '"'.charCodeAt(0)
|
|
5
|
+
const BACKSLASH = '\\'.charCodeAt(0)
|
|
6
|
+
const SLASH = '/'.charCodeAt(0)
|
|
7
|
+
const NEWLINE = '\n'.charCodeAt(0)
|
|
8
|
+
const SPACE = ' '.charCodeAt(0)
|
|
9
|
+
const FEED = '\f'.charCodeAt(0)
|
|
10
|
+
const TAB = '\t'.charCodeAt(0)
|
|
11
|
+
const CR = '\r'.charCodeAt(0)
|
|
12
|
+
const OPEN_SQUARE = '['.charCodeAt(0)
|
|
13
|
+
const CLOSE_SQUARE = ']'.charCodeAt(0)
|
|
14
|
+
const OPEN_PARENTHESES = '('.charCodeAt(0)
|
|
15
|
+
const CLOSE_PARENTHESES = ')'.charCodeAt(0)
|
|
16
|
+
const OPEN_CURLY = '{'.charCodeAt(0)
|
|
17
|
+
const CLOSE_CURLY = '}'.charCodeAt(0)
|
|
18
|
+
const SEMICOLON = ';'.charCodeAt(0)
|
|
19
|
+
const ASTERISK = '*'.charCodeAt(0)
|
|
20
|
+
const COLON = ':'.charCodeAt(0)
|
|
21
|
+
const AT = '@'.charCodeAt(0)
|
|
22
|
+
|
|
23
|
+
const RE_AT_END = /[\t\n\f\r "#'()/;[\\\]{}]/g
|
|
24
|
+
const RE_WORD_END = /[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g
|
|
25
|
+
const RE_BAD_BRACKET = /.[\r\n"'(/\\]/
|
|
26
|
+
const RE_HEX_ESCAPE = /[\da-f]/i
|
|
27
|
+
|
|
28
|
+
module.exports = function tokenizer(input, options = {}) {
|
|
29
|
+
let css = input.css.valueOf()
|
|
30
|
+
let ignore = options.ignoreErrors
|
|
31
|
+
|
|
32
|
+
let code, content, escape, next, quote
|
|
33
|
+
let currentToken, escaped, escapePos, n, prev
|
|
34
|
+
|
|
35
|
+
let length = css.length
|
|
36
|
+
let pos = 0
|
|
37
|
+
let buffer = []
|
|
38
|
+
let returned = []
|
|
39
|
+
let lastBadParen = -1
|
|
40
|
+
|
|
41
|
+
function position() {
|
|
42
|
+
return pos
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function unclosed(what) {
|
|
46
|
+
throw input.error('Unclosed ' + what, pos)
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function endOfFile() {
|
|
50
|
+
return returned.length === 0 && pos >= length
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
function nextToken(opts) {
|
|
54
|
+
if (returned.length) return returned.pop()
|
|
55
|
+
if (pos >= length) return
|
|
56
|
+
|
|
57
|
+
let ignoreUnclosed = opts ? opts.ignoreUnclosed : false
|
|
58
|
+
|
|
59
|
+
code = css.charCodeAt(pos)
|
|
60
|
+
|
|
61
|
+
switch (code) {
|
|
62
|
+
case NEWLINE:
|
|
63
|
+
case SPACE:
|
|
64
|
+
case TAB:
|
|
65
|
+
case CR:
|
|
66
|
+
case FEED: {
|
|
67
|
+
next = pos
|
|
68
|
+
do {
|
|
69
|
+
next += 1
|
|
70
|
+
code = css.charCodeAt(next)
|
|
71
|
+
} while (
|
|
72
|
+
code === SPACE ||
|
|
73
|
+
code === NEWLINE ||
|
|
74
|
+
code === TAB ||
|
|
75
|
+
code === CR ||
|
|
76
|
+
code === FEED
|
|
77
|
+
)
|
|
78
|
+
|
|
79
|
+
currentToken = ['space', css.slice(pos, next)]
|
|
80
|
+
pos = next - 1
|
|
81
|
+
break
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
case OPEN_SQUARE:
|
|
85
|
+
case CLOSE_SQUARE:
|
|
86
|
+
case OPEN_CURLY:
|
|
87
|
+
case CLOSE_CURLY:
|
|
88
|
+
case COLON:
|
|
89
|
+
case SEMICOLON:
|
|
90
|
+
case CLOSE_PARENTHESES: {
|
|
91
|
+
let controlChar = String.fromCharCode(code)
|
|
92
|
+
currentToken = [controlChar, controlChar, pos]
|
|
93
|
+
break
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
case OPEN_PARENTHESES: {
|
|
97
|
+
prev = buffer.length ? buffer.pop()[1] : ''
|
|
98
|
+
n = css.charCodeAt(pos + 1)
|
|
99
|
+
if (
|
|
100
|
+
prev === 'url' &&
|
|
101
|
+
n !== SINGLE_QUOTE &&
|
|
102
|
+
n !== DOUBLE_QUOTE &&
|
|
103
|
+
n !== SPACE &&
|
|
104
|
+
n !== NEWLINE &&
|
|
105
|
+
n !== TAB &&
|
|
106
|
+
n !== FEED &&
|
|
107
|
+
n !== CR
|
|
108
|
+
) {
|
|
109
|
+
next = pos
|
|
110
|
+
do {
|
|
111
|
+
escaped = false
|
|
112
|
+
next = css.indexOf(')', next + 1)
|
|
113
|
+
if (next === -1) {
|
|
114
|
+
if (ignore || ignoreUnclosed) {
|
|
115
|
+
next = pos
|
|
116
|
+
break
|
|
117
|
+
} else {
|
|
118
|
+
unclosed('bracket')
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
escapePos = next
|
|
122
|
+
while (css.charCodeAt(escapePos - 1) === BACKSLASH) {
|
|
123
|
+
escapePos -= 1
|
|
124
|
+
escaped = !escaped
|
|
125
|
+
}
|
|
126
|
+
} while (escaped)
|
|
127
|
+
|
|
128
|
+
currentToken = ['brackets', css.slice(pos, next + 1), pos, next]
|
|
129
|
+
|
|
130
|
+
pos = next
|
|
131
|
+
} else if (pos <= lastBadParen) {
|
|
132
|
+
currentToken = ['(', '(', pos]
|
|
133
|
+
} else {
|
|
134
|
+
next = css.indexOf(')', pos + 1)
|
|
135
|
+
content = css.slice(pos, next + 1)
|
|
136
|
+
|
|
137
|
+
if (next === -1 || RE_BAD_BRACKET.test(content)) {
|
|
138
|
+
lastBadParen = next === -1 ? length : next
|
|
139
|
+
currentToken = ['(', '(', pos]
|
|
140
|
+
} else {
|
|
141
|
+
currentToken = ['brackets', content, pos, next]
|
|
142
|
+
pos = next
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
break
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
case SINGLE_QUOTE:
|
|
150
|
+
case DOUBLE_QUOTE: {
|
|
151
|
+
quote = code === SINGLE_QUOTE ? "'" : '"'
|
|
152
|
+
next = pos
|
|
153
|
+
do {
|
|
154
|
+
escaped = false
|
|
155
|
+
next = css.indexOf(quote, next + 1)
|
|
156
|
+
if (next === -1) {
|
|
157
|
+
if (ignore || ignoreUnclosed) {
|
|
158
|
+
next = pos + 1
|
|
159
|
+
break
|
|
160
|
+
} else {
|
|
161
|
+
unclosed('string')
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
escapePos = next
|
|
165
|
+
while (css.charCodeAt(escapePos - 1) === BACKSLASH) {
|
|
166
|
+
escapePos -= 1
|
|
167
|
+
escaped = !escaped
|
|
168
|
+
}
|
|
169
|
+
} while (escaped)
|
|
170
|
+
|
|
171
|
+
currentToken = ['string', css.slice(pos, next + 1), pos, next]
|
|
172
|
+
pos = next
|
|
173
|
+
break
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
case AT: {
|
|
177
|
+
RE_AT_END.lastIndex = pos + 1
|
|
178
|
+
RE_AT_END.test(css)
|
|
179
|
+
if (RE_AT_END.lastIndex === 0) {
|
|
180
|
+
next = css.length - 1
|
|
181
|
+
} else {
|
|
182
|
+
next = RE_AT_END.lastIndex - 2
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
currentToken = ['at-word', css.slice(pos, next + 1), pos, next]
|
|
186
|
+
|
|
187
|
+
pos = next
|
|
188
|
+
break
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
case BACKSLASH: {
|
|
192
|
+
next = pos
|
|
193
|
+
escape = true
|
|
194
|
+
while (css.charCodeAt(next + 1) === BACKSLASH) {
|
|
195
|
+
next += 1
|
|
196
|
+
escape = !escape
|
|
197
|
+
}
|
|
198
|
+
code = css.charCodeAt(next + 1)
|
|
199
|
+
if (
|
|
200
|
+
escape &&
|
|
201
|
+
code !== SLASH &&
|
|
202
|
+
code !== SPACE &&
|
|
203
|
+
code !== NEWLINE &&
|
|
204
|
+
code !== TAB &&
|
|
205
|
+
code !== CR &&
|
|
206
|
+
code !== FEED
|
|
207
|
+
) {
|
|
208
|
+
next += 1
|
|
209
|
+
if (RE_HEX_ESCAPE.test(css.charAt(next))) {
|
|
210
|
+
while (RE_HEX_ESCAPE.test(css.charAt(next + 1))) {
|
|
211
|
+
next += 1
|
|
212
|
+
}
|
|
213
|
+
if (css.charCodeAt(next + 1) === SPACE) {
|
|
214
|
+
next += 1
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
currentToken = ['word', css.slice(pos, next + 1), pos, next]
|
|
220
|
+
|
|
221
|
+
pos = next
|
|
222
|
+
break
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
default: {
|
|
226
|
+
if (code === SLASH && css.charCodeAt(pos + 1) === ASTERISK) {
|
|
227
|
+
next = css.indexOf('*/', pos + 2) + 1
|
|
228
|
+
if (next === 0) {
|
|
229
|
+
if (ignore || ignoreUnclosed) {
|
|
230
|
+
next = css.length
|
|
231
|
+
} else {
|
|
232
|
+
unclosed('comment')
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
currentToken = ['comment', css.slice(pos, next + 1), pos, next]
|
|
237
|
+
pos = next
|
|
238
|
+
} else {
|
|
239
|
+
RE_WORD_END.lastIndex = pos + 1
|
|
240
|
+
RE_WORD_END.test(css)
|
|
241
|
+
if (RE_WORD_END.lastIndex === 0) {
|
|
242
|
+
next = css.length - 1
|
|
243
|
+
} else {
|
|
244
|
+
next = RE_WORD_END.lastIndex - 2
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
currentToken = ['word', css.slice(pos, next + 1), pos, next]
|
|
248
|
+
buffer.push(currentToken)
|
|
249
|
+
pos = next
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
break
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
pos++
|
|
257
|
+
return currentToken
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
function back(token) {
|
|
261
|
+
returned.push(token)
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
return {
|
|
265
|
+
back,
|
|
266
|
+
endOfFile,
|
|
267
|
+
nextToken,
|
|
268
|
+
position
|
|
269
|
+
}
|
|
270
|
+
}
|
package/dist/sandbox-actions/hyperframes-render/bundle/runtime-modules/postcss/lib/warn-once.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* eslint-disable no-console */
|
|
2
|
+
'use strict'
|
|
3
|
+
|
|
4
|
+
let printed = {}
|
|
5
|
+
|
|
6
|
+
module.exports = function warnOnce(message) {
|
|
7
|
+
if (printed[message]) return
|
|
8
|
+
printed[message] = true
|
|
9
|
+
|
|
10
|
+
if (typeof console !== 'undefined' && console.warn) {
|
|
11
|
+
console.warn(message)
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
class Warning {
|
|
4
|
+
constructor(text, opts = {}) {
|
|
5
|
+
this.type = 'warning'
|
|
6
|
+
this.text = text
|
|
7
|
+
|
|
8
|
+
if (opts.node && opts.node.source) {
|
|
9
|
+
let range = opts.node.rangeBy(opts)
|
|
10
|
+
this.line = range.start.line
|
|
11
|
+
this.column = range.start.column
|
|
12
|
+
this.endLine = range.end.line
|
|
13
|
+
this.endColumn = range.end.column
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
for (let opt in opts) this[opt] = opts[opt]
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
toString() {
|
|
20
|
+
if (this.node) {
|
|
21
|
+
return this.node.error(this.text, {
|
|
22
|
+
index: this.index,
|
|
23
|
+
plugin: this.plugin,
|
|
24
|
+
word: this.word
|
|
25
|
+
}).message
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
if (this.plugin) {
|
|
29
|
+
return this.plugin + ': ' + this.text
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
return this.text
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
module.exports = Warning
|
|
37
|
+
Warning.default = Warning
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "postcss",
|
|
3
|
+
"version": "8.5.16",
|
|
4
|
+
"description": "Tool for transforming styles with JS plugins",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"css",
|
|
7
|
+
"manipulation",
|
|
8
|
+
"parser",
|
|
9
|
+
"postcss",
|
|
10
|
+
"preprocessor",
|
|
11
|
+
"rework",
|
|
12
|
+
"source map",
|
|
13
|
+
"transform",
|
|
14
|
+
"transpiler"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://postcss.org/",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/postcss/postcss/issues"
|
|
19
|
+
},
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"author": "Andrey Sitnik <andrey@sitnik.es>",
|
|
22
|
+
"repository": "postcss/postcss",
|
|
23
|
+
"funding": [
|
|
24
|
+
{
|
|
25
|
+
"type": "opencollective",
|
|
26
|
+
"url": "https://opencollective.com/postcss/"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"type": "tidelift",
|
|
30
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"type": "github",
|
|
34
|
+
"url": "https://github.com/sponsors/ai"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"main": "./lib/postcss.js",
|
|
38
|
+
"browser": {
|
|
39
|
+
"./lib/terminal-highlight": false,
|
|
40
|
+
"source-map-js": false,
|
|
41
|
+
"path": false,
|
|
42
|
+
"url": false,
|
|
43
|
+
"fs": false
|
|
44
|
+
},
|
|
45
|
+
"types": "./lib/postcss.d.ts",
|
|
46
|
+
"exports": {
|
|
47
|
+
".": {
|
|
48
|
+
"import": "./lib/postcss.mjs",
|
|
49
|
+
"require": "./lib/postcss.js"
|
|
50
|
+
},
|
|
51
|
+
"./lib/at-rule": "./lib/at-rule.js",
|
|
52
|
+
"./lib/comment": "./lib/comment.js",
|
|
53
|
+
"./lib/container": "./lib/container.js",
|
|
54
|
+
"./lib/css-syntax-error": "./lib/css-syntax-error.js",
|
|
55
|
+
"./lib/declaration": "./lib/declaration.js",
|
|
56
|
+
"./lib/fromJSON": "./lib/fromJSON.js",
|
|
57
|
+
"./lib/input": "./lib/input.js",
|
|
58
|
+
"./lib/lazy-result": "./lib/lazy-result.js",
|
|
59
|
+
"./lib/no-work-result": "./lib/no-work-result.js",
|
|
60
|
+
"./lib/list": "./lib/list.js",
|
|
61
|
+
"./lib/map-generator": "./lib/map-generator.js",
|
|
62
|
+
"./lib/node": "./lib/node.js",
|
|
63
|
+
"./lib/parse": "./lib/parse.js",
|
|
64
|
+
"./lib/parser": "./lib/parser.js",
|
|
65
|
+
"./lib/postcss": "./lib/postcss.js",
|
|
66
|
+
"./lib/previous-map": "./lib/previous-map.js",
|
|
67
|
+
"./lib/processor": "./lib/processor.js",
|
|
68
|
+
"./lib/result": "./lib/result.js",
|
|
69
|
+
"./lib/root": "./lib/root.js",
|
|
70
|
+
"./lib/rule": "./lib/rule.js",
|
|
71
|
+
"./lib/stringifier": "./lib/stringifier.js",
|
|
72
|
+
"./lib/stringify": "./lib/stringify.js",
|
|
73
|
+
"./lib/symbols": "./lib/symbols.js",
|
|
74
|
+
"./lib/terminal-highlight": "./lib/terminal-highlight.js",
|
|
75
|
+
"./lib/tokenize": "./lib/tokenize.js",
|
|
76
|
+
"./lib/warn-once": "./lib/warn-once.js",
|
|
77
|
+
"./lib/warning": "./lib/warning.js",
|
|
78
|
+
"./package.json": "./package.json"
|
|
79
|
+
},
|
|
80
|
+
"dependencies": {
|
|
81
|
+
"nanoid": "^3.3.12",
|
|
82
|
+
"picocolors": "^1.1.1",
|
|
83
|
+
"source-map-js": "^1.2.1"
|
|
84
|
+
},
|
|
85
|
+
"engines": {
|
|
86
|
+
"node": "^10 || ^12 || >=14"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
|
|
2
|
+
Copyright (c) 2009-2011, Mozilla Foundation and contributors
|
|
3
|
+
All rights reserved.
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
and/or other materials provided with the distribution.
|
|
14
|
+
|
|
15
|
+
* Neither the names of the Mozilla Foundation nor the names of project
|
|
16
|
+
contributors may be used to endorse or promote products derived from this
|
|
17
|
+
software without specific prior written permission.
|
|
18
|
+
|
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
20
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
21
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|