@mekari/pixel3-spinner 0.0.4 → 0.0.6-dev.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/metafile-cjs.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/modules/spinner.props.ts":{"bytes":
|
|
1
|
+
{"inputs":{"src/modules/spinner.props.ts":{"bytes":710,"imports":[{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/spinner.tsx":{"bytes":973,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"src/modules/spinner.props.ts","kind":"import-statement","original":"./modules/spinner.props"}],"format":"esm"},"src/index.ts":{"bytes":123,"imports":[{"path":"src/spinner.tsx","kind":"import-statement","original":"./spinner"}],"format":"esm"},"src/modules/spinner.type.ts":{"bytes":123,"imports":[],"format":"esm"}},"outputs":{"dist/index.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":123},"src/spinner.tsx":{"bytesInOutput":828},"src/modules/spinner.props.ts":{"bytesInOutput":136}},"bytes":2079},"dist/spinner.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@mekari/pixel3-icon","kind":"require-call","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/spinner.tsx","inputs":{"src/spinner.tsx":{"bytesInOutput":963},"src/modules/spinner.props.ts":{"bytesInOutput":136}},"bytes":2074},"dist/modules/spinner.props.js":{"imports":[],"exports":[],"entryPoint":"src/modules/spinner.props.ts","inputs":{"src/modules/spinner.props.ts":{"bytesInOutput":295}},"bytes":1233},"dist/modules/spinner.type.js":{"imports":[],"exports":[],"entryPoint":"src/modules/spinner.type.ts","inputs":{"src/modules/spinner.type.ts":{"bytesInOutput":84}},"bytes":787}}}
|
package/dist/metafile-esm.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/modules/spinner.props.ts":{"bytes":
|
|
1
|
+
{"inputs":{"src/modules/spinner.props.ts":{"bytes":710,"imports":[{"path":"@mekari/pixel3-utils","kind":"import-statement","external":true}],"format":"esm"},"src/spinner.tsx":{"bytes":973,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true},{"path":"src/modules/spinner.props.ts","kind":"import-statement","original":"./modules/spinner.props"}],"format":"esm"},"src/index.ts":{"bytes":123,"imports":[{"path":"src/spinner.tsx","kind":"import-statement","original":"./spinner"}],"format":"esm"},"src/modules/spinner.type.ts":{"bytes":123,"imports":[],"format":"esm"}},"outputs":{"dist/index.mjs":{"imports":[{"path":"dist/chunk-WYMDJCGH.mjs","kind":"import-statement"},{"path":"dist/chunk-7TFUUHFL.mjs","kind":"import-statement"}],"exports":["MpSpinner"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":0}},"bytes":107},"dist/spinner.mjs":{"imports":[{"path":"dist/chunk-WYMDJCGH.mjs","kind":"import-statement"},{"path":"dist/chunk-7TFUUHFL.mjs","kind":"import-statement"}],"exports":["MpSpinner"],"entryPoint":"src/spinner.tsx","inputs":{},"bytes":107},"dist/chunk-WYMDJCGH.mjs":{"imports":[{"path":"dist/chunk-7TFUUHFL.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"vue","kind":"import-statement","external":true},{"path":"@mekari/pixel3-icon","kind":"import-statement","external":true},{"path":"@mekari/pixel3-styled-system/recipes","kind":"import-statement","external":true}],"exports":["MpSpinner"],"inputs":{"src/spinner.tsx":{"bytesInOutput":747}},"bytes":847},"dist/modules/spinner.props.mjs":{"imports":[{"path":"dist/chunk-7TFUUHFL.mjs","kind":"import-statement"}],"exports":["spinnerProps"],"entryPoint":"src/modules/spinner.props.ts","inputs":{},"bytes":83},"dist/chunk-7TFUUHFL.mjs":{"imports":[],"exports":["spinnerProps"],"inputs":{"src/modules/spinner.props.ts":{"bytesInOutput":136}},"bytes":196},"dist/modules/spinner.type.mjs":{"imports":[],"exports":[],"entryPoint":"src/modules/spinner.type.ts","inputs":{"src/modules/spinner.type.ts":{"bytesInOutput":0}},"bytes":0}}}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PropType, ExtractPublicPropTypes } from 'vue';
|
|
2
2
|
import { ColorToken } from '@mekari/pixel3-styled-system/tokens';
|
|
3
3
|
import { SpinnerSize } from './spinner.type.mjs';
|
|
4
|
-
import { ComponentWithProps } from '@mekari/pixel3-utils';
|
|
4
|
+
import { CombinedString, ComponentWithProps } from '@mekari/pixel3-utils';
|
|
5
5
|
|
|
6
6
|
declare const spinnerProps: {
|
|
7
7
|
readonly size: {
|
|
@@ -9,7 +9,7 @@ declare const spinnerProps: {
|
|
|
9
9
|
readonly default: "sm";
|
|
10
10
|
};
|
|
11
11
|
readonly color: {
|
|
12
|
-
readonly type: PropType<ColorToken>;
|
|
12
|
+
readonly type: PropType<CombinedString | ColorToken>;
|
|
13
13
|
readonly default: "currentcolor";
|
|
14
14
|
};
|
|
15
15
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PropType, ExtractPublicPropTypes } from 'vue';
|
|
2
2
|
import { ColorToken } from '@mekari/pixel3-styled-system/tokens';
|
|
3
3
|
import { SpinnerSize } from './spinner.type.js';
|
|
4
|
-
import { ComponentWithProps } from '@mekari/pixel3-utils';
|
|
4
|
+
import { CombinedString, ComponentWithProps } from '@mekari/pixel3-utils';
|
|
5
5
|
|
|
6
6
|
declare const spinnerProps: {
|
|
7
7
|
readonly size: {
|
|
@@ -9,7 +9,7 @@ declare const spinnerProps: {
|
|
|
9
9
|
readonly default: "sm";
|
|
10
10
|
};
|
|
11
11
|
readonly color: {
|
|
12
|
-
readonly type: PropType<ColorToken>;
|
|
12
|
+
readonly type: PropType<CombinedString | ColorToken>;
|
|
13
13
|
readonly default: "currentcolor";
|
|
14
14
|
};
|
|
15
15
|
};
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mekari/pixel3-spinner",
|
|
3
3
|
"description": "Spinner component for mekari pixel 3",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.6-dev.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@mekari/pixel3-icon": "0.0.
|
|
12
|
-
"@mekari/pixel3-styled-system": "0.0.
|
|
13
|
-
"@mekari/pixel3-utils": "0.0.
|
|
11
|
+
"@mekari/pixel3-icon": "0.0.6-dev.0",
|
|
12
|
+
"@mekari/pixel3-styled-system": "0.0.4-dev.0",
|
|
13
|
+
"@mekari/pixel3-utils": "0.0.4"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"vue": "^3.4.9"
|
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
"build": "tsup && pnpm build:types",
|
|
36
36
|
"build:fast": "tsup",
|
|
37
37
|
"build:types": "tsup src --dts-only",
|
|
38
|
-
"build:external": "tsup src/index.tsx --external",
|
|
39
38
|
"types:check": "tsc --noEmit",
|
|
40
39
|
"replace-config": "clean-package",
|
|
41
40
|
"restore-config": "clean-package restore"
|