@accelint/design-system 0.12.0 → 0.12.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.
- package/README.md +2 -2
- package/dist/components/aria/index.d.ts +4 -4
- package/dist/components/aria/index.js +14 -7
- package/dist/components/aria/index.js.map +1 -1
- package/dist/components/button/index.js +13 -5
- package/dist/components/button/index.js.map +1 -1
- package/dist/components/checkbox/index.js +16 -8
- package/dist/components/checkbox/index.js.map +1 -1
- package/dist/components/chip/index.js +20 -10
- package/dist/components/chip/index.js.map +1 -1
- package/dist/components/menu/index.js +12 -12
- package/dist/components/menu/index.js.map +1 -1
- package/dist/components/options/index.js +24 -12
- package/dist/components/options/index.js.map +1 -1
- package/dist/components/picker/index.js +15 -7
- package/dist/components/picker/index.js.map +1 -1
- package/dist/components/query-builder/dataset-sample.d.ts +28 -4
- package/dist/components/query-builder/group.js +1 -0
- package/dist/components/query-builder/group.js.map +1 -1
- package/dist/ladle/actions.js.map +1 -1
- package/dist/test/setup.js +9 -9
- package/dist/test/setup.js.map +1 -1
- package/package.json +10 -9
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../node_modules/.pnpm/@ladle+react@4.1.2_@swc+helpers@0.5.17_@types+node@24.
|
|
1
|
+
{"version":3,"sources":["../../../node_modules/.pnpm/@ladle+react@4.1.2_@swc+helpers@0.5.17_@types+node@24.6.2_@types+react@19.1.1_react-dom_78f74e33c18b8483375dd9508e517c6a/node_modules/@ladle/react/lib/app/exports.ts","../../src/ladle/actions.ts"],"names":[],"mappings":";;;;;;AA+CO,IAAM,MAAA,GAAS,CAAC,IAAA,KAAiB;AACtC,EAAA,MAAM,WAAY,MAAA,CACf,aAAA;AACH,EAAA,OAAO,CAAC,KAAA,GAAa,MAAA,KACnB,QAAA,CAAS;AAAA,IACP,MAAM,UAAA,CAAW,YAAA;AAAA,IACjB,KAAA,EAAO,EAAE,IAAA,EAAM,KAAA,EAAM;AAAA,IACrB,KAAA,EAAO;AAAA,GACR,CAAA;AACL,CAAA;;;ACtDO,SAAS,WAAc,IAAA,EAA+B;AAC3D,EAAA,OAAO,IAAA,CAAK,MAAA,CAAmB,CAAC,GAAA,EAAK,GAAA,KAAQ;AAC3C,IAAA,GAAA,CAAI,GAAG,CAAA,GAAI,MAAA,CAAO,GAAa,CAAA;AAE/B,IAAA,OAAO,GAAA;AAAA,EACT,CAAA,EAAG,EAAE,CAAA;AACP","file":"actions.js","sourcesContent":["import type * as React from \"react\";\nimport { useLadleContext } from \"./src/context\";\nimport {\n StoryDecorator,\n ActionType,\n GlobalState,\n ThemeState,\n ModeState,\n GlobalAction,\n Config,\n KnownMeta,\n MetaJson as BaseMetaJson,\n MetaJsonStory as BaseMetaJsonStory,\n} from \"../shared/types\";\n\nimport * as msw from \"msw\";\nexport { msw };\n\nexport type { UserConfig } from \"../shared/types\";\nexport { useMDXComponents } from \"@mdx-js/react\";\nexport const Story = (props: any) => props.children;\nexport const Meta = (props: any) => props.children;\nexport const Description = (props: any) => props.children;\n\ntype ReactNodeWithoutObject =\n | React.ReactElement\n | string\n | number\n | boolean\n | null\n | undefined;\n\nexport { useLadleContext, ActionType, ThemeState, ModeState };\nexport type { StoryDecorator };\n\n// deprecated, linkTo is just easier to use\nexport const useLink = () => {\n const { dispatch } = useLadleContext();\n return (value: string) => dispatch({ type: ActionType.UpdateStory, value });\n};\n\nexport const linkTo = (value: string) => {\n const dispatch = (window as any)\n .ladleDispatch as React.Dispatch<GlobalAction>;\n return () => dispatch({ type: ActionType.UpdateStory, value });\n};\n\nexport const action = (name: string) => {\n const dispatch = (window as any)\n .ladleDispatch as React.Dispatch<GlobalAction>;\n return (event: any = undefined) =>\n dispatch({\n type: ActionType.UpdateAction,\n value: { name, event },\n clear: false,\n });\n};\n\nexport type GlobalProvider = React.FC<{\n globalState: GlobalState;\n dispatch: React.Dispatch<GlobalAction>;\n config: Config;\n children: ReactNodeWithoutObject;\n storyMeta?: Meta;\n}>;\n\nexport type SourceHeader = React.FC<{\n path: string;\n locStart: number;\n locEnd: number;\n}>;\n\nexport interface StoryDefault<P = {}> {\n args?: Args<P>;\n argTypes?: ArgTypes<P>;\n decorators?: StoryDecorator<P>[];\n meta?: Meta;\n title?: string;\n msw?: msw.RequestHandler[];\n parameters?: { [key: string]: any };\n}\n\nexport interface Story<P = {}> extends React.FC<P> {\n args?: Args<P>;\n argTypes?: ArgTypes<P>;\n decorators?: StoryDecorator<P>[];\n meta?: Meta;\n storyName?: string;\n msw?: msw.RequestHandler[];\n parameters?: { [key: string]: any };\n}\n\nexport type Args<\n P = {\n [key: string]: any;\n },\n> = Partial<P>;\n\nexport type ControlType =\n | \"select\"\n | \"multi-select\"\n | \"radio\"\n | \"inline-radio\"\n | \"check\"\n | \"inline-check\"\n | \"background\"\n | \"color\"\n | \"date\"\n | \"number\"\n | \"text\"\n | \"boolean\"\n | \"range\";\n\nexport interface ArgType<K = any> {\n control?: {\n name?: string;\n labels?: { [key: string]: string };\n type: ControlType;\n min?: number;\n max?: number;\n step?: number;\n [key: string]: any;\n };\n mapping?: { [key: string | number]: any };\n options?: K[] | unknown;\n defaultValue?: K;\n description?: string;\n name?: string;\n action?: string;\n [key: string]: any;\n}\n\nexport type ArgTypes<\n P = {\n [key: string]: any;\n },\n> = {\n [key in keyof P]?: ArgType<P[key]>;\n};\n\nexport interface Meta extends KnownMeta {\n [key: string]: any;\n}\n\nexport type MetaJson = BaseMetaJson<Meta>;\nexport type MetaJsonStory = BaseMetaJsonStory<Meta>;\n","import { action } from '@ladle/react';\n\nexport function actions<T>(...keys: (keyof T)[]): Partial<T> {\n return keys.reduce<Partial<T>>((acc, key) => {\n acc[key] = action(key as string) as T[keyof T];\n\n return acc;\n }, {});\n}\n"]}
|
package/dist/test/setup.js
CHANGED
|
@@ -3879,7 +3879,7 @@ typeof document !== "undefined" && document.body ? getQueriesForElement(document
|
|
|
3879
3879
|
return helpers;
|
|
3880
3880
|
}, initialValue);
|
|
3881
3881
|
|
|
3882
|
-
// ../node_modules/.pnpm/@testing-library+react@16.3.0_@testing-library+dom@10.4.0_@types+react-dom@19.1.
|
|
3882
|
+
// ../node_modules/.pnpm/@testing-library+react@16.3.0_@testing-library+dom@10.4.0_@types+react-dom@19.1.1_@type_7493c477d8ee6200c9fe69ec2493f911/node_modules/@testing-library/react/dist/@testing-library/react.esm.js
|
|
3883
3883
|
var reactAct = typeof React.act === "function" ? React.act : DeprecatedReactTestUtils.act;
|
|
3884
3884
|
function getGlobalThis() {
|
|
3885
3885
|
if (typeof globalThis !== "undefined") {
|
|
@@ -4025,7 +4025,7 @@ if (typeof process === "undefined" || !process.env?.RTL_SKIP_AUTO_CLEANUP) {
|
|
|
4025
4025
|
}
|
|
4026
4026
|
}
|
|
4027
4027
|
|
|
4028
|
-
// ../node_modules/.pnpm/vitest@2.1.3_@types+node@24.
|
|
4028
|
+
// ../node_modules/.pnpm/vitest@2.1.3_@types+node@24.6.2_jsdom@25.0.1_msw@2.11.3_@types+node@24.6.2_typescript@5.8.3_/node_modules/vitest/dist/chunks/utils.Ck2hJTRs.js
|
|
4029
4029
|
function getWorkerState() {
|
|
4030
4030
|
const workerState = globalThis.__vitest_worker__;
|
|
4031
4031
|
if (!workerState) {
|
|
@@ -4039,7 +4039,7 @@ function getCurrentEnvironment() {
|
|
|
4039
4039
|
return state?.environment.name;
|
|
4040
4040
|
}
|
|
4041
4041
|
|
|
4042
|
-
// ../node_modules/.pnpm/vitest@2.1.3_@types+node@24.
|
|
4042
|
+
// ../node_modules/.pnpm/vitest@2.1.3_@types+node@24.6.2_jsdom@25.0.1_msw@2.11.3_@types+node@24.6.2_typescript@5.8.3_/node_modules/vitest/dist/chunks/index.CxRxs566.js
|
|
4043
4043
|
function getRunMode() {
|
|
4044
4044
|
return getWorkerState().config.mode;
|
|
4045
4045
|
}
|
|
@@ -4047,7 +4047,7 @@ function isRunningInBenchmark() {
|
|
|
4047
4047
|
return getRunMode() === "benchmark";
|
|
4048
4048
|
}
|
|
4049
4049
|
|
|
4050
|
-
// ../node_modules/.pnpm/vitest@2.1.3_@types+node@24.
|
|
4050
|
+
// ../node_modules/.pnpm/vitest@2.1.3_@types+node@24.6.2_jsdom@25.0.1_msw@2.11.3_@types+node@24.6.2_typescript@5.8.3_/node_modules/vitest/dist/chunks/benchmark.C8CRJYG4.js
|
|
4051
4051
|
var benchFns = /* @__PURE__ */ new WeakMap();
|
|
4052
4052
|
var benchOptsMap = /* @__PURE__ */ new WeakMap();
|
|
4053
4053
|
var bench = createBenchmark(function(name, fn2 = noop, options = {}) {
|
|
@@ -4076,7 +4076,7 @@ function formatName(name) {
|
|
|
4076
4076
|
return typeof name === "string" ? name : name instanceof Function ? name.name || "<anonymous>" : String(name);
|
|
4077
4077
|
}
|
|
4078
4078
|
|
|
4079
|
-
// ../node_modules/.pnpm/vitest@2.1.3_@types+node@24.
|
|
4079
|
+
// ../node_modules/.pnpm/vitest@2.1.3_@types+node@24.6.2_jsdom@25.0.1_msw@2.11.3_@types+node@24.6.2_typescript@5.8.3_/node_modules/vitest/dist/chunks/run-once.Sxe67Wng.js
|
|
4080
4080
|
var filesCount = /* @__PURE__ */ new Map();
|
|
4081
4081
|
var cache = /* @__PURE__ */ new Map();
|
|
4082
4082
|
function runOnce(fn2, key) {
|
|
@@ -4099,7 +4099,7 @@ function isFirstRun() {
|
|
|
4099
4099
|
return firstRun;
|
|
4100
4100
|
}
|
|
4101
4101
|
|
|
4102
|
-
// ../node_modules/.pnpm/vitest@2.1.3_@types+node@24.
|
|
4102
|
+
// ../node_modules/.pnpm/vitest@2.1.3_@types+node@24.6.2_jsdom@25.0.1_msw@2.11.3_@types+node@24.6.2_typescript@5.8.3_/node_modules/vitest/dist/chunks/_commonjsHelpers.BFTU3MAI.js
|
|
4103
4103
|
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
|
4104
4104
|
function getDefaultExportFromCjs(x) {
|
|
4105
4105
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
@@ -4111,7 +4111,7 @@ function isChildProcess() {
|
|
|
4111
4111
|
return typeof process !== "undefined" && !!process.send;
|
|
4112
4112
|
}
|
|
4113
4113
|
|
|
4114
|
-
// ../node_modules/.pnpm/vitest@2.1.3_@types+node@24.
|
|
4114
|
+
// ../node_modules/.pnpm/vitest@2.1.3_@types+node@24.6.2_jsdom@25.0.1_msw@2.11.3_@types+node@24.6.2_typescript@5.8.3_/node_modules/vitest/dist/chunks/date.W2xKR2qe.js
|
|
4115
4115
|
var RealDate = Date;
|
|
4116
4116
|
var now = null;
|
|
4117
4117
|
var MockDate = class _MockDate extends RealDate {
|
|
@@ -4951,7 +4951,7 @@ function requireTypeDetect() {
|
|
|
4951
4951
|
(function(module2, exports) {
|
|
4952
4952
|
(function(global3, factory) {
|
|
4953
4953
|
module2.exports = factory();
|
|
4954
|
-
})(typeDetect, function() {
|
|
4954
|
+
})(typeDetect, (function() {
|
|
4955
4955
|
var promiseExists = typeof Promise === "function";
|
|
4956
4956
|
var globalObject = typeof self === "object" ? self : commonjsGlobal;
|
|
4957
4957
|
var symbolExists = typeof Symbol !== "undefined";
|
|
@@ -5060,7 +5060,7 @@ function requireTypeDetect() {
|
|
|
5060
5060
|
return Object.prototype.toString.call(obj).slice(toStringLeftSliceLength, toStringRightSliceLength);
|
|
5061
5061
|
}
|
|
5062
5062
|
return typeDetect2;
|
|
5063
|
-
});
|
|
5063
|
+
}));
|
|
5064
5064
|
})(typeDetect$1);
|
|
5065
5065
|
return typeDetect$1.exports;
|
|
5066
5066
|
}
|