@zeix/le-truc 0.15.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/.ai-context.md +234 -0
- package/.cursor/rules/use-bun-instead-of-node-vite-npm-pnpm.mdc +111 -0
- package/.editorconfig +12 -0
- package/.github/copilot-instructions.md +62 -0
- package/.github/workflows/codeql.yml +108 -0
- package/.github/workflows/static.yml +43 -0
- package/.prettierrc +17 -0
- package/CLAUDE.md +215 -0
- package/CODE_OF_CONDUCT.md +128 -0
- package/CONTRIBUTING.md +160 -0
- package/LICENSE +21 -0
- package/README.md +474 -0
- package/biome.json +295 -0
- package/bun.lock +239 -0
- package/docs/about.html +105 -0
- package/docs/assets/main.css +1 -0
- package/docs/assets/main.js +10 -0
- package/docs/assets/main.js.map +66 -0
- package/docs/components.html +293 -0
- package/docs/data-flow.html +308 -0
- package/docs/examples/basic-button.html +367 -0
- package/docs/examples/basic-counter.html +188 -0
- package/docs/examples/basic-hello.html +138 -0
- package/docs/examples/basic-number.html +271 -0
- package/docs/examples/basic-pluralize.html +214 -0
- package/docs/examples/card-callout.html +152 -0
- package/docs/examples/card-mediaqueries.html +138 -0
- package/docs/examples/context-media.html +198 -0
- package/docs/examples/empty.html +37 -0
- package/docs/examples/form-checkbox.html +233 -0
- package/docs/examples/form-combobox.html +420 -0
- package/docs/examples/form-listbox.html +434 -0
- package/docs/examples/form-radiogroup.html +296 -0
- package/docs/examples/form-spinbutton.html +402 -0
- package/docs/examples/form-textbox.html +361 -0
- package/docs/examples/layout.html +67 -0
- package/docs/examples/module-carousel.html +552 -0
- package/docs/examples/module-catalog.html +241 -0
- package/docs/examples/module-codeblock.html +270 -0
- package/docs/examples/module-dialog.html +343 -0
- package/docs/examples/module-lazyload.html +289 -0
- package/docs/examples/module-list.html +197 -0
- package/docs/examples/module-pagination.html +283 -0
- package/docs/examples/module-scrollarea.html +447 -0
- package/docs/examples/module-tabgroup.html +526 -0
- package/docs/examples/module-todo.html +367 -0
- package/docs/examples/module-with-type.html +63 -0
- package/docs/examples/nested-components.html +88 -0
- package/docs/examples/recursive.html +56 -0
- package/docs/examples/simple-text.html +39 -0
- package/docs/examples/snippet.html +93 -0
- package/docs/examples/with-styles.html +75 -0
- package/docs/getting-started.html +143 -0
- package/docs/index.html +112 -0
- package/docs/sitemap.xml +28 -0
- package/docs/styling.html +160 -0
- package/docs/sw.js +112 -0
- package/docs-src/api/README.md +478 -0
- package/docs-src/api/_media/LICENSE +21 -0
- package/docs-src/api/classes/CircularDependencyError.md +299 -0
- package/docs-src/api/classes/CircularMutationError.md +301 -0
- package/docs-src/api/classes/ContextRequestEvent.md +590 -0
- package/docs-src/api/classes/DependencyTimeoutError.md +301 -0
- package/docs-src/api/classes/InvalidCallbackError.md +303 -0
- package/docs-src/api/classes/InvalidComponentNameError.md +295 -0
- package/docs-src/api/classes/InvalidCustomElementError.md +301 -0
- package/docs-src/api/classes/InvalidEffectsError.md +301 -0
- package/docs-src/api/classes/InvalidPropertyNameError.md +307 -0
- package/docs-src/api/classes/InvalidReactivesError.md +307 -0
- package/docs-src/api/classes/InvalidSignalValueError.md +303 -0
- package/docs-src/api/classes/MissingElementError.md +307 -0
- package/docs-src/api/classes/NullishSignalValueError.md +299 -0
- package/docs-src/api/classes/StoreKeyExistsError.md +303 -0
- package/docs-src/api/classes/StoreKeyRangeError.md +299 -0
- package/docs-src/api/classes/StoreKeyReadonlyError.md +303 -0
- package/docs-src/api/functions/asBoolean.md +21 -0
- package/docs-src/api/functions/asEnum.md +31 -0
- package/docs-src/api/functions/asInteger.md +39 -0
- package/docs-src/api/functions/asJSON.md +49 -0
- package/docs-src/api/functions/asNumber.md +37 -0
- package/docs-src/api/functions/asString.md +37 -0
- package/docs-src/api/functions/createCollection.md +83 -0
- package/docs-src/api/functions/createSensor.md +71 -0
- package/docs-src/api/functions/dangerouslySetInnerHTML.md +48 -0
- package/docs-src/api/functions/defineComponent.md +65 -0
- package/docs-src/api/functions/isCollection.md +37 -0
- package/docs-src/api/functions/isParser.md +41 -0
- package/docs-src/api/functions/match.md +47 -0
- package/docs-src/api/functions/on.md +58 -0
- package/docs-src/api/functions/pass.md +53 -0
- package/docs-src/api/functions/provideContexts.md +47 -0
- package/docs-src/api/functions/read.md +47 -0
- package/docs-src/api/functions/requestContext.md +51 -0
- package/docs-src/api/functions/resolve.md +40 -0
- package/docs-src/api/functions/runEffects.md +51 -0
- package/docs-src/api/functions/runElementEffects.md +57 -0
- package/docs-src/api/functions/schedule.md +33 -0
- package/docs-src/api/functions/setAttribute.md +48 -0
- package/docs-src/api/functions/setProperty.md +52 -0
- package/docs-src/api/functions/setStyle.md +48 -0
- package/docs-src/api/functions/setText.md +42 -0
- package/docs-src/api/functions/show.md +42 -0
- package/docs-src/api/functions/toSignal.md +37 -0
- package/docs-src/api/functions/toggleAttribute.md +48 -0
- package/docs-src/api/functions/toggleClass.md +48 -0
- package/docs-src/api/functions/updateElement.md +53 -0
- package/docs-src/api/globals.md +131 -0
- package/docs-src/api/type-aliases/Cleanup.md +27 -0
- package/docs-src/api/type-aliases/Collection.md +91 -0
- package/docs-src/api/type-aliases/CollectionListener.md +27 -0
- package/docs-src/api/type-aliases/Component.md +17 -0
- package/docs-src/api/type-aliases/ComponentProp.md +11 -0
- package/docs-src/api/type-aliases/ComponentProps.md +11 -0
- package/docs-src/api/type-aliases/ComponentSetup.md +31 -0
- package/docs-src/api/type-aliases/ComponentUI.md +27 -0
- package/docs-src/api/type-aliases/Computed.md +49 -0
- package/docs-src/api/type-aliases/ComputedCallback.md +29 -0
- package/docs-src/api/type-aliases/Context.md +33 -0
- package/docs-src/api/type-aliases/ContextType.md +19 -0
- package/docs-src/api/type-aliases/DangerouslySetInnerHTMLOptions.md +27 -0
- package/docs-src/api/type-aliases/DiffResult.md +61 -0
- package/docs-src/api/type-aliases/Effect.md +35 -0
- package/docs-src/api/type-aliases/EffectCallback.md +23 -0
- package/docs-src/api/type-aliases/Effects.md +21 -0
- package/docs-src/api/type-aliases/ElementEffects.md +21 -0
- package/docs-src/api/type-aliases/ElementFromKey.md +21 -0
- package/docs-src/api/type-aliases/ElementQueries.md +27 -0
- package/docs-src/api/type-aliases/ElementUpdater.md +131 -0
- package/docs-src/api/type-aliases/EventHandler.md +31 -0
- package/docs-src/api/type-aliases/EventType.md +17 -0
- package/docs-src/api/type-aliases/Fallback.md +21 -0
- package/docs-src/api/type-aliases/Initializers.md +21 -0
- package/docs-src/api/type-aliases/LooseReader.md +31 -0
- package/docs-src/api/type-aliases/MatchHandlers.md +77 -0
- package/docs-src/api/type-aliases/MaybeCleanup.md +23 -0
- package/docs-src/api/type-aliases/MaybeSignal.md +17 -0
- package/docs-src/api/type-aliases/Parser.md +39 -0
- package/docs-src/api/type-aliases/ParserOrFallback.md +21 -0
- package/docs-src/api/type-aliases/PassedProp.md +25 -0
- package/docs-src/api/type-aliases/PassedProps.md +21 -0
- package/docs-src/api/type-aliases/Reactive.md +25 -0
- package/docs-src/api/type-aliases/Reader.md +31 -0
- package/docs-src/api/type-aliases/ReservedWords.md +11 -0
- package/docs-src/api/type-aliases/ResolveResult.md +29 -0
- package/docs-src/api/type-aliases/SensorEvents.md +25 -0
- package/docs-src/api/type-aliases/Signal.md +41 -0
- package/docs-src/api/type-aliases/State.md +85 -0
- package/docs-src/api/type-aliases/Store.md +29 -0
- package/docs-src/api/type-aliases/UI.md +11 -0
- package/docs-src/api/type-aliases/UnknownContext.md +13 -0
- package/docs-src/api/variables/CONTEXT_REQUEST.md +11 -0
- package/docs-src/api/variables/UNSET.md +23 -0
- package/docs-src/api/variables/batch.md +25 -0
- package/docs-src/api/variables/createComputed.md +41 -0
- package/docs-src/api/variables/createEffect.md +35 -0
- package/docs-src/api/variables/createState.md +37 -0
- package/docs-src/api/variables/createStore.md +42 -0
- package/docs-src/api/variables/diff.md +43 -0
- package/docs-src/api/variables/isAbortError.md +33 -0
- package/docs-src/api/variables/isAsyncFunction.md +39 -0
- package/docs-src/api/variables/isComputed.md +37 -0
- package/docs-src/api/variables/isEqual.md +49 -0
- package/docs-src/api/variables/isFunction.md +39 -0
- package/docs-src/api/variables/isMutableSignal.md +37 -0
- package/docs-src/api/variables/isNumber.md +33 -0
- package/docs-src/api/variables/isRecord.md +39 -0
- package/docs-src/api/variables/isRecordOrArray.md +39 -0
- package/docs-src/api/variables/isSignal.md +37 -0
- package/docs-src/api/variables/isState.md +37 -0
- package/docs-src/api/variables/isStore.md +37 -0
- package/docs-src/api/variables/isString.md +33 -0
- package/docs-src/api/variables/isSymbol.md +33 -0
- package/docs-src/api/variables/toError.md +33 -0
- package/docs-src/api/variables/valueString.md +33 -0
- package/docs-src/includes/menu.html +44 -0
- package/docs-src/pages/about.md +89 -0
- package/docs-src/pages/components.md +437 -0
- package/docs-src/pages/data-flow.md +449 -0
- package/docs-src/pages/getting-started.md +170 -0
- package/docs-src/pages/index.md +98 -0
- package/docs-src/pages/styling.md +165 -0
- package/eslint.config.js +64 -0
- package/examples/_common/clear.ts +49 -0
- package/examples/_common/fetch.ts +160 -0
- package/examples/_common/focus.ts +45 -0
- package/examples/_common/highlight.ts +5 -0
- package/examples/_global.css +463 -0
- package/examples/basic-button/basic-button.css +176 -0
- package/examples/basic-button/basic-button.html +46 -0
- package/examples/basic-button/basic-button.spec.ts +160 -0
- package/examples/basic-button/basic-button.ts +45 -0
- package/examples/basic-button/copyToClipboard.ts +37 -0
- package/examples/basic-counter/basic-counter.css +21 -0
- package/examples/basic-counter/basic-counter.html +24 -0
- package/examples/basic-counter/basic-counter.spec.ts +85 -0
- package/examples/basic-counter/basic-counter.ts +43 -0
- package/examples/basic-hello/basic-hello.html +34 -0
- package/examples/basic-hello/basic-hello.spec.ts +110 -0
- package/examples/basic-hello/basic-hello.ts +36 -0
- package/examples/basic-number/basic-number.html +79 -0
- package/examples/basic-number/basic-number.spec.ts +175 -0
- package/examples/basic-number/basic-number.ts +124 -0
- package/examples/basic-pluralize/basic-pluralize.html +64 -0
- package/examples/basic-pluralize/basic-pluralize.spec.ts +258 -0
- package/examples/basic-pluralize/basic-pluralize.ts +82 -0
- package/examples/card-callout/card-callout.css +79 -0
- package/examples/card-callout/card-callout.html +5 -0
- package/examples/card-mediaqueries/card-mediaqueries.html +29 -0
- package/examples/card-mediaqueries/card-mediaqueries.spec.ts +300 -0
- package/examples/card-mediaqueries/card-mediaqueries.ts +41 -0
- package/examples/context-media/context-media.html +3 -0
- package/examples/context-media/context-media.ts +127 -0
- package/examples/form-checkbox/form-checkbox.css +70 -0
- package/examples/form-checkbox/form-checkbox.html +13 -0
- package/examples/form-checkbox/form-checkbox.spec.ts +357 -0
- package/examples/form-checkbox/form-checkbox.ts +50 -0
- package/examples/form-checkbox/vanilla-checkbox.ts +101 -0
- package/examples/form-combobox/form-combobox.css +118 -0
- package/examples/form-combobox/form-combobox.html +74 -0
- package/examples/form-combobox/form-combobox.spec.ts +977 -0
- package/examples/form-combobox/form-combobox.ts +128 -0
- package/examples/form-listbox/form-listbox.css +71 -0
- package/examples/form-listbox/form-listbox.html +67 -0
- package/examples/form-listbox/form-listbox.spec.ts +1050 -0
- package/examples/form-listbox/form-listbox.ts +196 -0
- package/examples/form-listbox/mocks/timezones.json +495 -0
- package/examples/form-radiogroup/form-radiogroup.css +87 -0
- package/examples/form-radiogroup/form-radiogroup.html +51 -0
- package/examples/form-radiogroup/form-radiogroup.spec.ts +515 -0
- package/examples/form-radiogroup/form-radiogroup.ts +58 -0
- package/examples/form-spinbutton/form-spinbutton.css +95 -0
- package/examples/form-spinbutton/form-spinbutton.html +96 -0
- package/examples/form-spinbutton/form-spinbutton.spec.ts +688 -0
- package/examples/form-spinbutton/form-spinbutton.ts +111 -0
- package/examples/form-textbox/form-textbox.css +104 -0
- package/examples/form-textbox/form-textbox.html +53 -0
- package/examples/form-textbox/form-textbox.spec.ts +542 -0
- package/examples/form-textbox/form-textbox.ts +104 -0
- package/examples/main.css +22 -0
- package/examples/main.ts +23 -0
- package/examples/module-carousel/module-carousel.css +113 -0
- package/examples/module-carousel/module-carousel.html +208 -0
- package/examples/module-carousel/module-carousel.spec.ts +523 -0
- package/examples/module-carousel/module-carousel.ts +131 -0
- package/examples/module-catalog/module-catalog.css +22 -0
- package/examples/module-catalog/module-catalog.html +82 -0
- package/examples/module-catalog/module-catalog.spec.ts +396 -0
- package/examples/module-catalog/module-catalog.ts +37 -0
- package/examples/module-codeblock/module-codeblock.css +95 -0
- package/examples/module-codeblock/module-codeblock.html +28 -0
- package/examples/module-codeblock/module-codeblock.ts +47 -0
- package/examples/module-demo/module-demo.css +13 -0
- package/examples/module-dialog/module-dialog.css +96 -0
- package/examples/module-dialog/module-dialog.html +66 -0
- package/examples/module-dialog/module-dialog.spec.ts +557 -0
- package/examples/module-dialog/module-dialog.ts +81 -0
- package/examples/module-lazyload/mocks/empty.html +1 -0
- package/examples/module-lazyload/mocks/module-with-type.html +27 -0
- package/examples/module-lazyload/mocks/nested-components.html +52 -0
- package/examples/module-lazyload/mocks/recursive.html +20 -0
- package/examples/module-lazyload/mocks/simple-text.html +3 -0
- package/examples/module-lazyload/mocks/snippet.html +57 -0
- package/examples/module-lazyload/mocks/with-styles.html +39 -0
- package/examples/module-lazyload/module-lazyload.html +132 -0
- package/examples/module-lazyload/module-lazyload.spec.ts +734 -0
- package/examples/module-lazyload/module-lazyload.ts +89 -0
- package/examples/module-list/module-list.html +30 -0
- package/examples/module-list/module-list.spec.ts +592 -0
- package/examples/module-list/module-list.ts +99 -0
- package/examples/module-pagination/module-pagination.css +79 -0
- package/examples/module-pagination/module-pagination.html +16 -0
- package/examples/module-pagination/module-pagination.spec.ts +701 -0
- package/examples/module-pagination/module-pagination.ts +88 -0
- package/examples/module-scrollarea/module-scrollarea.css +77 -0
- package/examples/module-scrollarea/module-scrollarea.html +189 -0
- package/examples/module-scrollarea/module-scrollarea.spec.ts +445 -0
- package/examples/module-scrollarea/module-scrollarea.ts +81 -0
- package/examples/module-tabgroup/module-tabgroup.css +55 -0
- package/examples/module-tabgroup/module-tabgroup.html +269 -0
- package/examples/module-tabgroup/module-tabgroup.spec.ts +631 -0
- package/examples/module-tabgroup/module-tabgroup.ts +102 -0
- package/examples/module-toc/module-toc.css +34 -0
- package/examples/module-todo/module-todo.css +84 -0
- package/examples/module-todo/module-todo.html +92 -0
- package/examples/module-todo/module-todo.spec.ts +528 -0
- package/examples/module-todo/module-todo.ts +91 -0
- package/examples/section-hero/section-hero.css +37 -0
- package/examples/section-menu/section-menu.css +81 -0
- package/examples/server.ts +95 -0
- package/examples/test-setup.md +314 -0
- package/index.dev.js +1688 -0
- package/index.dev.ts +127 -0
- package/index.js +3 -0
- package/index.js.map +42 -0
- package/index.ts +127 -0
- package/package.json +64 -0
- package/playwright.config.ts +31 -0
- package/server/BUILD_SYSTEM.md +428 -0
- package/server/SERVER.md +286 -0
- package/server/build.ts +91 -0
- package/server/config.ts +130 -0
- package/server/effects/api.ts +28 -0
- package/server/effects/css.ts +31 -0
- package/server/effects/examples.ts +109 -0
- package/server/effects/js.ts +32 -0
- package/server/effects/menu.ts +34 -0
- package/server/effects/pages.ts +178 -0
- package/server/effects/service-worker.ts +57 -0
- package/server/effects/sitemap.ts +27 -0
- package/server/file-signals.ts +361 -0
- package/server/file-watcher.ts +77 -0
- package/server/io.ts +174 -0
- package/server/layout-engine.ts +470 -0
- package/server/layout-utils.ts +615 -0
- package/server/layouts/api.html +76 -0
- package/server/layouts/base.html +37 -0
- package/server/layouts/blog.html +115 -0
- package/server/layouts/example.html +104 -0
- package/server/layouts/overview.html +165 -0
- package/server/layouts/page.html +36 -0
- package/server/layouts/test.html +24 -0
- package/server/markdoc-helpers.ts +217 -0
- package/server/markdoc.config.ts +29 -0
- package/server/schema/callout.markdoc.ts +17 -0
- package/server/schema/carousel.markdoc.ts +118 -0
- package/server/schema/demo.markdoc.ts +74 -0
- package/server/schema/fence.markdoc.ts +84 -0
- package/server/schema/heading.markdoc.ts +23 -0
- package/server/schema/hero.markdoc.ts +59 -0
- package/server/schema/section.markdoc.ts +10 -0
- package/server/schema/slide.markdoc.ts +17 -0
- package/server/schema/source.markdoc.ts +53 -0
- package/server/schema/tabgroup.markdoc.ts +102 -0
- package/server/serve.ts +635 -0
- package/server/templates/README.md +352 -0
- package/server/templates/constants.ts +236 -0
- package/server/templates/fragments.ts +159 -0
- package/server/templates/hmr.ts +269 -0
- package/server/templates/menu.ts +33 -0
- package/server/templates/performance-hints.ts +94 -0
- package/server/templates/service-worker.ts +403 -0
- package/server/templates/sitemap.ts +57 -0
- package/server/templates/toc.ts +41 -0
- package/server/templates/utils.ts +378 -0
- package/src/component.ts +215 -0
- package/src/context.ts +156 -0
- package/src/effects/attribute.ts +82 -0
- package/src/effects/class.ts +28 -0
- package/src/effects/event.ts +67 -0
- package/src/effects/html.ts +60 -0
- package/src/effects/method.ts +57 -0
- package/src/effects/pass.ts +103 -0
- package/src/effects/property.ts +57 -0
- package/src/effects/style.ts +34 -0
- package/src/effects/text.ts +28 -0
- package/src/effects.ts +412 -0
- package/src/errors.ts +160 -0
- package/src/parsers/boolean.ts +14 -0
- package/src/parsers/json.ts +33 -0
- package/src/parsers/number.ts +55 -0
- package/src/parsers/string.ts +32 -0
- package/src/parsers.ts +90 -0
- package/src/scheduler.ts +47 -0
- package/src/signals/collection.ts +253 -0
- package/src/signals/sensor.ts +131 -0
- package/src/ui.ts +236 -0
- package/src/util.ts +187 -0
- package/tsconfig.json +34 -0
- package/types/examples/basic-button/basic-button.d.ts +16 -0
- package/types/examples/basic-hello/basic-hello.d.ts +18 -0
- package/types/index.d.ts +27 -0
- package/types/index.dev.d.ts +27 -0
- package/types/src/collection.d.ts +27 -0
- package/types/src/component.d.ts +32 -0
- package/types/src/context.d.ts +85 -0
- package/types/src/effects/attribute.d.ts +23 -0
- package/types/src/effects/callMethod.d.ts +23 -0
- package/types/src/effects/class.d.ts +13 -0
- package/types/src/effects/dangerouslySetInnerHTML.d.ts +18 -0
- package/types/src/effects/event.d.ts +18 -0
- package/types/src/effects/html.d.ts +17 -0
- package/types/src/effects/method.d.ts +22 -0
- package/types/src/effects/pass.d.ts +18 -0
- package/types/src/effects/property.d.ts +22 -0
- package/types/src/effects/setAttribute.d.ts +24 -0
- package/types/src/effects/setProperty.d.ts +23 -0
- package/types/src/effects/setStyle.d.ts +14 -0
- package/types/src/effects/setText.d.ts +13 -0
- package/types/src/effects/style.d.ts +13 -0
- package/types/src/effects/text.d.ts +12 -0
- package/types/src/effects/toggleClass.d.ts +14 -0
- package/types/src/effects.d.ts +153 -0
- package/types/src/errors.d.ts +99 -0
- package/types/src/events.d.ts +27 -0
- package/types/src/extractors.d.ts +23 -0
- package/types/src/parsers/boolean.d.ts +10 -0
- package/types/src/parsers/json.d.ts +13 -0
- package/types/src/parsers/number.d.ts +21 -0
- package/types/src/parsers/string.d.ts +19 -0
- package/types/src/parsers.d.ts +41 -0
- package/types/src/scheduler.d.ts +11 -0
- package/types/src/sensor.d.ts +27 -0
- package/types/src/signals/collection.d.ts +32 -0
- package/types/src/signals/sensor.d.ts +27 -0
- package/types/src/ui.d.ts +37 -0
- package/types/src/util.d.ts +65 -0
package/CLAUDE.md
ADDED
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
# Claude AI Context — Le Truc
|
|
2
|
+
|
|
3
|
+
**Le Truc** is a modern TypeScript library for building reactive custom elements (web components) with a signal-based reactive system. It provides a declarative approach to component development with automatic dependency management, type safety, and minimal runtime overhead.
|
|
4
|
+
|
|
5
|
+
## Library Overview and Philosophy
|
|
6
|
+
|
|
7
|
+
### Core Philosophy
|
|
8
|
+
|
|
9
|
+
Le Truc embraces the web platform's native custom elements API while providing modern developer ergonomics through:
|
|
10
|
+
|
|
11
|
+
- **Reactive by Default**: Built on the `@zeix/cause-effect` signal system for fine-grained reactivity
|
|
12
|
+
- **Type-First Design**: Full TypeScript support with compile-time safety for component properties and DOM queries
|
|
13
|
+
- **Zero Dependencies**: Self-contained runtime with minimal overhead
|
|
14
|
+
- **Web Standards Compliant**: Uses native custom elements, no virtual DOM or proprietary abstractions
|
|
15
|
+
- **Progressive Enhancement**: Components work with or without JavaScript, gracefully degrading
|
|
16
|
+
|
|
17
|
+
### Mental Model
|
|
18
|
+
|
|
19
|
+
Think of Le Truc components as **reactive shells around DOM elements**:
|
|
20
|
+
|
|
21
|
+
1. **Define** the component with properties, UI selectors, and effects
|
|
22
|
+
2. **Properties** are signals that automatically sync with attributes
|
|
23
|
+
3. **UI selectors** find and track DOM elements within the component
|
|
24
|
+
4. **Effects** run when signals change, updating the DOM reactively
|
|
25
|
+
|
|
26
|
+
```typescript
|
|
27
|
+
// Mental model: Property → Signal → Effect → DOM Update
|
|
28
|
+
defineComponent(
|
|
29
|
+
'my-widget', // Must contain hyphen, lowercase
|
|
30
|
+
{ count: 0 }, // Properties become signals
|
|
31
|
+
q => ({ btn: q.first('button') }), // UI elements are queried once
|
|
32
|
+
ui => ({ btn: on('click', ...) }) // Effects run reactively
|
|
33
|
+
)
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Key Differentiators
|
|
37
|
+
|
|
38
|
+
**vs React/Vue**: No virtual DOM, uses native web platform APIs
|
|
39
|
+
**vs Lit**: Signal-based reactivity instead of property-driven re-renders
|
|
40
|
+
**vs Angular Elements**: Lighter weight, functional composition over class inheritance
|
|
41
|
+
**vs Stencil**: Runtime reactivity instead of compile-time optimizations
|
|
42
|
+
|
|
43
|
+
## Architectural Deep Dive
|
|
44
|
+
|
|
45
|
+
### Signal-Based Reactivity
|
|
46
|
+
|
|
47
|
+
The foundation is `@zeix/cause-effect`, providing:
|
|
48
|
+
|
|
49
|
+
- **Signals**: `createState(value)` - mutable reactive values
|
|
50
|
+
- **Computed**: `createComputed(() => ...)` - derived reactive values
|
|
51
|
+
- **Effects**: `createEffect(() => ...)` - side effects that run when dependencies change
|
|
52
|
+
- **Batching**: `batch(() => ...)` - group multiple signal updates
|
|
53
|
+
|
|
54
|
+
```typescript
|
|
55
|
+
// Core reactivity pattern
|
|
56
|
+
const count = createState(0)
|
|
57
|
+
const doubled = createComputed(() => count.get() * 2)
|
|
58
|
+
const cleanup = createEffect(() => {
|
|
59
|
+
console.log(`Count: ${count.get()}, Doubled: ${doubled.get()}`)
|
|
60
|
+
})
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Component Lifecycle
|
|
64
|
+
|
|
65
|
+
1. **Registration**: `customElements.define()` registers the component class
|
|
66
|
+
2. **Connection**: `connectedCallback()` initializes UI queries and properties
|
|
67
|
+
3. **Dependency Resolution**: Waits for child custom elements to be defined
|
|
68
|
+
4. **Effect Setup**: Runs the setup function to attach reactive effects
|
|
69
|
+
5. **Reactive Updates**: Effects run automatically when signals change
|
|
70
|
+
6. **Disconnection**: `disconnectedCallback()` cleans up effects and listeners
|
|
71
|
+
|
|
72
|
+
### Property System
|
|
73
|
+
|
|
74
|
+
Properties are the bridge between HTML attributes and JavaScript signals:
|
|
75
|
+
|
|
76
|
+
```typescript
|
|
77
|
+
defineComponent('my-widget', {
|
|
78
|
+
// Static value
|
|
79
|
+
message: 'Hello',
|
|
80
|
+
|
|
81
|
+
// Signal
|
|
82
|
+
count: createState(0),
|
|
83
|
+
|
|
84
|
+
// Parser (attribute → property)
|
|
85
|
+
config: asJSON({ theme: 'light' }), // with default value
|
|
86
|
+
|
|
87
|
+
// Initializer function
|
|
88
|
+
timestamp: ui => ui.host.hasAttribute('created')
|
|
89
|
+
? Number(ui.host.getAttribute('created'))
|
|
90
|
+
: Date.now(),
|
|
91
|
+
|
|
92
|
+
// Reader (DOM → property)
|
|
93
|
+
value: read(ui => ui.input.value, asInteger())
|
|
94
|
+
})
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
**Parser Functions** transform attribute strings into typed values:
|
|
98
|
+
- `asString()`, `asNumber()`, `asInteger()`, `asBoolean()`, `asJSON()`
|
|
99
|
+
- Custom parsers: `(ui, value, oldValue) => parsedValue`
|
|
100
|
+
- Auto-added to `observedAttributes` for efficient attribute watching
|
|
101
|
+
|
|
102
|
+
### UI Query System
|
|
103
|
+
|
|
104
|
+
The `getHelpers()` function provides type-safe DOM queries with dependency tracking:
|
|
105
|
+
|
|
106
|
+
```typescript
|
|
107
|
+
const select = ({ first, all }) => ({
|
|
108
|
+
// Single element with type inference
|
|
109
|
+
button?: first('button'), // HTMLButtonElement | undefined
|
|
110
|
+
input?: first('input[type="text"]'), // HTMLInputElement | undefined
|
|
111
|
+
|
|
112
|
+
// Element collections
|
|
113
|
+
items: all('.item'), // Collection<HTMLElement>
|
|
114
|
+
|
|
115
|
+
// Required elements (throws if missing)
|
|
116
|
+
form: first('form', 'Form is required'),
|
|
117
|
+
|
|
118
|
+
// Generic typing
|
|
119
|
+
customEl?: first<MyCustomElement>('my-custom')
|
|
120
|
+
})
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
**Dependency Detection**: Custom elements found in queries are automatically added to dependencies, ensuring they're defined before effects run.
|
|
124
|
+
|
|
125
|
+
**Collection Signals**: `Collection<E>` provides reactive arrays of elements:
|
|
126
|
+
- Implements iterator protocol and array-like indexing
|
|
127
|
+
- Emits `add`/`remove` notifications for fine-grained change handling
|
|
128
|
+
- Automatically tracks DOM mutations
|
|
129
|
+
|
|
130
|
+
### Effect System
|
|
131
|
+
|
|
132
|
+
Effects are functions that run reactively and return cleanup functions:
|
|
133
|
+
|
|
134
|
+
```typescript
|
|
135
|
+
const effects = {
|
|
136
|
+
button: [
|
|
137
|
+
// Event handling
|
|
138
|
+
on('click', ({ host }) => ({ count: host.count + 1 })),
|
|
139
|
+
|
|
140
|
+
// Property updates from reactive values
|
|
141
|
+
setProperty('disabled', 'loading'),
|
|
142
|
+
|
|
143
|
+
// Attribute management using functions or reactive values
|
|
144
|
+
setAttribute('aria-pressed', () => String(host.active)),
|
|
145
|
+
toggleAttribute('loading'), // 'loading' for value may be omitted if the same
|
|
146
|
+
|
|
147
|
+
// Class management
|
|
148
|
+
toggleClass('active'),
|
|
149
|
+
|
|
150
|
+
// Text content
|
|
151
|
+
setText('count'),
|
|
152
|
+
|
|
153
|
+
// Custom effects
|
|
154
|
+
(host, target) => createEffect(() => {
|
|
155
|
+
target.style.color = host.color
|
|
156
|
+
return () => target.style.color = 'transparent'
|
|
157
|
+
})
|
|
158
|
+
]
|
|
159
|
+
}
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
**Built-in Effects**:
|
|
163
|
+
- `on(event, handler)` - Event listeners with reactive property updates
|
|
164
|
+
- `setText(property)` - Reactive text content
|
|
165
|
+
- `setProperty(prop, reactive)` - Element property updates
|
|
166
|
+
- `setAttribute(attr, reactive)` - Attribute management
|
|
167
|
+
- `toggleClass(class, property)` - Conditional CSS classes
|
|
168
|
+
- `setStyle(prop, reactive)` - Inline style updates
|
|
169
|
+
- `emit(event, reactive)` - Custom event emission
|
|
170
|
+
|
|
171
|
+
### Parser Architecture
|
|
172
|
+
|
|
173
|
+
Parsers handle the attribute ↔ property transformation:
|
|
174
|
+
|
|
175
|
+
```typescript
|
|
176
|
+
// Parser signature
|
|
177
|
+
type Parser<T, U extends UI> = (
|
|
178
|
+
ui: U, // Access to component UI
|
|
179
|
+
value: string | null | undefined, // Attribute value
|
|
180
|
+
old?: string | null // Previous value
|
|
181
|
+
) => T
|
|
182
|
+
|
|
183
|
+
// Example: JSON parser
|
|
184
|
+
const asJSON = <T>(fallback?: T) =>
|
|
185
|
+
(ui: UI, value: string | null): T => {
|
|
186
|
+
if (!value) return fallback
|
|
187
|
+
try {
|
|
188
|
+
return JSON.parse(value)
|
|
189
|
+
} catch {
|
|
190
|
+
return fallback
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
**Parser Integration**:
|
|
196
|
+
- Used as property initializers: `{ config: asJSON({ theme: 'light' }) }`
|
|
197
|
+
- Automatically added to `observedAttributes`
|
|
198
|
+
- Called on `attributeChangedCallback`
|
|
199
|
+
- Can access component UI for contextual parsing
|
|
200
|
+
|
|
201
|
+
### Error Handling & Debugging
|
|
202
|
+
|
|
203
|
+
**Development Mode**: Set `process.env.DEV_MODE=true` for enhanced debugging:
|
|
204
|
+
- Detailed error messages with component context
|
|
205
|
+
- Effect execution logging
|
|
206
|
+
- Dependency resolution warnings
|
|
207
|
+
|
|
208
|
+
**Error Types**:
|
|
209
|
+
- `InvalidComponentNameError` - Component name validation
|
|
210
|
+
- `InvalidPropertyNameError` - Property name conflicts
|
|
211
|
+
- `MissingElementError` - Required UI elements not found
|
|
212
|
+
- `DependencyTimeoutError` - Custom element dependencies timeout
|
|
213
|
+
- `InvalidEffectsError` - Effect setup failures
|
|
214
|
+
|
|
215
|
+
**Debug Mode**: Set `host.debug = true` on component instances for verbose logging.
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity
|
|
10
|
+
and orientation.
|
|
11
|
+
|
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
+
diverse, inclusive, and healthy community.
|
|
14
|
+
|
|
15
|
+
## Our Standards
|
|
16
|
+
|
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
|
18
|
+
community include:
|
|
19
|
+
|
|
20
|
+
* Demonstrating empathy and kindness toward other people
|
|
21
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
|
22
|
+
* Giving and gracefully accepting constructive feedback
|
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
24
|
+
and learning from the experience
|
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the
|
|
26
|
+
overall community
|
|
27
|
+
|
|
28
|
+
Examples of unacceptable behavior include:
|
|
29
|
+
|
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or
|
|
31
|
+
advances of any kind
|
|
32
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
33
|
+
* Public or private harassment
|
|
34
|
+
* Publishing others' private information, such as a physical or email
|
|
35
|
+
address, without their explicit permission
|
|
36
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
37
|
+
professional setting
|
|
38
|
+
|
|
39
|
+
## Enforcement Responsibilities
|
|
40
|
+
|
|
41
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
44
|
+
or harmful.
|
|
45
|
+
|
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
49
|
+
decisions when appropriate.
|
|
50
|
+
|
|
51
|
+
## Scope
|
|
52
|
+
|
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
|
54
|
+
an individual is officially representing the community in public spaces.
|
|
55
|
+
Examples of representing our community include using an official e-mail address,
|
|
56
|
+
posting via an official social media account, or acting as an appointed
|
|
57
|
+
representative at an online or offline event.
|
|
58
|
+
|
|
59
|
+
## Enforcement
|
|
60
|
+
|
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
62
|
+
reported to the community leaders responsible for enforcement at
|
|
63
|
+
info@zeix.com.
|
|
64
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
|
65
|
+
|
|
66
|
+
All community leaders are obligated to respect the privacy and security of the
|
|
67
|
+
reporter of any incident.
|
|
68
|
+
|
|
69
|
+
## Enforcement Guidelines
|
|
70
|
+
|
|
71
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
|
72
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
|
73
|
+
|
|
74
|
+
### 1. Correction
|
|
75
|
+
|
|
76
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
77
|
+
unprofessional or unwelcome in the community.
|
|
78
|
+
|
|
79
|
+
**Consequence**: A private, written warning from community leaders, providing
|
|
80
|
+
clarity around the nature of the violation and an explanation of why the
|
|
81
|
+
behavior was inappropriate. A public apology may be requested.
|
|
82
|
+
|
|
83
|
+
### 2. Warning
|
|
84
|
+
|
|
85
|
+
**Community Impact**: A violation through a single incident or series
|
|
86
|
+
of actions.
|
|
87
|
+
|
|
88
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
|
89
|
+
interaction with the people involved, including unsolicited interaction with
|
|
90
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
|
91
|
+
includes avoiding interactions in community spaces as well as external channels
|
|
92
|
+
like social media. Violating these terms may lead to a temporary or
|
|
93
|
+
permanent ban.
|
|
94
|
+
|
|
95
|
+
### 3. Temporary Ban
|
|
96
|
+
|
|
97
|
+
**Community Impact**: A serious violation of community standards, including
|
|
98
|
+
sustained inappropriate behavior.
|
|
99
|
+
|
|
100
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
|
101
|
+
communication with the community for a specified period of time. No public or
|
|
102
|
+
private interaction with the people involved, including unsolicited interaction
|
|
103
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
|
104
|
+
Violating these terms may lead to a permanent ban.
|
|
105
|
+
|
|
106
|
+
### 4. Permanent Ban
|
|
107
|
+
|
|
108
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
|
109
|
+
standards, including sustained inappropriate behavior, harassment of an
|
|
110
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
|
111
|
+
|
|
112
|
+
**Consequence**: A permanent ban from any sort of public interaction within
|
|
113
|
+
the community.
|
|
114
|
+
|
|
115
|
+
## Attribution
|
|
116
|
+
|
|
117
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
118
|
+
version 2.0, available at
|
|
119
|
+
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
|
120
|
+
|
|
121
|
+
Community Impact Guidelines were inspired by [Mozilla's code of conduct
|
|
122
|
+
enforcement ladder](https://github.com/mozilla/diversity).
|
|
123
|
+
|
|
124
|
+
[homepage]: https://www.contributor-covenant.org
|
|
125
|
+
|
|
126
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
|
127
|
+
https://www.contributor-covenant.org/faq. Translations are available at
|
|
128
|
+
https://www.contributor-covenant.org/translations.
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
# Contributing to Le Truc
|
|
2
|
+
|
|
3
|
+
Thank you for your interest in contributing to **Le Truc**! Your contributions help improve the project and benefit the community. This guide outlines how to get involved.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Table of Contents
|
|
8
|
+
|
|
9
|
+
- [Code of Conduct](#code-of-conduct)
|
|
10
|
+
- [How to Contribute](#how-to-contribute)
|
|
11
|
+
- [Reporting Issues](#reporting-issues)
|
|
12
|
+
- [Suggesting Enhancements](#suggesting-enhancements)
|
|
13
|
+
- [Submitting Pull Requests](#submitting-pull-requests)
|
|
14
|
+
- [Development Setup](#development-setup)
|
|
15
|
+
- [Coding Guidelines](#coding-guidelines)
|
|
16
|
+
- [Commit Message Guidelines](#commit-message-guidelines)
|
|
17
|
+
- [License](#license)
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Code of Conduct
|
|
22
|
+
|
|
23
|
+
By participating in this project, you agree to abide by our **[Code of Conduct](CODE_OF_CONDUCT.md)**. Please ensure that all interactions remain respectful and constructive.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## How to Contribute
|
|
28
|
+
|
|
29
|
+
### Reporting Issues
|
|
30
|
+
|
|
31
|
+
If you find a bug or have a feature request:
|
|
32
|
+
|
|
33
|
+
1. **Search the issue tracker** to check if your issue has already been reported.
|
|
34
|
+
2. If not, [open a new issue](https://github.com/zeixcom/le-truc/issues/new) and provide:
|
|
35
|
+
- A clear and descriptive title.
|
|
36
|
+
- Steps to reproduce the issue (if applicable).
|
|
37
|
+
- Expected vs. actual behavior.
|
|
38
|
+
- Screenshots or logs, if relevant.
|
|
39
|
+
|
|
40
|
+
### Suggesting Enhancements
|
|
41
|
+
|
|
42
|
+
We welcome feature suggestions! Before submitting a proposal:
|
|
43
|
+
|
|
44
|
+
1. **Check existing discussions and issues** to see if your idea has been considered before.
|
|
45
|
+
2. Provide a **use case** and explain why the feature is needed.
|
|
46
|
+
3. If possible, include a rough implementation idea.
|
|
47
|
+
|
|
48
|
+
### Submitting Pull Requests
|
|
49
|
+
|
|
50
|
+
We love code contributions! To submit a pull request (PR):
|
|
51
|
+
|
|
52
|
+
1. **Fork the repository** and clone it locally.
|
|
53
|
+
2. Create a **new branch** (`feature/my-new-feature` or `fix/bug-name`).
|
|
54
|
+
3. Make your changes, following our [Coding Guidelines](#coding-guidelines).
|
|
55
|
+
4. Ensure all tests pass before committing.
|
|
56
|
+
5. Write a **clear commit message** (see [Commit Message Guidelines](#commit-message-guidelines)).
|
|
57
|
+
6. Push your branch and **open a pull request** with:
|
|
58
|
+
- A brief description of your changes.
|
|
59
|
+
- Any related issue numbers (`Fixes #123`).
|
|
60
|
+
- Screenshots (if UI changes are made).
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
## Development Setup
|
|
65
|
+
|
|
66
|
+
To set up the project locally:
|
|
67
|
+
|
|
68
|
+
**Install dependencies:**
|
|
69
|
+
|
|
70
|
+
```sh
|
|
71
|
+
bun install
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
(Le Truc uses Bun as its package manager and runtime.)
|
|
75
|
+
|
|
76
|
+
**Run tests in watch mode:**
|
|
77
|
+
|
|
78
|
+
```sh
|
|
79
|
+
bun run test:watch
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
**Build the project:**
|
|
83
|
+
|
|
84
|
+
```sh
|
|
85
|
+
bun run build
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
**Start a development server for docs:**
|
|
89
|
+
|
|
90
|
+
```sh
|
|
91
|
+
bun run serve:docs
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
**Chrome DevTools Workspace Integration:**
|
|
95
|
+
|
|
96
|
+
For enhanced development experience with live editing in Chrome DevTools:
|
|
97
|
+
|
|
98
|
+
```sh
|
|
99
|
+
# Verify DevTools workspace configuration
|
|
100
|
+
bun run verify:devtools
|
|
101
|
+
|
|
102
|
+
# Then follow the setup instructions:
|
|
103
|
+
# 1. Open Chrome and navigate to http://localhost:3000
|
|
104
|
+
# 2. Open DevTools (F12)
|
|
105
|
+
# 3. Go to Sources tab → Workspace (left sidebar)
|
|
106
|
+
# 4. Click "Connect"
|
|
107
|
+
# 5. Allow access when Chrome prompts for permissions
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
Once configured, you can edit CSS, JavaScript, and other files directly in DevTools, and changes will be automatically saved to your source files and hot-reloaded.
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
## Coding Guidelines
|
|
115
|
+
|
|
116
|
+
To maintain a high-quality codebase, please follow these guidelines:
|
|
117
|
+
|
|
118
|
+
- Follow the project's existing coding style.
|
|
119
|
+
- Avoid unnecessary dependencies.
|
|
120
|
+
- Use functional programming principles where applicable.
|
|
121
|
+
- Prefer composition over inheritance.
|
|
122
|
+
- Make sure to lint your code (`bun run lint`) and all tests pass (`bun run test:watch`).
|
|
123
|
+
|
|
124
|
+
## Commit Message Guidelines
|
|
125
|
+
|
|
126
|
+
We use **conventional commits** for clear history and automated changelogs.
|
|
127
|
+
|
|
128
|
+
**Format:**
|
|
129
|
+
|
|
130
|
+
```txt
|
|
131
|
+
type(scope): short description
|
|
132
|
+
|
|
133
|
+
[optional longer description]
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
**Examples:**
|
|
137
|
+
|
|
138
|
+
- `feat(ui): add new LazyLoad component`
|
|
139
|
+
- `*fix(scheduler): resolve timing issue on initial load`
|
|
140
|
+
- `docs: update documentation for Context API`
|
|
141
|
+
|
|
142
|
+
**Types:**
|
|
143
|
+
|
|
144
|
+
- `feat`: New feature
|
|
145
|
+
- `fix`: Bug fix
|
|
146
|
+
- `docs`: Documentation update
|
|
147
|
+
- `style`: Code style changes (no logic changes)
|
|
148
|
+
- `refactor`: Code restructuring (no new features or bug fixes)
|
|
149
|
+
- `test`: Adding or improving tests
|
|
150
|
+
- `chore`: Maintenance tasks (e.g., build system updates)
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## License
|
|
155
|
+
|
|
156
|
+
By contributing, you agree that your contributions will be licensed under the MIT License, unless otherwise stated.
|
|
157
|
+
|
|
158
|
+
---
|
|
159
|
+
|
|
160
|
+
Thank you for contributing to Le Truc! 🚀
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 - 2025 Zeix AG
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|