@shell-shock/plugin-theme 0.3.29 → 0.4.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/core/dist/types/command.d.cts +14 -0
- package/dist/core/dist/types/command.d.cts.map +1 -1
- package/dist/helpers/ansi-utils.cjs +684 -133
- package/dist/helpers/ansi-utils.d.cts +1 -0
- package/dist/helpers/ansi-utils.d.cts.map +1 -1
- package/dist/helpers/ansi-utils.d.mts +1 -0
- package/dist/helpers/ansi-utils.d.mts.map +1 -1
- package/dist/helpers/ansi-utils.mjs +685 -133
- package/dist/helpers/ansi-utils.mjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/node_modules/.pnpm/@stryke_string-format@0.17.7/node_modules/@stryke/string-format/dist/acronyms.cjs +415 -0
- package/dist/node_modules/.pnpm/@stryke_string-format@0.17.7/node_modules/@stryke/string-format/dist/acronyms.mjs +414 -0
- package/dist/node_modules/.pnpm/@stryke_string-format@0.17.7/node_modules/@stryke/string-format/dist/acronyms.mjs.map +1 -0
- package/dist/node_modules/.pnpm/@stryke_string-format@0.17.7/node_modules/@stryke/string-format/dist/camel-case.cjs +31 -0
- package/dist/node_modules/.pnpm/@stryke_string-format@0.17.7/node_modules/@stryke/string-format/dist/camel-case.mjs +32 -0
- package/dist/node_modules/.pnpm/@stryke_string-format@0.17.7/node_modules/@stryke/string-format/dist/camel-case.mjs.map +1 -0
- package/dist/node_modules/.pnpm/@stryke_string-format@0.17.7/node_modules/@stryke/string-format/dist/get-words.cjs +38 -0
- package/dist/node_modules/.pnpm/@stryke_string-format@0.17.7/node_modules/@stryke/string-format/dist/get-words.mjs +38 -0
- package/dist/node_modules/.pnpm/@stryke_string-format@0.17.7/node_modules/@stryke/string-format/dist/get-words.mjs.map +1 -0
- package/dist/{core → packages/core}/dist/types/command.d.mts +14 -0
- package/dist/packages/core/dist/types/command.d.mts.map +1 -0
- package/dist/packages/core/dist/types/config.d.mts.map +1 -0
- package/dist/packages/core/dist/types/context.d.mts.map +1 -0
- package/dist/style-dictionary/colors.cjs +13 -3
- package/dist/style-dictionary/colors.mjs +13 -3
- package/dist/style-dictionary/colors.mjs.map +1 -1
- package/dist/themes/default.cjs +23 -17
- package/dist/themes/default.mjs +23 -17
- package/dist/themes/default.mjs.map +1 -1
- package/dist/types/index.d.cts +2 -2
- package/dist/types/index.d.mts +2 -2
- package/dist/types/plugin.d.mts +2 -2
- package/dist/types/theme.d.cts +11 -1
- package/dist/types/theme.d.cts.map +1 -1
- package/dist/types/theme.d.mts +11 -1
- package/dist/types/theme.d.mts.map +1 -1
- package/package.json +3 -2
- package/dist/core/dist/types/command.d.mts.map +0 -1
- package/dist/core/dist/types/config.d.mts.map +0 -1
- package/dist/core/dist/types/context.d.mts.map +0 -1
- /package/dist/{core → packages/core}/dist/api.d.mts +0 -0
- /package/dist/{core → packages/core}/dist/index.d.mts +0 -0
- /package/dist/{core → packages/core}/dist/types/config.d.mts +0 -0
- /package/dist/{core → packages/core}/dist/types/context.d.mts +0 -0
|
@@ -153,6 +153,13 @@ interface CommandConfig extends CommandBase {
|
|
|
153
153
|
* The resolved entry definition.
|
|
154
154
|
*/
|
|
155
155
|
entry: ResolvedEntryTypeDefinition;
|
|
156
|
+
/**
|
|
157
|
+
* Optional tags for the command.
|
|
158
|
+
*
|
|
159
|
+
* @remarks
|
|
160
|
+
* Tags can be used to categorize and organize commands, and can also be utilized by plugins to provide additional functionality or filtering based on tags.
|
|
161
|
+
*/
|
|
162
|
+
tags?: string[];
|
|
156
163
|
}
|
|
157
164
|
type CommandTree = CommandConfig & {
|
|
158
165
|
/**
|
|
@@ -167,6 +174,13 @@ type CommandTree = CommandConfig & {
|
|
|
167
174
|
* Alternative command names.
|
|
168
175
|
*/
|
|
169
176
|
alias: string[];
|
|
177
|
+
/**
|
|
178
|
+
* Optional tags for the command.
|
|
179
|
+
*
|
|
180
|
+
* @remarks
|
|
181
|
+
* Tags can be used to categorize and organize commands, and can also be utilized by plugins to provide additional functionality or filtering based on tags.
|
|
182
|
+
*/
|
|
183
|
+
tags: string[];
|
|
170
184
|
/**
|
|
171
185
|
* The command options.
|
|
172
186
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command.d.cts","names":["ResolvedEntryTypeDefinition","StandardJSONSchemaV1","JsonSchema7TupleType","AnyFunction","JSONSchema7Object","z3","CommandParameterType","CommandParameterKinds","string","number","boolean","CommandParameterKind","BaseCommandParameter","name","kind","title","description","alias","env","optional","StringCommandParameter","default","format","variadic","choices","NumberCommandParameter","BooleanCommandParameter","CommandParameter","AsCommandParameterConfig","T","Pick","Omit","Partial","StringCommandParameterConfig","NumberCommandParameterConfig","BooleanCommandParameterConfig","CommandParameterConfig","BooleanCommandOption","isNegativeOf","skipAddingNegative","CommandOption","CommandOptionConfig","CommandArgument","CommandArgumentConfig","CommandBase","id","path","segments","icon","reference","isVirtual","CommandConfig","entry","CommandTree","Record","options","args","parent","children","SerializedCommandTree","CommandMetadata","CommandModule","AnyZodObject","AnyZodTuple","metadata"],"sources":["../../../../../core/dist/types/command.d.cts"],"mappings":";;;cAScO,qBAAAA;EAAAA,SACHC,MAAAA;EAAAA,SACAC,MAAAA;EAAAA,SACAC,OAAAA;AAAAA;AAAAA,KAENC,oBAAAA,WAA+BJ,qBAAAA,eAAoCA,qBAAAA;AAAAA,UAC9DK,oBAAAA;EADmF;AAAA;;EAK3FC,IAAAA;EAI0B;;;EAA1BC,IAAAA,EAAMH,oBAAAA;EAINI;;;EAAAA,KAAAA;EAgBAI;;;EAZAH,WAAAA;EAc8B;;;EAV9BC,KAAAA;EAcAH;;;EAVAI,GAAAA;EA0BAM;;;EAtBAL,QAAAA;AAAAA;AAAAA,UAEQC,sBAAAA,SAA+BR,oBAAAA;EAsBoB;;;EAlB3DE,IAAAA;EA8BAS;;;EA1BAF,OAAAA;EA8BO;;;EA1BPC,MAAAA;EA4BwCV;;;EAxBxCW,QAAAA;EAgCO;AASgH;;EArCvHC,OAAAA;AAAAA;AAAAA,UAEQC,sBAAAA,SAA+Bb,oBAAAA;EAwCvC0B;;;EApCAxB,IAAAA;EAwCkB;;;EApClBO,OAAAA;EAsC4CI;;;EAlC5CF,QAAAA;EAkCmBH;;;EA9BnBI,OAAAA;AAAAA;AAAAA,UAEQE,uBAAAA,SAAgCd,oBAAAA;EA8BtB;;;EA1BlBE,IAAAA;EA0BuEY;;;EAtBvEL,OAAAA;AAAAA;AAAAA,UAUQgB,oBAAAA,SAA6BX,uBAAAA;EA0BrCoB;;;EAtBAR,YAAAA;EAsCArB;;;EAlCAsB,kBAAAA;AAAAA;AAAAA,KAEGC,aAAAA,GAAgBpB,sBAAAA,GAAyBK,sBAAAA,GAAyBY,oBAAAA;AAAAA,KAElEK,eAAAA,GAAkBtB,sBAAAA,GAAyBK,sBAAAA,GAAyBC,uBAAAA;AAAAA,UAE/DkB,WAAAA;EA6CsBA;;;EAzC9BC,EAAAA;
|
|
1
|
+
{"version":3,"file":"command.d.cts","names":["ResolvedEntryTypeDefinition","StandardJSONSchemaV1","JsonSchema7TupleType","AnyFunction","JSONSchema7Object","z3","CommandParameterType","CommandParameterKinds","string","number","boolean","CommandParameterKind","BaseCommandParameter","name","kind","title","description","alias","env","optional","StringCommandParameter","default","format","variadic","choices","NumberCommandParameter","BooleanCommandParameter","CommandParameter","AsCommandParameterConfig","T","Pick","Omit","Partial","StringCommandParameterConfig","NumberCommandParameterConfig","BooleanCommandParameterConfig","CommandParameterConfig","BooleanCommandOption","isNegativeOf","skipAddingNegative","CommandOption","CommandOptionConfig","CommandArgument","CommandArgumentConfig","CommandBase","id","path","segments","icon","reference","isVirtual","CommandConfig","entry","tags","CommandTree","Record","options","args","parent","children","SerializedCommandTree","CommandMetadata","CommandModule","AnyZodObject","AnyZodTuple","metadata"],"sources":["../../../../../core/dist/types/command.d.cts"],"mappings":";;;cAScO,qBAAAA;EAAAA,SACHC,MAAAA;EAAAA,SACAC,MAAAA;EAAAA,SACAC,OAAAA;AAAAA;AAAAA,KAENC,oBAAAA,WAA+BJ,qBAAAA,eAAoCA,qBAAAA;AAAAA,UAC9DK,oBAAAA;EADmF;AAAA;;EAK3FC,IAAAA;EAI0B;;;EAA1BC,IAAAA,EAAMH,oBAAAA;EAINI;;;EAAAA,KAAAA;EAgBAI;;;EAZAH,WAAAA;EAc8B;;;EAV9BC,KAAAA;EAcAH;;;EAVAI,GAAAA;EA0BAM;;;EAtBAL,QAAAA;AAAAA;AAAAA,UAEQC,sBAAAA,SAA+BR,oBAAAA;EAsBoB;;;EAlB3DE,IAAAA;EA8BAS;;;EA1BAF,OAAAA;EA8BO;;;EA1BPC,MAAAA;EA4BwCV;;;EAxBxCW,QAAAA;EAgCO;AASgH;;EArCvHC,OAAAA;AAAAA;AAAAA,UAEQC,sBAAAA,SAA+Bb,oBAAAA;EAwCvC0B;;;EApCAxB,IAAAA;EAwCkB;;;EApClBO,OAAAA;EAsC4CI;;;EAlC5CF,QAAAA;EAkCmBH;;;EA9BnBI,OAAAA;AAAAA;AAAAA,UAEQE,uBAAAA,SAAgCd,oBAAAA;EA8BtB;;;EA1BlBE,IAAAA;EA0BuEY;;;EAtBvEL,OAAAA;AAAAA;AAAAA,UAUQgB,oBAAAA,SAA6BX,uBAAAA;EA0BrCoB;;;EAtBAR,YAAAA;EAsCArB;;;EAlCAsB,kBAAAA;AAAAA;AAAAA,KAEGC,aAAAA,GAAgBpB,sBAAAA,GAAyBK,sBAAAA,GAAyBY,oBAAAA;AAAAA,KAElEK,eAAAA,GAAkBtB,sBAAAA,GAAyBK,sBAAAA,GAAyBC,uBAAAA;AAAAA,UAE/DkB,WAAAA;EA6CsBA;;;EAzC9BC,EAAAA;EAwDAQ;;;EApDAxC,IAAAA;EAsDc;;;EAlDdiC,IAAAA;EAyESS;;;EArETR,QAAAA;EAiFUQ;;;EA7EVxC,KAAAA;EA8CAA;;;EA1CAC,WAAAA;EA6DAwC;;;EAzDAvC,KAAAA;EA6DMyB;;;EAzDNM,IAAAA;EAiEUO;;;EA7DVN,SAAAA;;;;;;;EAOAC,SAAAA;AAAAA;AAAAA,UAEQC,aAAAA,SAAsBP,WAAAA;;;;EAI9BC,EAAAA;;;;EAIAO,KAAAA,EAAOpD,2BAAAA;;;;;;;EAOPqD,IAAAA;AAAAA;AAAAA,KAEGC,WAAAA,GAAcH,aAAAA;;;;EAIjBpC,KAAAA;;;;EAIAC,WAAAA;;;;EAIAC,KAAAA;;;;;;;EAOAoC,IAAAA;;;;EAIAG,OAAAA,EAASD,MAAAA,SAAef,aAAAA;;;;EAIxBiB,IAAAA,EAAMf,eAAAA;;;;EAINgB,MAAAA,SAAeJ,WAAAA;;;;EAIfK,QAAAA,EAAUJ,MAAAA,SAAeD,WAAAA;AAAAA"}
|