@shell-shock/plugin-theme 0.4.1 → 0.4.2

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.
@@ -0,0 +1,10 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
+
3
+ //#region src/helpers/constants.ts
4
+ const DEFAULT_TAG_COLORS = {
5
+ foreground: "#394447",
6
+ background: "#f9fbfb"
7
+ };
8
+
9
+ //#endregion
10
+ exports.DEFAULT_TAG_COLORS = DEFAULT_TAG_COLORS;
@@ -0,0 +1,8 @@
1
+ //#region src/helpers/constants.d.ts
2
+ declare const DEFAULT_TAG_COLORS: {
3
+ foreground: string;
4
+ background: string;
5
+ };
6
+ //#endregion
7
+ export { DEFAULT_TAG_COLORS };
8
+ //# sourceMappingURL=constants.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.d.cts","names":[],"sources":["../../src/helpers/constants.ts"],"mappings":";cAkBa,kBAAA;EAGZ,UAAA;EAAA,UAAA;AAAA"}
@@ -0,0 +1,8 @@
1
+ //#region src/helpers/constants.d.ts
2
+ declare const DEFAULT_TAG_COLORS: {
3
+ foreground: string;
4
+ background: string;
5
+ };
6
+ //#endregion
7
+ export { DEFAULT_TAG_COLORS };
8
+ //# sourceMappingURL=constants.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.d.mts","names":[],"sources":["../../src/helpers/constants.ts"],"mappings":";cAkBa,kBAAA;EAGZ,UAAA;EAAA,UAAA;AAAA"}
@@ -0,0 +1,9 @@
1
+ //#region src/helpers/constants.ts
2
+ const DEFAULT_TAG_COLORS = {
3
+ foreground: "#394447",
4
+ background: "#f9fbfb"
5
+ };
6
+
7
+ //#endregion
8
+ export { DEFAULT_TAG_COLORS };
9
+ //# sourceMappingURL=constants.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.mjs","names":[],"sources":["../../src/helpers/constants.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Shell Shock\n\n This code was released as part of the Shell Shock project. Shell Shock\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/shell-shock.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/shell-shock\n Documentation: https://docs.stormsoftware.com/projects/shell-shock\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nexport const DEFAULT_TAG_COLORS = {\n foreground: \"#394447\",\n background: \"#f9fbfb\"\n};\n"],"mappings":";AAkBA,MAAa,qBAAqB;CAChC,YAAY;CACZ,YAAY;CACb"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shell-shock/plugin-theme",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "private": false,
5
5
  "description": "A package containing a Shell Shock plugin to generate source code given a list design tokens.",
6
6
  "keywords": [
@@ -130,6 +130,20 @@
130
130
  "default": "./dist/helpers/border-styles.mjs"
131
131
  }
132
132
  },
133
+ "./helpers/constants": {
134
+ "require": {
135
+ "types": "./dist/helpers/constants.d.cts",
136
+ "default": "./dist/helpers/constants.cjs"
137
+ },
138
+ "import": {
139
+ "types": "./dist/helpers/constants.d.mts",
140
+ "default": "./dist/helpers/constants.mjs"
141
+ },
142
+ "default": {
143
+ "types": "./dist/helpers/constants.d.mts",
144
+ "default": "./dist/helpers/constants.mjs"
145
+ }
146
+ },
133
147
  "./helpers/merge": {
134
148
  "require": {
135
149
  "types": "./dist/helpers/merge.d.cts",
@@ -224,5 +238,5 @@
224
238
  "@types/node": "^25.5.0"
225
239
  },
226
240
  "publishConfig": { "access": "public" },
227
- "gitHead": "081a1a99ff0c263af9b6d34547d02e96d0ac398e"
241
+ "gitHead": "27a9e457bd50dd3576a1edf1882f43d82a402743"
228
242
  }