cclkit4svelte 0.1.7 → 0.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.
@@ -1,21 +1,22 @@
1
- export declare const CCLVividColor: {
2
- readonly STRAWBERRY_PINK: "--strawberry-pink";
3
- readonly PINEAPPLE_YELLOW: "--pineapple-yellow";
4
- readonly SODA_BLUE: "--soda-blue";
5
- readonly MELON_GREEN: "--melon-green";
6
- readonly GRAPE_PURPLE: "--grape-purple";
7
- readonly WRAP_GREY: "--wrap-grey";
1
+ declare const CCLVividColor: {
2
+ STRAWBERRY_PINK: string;
3
+ PINEAPPLE_YELLOW: string;
4
+ SODA_BLUE: string;
5
+ MELON_GREEN: string;
6
+ GRAPE_PURPLE: string;
7
+ WRAP_GREY: string;
8
8
  };
9
- export declare const CCLPastelColor: {
10
- readonly PEACH_PINK: "--peach-pink";
11
- readonly LEMON_YELLOW: "--lemon-yellow";
12
- readonly SUGAR_BLUE: "--sugar-blue";
13
- readonly MATCHA_GREEN: "--matcha-green";
14
- readonly AKEBI_PURPLE: "--akebi-purple";
15
- readonly CLOUD_GREY: "--cloud-grey";
9
+ declare const CCLPastelColor: {
10
+ PEACH_PINK: string;
11
+ LEMON_YELLOW: string;
12
+ SUGAR_BLUE: string;
13
+ MATCHA_GREEN: string;
14
+ AKEBI_PURPLE: string;
15
+ CLOUD_GREY: string;
16
16
  };
17
- export declare const HeaderHeight: {
18
- readonly WIDE: "--hd-wide";
19
- readonly NOMAL: "--hd-nomal";
20
- readonly NALLOW: "--hd-nallow";
17
+ declare const HeaderHeight: {
18
+ WIDE: string;
19
+ NOMAL: string;
20
+ NALLOW: string;
21
21
  };
22
+ export { CCLVividColor, CCLPastelColor, HeaderHeight };
@@ -1,4 +1,4 @@
1
- export const CCLVividColor = {
1
+ const CCLVividColor = {
2
2
  STRAWBERRY_PINK: '--strawberry-pink',
3
3
  PINEAPPLE_YELLOW: '--pineapple-yellow',
4
4
  SODA_BLUE: '--soda-blue',
@@ -6,7 +6,7 @@ export const CCLVividColor = {
6
6
  GRAPE_PURPLE: '--grape-purple',
7
7
  WRAP_GREY: '--wrap-grey'
8
8
  };
9
- export const CCLPastelColor = {
9
+ const CCLPastelColor = {
10
10
  PEACH_PINK: '--peach-pink',
11
11
  LEMON_YELLOW: '--lemon-yellow',
12
12
  SUGAR_BLUE: '--sugar-blue',
@@ -14,8 +14,9 @@ export const CCLPastelColor = {
14
14
  AKEBI_PURPLE: '--akebi-purple',
15
15
  CLOUD_GREY: '--cloud-grey'
16
16
  };
17
- export const HeaderHeight = {
17
+ const HeaderHeight = {
18
18
  WIDE: '--hd-wide',
19
19
  NOMAL: '--hd-nomal',
20
20
  NALLOW: '--hd-nallow'
21
21
  };
22
+ export { CCLVividColor, CCLPastelColor, HeaderHeight };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cclkit4svelte",
3
- "version": "0.1.7",
3
+ "version": "0.2.0",
4
4
  "author": "reiji1020 <sk@reiji1020.info>",
5
5
  "license": "MIT",
6
6
  "type": "module",