@tachui/core 0.7.0-alpha1
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/LICENSE +363 -0
- package/dist/assets/Asset.cjs +2 -0
- package/dist/assets/Asset.cjs.map +1 -0
- package/dist/assets/Asset.d.ts +11 -0
- package/dist/assets/Asset.d.ts.map +1 -0
- package/dist/assets/Asset.js +9 -0
- package/dist/assets/Asset.js.map +1 -0
- package/dist/assets/AssetCollection.cjs +2 -0
- package/dist/assets/AssetCollection.cjs.map +1 -0
- package/dist/assets/AssetCollection.d.ts +14 -0
- package/dist/assets/AssetCollection.d.ts.map +1 -0
- package/dist/assets/AssetCollection.js +44 -0
- package/dist/assets/AssetCollection.js.map +1 -0
- package/dist/assets/ColorAsset.cjs +2 -0
- package/dist/assets/ColorAsset.cjs.map +1 -0
- package/dist/assets/ColorAsset.d.ts +31 -0
- package/dist/assets/ColorAsset.d.ts.map +1 -0
- package/dist/assets/ColorAsset.js +114 -0
- package/dist/assets/ColorAsset.js.map +1 -0
- package/dist/assets/FontAsset.cjs +9 -0
- package/dist/assets/FontAsset.cjs.map +1 -0
- package/dist/assets/FontAsset.d.ts +114 -0
- package/dist/assets/FontAsset.d.ts.map +1 -0
- package/dist/assets/FontAsset.js +173 -0
- package/dist/assets/FontAsset.js.map +1 -0
- package/dist/assets/ImageAsset.cjs +2 -0
- package/dist/assets/ImageAsset.cjs.map +1 -0
- package/dist/assets/ImageAsset.d.ts +35 -0
- package/dist/assets/ImageAsset.d.ts.map +1 -0
- package/dist/assets/ImageAsset.js +39 -0
- package/dist/assets/ImageAsset.js.map +1 -0
- package/dist/assets/index.cjs +2 -0
- package/dist/assets/index.cjs.map +1 -0
- package/dist/assets/index.d.ts +26 -0
- package/dist/assets/index.d.ts.map +1 -0
- package/dist/assets/index.js +119 -0
- package/dist/assets/index.js.map +1 -0
- package/dist/assets/types.d.ts +70 -0
- package/dist/assets/types.d.ts.map +1 -0
- package/dist/bundles/common.d.ts +24 -0
- package/dist/bundles/common.d.ts.map +1 -0
- package/dist/bundles/complete.d.ts +27 -0
- package/dist/bundles/complete.d.ts.map +1 -0
- package/dist/bundles/essential.d.ts +24 -0
- package/dist/bundles/essential.d.ts.map +1 -0
- package/dist/bundles/minimal.d.ts +24 -0
- package/dist/bundles/minimal.d.ts.map +1 -0
- package/dist/bundles/production-minimal.d.ts +35 -0
- package/dist/bundles/production-minimal.d.ts.map +1 -0
- package/dist/common.cjs +2 -0
- package/dist/common.cjs.map +1 -0
- package/dist/common.js +985 -0
- package/dist/common.js.map +1 -0
- package/dist/compiler/advanced-parser.cjs +5 -0
- package/dist/compiler/advanced-parser.cjs.map +1 -0
- package/dist/compiler/advanced-parser.d.ts +113 -0
- package/dist/compiler/advanced-parser.d.ts.map +1 -0
- package/dist/compiler/advanced-parser.js +440 -0
- package/dist/compiler/advanced-parser.js.map +1 -0
- package/dist/compiler/codegen.cjs +6 -0
- package/dist/compiler/codegen.cjs.map +1 -0
- package/dist/compiler/codegen.d.ts +20 -0
- package/dist/compiler/codegen.d.ts.map +1 -0
- package/dist/compiler/codegen.js +241 -0
- package/dist/compiler/codegen.js.map +1 -0
- package/dist/compiler/enhanced-codegen.cjs +6 -0
- package/dist/compiler/enhanced-codegen.cjs.map +1 -0
- package/dist/compiler/enhanced-codegen.d.ts +121 -0
- package/dist/compiler/enhanced-codegen.d.ts.map +1 -0
- package/dist/compiler/enhanced-codegen.js +347 -0
- package/dist/compiler/enhanced-codegen.js.map +1 -0
- package/dist/compiler/index.cjs +2 -0
- package/dist/compiler/index.cjs.map +1 -0
- package/dist/compiler/index.d.ts +14 -0
- package/dist/compiler/index.d.ts.map +1 -0
- package/dist/compiler/index.js +13 -0
- package/dist/compiler/index.js.map +1 -0
- package/dist/compiler/parser.cjs +5 -0
- package/dist/compiler/parser.cjs.map +1 -0
- package/dist/compiler/parser.d.ts +12 -0
- package/dist/compiler/parser.d.ts.map +1 -0
- package/dist/compiler/parser.js +275 -0
- package/dist/compiler/parser.js.map +1 -0
- package/dist/compiler/plugin.cjs +33 -0
- package/dist/compiler/plugin.cjs.map +1 -0
- package/dist/compiler/plugin.d.ts +13 -0
- package/dist/compiler/plugin.d.ts.map +1 -0
- package/dist/compiler/plugin.js +103 -0
- package/dist/compiler/plugin.js.map +1 -0
- package/dist/compiler/types.d.ts +149 -0
- package/dist/compiler/types.d.ts.map +1 -0
- package/dist/components/BasicInput.cjs +2 -0
- package/dist/components/BasicInput.cjs.map +1 -0
- package/dist/components/BasicInput.d.ts +116 -0
- package/dist/components/BasicInput.d.ts.map +1 -0
- package/dist/components/BasicInput.js +182 -0
- package/dist/components/BasicInput.js.map +1 -0
- package/dist/components/Button.cjs +7 -0
- package/dist/components/Button.cjs.map +1 -0
- package/dist/components/Button.d.ts +252 -0
- package/dist/components/Button.d.ts.map +1 -0
- package/dist/components/Button.js +408 -0
- package/dist/components/Button.js.map +1 -0
- package/dist/components/Divider.cjs +2 -0
- package/dist/components/Divider.cjs.map +1 -0
- package/dist/components/Divider.d.ts +141 -0
- package/dist/components/Divider.d.ts.map +1 -0
- package/dist/components/Divider.js +187 -0
- package/dist/components/Divider.js.map +1 -0
- package/dist/components/EnhancedLink.cjs +2 -0
- package/dist/components/EnhancedLink.cjs.map +1 -0
- package/dist/components/EnhancedLink.d.ts +365 -0
- package/dist/components/EnhancedLink.d.ts.map +1 -0
- package/dist/components/EnhancedLink.js +345 -0
- package/dist/components/EnhancedLink.js.map +1 -0
- package/dist/components/Form.cjs +2 -0
- package/dist/components/Form.cjs.map +1 -0
- package/dist/components/Form.d.ts +141 -0
- package/dist/components/Form.d.ts.map +1 -0
- package/dist/components/Form.js +244 -0
- package/dist/components/Form.js.map +1 -0
- package/dist/components/Grid.cjs +2 -0
- package/dist/components/Grid.cjs.map +1 -0
- package/dist/components/Grid.d.ts +698 -0
- package/dist/components/Grid.d.ts.map +1 -0
- package/dist/components/Grid.js +1045 -0
- package/dist/components/Grid.js.map +1 -0
- package/dist/components/GridResponsive.cjs +2 -0
- package/dist/components/GridResponsive.cjs.map +1 -0
- package/dist/components/GridResponsive.d.ts +214 -0
- package/dist/components/GridResponsive.d.ts.map +1 -0
- package/dist/components/GridResponsive.js +382 -0
- package/dist/components/GridResponsive.js.map +1 -0
- package/dist/components/Image.cjs +2 -0
- package/dist/components/Image.cjs.map +1 -0
- package/dist/components/Image.d.ts +162 -0
- package/dist/components/Image.d.ts.map +1 -0
- package/dist/components/Image.js +212 -0
- package/dist/components/Image.js.map +1 -0
- package/dist/components/List.cjs +2 -0
- package/dist/components/List.cjs.map +1 -0
- package/dist/components/List.d.ts +287 -0
- package/dist/components/List.d.ts.map +1 -0
- package/dist/components/List.js +561 -0
- package/dist/components/List.js.map +1 -0
- package/dist/components/Menu.cjs +2 -0
- package/dist/components/Menu.cjs.map +1 -0
- package/dist/components/Menu.d.ts +159 -0
- package/dist/components/Menu.d.ts.map +1 -0
- package/dist/components/Menu.js +443 -0
- package/dist/components/Menu.js.map +1 -0
- package/dist/components/Picker.cjs +2 -0
- package/dist/components/Picker.cjs.map +1 -0
- package/dist/components/Picker.d.ts +153 -0
- package/dist/components/Picker.d.ts.map +1 -0
- package/dist/components/Picker.js +478 -0
- package/dist/components/Picker.js.map +1 -0
- package/dist/components/ScrollView.cjs +6 -0
- package/dist/components/ScrollView.cjs.map +1 -0
- package/dist/components/ScrollView.d.ts +222 -0
- package/dist/components/ScrollView.d.ts.map +1 -0
- package/dist/components/ScrollView.js +363 -0
- package/dist/components/ScrollView.js.map +1 -0
- package/dist/components/Section.cjs +2 -0
- package/dist/components/Section.cjs.map +1 -0
- package/dist/components/Section.d.ts +153 -0
- package/dist/components/Section.d.ts.map +1 -0
- package/dist/components/Section.js +323 -0
- package/dist/components/Section.js.map +1 -0
- package/dist/components/Show.cjs +2 -0
- package/dist/components/Show.cjs.map +1 -0
- package/dist/components/Show.d.ts +64 -0
- package/dist/components/Show.d.ts.map +1 -0
- package/dist/components/Show.js +112 -0
- package/dist/components/Show.js.map +1 -0
- package/dist/components/Spacer.cjs +2 -0
- package/dist/components/Spacer.cjs.map +1 -0
- package/dist/components/Spacer.d.ts +35 -0
- package/dist/components/Spacer.d.ts.map +1 -0
- package/dist/components/Spacer.js +53 -0
- package/dist/components/Spacer.js.map +1 -0
- package/dist/components/Text.cjs +2 -0
- package/dist/components/Text.cjs.map +1 -0
- package/dist/components/Text.d.ts +242 -0
- package/dist/components/Text.d.ts.map +1 -0
- package/dist/components/Text.js +193 -0
- package/dist/components/Text.js.map +1 -0
- package/dist/components/Toggle.cjs +2 -0
- package/dist/components/Toggle.cjs.map +1 -0
- package/dist/components/Toggle.d.ts +207 -0
- package/dist/components/Toggle.d.ts.map +1 -0
- package/dist/components/Toggle.js +477 -0
- package/dist/components/Toggle.js.map +1 -0
- package/dist/components/index.cjs +2 -0
- package/dist/components/index.cjs.map +1 -0
- package/dist/components/index.d.ts +45 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/index.js +104 -0
- package/dist/components/index.js.map +1 -0
- package/dist/components/wrapper.cjs +2 -0
- package/dist/components/wrapper.cjs.map +1 -0
- package/dist/components/wrapper.d.ts +249 -0
- package/dist/components/wrapper.d.ts.map +1 -0
- package/dist/components/wrapper.js +484 -0
- package/dist/components/wrapper.js.map +1 -0
- package/dist/concatenation/concatenatable.cjs +2 -0
- package/dist/concatenation/concatenatable.cjs.map +1 -0
- package/dist/concatenation/concatenatable.d.ts +63 -0
- package/dist/concatenation/concatenatable.d.ts.map +1 -0
- package/dist/concatenation/concatenatable.js +118 -0
- package/dist/concatenation/concatenatable.js.map +1 -0
- package/dist/concatenation/concatenated-component.cjs +2 -0
- package/dist/concatenation/concatenated-component.cjs.map +1 -0
- package/dist/concatenation/concatenated-component.d.ts +110 -0
- package/dist/concatenation/concatenated-component.d.ts.map +1 -0
- package/dist/concatenation/concatenated-component.js +276 -0
- package/dist/concatenation/concatenated-component.js.map +1 -0
- package/dist/concatenation/index.d.ts +13 -0
- package/dist/concatenation/index.d.ts.map +1 -0
- package/dist/concatenation/text-optimizer.cjs +2 -0
- package/dist/concatenation/text-optimizer.cjs.map +1 -0
- package/dist/concatenation/text-optimizer.d.ts +104 -0
- package/dist/concatenation/text-optimizer.d.ts.map +1 -0
- package/dist/concatenation/text-optimizer.js +236 -0
- package/dist/concatenation/text-optimizer.js.map +1 -0
- package/dist/concatenation/types.cjs +2 -0
- package/dist/concatenation/types.cjs.map +1 -0
- package/dist/concatenation/types.d.ts +88 -0
- package/dist/concatenation/types.d.ts.map +1 -0
- package/dist/concatenation/types.js +13 -0
- package/dist/concatenation/types.js.map +1 -0
- package/dist/constants/frame-utils.cjs +2 -0
- package/dist/constants/frame-utils.cjs.map +1 -0
- package/dist/constants/frame-utils.d.ts +68 -0
- package/dist/constants/frame-utils.d.ts.map +1 -0
- package/dist/constants/frame-utils.js +116 -0
- package/dist/constants/frame-utils.js.map +1 -0
- package/dist/constants/index.d.ts +8 -0
- package/dist/constants/index.d.ts.map +1 -0
- package/dist/constants/layout.cjs +2 -0
- package/dist/constants/layout.cjs.map +1 -0
- package/dist/constants/layout.d.ts +60 -0
- package/dist/constants/layout.d.ts.map +1 -0
- package/dist/constants/layout.js +46 -0
- package/dist/constants/layout.js.map +1 -0
- package/dist/css-classes/component-base.cjs +2 -0
- package/dist/css-classes/component-base.cjs.map +1 -0
- package/dist/css-classes/component-base.d.ts +40 -0
- package/dist/css-classes/component-base.d.ts.map +1 -0
- package/dist/css-classes/component-base.js +62 -0
- package/dist/css-classes/component-base.js.map +1 -0
- package/dist/css-classes/css-class-manager.cjs +2 -0
- package/dist/css-classes/css-class-manager.cjs.map +1 -0
- package/dist/css-classes/css-class-manager.d.ts +89 -0
- package/dist/css-classes/css-class-manager.d.ts.map +1 -0
- package/dist/css-classes/css-class-manager.js +209 -0
- package/dist/css-classes/css-class-manager.js.map +1 -0
- package/dist/css-classes/dom-integration.cjs +2 -0
- package/dist/css-classes/dom-integration.cjs.map +1 -0
- package/dist/css-classes/dom-integration.d.ts +76 -0
- package/dist/css-classes/dom-integration.d.ts.map +1 -0
- package/dist/css-classes/dom-integration.js +67 -0
- package/dist/css-classes/dom-integration.js.map +1 -0
- package/dist/css-classes/enhanced-renderer.cjs +2 -0
- package/dist/css-classes/enhanced-renderer.cjs.map +1 -0
- package/dist/css-classes/enhanced-renderer.d.ts +42 -0
- package/dist/css-classes/enhanced-renderer.d.ts.map +1 -0
- package/dist/css-classes/enhanced-renderer.js +73 -0
- package/dist/css-classes/enhanced-renderer.js.map +1 -0
- package/dist/css-classes/index.d.ts +14 -0
- package/dist/css-classes/index.d.ts.map +1 -0
- package/dist/css-classes/types.d.ts +59 -0
- package/dist/css-classes/types.d.ts.map +1 -0
- package/dist/css-classes/utilities.cjs +2 -0
- package/dist/css-classes/utilities.cjs.map +1 -0
- package/dist/css-classes/utilities.d.ts +104 -0
- package/dist/css-classes/utilities.d.ts.map +1 -0
- package/dist/css-classes/utilities.js +41 -0
- package/dist/css-classes/utilities.js.map +1 -0
- package/dist/debug/index.d.ts +61 -0
- package/dist/debug/index.d.ts.map +1 -0
- package/dist/debug.cjs +52 -0
- package/dist/debug.cjs.map +1 -0
- package/dist/debug.js +179 -0
- package/dist/debug.js.map +1 -0
- package/dist/developer-experience/enhanced-errors.d.ts +128 -0
- package/dist/developer-experience/enhanced-errors.d.ts.map +1 -0
- package/dist/developer-experience/enhanced-types.d.ts +281 -0
- package/dist/developer-experience/enhanced-types.d.ts.map +1 -0
- package/dist/developer-experience/index.d.ts +44 -0
- package/dist/developer-experience/index.d.ts.map +1 -0
- package/dist/essential.cjs +2 -0
- package/dist/essential.cjs.map +1 -0
- package/dist/essential.js +968 -0
- package/dist/essential.js.map +1 -0
- package/dist/gradients/css-generator.cjs +2 -0
- package/dist/gradients/css-generator.cjs.map +1 -0
- package/dist/gradients/css-generator.d.ts +10 -0
- package/dist/gradients/css-generator.d.ts.map +1 -0
- package/dist/gradients/css-generator.js +100 -0
- package/dist/gradients/css-generator.js.map +1 -0
- package/dist/gradients/examples.cjs +2 -0
- package/dist/gradients/examples.cjs.map +1 -0
- package/dist/gradients/examples.d.ts +432 -0
- package/dist/gradients/examples.d.ts.map +1 -0
- package/dist/gradients/examples.js +555 -0
- package/dist/gradients/examples.js.map +1 -0
- package/dist/gradients/gradient-asset.cjs +2 -0
- package/dist/gradients/gradient-asset.cjs.map +1 -0
- package/dist/gradients/gradient-asset.d.ts +10 -0
- package/dist/gradients/gradient-asset.d.ts.map +1 -0
- package/dist/gradients/gradient-asset.js +22 -0
- package/dist/gradients/gradient-asset.js.map +1 -0
- package/dist/gradients/index.cjs +2 -0
- package/dist/gradients/index.cjs.map +1 -0
- package/dist/gradients/index.d.ts +19 -0
- package/dist/gradients/index.d.ts.map +1 -0
- package/dist/gradients/index.js +78 -0
- package/dist/gradients/index.js.map +1 -0
- package/dist/gradients/performance.cjs +2 -0
- package/dist/gradients/performance.cjs.map +1 -0
- package/dist/gradients/performance.d.ts +146 -0
- package/dist/gradients/performance.d.ts.map +1 -0
- package/dist/gradients/performance.js +237 -0
- package/dist/gradients/performance.js.map +1 -0
- package/dist/gradients/presets.cjs +2 -0
- package/dist/gradients/presets.cjs.map +1 -0
- package/dist/gradients/presets.d.ts +165 -0
- package/dist/gradients/presets.d.ts.map +1 -0
- package/dist/gradients/presets.js +254 -0
- package/dist/gradients/presets.js.map +1 -0
- package/dist/gradients/reactive.cjs +2 -0
- package/dist/gradients/reactive.cjs.map +1 -0
- package/dist/gradients/reactive.d.ts +167 -0
- package/dist/gradients/reactive.d.ts.map +1 -0
- package/dist/gradients/reactive.js +239 -0
- package/dist/gradients/reactive.js.map +1 -0
- package/dist/gradients/state-gradient-asset.cjs +2 -0
- package/dist/gradients/state-gradient-asset.cjs.map +1 -0
- package/dist/gradients/state-gradient-asset.d.ts +67 -0
- package/dist/gradients/state-gradient-asset.d.ts.map +1 -0
- package/dist/gradients/state-gradient-asset.js +111 -0
- package/dist/gradients/state-gradient-asset.js.map +1 -0
- package/dist/gradients/types.d.ts +94 -0
- package/dist/gradients/types.d.ts.map +1 -0
- package/dist/gradients/utils.cjs +2 -0
- package/dist/gradients/utils.cjs.map +1 -0
- package/dist/gradients/utils.d.ts +313 -0
- package/dist/gradients/utils.d.ts.map +1 -0
- package/dist/gradients/utils.js +385 -0
- package/dist/gradients/utils.js.map +1 -0
- package/dist/gradients/validation.cjs +2 -0
- package/dist/gradients/validation.cjs.map +1 -0
- package/dist/gradients/validation.d.ts +156 -0
- package/dist/gradients/validation.d.ts.map +1 -0
- package/dist/gradients/validation.js +209 -0
- package/dist/gradients/validation.js.map +1 -0
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +26 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +965 -0
- package/dist/index.js.map +1 -0
- package/dist/index2.cjs +2 -0
- package/dist/index2.cjs.map +1 -0
- package/dist/index2.js +293 -0
- package/dist/index2.js.map +1 -0
- package/dist/lifecycle/hooks.cjs +2 -0
- package/dist/lifecycle/hooks.cjs.map +1 -0
- package/dist/lifecycle/hooks.d.ts +101 -0
- package/dist/lifecycle/hooks.d.ts.map +1 -0
- package/dist/lifecycle/hooks.js +159 -0
- package/dist/lifecycle/hooks.js.map +1 -0
- package/dist/minimal-prod.cjs +2 -0
- package/dist/minimal-prod.cjs.map +1 -0
- package/dist/minimal-prod.js +193 -0
- package/dist/minimal-prod.js.map +1 -0
- package/dist/minimal.cjs +2 -0
- package/dist/minimal.cjs.map +1 -0
- package/dist/minimal.js +968 -0
- package/dist/minimal.js.map +1 -0
- package/dist/modifiers/as-html-validator.cjs +2 -0
- package/dist/modifiers/as-html-validator.cjs.map +1 -0
- package/dist/modifiers/as-html-validator.d.ts +20 -0
- package/dist/modifiers/as-html-validator.d.ts.map +1 -0
- package/dist/modifiers/as-html-validator.js +47 -0
- package/dist/modifiers/as-html-validator.js.map +1 -0
- package/dist/modifiers/as-html.cjs +2 -0
- package/dist/modifiers/as-html.cjs.map +1 -0
- package/dist/modifiers/as-html.d.ts +65 -0
- package/dist/modifiers/as-html.d.ts.map +1 -0
- package/dist/modifiers/as-html.js +71 -0
- package/dist/modifiers/as-html.js.map +1 -0
- package/dist/modifiers/attributes.cjs +2 -0
- package/dist/modifiers/attributes.cjs.map +1 -0
- package/dist/modifiers/attributes.d.ts +203 -0
- package/dist/modifiers/attributes.d.ts.map +1 -0
- package/dist/modifiers/attributes.js +272 -0
- package/dist/modifiers/attributes.js.map +1 -0
- package/dist/modifiers/backdrop.cjs +2 -0
- package/dist/modifiers/backdrop.cjs.map +1 -0
- package/dist/modifiers/backdrop.d.ts +59 -0
- package/dist/modifiers/backdrop.d.ts.map +1 -0
- package/dist/modifiers/backdrop.js +109 -0
- package/dist/modifiers/backdrop.js.map +1 -0
- package/dist/modifiers/background.cjs +2 -0
- package/dist/modifiers/background.cjs.map +1 -0
- package/dist/modifiers/background.d.ts +21 -0
- package/dist/modifiers/background.d.ts.map +1 -0
- package/dist/modifiers/background.js +67 -0
- package/dist/modifiers/background.js.map +1 -0
- package/dist/modifiers/base.cjs +25 -0
- package/dist/modifiers/base.cjs.map +1 -0
- package/dist/modifiers/base.d.ts +156 -0
- package/dist/modifiers/base.d.ts.map +1 -0
- package/dist/modifiers/base.js +745 -0
- package/dist/modifiers/base.js.map +1 -0
- package/dist/modifiers/basic-sanitizer.cjs +2 -0
- package/dist/modifiers/basic-sanitizer.cjs.map +1 -0
- package/dist/modifiers/basic-sanitizer.d.ts +54 -0
- package/dist/modifiers/basic-sanitizer.d.ts.map +1 -0
- package/dist/modifiers/basic-sanitizer.js +162 -0
- package/dist/modifiers/basic-sanitizer.js.map +1 -0
- package/dist/modifiers/border.cjs +2 -0
- package/dist/modifiers/border.cjs.map +1 -0
- package/dist/modifiers/border.d.ts +217 -0
- package/dist/modifiers/border.d.ts.map +1 -0
- package/dist/modifiers/border.js +160 -0
- package/dist/modifiers/border.js.map +1 -0
- package/dist/modifiers/builder.cjs +2 -0
- package/dist/modifiers/builder.cjs.map +1 -0
- package/dist/modifiers/builder.d.ts +377 -0
- package/dist/modifiers/builder.d.ts.map +1 -0
- package/dist/modifiers/builder.js +930 -0
- package/dist/modifiers/builder.js.map +1 -0
- package/dist/modifiers/core.cjs +2 -0
- package/dist/modifiers/core.cjs.map +1 -0
- package/dist/modifiers/core.d.ts +407 -0
- package/dist/modifiers/core.d.ts.map +1 -0
- package/dist/modifiers/core.js +398 -0
- package/dist/modifiers/core.js.map +1 -0
- package/dist/modifiers/css.cjs +2 -0
- package/dist/modifiers/css.cjs.map +1 -0
- package/dist/modifiers/css.d.ts +86 -0
- package/dist/modifiers/css.d.ts.map +1 -0
- package/dist/modifiers/css.js +50 -0
- package/dist/modifiers/css.js.map +1 -0
- package/dist/modifiers/effects.cjs +2 -0
- package/dist/modifiers/effects.cjs.map +1 -0
- package/dist/modifiers/effects.d.ts +159 -0
- package/dist/modifiers/effects.d.ts.map +1 -0
- package/dist/modifiers/effects.js +178 -0
- package/dist/modifiers/effects.js.map +1 -0
- package/dist/modifiers/elements.cjs +2 -0
- package/dist/modifiers/elements.cjs.map +1 -0
- package/dist/modifiers/elements.d.ts +240 -0
- package/dist/modifiers/elements.d.ts.map +1 -0
- package/dist/modifiers/elements.js +216 -0
- package/dist/modifiers/elements.js.map +1 -0
- package/dist/modifiers/filters.cjs +2 -0
- package/dist/modifiers/filters.cjs.map +1 -0
- package/dist/modifiers/filters.d.ts +275 -0
- package/dist/modifiers/filters.d.ts.map +1 -0
- package/dist/modifiers/filters.js +223 -0
- package/dist/modifiers/filters.js.map +1 -0
- package/dist/modifiers/flexbox.cjs +2 -0
- package/dist/modifiers/flexbox.cjs.map +1 -0
- package/dist/modifiers/flexbox.d.ts +82 -0
- package/dist/modifiers/flexbox.d.ts.map +1 -0
- package/dist/modifiers/flexbox.js +56 -0
- package/dist/modifiers/flexbox.js.map +1 -0
- package/dist/modifiers/font.cjs +2 -0
- package/dist/modifiers/font.cjs.map +1 -0
- package/dist/modifiers/font.d.ts +71 -0
- package/dist/modifiers/font.d.ts.map +1 -0
- package/dist/modifiers/font.js +60 -0
- package/dist/modifiers/font.js.map +1 -0
- package/dist/modifiers/grid.cjs +2 -0
- package/dist/modifiers/grid.cjs.map +1 -0
- package/dist/modifiers/grid.d.ts +92 -0
- package/dist/modifiers/grid.d.ts.map +1 -0
- package/dist/modifiers/grid.js +92 -0
- package/dist/modifiers/grid.js.map +1 -0
- package/dist/modifiers/index.d.ts +58 -0
- package/dist/modifiers/index.d.ts.map +1 -0
- package/dist/modifiers/margin.cjs +2 -0
- package/dist/modifiers/margin.cjs.map +1 -0
- package/dist/modifiers/margin.d.ts +128 -0
- package/dist/modifiers/margin.d.ts.map +1 -0
- package/dist/modifiers/margin.js +65 -0
- package/dist/modifiers/margin.js.map +1 -0
- package/dist/modifiers/padding.cjs +2 -0
- package/dist/modifiers/padding.cjs.map +1 -0
- package/dist/modifiers/padding.d.ts +204 -0
- package/dist/modifiers/padding.d.ts.map +1 -0
- package/dist/modifiers/padding.js +109 -0
- package/dist/modifiers/padding.js.map +1 -0
- package/dist/modifiers/registry.cjs +2 -0
- package/dist/modifiers/registry.cjs.map +1 -0
- package/dist/modifiers/registry.d.ts +69 -0
- package/dist/modifiers/registry.d.ts.map +1 -0
- package/dist/modifiers/registry.js +163 -0
- package/dist/modifiers/registry.js.map +1 -0
- package/dist/modifiers/responsive/advanced-utilities.cjs +2 -0
- package/dist/modifiers/responsive/advanced-utilities.cjs.map +1 -0
- package/dist/modifiers/responsive/advanced-utilities.d.ts +118 -0
- package/dist/modifiers/responsive/advanced-utilities.d.ts.map +1 -0
- package/dist/modifiers/responsive/advanced-utilities.js +291 -0
- package/dist/modifiers/responsive/advanced-utilities.js.map +1 -0
- package/dist/modifiers/responsive/breakpoints.cjs +2 -0
- package/dist/modifiers/responsive/breakpoints.cjs.map +1 -0
- package/dist/modifiers/responsive/breakpoints.d.ts +81 -0
- package/dist/modifiers/responsive/breakpoints.d.ts.map +1 -0
- package/dist/modifiers/responsive/breakpoints.js +168 -0
- package/dist/modifiers/responsive/breakpoints.js.map +1 -0
- package/dist/modifiers/responsive/css-generator.cjs +5 -0
- package/dist/modifiers/responsive/css-generator.cjs.map +1 -0
- package/dist/modifiers/responsive/css-generator.d.ts +100 -0
- package/dist/modifiers/responsive/css-generator.d.ts.map +1 -0
- package/dist/modifiers/responsive/css-generator.js +261 -0
- package/dist/modifiers/responsive/css-generator.js.map +1 -0
- package/dist/modifiers/responsive/dev-tools.cjs +77 -0
- package/dist/modifiers/responsive/dev-tools.cjs.map +1 -0
- package/dist/modifiers/responsive/dev-tools.d.ts +107 -0
- package/dist/modifiers/responsive/dev-tools.d.ts.map +1 -0
- package/dist/modifiers/responsive/dev-tools.js +380 -0
- package/dist/modifiers/responsive/dev-tools.js.map +1 -0
- package/dist/modifiers/responsive/index.d.ts +28 -0
- package/dist/modifiers/responsive/index.d.ts.map +1 -0
- package/dist/modifiers/responsive/layout-patterns.cjs +2 -0
- package/dist/modifiers/responsive/layout-patterns.cjs.map +1 -0
- package/dist/modifiers/responsive/layout-patterns.d.ts +230 -0
- package/dist/modifiers/responsive/layout-patterns.d.ts.map +1 -0
- package/dist/modifiers/responsive/layout-patterns.js +254 -0
- package/dist/modifiers/responsive/layout-patterns.js.map +1 -0
- package/dist/modifiers/responsive/performance.cjs +3 -0
- package/dist/modifiers/responsive/performance.cjs.map +1 -0
- package/dist/modifiers/responsive/performance.d.ts +130 -0
- package/dist/modifiers/responsive/performance.d.ts.map +1 -0
- package/dist/modifiers/responsive/performance.js +212 -0
- package/dist/modifiers/responsive/performance.js.map +1 -0
- package/dist/modifiers/responsive/responsive-builder.cjs +2 -0
- package/dist/modifiers/responsive/responsive-builder.cjs.map +1 -0
- package/dist/modifiers/responsive/responsive-builder.d.ts +133 -0
- package/dist/modifiers/responsive/responsive-builder.d.ts.map +1 -0
- package/dist/modifiers/responsive/responsive-builder.js +272 -0
- package/dist/modifiers/responsive/responsive-builder.js.map +1 -0
- package/dist/modifiers/responsive/responsive-modifier.cjs +3 -0
- package/dist/modifiers/responsive/responsive-modifier.cjs.map +1 -0
- package/dist/modifiers/responsive/responsive-modifier.d.ts +123 -0
- package/dist/modifiers/responsive/responsive-modifier.d.ts.map +1 -0
- package/dist/modifiers/responsive/responsive-modifier.js +204 -0
- package/dist/modifiers/responsive/responsive-modifier.js.map +1 -0
- package/dist/modifiers/responsive/types.cjs +2 -0
- package/dist/modifiers/responsive/types.cjs.map +1 -0
- package/dist/modifiers/responsive/types.d.ts +183 -0
- package/dist/modifiers/responsive/types.d.ts.map +1 -0
- package/dist/modifiers/responsive/types.js +26 -0
- package/dist/modifiers/responsive/types.js.map +1 -0
- package/dist/modifiers/responsive/utilities.cjs +16 -0
- package/dist/modifiers/responsive/utilities.cjs.map +1 -0
- package/dist/modifiers/responsive/utilities.d.ts +149 -0
- package/dist/modifiers/responsive/utilities.d.ts.map +1 -0
- package/dist/modifiers/responsive/utilities.js +273 -0
- package/dist/modifiers/responsive/utilities.js.map +1 -0
- package/dist/modifiers/scroll.cjs +2 -0
- package/dist/modifiers/scroll.cjs.map +1 -0
- package/dist/modifiers/scroll.d.ts +143 -0
- package/dist/modifiers/scroll.d.ts.map +1 -0
- package/dist/modifiers/scroll.js +82 -0
- package/dist/modifiers/scroll.js.map +1 -0
- package/dist/modifiers/shadows.cjs +2 -0
- package/dist/modifiers/shadows.cjs.map +1 -0
- package/dist/modifiers/shadows.d.ts +114 -0
- package/dist/modifiers/shadows.d.ts.map +1 -0
- package/dist/modifiers/shadows.js +147 -0
- package/dist/modifiers/shadows.js.map +1 -0
- package/dist/modifiers/size.cjs +2 -0
- package/dist/modifiers/size.cjs.map +1 -0
- package/dist/modifiers/size.d.ts +113 -0
- package/dist/modifiers/size.d.ts.map +1 -0
- package/dist/modifiers/size.js +74 -0
- package/dist/modifiers/size.js.map +1 -0
- package/dist/modifiers/text.cjs +2 -0
- package/dist/modifiers/text.cjs.map +1 -0
- package/dist/modifiers/text.d.ts +147 -0
- package/dist/modifiers/text.d.ts.map +1 -0
- package/dist/modifiers/text.js +166 -0
- package/dist/modifiers/text.js.map +1 -0
- package/dist/modifiers/transformations.cjs +2 -0
- package/dist/modifiers/transformations.cjs.map +1 -0
- package/dist/modifiers/transformations.d.ts +329 -0
- package/dist/modifiers/transformations.d.ts.map +1 -0
- package/dist/modifiers/transformations.js +216 -0
- package/dist/modifiers/transformations.js.map +1 -0
- package/dist/modifiers/transitions.cjs +2 -0
- package/dist/modifiers/transitions.cjs.map +1 -0
- package/dist/modifiers/transitions.d.ts +98 -0
- package/dist/modifiers/transitions.d.ts.map +1 -0
- package/dist/modifiers/transitions.js +102 -0
- package/dist/modifiers/transitions.js.map +1 -0
- package/dist/modifiers/types.cjs +2 -0
- package/dist/modifiers/types.cjs.map +1 -0
- package/dist/modifiers/types.d.ts +655 -0
- package/dist/modifiers/types.d.ts.map +1 -0
- package/dist/modifiers/types.js +5 -0
- package/dist/modifiers/types.js.map +1 -0
- package/dist/modifiers/typography.cjs +2 -0
- package/dist/modifiers/typography.cjs.map +1 -0
- package/dist/modifiers/typography.d.ts +192 -0
- package/dist/modifiers/typography.d.ts.map +1 -0
- package/dist/modifiers/typography.js +76 -0
- package/dist/modifiers/typography.js.map +1 -0
- package/dist/modifiers/utility.cjs +2 -0
- package/dist/modifiers/utility.cjs.map +1 -0
- package/dist/modifiers/utility.d.ts +69 -0
- package/dist/modifiers/utility.d.ts.map +1 -0
- package/dist/modifiers/utility.js +71 -0
- package/dist/modifiers/utility.js.map +1 -0
- package/dist/modifiers/utils.cjs +2 -0
- package/dist/modifiers/utils.cjs.map +1 -0
- package/dist/modifiers/utils.d.ts +75 -0
- package/dist/modifiers/utils.d.ts.map +1 -0
- package/dist/modifiers/utils.js +250 -0
- package/dist/modifiers/utils.js.map +1 -0
- package/dist/plugins/component-loader-registry.d.ts +143 -0
- package/dist/plugins/component-loader-registry.d.ts.map +1 -0
- package/dist/plugins/index.cjs +2 -0
- package/dist/plugins/index.cjs.map +1 -0
- package/dist/plugins/index.d.ts +17 -0
- package/dist/plugins/index.d.ts.map +1 -0
- package/dist/plugins/index.js +34 -0
- package/dist/plugins/index.js.map +1 -0
- package/dist/plugins/legacy-adapter.cjs +2 -0
- package/dist/plugins/legacy-adapter.cjs.map +1 -0
- package/dist/plugins/legacy-adapter.d.ts +35 -0
- package/dist/plugins/legacy-adapter.d.ts.map +1 -0
- package/dist/plugins/legacy-adapter.js +30 -0
- package/dist/plugins/legacy-adapter.js.map +1 -0
- package/dist/plugins/simplified-component-registry.cjs +2 -0
- package/dist/plugins/simplified-component-registry.cjs.map +1 -0
- package/dist/plugins/simplified-component-registry.d.ts +40 -0
- package/dist/plugins/simplified-component-registry.d.ts.map +1 -0
- package/dist/plugins/simplified-component-registry.js +71 -0
- package/dist/plugins/simplified-component-registry.js.map +1 -0
- package/dist/plugins/simplified-error-handler.cjs +2 -0
- package/dist/plugins/simplified-error-handler.cjs.map +1 -0
- package/dist/plugins/simplified-error-handler.d.ts +83 -0
- package/dist/plugins/simplified-error-handler.d.ts.map +1 -0
- package/dist/plugins/simplified-error-handler.js +154 -0
- package/dist/plugins/simplified-error-handler.js.map +1 -0
- package/dist/plugins/simplified-index.d.ts +17 -0
- package/dist/plugins/simplified-index.d.ts.map +1 -0
- package/dist/plugins/simplified-lazy-loader.cjs +2 -0
- package/dist/plugins/simplified-lazy-loader.cjs.map +1 -0
- package/dist/plugins/simplified-lazy-loader.d.ts +65 -0
- package/dist/plugins/simplified-lazy-loader.d.ts.map +1 -0
- package/dist/plugins/simplified-lazy-loader.js +129 -0
- package/dist/plugins/simplified-lazy-loader.js.map +1 -0
- package/dist/plugins/simplified-plugin-manager.cjs +2 -0
- package/dist/plugins/simplified-plugin-manager.cjs.map +1 -0
- package/dist/plugins/simplified-plugin-manager.d.ts +24 -0
- package/dist/plugins/simplified-plugin-manager.d.ts.map +1 -0
- package/dist/plugins/simplified-plugin-manager.js +51 -0
- package/dist/plugins/simplified-plugin-manager.js.map +1 -0
- package/dist/plugins/simplified-tachui-instance.cjs +2 -0
- package/dist/plugins/simplified-tachui-instance.cjs.map +1 -0
- package/dist/plugins/simplified-tachui-instance.d.ts +54 -0
- package/dist/plugins/simplified-tachui-instance.d.ts.map +1 -0
- package/dist/plugins/simplified-tachui-instance.js +88 -0
- package/dist/plugins/simplified-tachui-instance.js.map +1 -0
- package/dist/plugins/simplified-types.cjs +2 -0
- package/dist/plugins/simplified-types.cjs.map +1 -0
- package/dist/plugins/simplified-types.d.ts +63 -0
- package/dist/plugins/simplified-types.d.ts.map +1 -0
- package/dist/plugins/simplified-types.js +9 -0
- package/dist/plugins/simplified-types.js.map +1 -0
- package/dist/plugins/simplified-utils.cjs +2 -0
- package/dist/plugins/simplified-utils.cjs.map +1 -0
- package/dist/plugins/simplified-utils.d.ts +39 -0
- package/dist/plugins/simplified-utils.d.ts.map +1 -0
- package/dist/plugins/simplified-utils.js +40 -0
- package/dist/plugins/simplified-utils.js.map +1 -0
- package/dist/reactive/cleanup.cjs +2 -0
- package/dist/reactive/cleanup.cjs.map +1 -0
- package/dist/reactive/cleanup.d.ts +115 -0
- package/dist/reactive/cleanup.d.ts.map +1 -0
- package/dist/reactive/cleanup.js +62 -0
- package/dist/reactive/cleanup.js.map +1 -0
- package/dist/reactive/computed.cjs +2 -0
- package/dist/reactive/computed.cjs.map +1 -0
- package/dist/reactive/computed.d.ts +115 -0
- package/dist/reactive/computed.d.ts.map +1 -0
- package/dist/reactive/computed.js +121 -0
- package/dist/reactive/computed.js.map +1 -0
- package/dist/reactive/context.cjs +2 -0
- package/dist/reactive/context.cjs.map +1 -0
- package/dist/reactive/context.d.ts +82 -0
- package/dist/reactive/context.d.ts.map +1 -0
- package/dist/reactive/context.js +143 -0
- package/dist/reactive/context.js.map +1 -0
- package/dist/reactive/effect.cjs +2 -0
- package/dist/reactive/effect.cjs.map +1 -0
- package/dist/reactive/effect.d.ts +79 -0
- package/dist/reactive/effect.d.ts.map +1 -0
- package/dist/reactive/effect.js +67 -0
- package/dist/reactive/effect.js.map +1 -0
- package/dist/reactive/enhanced-effect.cjs +2 -0
- package/dist/reactive/enhanced-effect.cjs.map +1 -0
- package/dist/reactive/enhanced-effect.d.ts +108 -0
- package/dist/reactive/enhanced-effect.d.ts.map +1 -0
- package/dist/reactive/enhanced-effect.js +153 -0
- package/dist/reactive/enhanced-effect.js.map +1 -0
- package/dist/reactive/enhanced-signal.cjs +2 -0
- package/dist/reactive/enhanced-signal.cjs.map +1 -0
- package/dist/reactive/enhanced-signal.d.ts +91 -0
- package/dist/reactive/enhanced-signal.d.ts.map +1 -0
- package/dist/reactive/enhanced-signal.js +117 -0
- package/dist/reactive/enhanced-signal.js.map +1 -0
- package/dist/reactive/equality.cjs +2 -0
- package/dist/reactive/equality.cjs.map +1 -0
- package/dist/reactive/equality.d.ts +51 -0
- package/dist/reactive/equality.d.ts.map +1 -0
- package/dist/reactive/equality.js +66 -0
- package/dist/reactive/equality.js.map +1 -0
- package/dist/reactive/index.cjs +2 -0
- package/dist/reactive/index.cjs.map +1 -0
- package/dist/reactive/index.d.ts +21 -0
- package/dist/reactive/index.d.ts.map +1 -0
- package/dist/reactive/index.js +95 -0
- package/dist/reactive/index.js.map +1 -0
- package/dist/reactive/migration.cjs +18 -0
- package/dist/reactive/migration.cjs.map +1 -0
- package/dist/reactive/migration.d.ts +104 -0
- package/dist/reactive/migration.d.ts.map +1 -0
- package/dist/reactive/migration.js +164 -0
- package/dist/reactive/migration.js.map +1 -0
- package/dist/reactive/ownership.cjs +2 -0
- package/dist/reactive/ownership.cjs.map +1 -0
- package/dist/reactive/ownership.d.ts +75 -0
- package/dist/reactive/ownership.d.ts.map +1 -0
- package/dist/reactive/ownership.js +34 -0
- package/dist/reactive/ownership.js.map +1 -0
- package/dist/reactive/scheduler.cjs +2 -0
- package/dist/reactive/scheduler.cjs.map +1 -0
- package/dist/reactive/scheduler.d.ts +56 -0
- package/dist/reactive/scheduler.d.ts.map +1 -0
- package/dist/reactive/scheduler.js +111 -0
- package/dist/reactive/scheduler.js.map +1 -0
- package/dist/reactive/signal.cjs +2 -0
- package/dist/reactive/signal.cjs.map +1 -0
- package/dist/reactive/signal.d.ts +82 -0
- package/dist/reactive/signal.d.ts.map +1 -0
- package/dist/reactive/signal.js +96 -0
- package/dist/reactive/signal.js.map +1 -0
- package/dist/reactive/theme.cjs +2 -0
- package/dist/reactive/theme.cjs.map +1 -0
- package/dist/reactive/theme.d.ts +12 -0
- package/dist/reactive/theme.d.ts.map +1 -0
- package/dist/reactive/theme.js +27 -0
- package/dist/reactive/theme.js.map +1 -0
- package/dist/reactive/types.cjs +2 -0
- package/dist/reactive/types.cjs.map +1 -0
- package/dist/reactive/types.d.ts +93 -0
- package/dist/reactive/types.d.ts.map +1 -0
- package/dist/reactive/types.js +5 -0
- package/dist/reactive/types.js.map +1 -0
- package/dist/reactive/unified-scheduler.cjs +2 -0
- package/dist/reactive/unified-scheduler.cjs.map +1 -0
- package/dist/reactive/unified-scheduler.d.ts +112 -0
- package/dist/reactive/unified-scheduler.d.ts.map +1 -0
- package/dist/reactive/unified-scheduler.js +219 -0
- package/dist/reactive/unified-scheduler.js.map +1 -0
- package/dist/runtime/component-context.cjs +2 -0
- package/dist/runtime/component-context.cjs.map +1 -0
- package/dist/runtime/component-context.d.ts +73 -0
- package/dist/runtime/component-context.d.ts.map +1 -0
- package/dist/runtime/component-context.js +177 -0
- package/dist/runtime/component-context.js.map +1 -0
- package/dist/runtime/component.cjs +2 -0
- package/dist/runtime/component.cjs.map +1 -0
- package/dist/runtime/component.d.ts +112 -0
- package/dist/runtime/component.d.ts.map +1 -0
- package/dist/runtime/component.js +238 -0
- package/dist/runtime/component.js.map +1 -0
- package/dist/runtime/context.cjs +2 -0
- package/dist/runtime/context.cjs.map +1 -0
- package/dist/runtime/context.d.ts +138 -0
- package/dist/runtime/context.d.ts.map +1 -0
- package/dist/runtime/context.js +289 -0
- package/dist/runtime/context.js.map +1 -0
- package/dist/runtime/dev-tools.cjs +2 -0
- package/dist/runtime/dev-tools.cjs.map +1 -0
- package/dist/runtime/dev-tools.d.ts +240 -0
- package/dist/runtime/dev-tools.d.ts.map +1 -0
- package/dist/runtime/dev-tools.js +391 -0
- package/dist/runtime/dev-tools.js.map +1 -0
- package/dist/runtime/development-warnings.cjs +2 -0
- package/dist/runtime/development-warnings.cjs.map +1 -0
- package/dist/runtime/development-warnings.d.ts +42 -0
- package/dist/runtime/development-warnings.d.ts.map +1 -0
- package/dist/runtime/development-warnings.js +69 -0
- package/dist/runtime/development-warnings.js.map +1 -0
- package/dist/runtime/dom-bridge.cjs +2 -0
- package/dist/runtime/dom-bridge.cjs.map +1 -0
- package/dist/runtime/dom-bridge.d.ts +70 -0
- package/dist/runtime/dom-bridge.d.ts.map +1 -0
- package/dist/runtime/dom-bridge.js +241 -0
- package/dist/runtime/dom-bridge.js.map +1 -0
- package/dist/runtime/element-override.cjs +2 -0
- package/dist/runtime/element-override.cjs.map +1 -0
- package/dist/runtime/element-override.d.ts +82 -0
- package/dist/runtime/element-override.d.ts.map +1 -0
- package/dist/runtime/element-override.js +214 -0
- package/dist/runtime/element-override.js.map +1 -0
- package/dist/runtime/error-boundary.cjs +2 -0
- package/dist/runtime/error-boundary.cjs.map +1 -0
- package/dist/runtime/error-boundary.d.ts +302 -0
- package/dist/runtime/error-boundary.d.ts.map +1 -0
- package/dist/runtime/error-boundary.js +559 -0
- package/dist/runtime/error-boundary.js.map +1 -0
- package/dist/runtime/error-recovery.cjs +2 -0
- package/dist/runtime/error-recovery.cjs.map +1 -0
- package/dist/runtime/error-recovery.d.ts +267 -0
- package/dist/runtime/error-recovery.d.ts.map +1 -0
- package/dist/runtime/error-recovery.js +385 -0
- package/dist/runtime/error-recovery.js.map +1 -0
- package/dist/runtime/error-reporting.cjs +3 -0
- package/dist/runtime/error-reporting.cjs.map +1 -0
- package/dist/runtime/error-reporting.d.ts +287 -0
- package/dist/runtime/error-reporting.d.ts.map +1 -0
- package/dist/runtime/error-reporting.js +479 -0
- package/dist/runtime/error-reporting.js.map +1 -0
- package/dist/runtime/error-utils.cjs +3 -0
- package/dist/runtime/error-utils.cjs.map +1 -0
- package/dist/runtime/error-utils.d.ts +204 -0
- package/dist/runtime/error-utils.d.ts.map +1 -0
- package/dist/runtime/error-utils.js +352 -0
- package/dist/runtime/error-utils.js.map +1 -0
- package/dist/runtime/index.d.ts +29 -0
- package/dist/runtime/index.d.ts.map +1 -0
- package/dist/runtime/lazy-component.cjs +2 -0
- package/dist/runtime/lazy-component.cjs.map +1 -0
- package/dist/runtime/lazy-component.d.ts +58 -0
- package/dist/runtime/lazy-component.d.ts.map +1 -0
- package/dist/runtime/lazy-component.js +129 -0
- package/dist/runtime/lazy-component.js.map +1 -0
- package/dist/runtime/lifecycle.cjs +2 -0
- package/dist/runtime/lifecycle.cjs.map +1 -0
- package/dist/runtime/lifecycle.d.ts +8 -0
- package/dist/runtime/lifecycle.d.ts.map +1 -0
- package/dist/runtime/lifecycle.js +7 -0
- package/dist/runtime/lifecycle.js.map +1 -0
- package/dist/runtime/mounting.cjs +2 -0
- package/dist/runtime/mounting.cjs.map +1 -0
- package/dist/runtime/mounting.d.ts +9 -0
- package/dist/runtime/mounting.d.ts.map +1 -0
- package/dist/runtime/mounting.js +12 -0
- package/dist/runtime/mounting.js.map +1 -0
- package/dist/runtime/optimization.cjs +2 -0
- package/dist/runtime/optimization.cjs.map +1 -0
- package/dist/runtime/optimization.d.ts +8 -0
- package/dist/runtime/optimization.d.ts.map +1 -0
- package/dist/runtime/optimization.js +6 -0
- package/dist/runtime/optimization.js.map +1 -0
- package/dist/runtime/performance.cjs +2 -0
- package/dist/runtime/performance.cjs.map +1 -0
- package/dist/runtime/performance.d.ts +217 -0
- package/dist/runtime/performance.d.ts.map +1 -0
- package/dist/runtime/performance.js +399 -0
- package/dist/runtime/performance.js.map +1 -0
- package/dist/runtime/props.cjs +2 -0
- package/dist/runtime/props.cjs.map +1 -0
- package/dist/runtime/props.d.ts +154 -0
- package/dist/runtime/props.d.ts.map +1 -0
- package/dist/runtime/props.js +265 -0
- package/dist/runtime/props.js.map +1 -0
- package/dist/runtime/refs.d.ts +8 -0
- package/dist/runtime/refs.d.ts.map +1 -0
- package/dist/runtime/renderer.cjs +2 -0
- package/dist/runtime/renderer.cjs.map +1 -0
- package/dist/runtime/renderer.d.ts +116 -0
- package/dist/runtime/renderer.d.ts.map +1 -0
- package/dist/runtime/renderer.js +390 -0
- package/dist/runtime/renderer.js.map +1 -0
- package/dist/runtime/semantic-role-manager.cjs +2 -0
- package/dist/runtime/semantic-role-manager.cjs.map +1 -0
- package/dist/runtime/semantic-role-manager.d.ts +37 -0
- package/dist/runtime/semantic-role-manager.d.ts.map +1 -0
- package/dist/runtime/semantic-role-manager.js +82 -0
- package/dist/runtime/semantic-role-manager.js.map +1 -0
- package/dist/runtime/types.d.ts +230 -0
- package/dist/runtime/types.d.ts.map +1 -0
- package/dist/state/binding.cjs +2 -0
- package/dist/state/binding.cjs.map +1 -0
- package/dist/state/binding.d.ts +96 -0
- package/dist/state/binding.d.ts.map +1 -0
- package/dist/state/binding.js +155 -0
- package/dist/state/binding.js.map +1 -0
- package/dist/state/environment-object.d.ts +130 -0
- package/dist/state/environment-object.d.ts.map +1 -0
- package/dist/state/environment.cjs +2 -0
- package/dist/state/environment.cjs.map +1 -0
- package/dist/state/environment.d.ts +178 -0
- package/dist/state/environment.d.ts.map +1 -0
- package/dist/state/environment.js +115 -0
- package/dist/state/environment.js.map +1 -0
- package/dist/state/index.cjs +2 -0
- package/dist/state/index.cjs.map +1 -0
- package/dist/state/index.d.ts +108 -0
- package/dist/state/index.d.ts.map +1 -0
- package/dist/state/index.js +63 -0
- package/dist/state/index.js.map +1 -0
- package/dist/state/observed-object.cjs +2 -0
- package/dist/state/observed-object.cjs.map +1 -0
- package/dist/state/observed-object.d.ts +126 -0
- package/dist/state/observed-object.d.ts.map +1 -0
- package/dist/state/observed-object.js +163 -0
- package/dist/state/observed-object.js.map +1 -0
- package/dist/state/state-manager.cjs +2 -0
- package/dist/state/state-manager.cjs.map +1 -0
- package/dist/state/state-manager.d.ts +97 -0
- package/dist/state/state-manager.d.ts.map +1 -0
- package/dist/state/state-manager.js +233 -0
- package/dist/state/state-manager.js.map +1 -0
- package/dist/state/state.cjs +2 -0
- package/dist/state/state.cjs.map +1 -0
- package/dist/state/state.d.ts +78 -0
- package/dist/state/state.d.ts.map +1 -0
- package/dist/state/state.js +159 -0
- package/dist/state/state.js.map +1 -0
- package/dist/state/types.d.ts +159 -0
- package/dist/state/types.d.ts.map +1 -0
- package/dist/sui-compat.cjs +2 -0
- package/dist/sui-compat.cjs.map +1 -0
- package/dist/sui-compat.d.ts +110 -0
- package/dist/sui-compat.d.ts.map +1 -0
- package/dist/sui-compat.js +88 -0
- package/dist/sui-compat.js.map +1 -0
- package/dist/validation/advanced-debugging.cjs +44 -0
- package/dist/validation/advanced-debugging.cjs.map +1 -0
- package/dist/validation/advanced-debugging.d.ts +319 -0
- package/dist/validation/advanced-debugging.d.ts.map +1 -0
- package/dist/validation/advanced-debugging.js +455 -0
- package/dist/validation/advanced-debugging.js.map +1 -0
- package/dist/validation/build-time/detection.cjs +2 -0
- package/dist/validation/build-time/detection.cjs.map +1 -0
- package/dist/validation/build-time/detection.d.ts +32 -0
- package/dist/validation/build-time/detection.d.ts.map +1 -0
- package/dist/validation/build-time/detection.js +199 -0
- package/dist/validation/build-time/detection.js.map +1 -0
- package/dist/validation/build-time/index.cjs +2 -0
- package/dist/validation/build-time/index.cjs.map +1 -0
- package/dist/validation/build-time/index.d.ts +84 -0
- package/dist/validation/build-time/index.d.ts.map +1 -0
- package/dist/validation/build-time/index.js +122 -0
- package/dist/validation/build-time/index.js.map +1 -0
- package/dist/validation/build-time/plugins.cjs +3 -0
- package/dist/validation/build-time/plugins.cjs.map +1 -0
- package/dist/validation/build-time/plugins.d.ts +75 -0
- package/dist/validation/build-time/plugins.d.ts.map +1 -0
- package/dist/validation/build-time/plugins.js +282 -0
- package/dist/validation/build-time/plugins.js.map +1 -0
- package/dist/validation/build-time/rules.cjs +2 -0
- package/dist/validation/build-time/rules.cjs.map +1 -0
- package/dist/validation/build-time/rules.d.ts +73 -0
- package/dist/validation/build-time/rules.d.ts.map +1 -0
- package/dist/validation/build-time/rules.js +576 -0
- package/dist/validation/build-time/rules.js.map +1 -0
- package/dist/validation/build-time/transformer.cjs +3 -0
- package/dist/validation/build-time/transformer.cjs.map +1 -0
- package/dist/validation/build-time/transformer.d.ts +23 -0
- package/dist/validation/build-time/transformer.d.ts.map +1 -0
- package/dist/validation/build-time/transformer.js +177 -0
- package/dist/validation/build-time/transformer.js.map +1 -0
- package/dist/validation/build-time/types.d.ts +212 -0
- package/dist/validation/build-time/types.d.ts.map +1 -0
- package/dist/validation/comprehensive.cjs +9 -0
- package/dist/validation/comprehensive.cjs.map +1 -0
- package/dist/validation/comprehensive.d.ts +160 -0
- package/dist/validation/comprehensive.d.ts.map +1 -0
- package/dist/validation/comprehensive.js +916 -0
- package/dist/validation/comprehensive.js.map +1 -0
- package/dist/validation/debug-tools.cjs +16 -0
- package/dist/validation/debug-tools.cjs.map +1 -0
- package/dist/validation/debug-tools.d.ts +251 -0
- package/dist/validation/debug-tools.d.ts.map +1 -0
- package/dist/validation/debug-tools.js +405 -0
- package/dist/validation/debug-tools.js.map +1 -0
- package/dist/validation/developer-experience.cjs +17 -0
- package/dist/validation/developer-experience.cjs.map +1 -0
- package/dist/validation/developer-experience.d.ts +243 -0
- package/dist/validation/developer-experience.d.ts.map +1 -0
- package/dist/validation/developer-experience.js +433 -0
- package/dist/validation/developer-experience.js.map +1 -0
- package/dist/validation/documentation-integration.cjs +7 -0
- package/dist/validation/documentation-integration.cjs.map +1 -0
- package/dist/validation/documentation-integration.d.ts +269 -0
- package/dist/validation/documentation-integration.d.ts.map +1 -0
- package/dist/validation/documentation-integration.js +440 -0
- package/dist/validation/documentation-integration.js.map +1 -0
- package/dist/validation/enhanced-runtime.cjs +6 -0
- package/dist/validation/enhanced-runtime.cjs.map +1 -0
- package/dist/validation/enhanced-runtime.d.ts +279 -0
- package/dist/validation/enhanced-runtime.d.ts.map +1 -0
- package/dist/validation/enhanced-runtime.js +465 -0
- package/dist/validation/enhanced-runtime.js.map +1 -0
- package/dist/validation/error-reporting.cjs +32 -0
- package/dist/validation/error-reporting.cjs.map +1 -0
- package/dist/validation/error-reporting.d.ts +186 -0
- package/dist/validation/error-reporting.d.ts.map +1 -0
- package/dist/validation/error-reporting.js +370 -0
- package/dist/validation/error-reporting.js.map +1 -0
- package/dist/validation/ide-integration.cjs +85 -0
- package/dist/validation/ide-integration.cjs.map +1 -0
- package/dist/validation/ide-integration.d.ts +328 -0
- package/dist/validation/ide-integration.d.ts.map +1 -0
- package/dist/validation/ide-integration.js +557 -0
- package/dist/validation/ide-integration.js.map +1 -0
- package/dist/validation/index.cjs +6 -0
- package/dist/validation/index.cjs.map +1 -0
- package/dist/validation/index.d.ts +171 -0
- package/dist/validation/index.d.ts.map +1 -0
- package/dist/validation/index.js +309 -0
- package/dist/validation/index.js.map +1 -0
- package/dist/validation/lifecycle-validation.cjs +2 -0
- package/dist/validation/lifecycle-validation.cjs.map +1 -0
- package/dist/validation/lifecycle-validation.d.ts +165 -0
- package/dist/validation/lifecycle-validation.d.ts.map +1 -0
- package/dist/validation/lifecycle-validation.js +314 -0
- package/dist/validation/lifecycle-validation.js.map +1 -0
- package/dist/validation/performance-optimizer.cjs +2 -0
- package/dist/validation/performance-optimizer.cjs.map +1 -0
- package/dist/validation/performance-optimizer.d.ts +218 -0
- package/dist/validation/performance-optimizer.d.ts.map +1 -0
- package/dist/validation/performance-optimizer.js +338 -0
- package/dist/validation/performance-optimizer.js.map +1 -0
- package/dist/validation/plugin-registration.cjs +2 -0
- package/dist/validation/plugin-registration.cjs.map +1 -0
- package/dist/validation/plugin-registration.d.ts +88 -0
- package/dist/validation/plugin-registration.d.ts.map +1 -0
- package/dist/validation/plugin-registration.js +126 -0
- package/dist/validation/plugin-registration.js.map +1 -0
- package/dist/validation/production-bypass.cjs +2 -0
- package/dist/validation/production-bypass.cjs.map +1 -0
- package/dist/validation/production-bypass.d.ts +175 -0
- package/dist/validation/production-bypass.d.ts.map +1 -0
- package/dist/validation/production-bypass.js +218 -0
- package/dist/validation/production-bypass.js.map +1 -0
- package/dist/validation/simple.cjs +9 -0
- package/dist/validation/simple.cjs.map +1 -0
- package/dist/validation/simple.d.ts +111 -0
- package/dist/validation/simple.d.ts.map +1 -0
- package/dist/validation/simple.js +146 -0
- package/dist/validation/simple.js.map +1 -0
- package/dist/viewport/adapters/web-adapter.cjs +70 -0
- package/dist/viewport/adapters/web-adapter.cjs.map +1 -0
- package/dist/viewport/adapters/web-adapter.d.ts +227 -0
- package/dist/viewport/adapters/web-adapter.d.ts.map +1 -0
- package/dist/viewport/adapters/web-adapter.js +823 -0
- package/dist/viewport/adapters/web-adapter.js.map +1 -0
- package/dist/viewport/components.cjs +2 -0
- package/dist/viewport/components.cjs.map +1 -0
- package/dist/viewport/components.d.ts +131 -0
- package/dist/viewport/components.d.ts.map +1 -0
- package/dist/viewport/components.js +298 -0
- package/dist/viewport/components.js.map +1 -0
- package/dist/viewport/environment.cjs +2 -0
- package/dist/viewport/environment.cjs.map +1 -0
- package/dist/viewport/environment.d.ts +75 -0
- package/dist/viewport/environment.d.ts.map +1 -0
- package/dist/viewport/environment.js +86 -0
- package/dist/viewport/environment.js.map +1 -0
- package/dist/viewport/index.cjs +2 -0
- package/dist/viewport/index.cjs.map +1 -0
- package/dist/viewport/index.d.ts +138 -0
- package/dist/viewport/index.d.ts.map +1 -0
- package/dist/viewport/index.js +166 -0
- package/dist/viewport/index.js.map +1 -0
- package/dist/viewport/platform-detection.cjs +2 -0
- package/dist/viewport/platform-detection.cjs.map +1 -0
- package/dist/viewport/platform-detection.d.ts +59 -0
- package/dist/viewport/platform-detection.d.ts.map +1 -0
- package/dist/viewport/platform-detection.js +205 -0
- package/dist/viewport/platform-detection.js.map +1 -0
- package/dist/viewport/types.cjs +2 -0
- package/dist/viewport/types.cjs.map +1 -0
- package/dist/viewport/types.d.ts +301 -0
- package/dist/viewport/types.d.ts.map +1 -0
- package/dist/viewport/types.js +13 -0
- package/dist/viewport/types.js.map +1 -0
- package/dist/viewport/viewport-manager.cjs +2 -0
- package/dist/viewport/viewport-manager.cjs.map +1 -0
- package/dist/viewport/viewport-manager.d.ts +118 -0
- package/dist/viewport/viewport-manager.d.ts.map +1 -0
- package/dist/viewport/viewport-manager.js +524 -0
- package/dist/viewport/viewport-manager.js.map +1 -0
- package/package.json +128 -0
- package/src/assets/Asset.ts +11 -0
- package/src/assets/AssetCollection.ts +99 -0
- package/src/assets/ColorAsset.ts +210 -0
- package/src/assets/FontAsset.ts +380 -0
- package/src/assets/ImageAsset.ts +91 -0
- package/src/assets/README.md +190 -0
- package/src/assets/index.ts +175 -0
- package/src/assets/test-assets.ts +69 -0
- package/src/assets/test-integration.ts +46 -0
- package/src/assets/test-simple.ts +28 -0
- package/src/assets/types.ts +79 -0
- package/src/bundles/common.ts +30 -0
- package/src/bundles/complete.ts +29 -0
- package/src/bundles/essential.ts +26 -0
- package/src/bundles/minimal.ts +26 -0
- package/src/bundles/production-minimal.ts +67 -0
- package/src/compiler/advanced-parser.ts +871 -0
- package/src/compiler/codegen.ts +450 -0
- package/src/compiler/enhanced-codegen.ts +729 -0
- package/src/compiler/index.ts +25 -0
- package/src/compiler/parser.ts +461 -0
- package/src/compiler/plugin.ts +181 -0
- package/src/compiler/types.ts +177 -0
- package/src/components/BasicInput.ts +352 -0
- package/src/components/Button.ts +963 -0
- package/src/components/Divider.ts +341 -0
- package/src/components/EnhancedLink.ts +676 -0
- package/src/components/Form.ts +414 -0
- package/src/components/Grid.ts +2507 -0
- package/src/components/GridResponsive.ts +637 -0
- package/src/components/Image.ts +426 -0
- package/src/components/List.ts +1084 -0
- package/src/components/Menu.ts +807 -0
- package/src/components/Picker.ts +678 -0
- package/src/components/ScrollView.ts +725 -0
- package/src/components/Section.ts +472 -0
- package/src/components/Show.ts +205 -0
- package/src/components/Spacer.ts +93 -0
- package/src/components/Text.ts +447 -0
- package/src/components/Toggle.ts +700 -0
- package/src/components/index.ts +231 -0
- package/src/components/wrapper.ts +828 -0
- package/src/concatenation/concatenatable.ts +211 -0
- package/src/concatenation/concatenated-component.ts +471 -0
- package/src/concatenation/index.ts +41 -0
- package/src/concatenation/styles.css +120 -0
- package/src/concatenation/text-optimizer.ts +440 -0
- package/src/concatenation/types.ts +116 -0
- package/src/constants/README.md +339 -0
- package/src/constants/__tests__/frame-utils.test.ts +276 -0
- package/src/constants/__tests__/layout.test.ts +215 -0
- package/src/constants/frame-utils.ts +174 -0
- package/src/constants/index.ts +8 -0
- package/src/constants/layout.ts +120 -0
- package/src/css-classes/component-base.ts +117 -0
- package/src/css-classes/css-class-manager.ts +372 -0
- package/src/css-classes/dom-integration.ts +162 -0
- package/src/css-classes/enhanced-renderer.ts +166 -0
- package/src/css-classes/index.ts +45 -0
- package/src/css-classes/types.ts +73 -0
- package/src/css-classes/utilities.ts +175 -0
- package/src/debug/index.ts +267 -0
- package/src/developer-experience/enhanced-errors.ts +556 -0
- package/src/developer-experience/enhanced-types.ts +427 -0
- package/src/developer-experience/index.ts +220 -0
- package/src/globals.d.ts +43 -0
- package/src/gradients/__tests__/angular-gradient.test.ts +111 -0
- package/src/gradients/__tests__/background-modifier.test.ts +81 -0
- package/src/gradients/__tests__/comprehensive-gradients.test.ts +296 -0
- package/src/gradients/__tests__/gradient-asset.test.ts +144 -0
- package/src/gradients/__tests__/linear-gradient.test.ts +92 -0
- package/src/gradients/__tests__/phase4-features.test.ts +386 -0
- package/src/gradients/__tests__/radial-gradient.test.ts +110 -0
- package/src/gradients/__tests__/repeating-gradients.test.ts +125 -0
- package/src/gradients/__tests__/state-background-modifier.test.ts +340 -0
- package/src/gradients/__tests__/state-gradient-asset.test.ts +262 -0
- package/src/gradients/__tests__/state-gradient-integration.test.ts +277 -0
- package/src/gradients/css-generator.ts +158 -0
- package/src/gradients/examples.ts +632 -0
- package/src/gradients/gradient-asset.ts +30 -0
- package/src/gradients/index.ts +85 -0
- package/src/gradients/performance.ts +521 -0
- package/src/gradients/presets.ts +422 -0
- package/src/gradients/reactive.ts +470 -0
- package/src/gradients/state-gradient-asset.ts +179 -0
- package/src/gradients/types.ts +148 -0
- package/src/gradients/utils.ts +579 -0
- package/src/gradients/validation.ts +489 -0
- package/src/index.ts +168 -0
- package/src/lifecycle/hooks.ts +332 -0
- package/src/modifiers/__tests__/as-html-integration.test.ts +204 -0
- package/src/modifiers/__tests__/as-html.test.ts +437 -0
- package/src/modifiers/__tests__/basic-sanitizer-security.test.ts +294 -0
- package/src/modifiers/__tests__/border.test.ts +371 -0
- package/src/modifiers/__tests__/margin-string-support.test.ts +41 -0
- package/src/modifiers/__tests__/padding-string-support.test.ts +41 -0
- package/src/modifiers/as-html-validator.ts +68 -0
- package/src/modifiers/as-html.ts +216 -0
- package/src/modifiers/attributes.ts +574 -0
- package/src/modifiers/backdrop.ts +290 -0
- package/src/modifiers/background.ts +165 -0
- package/src/modifiers/base.ts +1815 -0
- package/src/modifiers/basic-sanitizer.ts +227 -0
- package/src/modifiers/border.ts +574 -0
- package/src/modifiers/builder.ts +1747 -0
- package/src/modifiers/core.ts +521 -0
- package/src/modifiers/css.ts +148 -0
- package/src/modifiers/effects.ts +412 -0
- package/src/modifiers/elements.ts +541 -0
- package/src/modifiers/filters.ts +501 -0
- package/src/modifiers/flexbox.ts +180 -0
- package/src/modifiers/font.ts +149 -0
- package/src/modifiers/grid.ts +238 -0
- package/src/modifiers/index.ts +481 -0
- package/src/modifiers/margin.ts +218 -0
- package/src/modifiers/padding.ts +318 -0
- package/src/modifiers/registry.ts +444 -0
- package/src/modifiers/responsive/__tests__/advanced-media-queries.test.ts +392 -0
- package/src/modifiers/responsive/__tests__/advanced-utilities.test.ts +368 -0
- package/src/modifiers/responsive/__tests__/comprehensive-browser-tests.test.ts +556 -0
- package/src/modifiers/responsive/__tests__/layout-patterns.test.ts +558 -0
- package/src/modifiers/responsive/advanced-utilities.ts +562 -0
- package/src/modifiers/responsive/breakpoints.ts +330 -0
- package/src/modifiers/responsive/css-generator.ts +432 -0
- package/src/modifiers/responsive/dev-tools.ts +650 -0
- package/src/modifiers/responsive/index.ts +119 -0
- package/src/modifiers/responsive/layout-patterns.ts +592 -0
- package/src/modifiers/responsive/performance.ts +385 -0
- package/src/modifiers/responsive/responsive-builder.ts +620 -0
- package/src/modifiers/responsive/responsive-modifier.ts +410 -0
- package/src/modifiers/responsive/types.ts +226 -0
- package/src/modifiers/responsive/utilities.ts +478 -0
- package/src/modifiers/scroll.ts +297 -0
- package/src/modifiers/shadows.ts +321 -0
- package/src/modifiers/size.ts +208 -0
- package/src/modifiers/text.ts +416 -0
- package/src/modifiers/transformations.ts +640 -0
- package/src/modifiers/transitions.ts +218 -0
- package/src/modifiers/types.ts +889 -0
- package/src/modifiers/typography.ts +341 -0
- package/src/modifiers/utility.ts +209 -0
- package/src/modifiers/utils.ts +413 -0
- package/src/plugins/__tests__/simplified-plugin-system.test.ts +190 -0
- package/src/plugins/component-loader-registry.ts +371 -0
- package/src/plugins/index.ts +61 -0
- package/src/plugins/legacy-adapter.ts +84 -0
- package/src/plugins/simplified-component-registry.ts +130 -0
- package/src/plugins/simplified-error-handler.ts +372 -0
- package/src/plugins/simplified-index.ts +61 -0
- package/src/plugins/simplified-lazy-loader.ts +242 -0
- package/src/plugins/simplified-plugin-manager.ts +93 -0
- package/src/plugins/simplified-tachui-instance.ts +142 -0
- package/src/plugins/simplified-types.ts +79 -0
- package/src/plugins/simplified-utils.ts +118 -0
- package/src/reactive/cleanup.ts +241 -0
- package/src/reactive/computed.ts +281 -0
- package/src/reactive/context.ts +287 -0
- package/src/reactive/effect.ts +194 -0
- package/src/reactive/enhanced-effect.ts +318 -0
- package/src/reactive/enhanced-signal.ts +227 -0
- package/src/reactive/equality.ts +188 -0
- package/src/reactive/globals.d.ts +5 -0
- package/src/reactive/index.ts +150 -0
- package/src/reactive/migration.ts +335 -0
- package/src/reactive/ownership.ts +182 -0
- package/src/reactive/scheduler.ts +300 -0
- package/src/reactive/signal.ts +201 -0
- package/src/reactive/theme.ts +49 -0
- package/src/reactive/types.ts +103 -0
- package/src/reactive/unified-scheduler.ts +357 -0
- package/src/runtime/component-context.ts +343 -0
- package/src/runtime/component.ts +499 -0
- package/src/runtime/context.ts +527 -0
- package/src/runtime/dev-tools.ts +752 -0
- package/src/runtime/development-warnings.ts +114 -0
- package/src/runtime/dom-bridge.ts +570 -0
- package/src/runtime/element-override.ts +282 -0
- package/src/runtime/error-boundary.ts +955 -0
- package/src/runtime/error-recovery.ts +638 -0
- package/src/runtime/error-reporting.ts +808 -0
- package/src/runtime/error-utils.ts +698 -0
- package/src/runtime/index.ts +202 -0
- package/src/runtime/lazy-component.ts +268 -0
- package/src/runtime/lifecycle.ts +10 -0
- package/src/runtime/mounting.ts +17 -0
- package/src/runtime/optimization.ts +13 -0
- package/src/runtime/performance.ts +693 -0
- package/src/runtime/props.ts +434 -0
- package/src/runtime/refs.ts +13 -0
- package/src/runtime/renderer.ts +674 -0
- package/src/runtime/semantic-role-manager.ts +140 -0
- package/src/runtime/types.ts +282 -0
- package/src/state/binding.ts +381 -0
- package/src/state/environment-object.ts +444 -0
- package/src/state/environment.ts +351 -0
- package/src/state/index.ts +179 -0
- package/src/state/observed-object.ts +405 -0
- package/src/state/state-manager.ts +366 -0
- package/src/state/state.ts +339 -0
- package/src/state/types.ts +192 -0
- package/src/sui-compat.ts +163 -0
- package/src/validation/__tests__/phase-1d-integration.test.ts +558 -0
- package/src/validation/advanced-debugging.ts +860 -0
- package/src/validation/build-time/detection.ts +373 -0
- package/src/validation/build-time/index.ts +222 -0
- package/src/validation/build-time/plugins.ts +515 -0
- package/src/validation/build-time/rules.ts +624 -0
- package/src/validation/build-time/transformer.ts +372 -0
- package/src/validation/build-time/types.ts +232 -0
- package/src/validation/comprehensive.ts +1272 -0
- package/src/validation/debug-tools.ts +724 -0
- package/src/validation/developer-experience.ts +712 -0
- package/src/validation/documentation-integration.ts +835 -0
- package/src/validation/enhanced-runtime.ts +765 -0
- package/src/validation/error-reporting.ts +587 -0
- package/src/validation/ide-integration.ts +845 -0
- package/src/validation/index.ts +353 -0
- package/src/validation/lifecycle-validation.ts +636 -0
- package/src/validation/performance-optimizer.ts +599 -0
- package/src/validation/plugin-registration.ts +249 -0
- package/src/validation/production-bypass.ts +466 -0
- package/src/validation/simple.ts +465 -0
- package/src/viewport/adapters/web-adapter.ts +1385 -0
- package/src/viewport/components.ts +505 -0
- package/src/viewport/environment.ts +173 -0
- package/src/viewport/index.ts +290 -0
- package/src/viewport/platform-detection.ts +431 -0
- package/src/viewport/types.ts +371 -0
- package/src/viewport/viewport-manager.ts +979 -0
|
@@ -0,0 +1,916 @@
|
|
|
1
|
+
import "../reactive/cleanup.js";
|
|
2
|
+
import "../reactive/unified-scheduler.js";
|
|
3
|
+
import { isSignal as h } from "../reactive/signal.js";
|
|
4
|
+
import "../reactive/scheduler.js";
|
|
5
|
+
import "../reactive/theme.js";
|
|
6
|
+
class o extends Error {
|
|
7
|
+
constructor(t, n) {
|
|
8
|
+
super(t), this.context = n, this.name = "TachUIValidationError";
|
|
9
|
+
}
|
|
10
|
+
getFormattedMessage() {
|
|
11
|
+
const { component: t, suggestion: n, example: i, documentation: c, package: a } = this.context;
|
|
12
|
+
let u = `â ${a ? `[@tachui/${a}]` : "[Core]"} ${t} Component Error: ${this.message}
|
|
13
|
+
`;
|
|
14
|
+
return n && (u += `
|
|
15
|
+
đĄ Suggestion: ${n}
|
|
16
|
+
`), i && (u += `
|
|
17
|
+
â Wrong: ${i.wrong}`, u += `
|
|
18
|
+
â
Correct: ${i.correct}
|
|
19
|
+
`), c && (u += `
|
|
20
|
+
đ Documentation: ${c}`), u;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
let r = {
|
|
24
|
+
enabled: process.env.NODE_ENV !== "production",
|
|
25
|
+
strictMode: !1,
|
|
26
|
+
errorLevel: "error",
|
|
27
|
+
excludeFiles: [],
|
|
28
|
+
packages: {
|
|
29
|
+
core: !0,
|
|
30
|
+
forms: !0,
|
|
31
|
+
navigation: !0,
|
|
32
|
+
symbols: !0,
|
|
33
|
+
plugins: !0
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
function g(e) {
|
|
37
|
+
r = { ...r, ...e };
|
|
38
|
+
}
|
|
39
|
+
function s() {
|
|
40
|
+
return r.enabled && process.env.NODE_ENV !== "production";
|
|
41
|
+
}
|
|
42
|
+
const f = {
|
|
43
|
+
// Text Component
|
|
44
|
+
validateText(e) {
|
|
45
|
+
if (!s() || !r.packages.core) return;
|
|
46
|
+
if (e.length === 0)
|
|
47
|
+
throw new o("Text component requires a content parameter", {
|
|
48
|
+
component: "Text",
|
|
49
|
+
suggestion: 'Add a content parameter: Text("Hello World")',
|
|
50
|
+
documentation: "https://docs.tachui.dev/components/text",
|
|
51
|
+
example: {
|
|
52
|
+
wrong: "Text()",
|
|
53
|
+
correct: 'Text("Hello World")'
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
const [t] = e;
|
|
57
|
+
if (t == null)
|
|
58
|
+
throw new o("Text content cannot be undefined or null", {
|
|
59
|
+
component: "Text",
|
|
60
|
+
suggestion: "Provide a valid string, function, or Signal",
|
|
61
|
+
example: {
|
|
62
|
+
wrong: "Text(null)",
|
|
63
|
+
correct: 'Text("Hello World")'
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
const n = typeof t;
|
|
67
|
+
if (!(n === "string" || n === "function" || h(t)))
|
|
68
|
+
throw new o(`Text content must be a string, function, or Signal. Received: ${n}`, {
|
|
69
|
+
component: "Text",
|
|
70
|
+
suggestion: "Use a string literal, function, or reactive signal",
|
|
71
|
+
example: {
|
|
72
|
+
wrong: "Text(123)",
|
|
73
|
+
correct: 'Text("Hello World")'
|
|
74
|
+
}
|
|
75
|
+
});
|
|
76
|
+
},
|
|
77
|
+
// Button Component
|
|
78
|
+
validateButton(e) {
|
|
79
|
+
if (!s() || !r.packages.core) return;
|
|
80
|
+
if (e.length === 0)
|
|
81
|
+
throw new o("Button component requires a title parameter", {
|
|
82
|
+
component: "Button",
|
|
83
|
+
suggestion: 'Add a title parameter: Button("Click me", () => {})',
|
|
84
|
+
documentation: "https://docs.tachui.dev/components/button",
|
|
85
|
+
example: {
|
|
86
|
+
wrong: "Button()",
|
|
87
|
+
correct: 'Button("Click me", () => {})'
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
const [t, n] = e;
|
|
91
|
+
if (t == null)
|
|
92
|
+
throw new o("Button title cannot be undefined or null", {
|
|
93
|
+
component: "Button",
|
|
94
|
+
suggestion: "Provide a valid string, function, or Signal",
|
|
95
|
+
example: {
|
|
96
|
+
wrong: "Button(null)",
|
|
97
|
+
correct: 'Button("Click me")'
|
|
98
|
+
}
|
|
99
|
+
});
|
|
100
|
+
const i = typeof t;
|
|
101
|
+
if (!(i === "string" || i === "function" || h(t)))
|
|
102
|
+
throw new o(`Button title must be a string, function, or Signal. Received: ${i}`, {
|
|
103
|
+
component: "Button",
|
|
104
|
+
suggestion: "Use a string literal, function, or reactive signal",
|
|
105
|
+
example: {
|
|
106
|
+
wrong: "Button(123)",
|
|
107
|
+
correct: 'Button("Click me")'
|
|
108
|
+
}
|
|
109
|
+
});
|
|
110
|
+
n === void 0 && e.length === 1 && r.errorLevel !== "error" && console.warn("â ī¸ Button without action may not be interactive. Consider adding an action parameter.");
|
|
111
|
+
},
|
|
112
|
+
// Image Component
|
|
113
|
+
validateImage(e) {
|
|
114
|
+
if (!s() || !r.packages.core) return;
|
|
115
|
+
if (e.length === 0)
|
|
116
|
+
throw new o("Image component requires a source parameter", {
|
|
117
|
+
component: "Image",
|
|
118
|
+
suggestion: 'Add a source parameter: Image({ source: "image.jpg" })',
|
|
119
|
+
documentation: "https://docs.tachui.dev/components/image",
|
|
120
|
+
example: {
|
|
121
|
+
wrong: "Image()",
|
|
122
|
+
correct: 'Image({ source: "image.jpg" })'
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
const [t] = e;
|
|
126
|
+
if (!t || typeof t != "object")
|
|
127
|
+
throw new o("Image requires a props object", {
|
|
128
|
+
component: "Image",
|
|
129
|
+
suggestion: "Pass a props object with source property",
|
|
130
|
+
example: {
|
|
131
|
+
wrong: 'Image("image.jpg")',
|
|
132
|
+
correct: 'Image({ source: "image.jpg" })'
|
|
133
|
+
}
|
|
134
|
+
});
|
|
135
|
+
if (!t.source)
|
|
136
|
+
throw new o("Image source property is required", {
|
|
137
|
+
component: "Image",
|
|
138
|
+
suggestion: "Provide a valid image source URL or path",
|
|
139
|
+
example: {
|
|
140
|
+
wrong: 'Image({ alt: "description" })',
|
|
141
|
+
correct: 'Image({ source: "image.jpg", alt: "description" })'
|
|
142
|
+
}
|
|
143
|
+
});
|
|
144
|
+
},
|
|
145
|
+
// Toggle Component
|
|
146
|
+
validateToggle(e) {
|
|
147
|
+
if (!s() || !r.packages.core) return;
|
|
148
|
+
if (e.length === 0)
|
|
149
|
+
throw new o("Toggle component requires an isOn parameter", {
|
|
150
|
+
component: "Toggle",
|
|
151
|
+
suggestion: "Add an isOn parameter: Toggle({ isOn: signal })",
|
|
152
|
+
documentation: "https://docs.tachui.dev/components/toggle",
|
|
153
|
+
example: {
|
|
154
|
+
wrong: "Toggle()",
|
|
155
|
+
correct: "Toggle({ isOn: isEnabled })"
|
|
156
|
+
}
|
|
157
|
+
});
|
|
158
|
+
const [t] = e;
|
|
159
|
+
if (!t || typeof t != "object")
|
|
160
|
+
throw new o("Toggle requires a props object", {
|
|
161
|
+
component: "Toggle",
|
|
162
|
+
suggestion: "Pass a props object with isOn property",
|
|
163
|
+
example: {
|
|
164
|
+
wrong: "Toggle(true)",
|
|
165
|
+
correct: "Toggle({ isOn: true })"
|
|
166
|
+
}
|
|
167
|
+
});
|
|
168
|
+
if (t.isOn === void 0)
|
|
169
|
+
throw new o("Toggle isOn property is required", {
|
|
170
|
+
component: "Toggle",
|
|
171
|
+
suggestion: "Provide a boolean value or Signal for isOn",
|
|
172
|
+
example: {
|
|
173
|
+
wrong: "Toggle({ onToggle: handler })",
|
|
174
|
+
correct: "Toggle({ isOn: true, onToggle: handler })"
|
|
175
|
+
}
|
|
176
|
+
});
|
|
177
|
+
},
|
|
178
|
+
// Slider Component
|
|
179
|
+
validateSlider(e) {
|
|
180
|
+
if (!s() || !r.packages.core) return;
|
|
181
|
+
if (e.length === 0)
|
|
182
|
+
throw new o("Slider component requires a value parameter", {
|
|
183
|
+
component: "Slider",
|
|
184
|
+
suggestion: "Add a value parameter: Slider({ value: signal })",
|
|
185
|
+
documentation: "https://docs.tachui.dev/components/slider",
|
|
186
|
+
example: {
|
|
187
|
+
wrong: "Slider()",
|
|
188
|
+
correct: "Slider({ value: sliderValue })"
|
|
189
|
+
}
|
|
190
|
+
});
|
|
191
|
+
const [t] = e;
|
|
192
|
+
if (!t || typeof t != "object")
|
|
193
|
+
throw new o("Slider requires a props object", {
|
|
194
|
+
component: "Slider",
|
|
195
|
+
suggestion: "Pass a props object with value property",
|
|
196
|
+
example: {
|
|
197
|
+
wrong: "Slider(50)",
|
|
198
|
+
correct: "Slider({ value: 50 })"
|
|
199
|
+
}
|
|
200
|
+
});
|
|
201
|
+
if (t.value === void 0)
|
|
202
|
+
throw new o("Slider value property is required", {
|
|
203
|
+
component: "Slider",
|
|
204
|
+
suggestion: "Provide a numeric value or Signal for value",
|
|
205
|
+
example: {
|
|
206
|
+
wrong: "Slider({ min: 0, max: 100 })",
|
|
207
|
+
correct: "Slider({ value: 50, min: 0, max: 100 })"
|
|
208
|
+
}
|
|
209
|
+
});
|
|
210
|
+
},
|
|
211
|
+
// Picker Component
|
|
212
|
+
validatePicker(e) {
|
|
213
|
+
if (!s() || !r.packages.core) return;
|
|
214
|
+
if (e.length === 0)
|
|
215
|
+
throw new o("Picker component requires options parameter", {
|
|
216
|
+
component: "Picker",
|
|
217
|
+
suggestion: 'Add options parameter: Picker({ options: ["Option 1", "Option 2"] })',
|
|
218
|
+
documentation: "https://docs.tachui.dev/components/picker",
|
|
219
|
+
example: {
|
|
220
|
+
wrong: "Picker()",
|
|
221
|
+
correct: 'Picker({ options: ["Red", "Green", "Blue"] })'
|
|
222
|
+
}
|
|
223
|
+
});
|
|
224
|
+
const [t] = e;
|
|
225
|
+
if (!t || typeof t != "object")
|
|
226
|
+
throw new o("Picker requires a props object", {
|
|
227
|
+
component: "Picker",
|
|
228
|
+
suggestion: "Pass a props object with options array",
|
|
229
|
+
example: {
|
|
230
|
+
wrong: 'Picker(["Option 1", "Option 2"])',
|
|
231
|
+
correct: 'Picker({ options: ["Option 1", "Option 2"] })'
|
|
232
|
+
}
|
|
233
|
+
});
|
|
234
|
+
const n = t;
|
|
235
|
+
if (!Array.isArray(n.options))
|
|
236
|
+
throw new o("Picker options must be an array", {
|
|
237
|
+
component: "Picker",
|
|
238
|
+
suggestion: "Provide an array of options",
|
|
239
|
+
example: {
|
|
240
|
+
wrong: 'Picker({ options: "Option 1" })',
|
|
241
|
+
correct: 'Picker({ options: ["Option 1", "Option 2"] })'
|
|
242
|
+
}
|
|
243
|
+
});
|
|
244
|
+
},
|
|
245
|
+
// Layout Components (VStack, HStack, ZStack)
|
|
246
|
+
validateStack(e, t) {
|
|
247
|
+
if (!s() || !r.packages.core) return;
|
|
248
|
+
if (t.length === 0)
|
|
249
|
+
throw new o(`${e} component requires a props object with children array`, {
|
|
250
|
+
component: e,
|
|
251
|
+
suggestion: `Add children: ${e}({ children: [Text("Hello")] })`,
|
|
252
|
+
documentation: "https://docs.tachui.dev/components/layout",
|
|
253
|
+
example: {
|
|
254
|
+
wrong: `${e}()`,
|
|
255
|
+
correct: `${e}({ children: [Text("Hello")] })`
|
|
256
|
+
}
|
|
257
|
+
});
|
|
258
|
+
const [n] = t;
|
|
259
|
+
if (!n || typeof n != "object")
|
|
260
|
+
throw new o(`${e} requires a props object`, {
|
|
261
|
+
component: e,
|
|
262
|
+
suggestion: "Pass a props object with children array",
|
|
263
|
+
example: {
|
|
264
|
+
wrong: `${e}("invalid")`,
|
|
265
|
+
correct: `${e}({ children: [Text("Hello")] })`
|
|
266
|
+
}
|
|
267
|
+
});
|
|
268
|
+
const i = n;
|
|
269
|
+
if (!Array.isArray(i.children))
|
|
270
|
+
throw new o(`${e} children must be an array`, {
|
|
271
|
+
component: e,
|
|
272
|
+
suggestion: "Provide an array of components",
|
|
273
|
+
example: {
|
|
274
|
+
wrong: `${e}({ children: Text("Hello") })`,
|
|
275
|
+
correct: `${e}({ children: [Text("Hello")] })`
|
|
276
|
+
}
|
|
277
|
+
});
|
|
278
|
+
},
|
|
279
|
+
// List Component
|
|
280
|
+
validateList(e) {
|
|
281
|
+
if (!s() || !r.packages.core) return;
|
|
282
|
+
if (e.length === 0)
|
|
283
|
+
throw new o("List component requires a props object with data array", {
|
|
284
|
+
component: "List",
|
|
285
|
+
suggestion: "Add data: List({ data: items, renderItem: (item) => Text(item) })",
|
|
286
|
+
documentation: "https://docs.tachui.dev/components/list",
|
|
287
|
+
example: {
|
|
288
|
+
wrong: "List()",
|
|
289
|
+
correct: "List({ data: items, renderItem: (item) => Text(item) })"
|
|
290
|
+
}
|
|
291
|
+
});
|
|
292
|
+
const [t] = e;
|
|
293
|
+
if (!t || typeof t != "object")
|
|
294
|
+
throw new o("List requires a props object", {
|
|
295
|
+
component: "List",
|
|
296
|
+
suggestion: "Pass a props object with data and renderItem",
|
|
297
|
+
example: {
|
|
298
|
+
wrong: "List(items)",
|
|
299
|
+
correct: "List({ data: items, renderItem: (item) => Text(item) })"
|
|
300
|
+
}
|
|
301
|
+
});
|
|
302
|
+
const n = t;
|
|
303
|
+
if (!Array.isArray(n.data) && !h(n.data))
|
|
304
|
+
throw new o("List data must be an array or Signal", {
|
|
305
|
+
component: "List",
|
|
306
|
+
suggestion: "Provide an array of items or reactive Signal",
|
|
307
|
+
example: {
|
|
308
|
+
wrong: 'List({ data: "invalid", renderItem: fn })',
|
|
309
|
+
correct: "List({ data: [1, 2, 3], renderItem: fn })"
|
|
310
|
+
}
|
|
311
|
+
});
|
|
312
|
+
if (typeof n.renderItem != "function")
|
|
313
|
+
throw new o("List renderItem must be a function", {
|
|
314
|
+
component: "List",
|
|
315
|
+
suggestion: "Provide a function that renders each item",
|
|
316
|
+
example: {
|
|
317
|
+
wrong: 'List({ data: items, renderItem: "invalid" })',
|
|
318
|
+
correct: "List({ data: items, renderItem: (item) => Text(item) })"
|
|
319
|
+
}
|
|
320
|
+
});
|
|
321
|
+
},
|
|
322
|
+
// ScrollView Component
|
|
323
|
+
validateScrollView(e) {
|
|
324
|
+
if (!s() || !r.packages.core) return;
|
|
325
|
+
if (e.length === 0)
|
|
326
|
+
throw new o("ScrollView component requires a props object with children", {
|
|
327
|
+
component: "ScrollView",
|
|
328
|
+
suggestion: "Add children: ScrollView({ children: [content] })",
|
|
329
|
+
documentation: "https://docs.tachui.dev/components/scrollview",
|
|
330
|
+
example: {
|
|
331
|
+
wrong: "ScrollView()",
|
|
332
|
+
correct: "ScrollView({ children: [VStack({ children: items })] })"
|
|
333
|
+
}
|
|
334
|
+
});
|
|
335
|
+
const [t] = e;
|
|
336
|
+
if (!t || typeof t != "object")
|
|
337
|
+
throw new o("ScrollView requires a props object", {
|
|
338
|
+
component: "ScrollView",
|
|
339
|
+
suggestion: "Pass a props object with children",
|
|
340
|
+
example: {
|
|
341
|
+
wrong: "ScrollView(content)",
|
|
342
|
+
correct: "ScrollView({ children: [content] })"
|
|
343
|
+
}
|
|
344
|
+
});
|
|
345
|
+
},
|
|
346
|
+
// Alert Component
|
|
347
|
+
validateAlert(e) {
|
|
348
|
+
if (!s() || !r.packages.core) return;
|
|
349
|
+
if (e.length === 0)
|
|
350
|
+
throw new o("Alert component requires a props object with title", {
|
|
351
|
+
component: "Alert",
|
|
352
|
+
suggestion: 'Add title: Alert({ title: "Warning", message: "Are you sure?" })',
|
|
353
|
+
documentation: "https://docs.tachui.dev/components/alert",
|
|
354
|
+
example: {
|
|
355
|
+
wrong: "Alert()",
|
|
356
|
+
correct: 'Alert({ title: "Warning", message: "Continue?" })'
|
|
357
|
+
}
|
|
358
|
+
});
|
|
359
|
+
const [t] = e;
|
|
360
|
+
if (!t || typeof t != "object")
|
|
361
|
+
throw new o("Alert requires a props object", {
|
|
362
|
+
component: "Alert",
|
|
363
|
+
suggestion: "Pass a props object with title and message",
|
|
364
|
+
example: {
|
|
365
|
+
wrong: 'Alert("Warning")',
|
|
366
|
+
correct: 'Alert({ title: "Warning", message: "Continue?" })'
|
|
367
|
+
}
|
|
368
|
+
});
|
|
369
|
+
if (!t.title)
|
|
370
|
+
throw new o("Alert title property is required", {
|
|
371
|
+
component: "Alert",
|
|
372
|
+
suggestion: "Provide a title for the alert",
|
|
373
|
+
example: {
|
|
374
|
+
wrong: 'Alert({ message: "Continue?" })',
|
|
375
|
+
correct: 'Alert({ title: "Warning", message: "Continue?" })'
|
|
376
|
+
}
|
|
377
|
+
});
|
|
378
|
+
},
|
|
379
|
+
// Menu Component
|
|
380
|
+
validateMenu(e) {
|
|
381
|
+
if (!s() || !r.packages.core) return;
|
|
382
|
+
if (e.length === 0)
|
|
383
|
+
throw new o("Menu component requires a props object with items", {
|
|
384
|
+
component: "Menu",
|
|
385
|
+
suggestion: 'Add items: Menu({ items: [{ title: "Item 1", action: () => {} }] })',
|
|
386
|
+
documentation: "https://docs.tachui.dev/components/menu",
|
|
387
|
+
example: {
|
|
388
|
+
wrong: "Menu()",
|
|
389
|
+
correct: 'Menu({ items: [{ title: "Edit", action: editAction }] })'
|
|
390
|
+
}
|
|
391
|
+
});
|
|
392
|
+
const [t] = e;
|
|
393
|
+
if (!t || typeof t != "object")
|
|
394
|
+
throw new o("Menu requires a props object", {
|
|
395
|
+
component: "Menu",
|
|
396
|
+
suggestion: "Pass a props object with items array",
|
|
397
|
+
example: {
|
|
398
|
+
wrong: "Menu(items)",
|
|
399
|
+
correct: "Menu({ items: menuItems })"
|
|
400
|
+
}
|
|
401
|
+
});
|
|
402
|
+
const n = t;
|
|
403
|
+
if (!Array.isArray(n.items))
|
|
404
|
+
throw new o("Menu items must be an array", {
|
|
405
|
+
component: "Menu",
|
|
406
|
+
suggestion: "Provide an array of menu items",
|
|
407
|
+
example: {
|
|
408
|
+
wrong: 'Menu({ items: "invalid" })',
|
|
409
|
+
correct: 'Menu({ items: [{ title: "Edit", action: editAction }] })'
|
|
410
|
+
}
|
|
411
|
+
});
|
|
412
|
+
},
|
|
413
|
+
// DatePicker Component
|
|
414
|
+
validateDatePicker(e) {
|
|
415
|
+
if (!s() || !r.packages.core) return;
|
|
416
|
+
if (e.length === 0)
|
|
417
|
+
throw new o("DatePicker component requires a props object with value", {
|
|
418
|
+
component: "DatePicker",
|
|
419
|
+
suggestion: "Add value: DatePicker({ value: dateSignal })",
|
|
420
|
+
documentation: "https://docs.tachui.dev/components/datepicker",
|
|
421
|
+
example: {
|
|
422
|
+
wrong: "DatePicker()",
|
|
423
|
+
correct: 'DatePicker({ value: dateSignal, displayStyle: "compact" })'
|
|
424
|
+
}
|
|
425
|
+
});
|
|
426
|
+
const [t] = e;
|
|
427
|
+
if (!t || typeof t != "object")
|
|
428
|
+
throw new o("DatePicker requires a props object", {
|
|
429
|
+
component: "DatePicker",
|
|
430
|
+
suggestion: "Pass a props object with value property",
|
|
431
|
+
example: {
|
|
432
|
+
wrong: "DatePicker(new Date())",
|
|
433
|
+
correct: "DatePicker({ value: dateSignal })"
|
|
434
|
+
}
|
|
435
|
+
});
|
|
436
|
+
if (t.value === void 0)
|
|
437
|
+
throw new o("DatePicker value property is required", {
|
|
438
|
+
component: "DatePicker",
|
|
439
|
+
suggestion: "Provide a Date value or Signal for value",
|
|
440
|
+
example: {
|
|
441
|
+
wrong: 'DatePicker({ displayStyle: "compact" })',
|
|
442
|
+
correct: 'DatePicker({ value: dateSignal, displayStyle: "compact" })'
|
|
443
|
+
}
|
|
444
|
+
});
|
|
445
|
+
},
|
|
446
|
+
// ActionSheet Component
|
|
447
|
+
validateActionSheet(e) {
|
|
448
|
+
if (!s() || !r.packages.core) return;
|
|
449
|
+
if (e.length === 0)
|
|
450
|
+
throw new o("ActionSheet component requires a props object with buttons", {
|
|
451
|
+
component: "ActionSheet",
|
|
452
|
+
suggestion: 'Add buttons: ActionSheet({ buttons: [{ title: "Action", action: () => {} }] })',
|
|
453
|
+
documentation: "https://docs.tachui.dev/components/actionsheet",
|
|
454
|
+
example: {
|
|
455
|
+
wrong: "ActionSheet()",
|
|
456
|
+
correct: 'ActionSheet({ buttons: [{ title: "Delete", role: "destructive", action: deleteAction }] })'
|
|
457
|
+
}
|
|
458
|
+
});
|
|
459
|
+
const [t] = e;
|
|
460
|
+
if (!t || typeof t != "object")
|
|
461
|
+
throw new o("ActionSheet requires a props object", {
|
|
462
|
+
component: "ActionSheet",
|
|
463
|
+
suggestion: "Pass a props object with buttons array",
|
|
464
|
+
example: {
|
|
465
|
+
wrong: "ActionSheet(buttons)",
|
|
466
|
+
correct: "ActionSheet({ buttons: buttonsArray })"
|
|
467
|
+
}
|
|
468
|
+
});
|
|
469
|
+
const n = t;
|
|
470
|
+
if (!Array.isArray(n.buttons))
|
|
471
|
+
throw new o("ActionSheet buttons must be an array", {
|
|
472
|
+
component: "ActionSheet",
|
|
473
|
+
suggestion: "Provide an array of button objects",
|
|
474
|
+
example: {
|
|
475
|
+
wrong: 'ActionSheet({ buttons: { title: "Action" } })',
|
|
476
|
+
correct: 'ActionSheet({ buttons: [{ title: "Action", action: actionHandler }] })'
|
|
477
|
+
}
|
|
478
|
+
});
|
|
479
|
+
},
|
|
480
|
+
// Divider Component
|
|
481
|
+
validateDivider(e) {
|
|
482
|
+
if (!(!s() || !r.packages.core) && e.length > 0) {
|
|
483
|
+
const [t] = e;
|
|
484
|
+
if (t !== null && typeof t != "object")
|
|
485
|
+
throw new o("Divider props must be an object if provided", {
|
|
486
|
+
component: "Divider",
|
|
487
|
+
suggestion: "Pass an object or no arguments",
|
|
488
|
+
example: {
|
|
489
|
+
wrong: 'Divider("invalid")',
|
|
490
|
+
correct: "Divider() or Divider({ thickness: 2 })"
|
|
491
|
+
}
|
|
492
|
+
});
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
// Spacer Component
|
|
496
|
+
validateSpacer(e) {
|
|
497
|
+
if (!(!s() || !r.packages.core) && e.length > 0) {
|
|
498
|
+
const [t] = e;
|
|
499
|
+
if (t != null && typeof t != "object")
|
|
500
|
+
throw new o("Spacer props must be an object if provided", {
|
|
501
|
+
component: "Spacer",
|
|
502
|
+
suggestion: "Pass an object with minLength property or no arguments",
|
|
503
|
+
example: {
|
|
504
|
+
wrong: "Spacer(20)",
|
|
505
|
+
correct: "Spacer() or Spacer({ minLength: 20 })"
|
|
506
|
+
}
|
|
507
|
+
});
|
|
508
|
+
}
|
|
509
|
+
},
|
|
510
|
+
// Section Component
|
|
511
|
+
validateSection(e) {
|
|
512
|
+
if (!s() || !r.packages.core) return;
|
|
513
|
+
if (e.length === 0)
|
|
514
|
+
throw new o("Section component requires a props object with children", {
|
|
515
|
+
component: "Section",
|
|
516
|
+
suggestion: "Add children: Section({ children: [content] })",
|
|
517
|
+
documentation: "https://docs.tachui.dev/components/section",
|
|
518
|
+
example: {
|
|
519
|
+
wrong: "Section()",
|
|
520
|
+
correct: 'Section({ children: [Text("Section content")] })'
|
|
521
|
+
}
|
|
522
|
+
});
|
|
523
|
+
const [t] = e;
|
|
524
|
+
if (!t || typeof t != "object")
|
|
525
|
+
throw new o("Section requires a props object", {
|
|
526
|
+
component: "Section",
|
|
527
|
+
suggestion: "Pass a props object with children",
|
|
528
|
+
example: {
|
|
529
|
+
wrong: "Section(content)",
|
|
530
|
+
correct: "Section({ children: [content] })"
|
|
531
|
+
}
|
|
532
|
+
});
|
|
533
|
+
},
|
|
534
|
+
// Show Component (Conditional Rendering)
|
|
535
|
+
validateShow(e) {
|
|
536
|
+
if (!s() || !r.packages.core) return;
|
|
537
|
+
if (e.length === 0)
|
|
538
|
+
throw new o("Show component requires a props object with when condition", {
|
|
539
|
+
component: "Show",
|
|
540
|
+
suggestion: "Add when condition: Show({ when: condition, children: [content] })",
|
|
541
|
+
documentation: "https://docs.tachui.dev/components/show",
|
|
542
|
+
example: {
|
|
543
|
+
wrong: "Show()",
|
|
544
|
+
correct: 'Show({ when: isVisible, children: [Text("Visible")] })'
|
|
545
|
+
}
|
|
546
|
+
});
|
|
547
|
+
const [t] = e;
|
|
548
|
+
if (!t || typeof t != "object")
|
|
549
|
+
throw new o("Show requires a props object", {
|
|
550
|
+
component: "Show",
|
|
551
|
+
suggestion: "Pass a props object with when condition",
|
|
552
|
+
example: {
|
|
553
|
+
wrong: "Show(condition)",
|
|
554
|
+
correct: "Show({ when: condition, children: [content] })"
|
|
555
|
+
}
|
|
556
|
+
});
|
|
557
|
+
if (t.when === void 0)
|
|
558
|
+
throw new o("Show when property is required", {
|
|
559
|
+
component: "Show",
|
|
560
|
+
suggestion: "Provide a boolean condition for when",
|
|
561
|
+
example: {
|
|
562
|
+
wrong: "Show({ children: [content] })",
|
|
563
|
+
correct: "Show({ when: isVisible, children: [content] })"
|
|
564
|
+
}
|
|
565
|
+
});
|
|
566
|
+
},
|
|
567
|
+
// Link Component
|
|
568
|
+
validateLink(e) {
|
|
569
|
+
if (!s() || !r.packages.core) return;
|
|
570
|
+
if (e.length === 0)
|
|
571
|
+
throw new o("Link component requires a props object with href", {
|
|
572
|
+
component: "Link",
|
|
573
|
+
suggestion: 'Add href: Link({ href: "/path", children: [Text("Click here")] })',
|
|
574
|
+
documentation: "https://docs.tachui.dev/components/link",
|
|
575
|
+
example: {
|
|
576
|
+
wrong: "Link()",
|
|
577
|
+
correct: 'Link({ href: "/about", children: [Text("About")] })'
|
|
578
|
+
}
|
|
579
|
+
});
|
|
580
|
+
const [t] = e;
|
|
581
|
+
if (!t || typeof t != "object")
|
|
582
|
+
throw new o("Link requires a props object", {
|
|
583
|
+
component: "Link",
|
|
584
|
+
suggestion: "Pass a props object with href property",
|
|
585
|
+
example: {
|
|
586
|
+
wrong: 'Link("/path")',
|
|
587
|
+
correct: 'Link({ href: "/path", children: [Text("Link")] })'
|
|
588
|
+
}
|
|
589
|
+
});
|
|
590
|
+
if (!t.href)
|
|
591
|
+
throw new o("Link href property is required", {
|
|
592
|
+
component: "Link",
|
|
593
|
+
suggestion: "Provide a valid URL or path for href",
|
|
594
|
+
example: {
|
|
595
|
+
wrong: 'Link({ children: [Text("Link")] })',
|
|
596
|
+
correct: 'Link({ href: "/about", children: [Text("About")] })'
|
|
597
|
+
}
|
|
598
|
+
});
|
|
599
|
+
},
|
|
600
|
+
// Stepper Component
|
|
601
|
+
validateStepper(e) {
|
|
602
|
+
if (!s() || !r.packages.core) return;
|
|
603
|
+
if (e.length === 0)
|
|
604
|
+
throw new o("Stepper component requires a props object with value", {
|
|
605
|
+
component: "Stepper",
|
|
606
|
+
suggestion: "Add value: Stepper({ value: numberSignal })",
|
|
607
|
+
documentation: "https://docs.tachui.dev/components/stepper",
|
|
608
|
+
example: {
|
|
609
|
+
wrong: "Stepper()",
|
|
610
|
+
correct: "Stepper({ value: numberSignal, step: 1 })"
|
|
611
|
+
}
|
|
612
|
+
});
|
|
613
|
+
const [t] = e;
|
|
614
|
+
if (!t || typeof t != "object")
|
|
615
|
+
throw new o("Stepper requires a props object", {
|
|
616
|
+
component: "Stepper",
|
|
617
|
+
suggestion: "Pass a props object with value property",
|
|
618
|
+
example: {
|
|
619
|
+
wrong: "Stepper(5)",
|
|
620
|
+
correct: "Stepper({ value: 5, step: 1 })"
|
|
621
|
+
}
|
|
622
|
+
});
|
|
623
|
+
if (t.value === void 0)
|
|
624
|
+
throw new o("Stepper value property is required", {
|
|
625
|
+
component: "Stepper",
|
|
626
|
+
suggestion: "Provide a numeric value or Signal for value",
|
|
627
|
+
example: {
|
|
628
|
+
wrong: "Stepper({ step: 1 })",
|
|
629
|
+
correct: "Stepper({ value: numberSignal, step: 1 })"
|
|
630
|
+
}
|
|
631
|
+
});
|
|
632
|
+
},
|
|
633
|
+
// BasicInput Component
|
|
634
|
+
validateBasicInput(e) {
|
|
635
|
+
if (!s() || !r.packages.core) return;
|
|
636
|
+
if (e.length === 0)
|
|
637
|
+
throw new o("BasicInput component requires a props object with value", {
|
|
638
|
+
component: "BasicInput",
|
|
639
|
+
suggestion: "Add value: BasicInput({ value: textSignal })",
|
|
640
|
+
documentation: "https://docs.tachui.dev/components/basicinput",
|
|
641
|
+
example: {
|
|
642
|
+
wrong: "BasicInput()",
|
|
643
|
+
correct: 'BasicInput({ value: textSignal, placeholder: "Enter text" })'
|
|
644
|
+
}
|
|
645
|
+
});
|
|
646
|
+
const [t] = e;
|
|
647
|
+
if (!t || typeof t != "object")
|
|
648
|
+
throw new o("BasicInput requires a props object", {
|
|
649
|
+
component: "BasicInput",
|
|
650
|
+
suggestion: "Pass a props object with value property",
|
|
651
|
+
example: {
|
|
652
|
+
wrong: 'BasicInput("text")',
|
|
653
|
+
correct: "BasicInput({ value: textSignal })"
|
|
654
|
+
}
|
|
655
|
+
});
|
|
656
|
+
if (t.value === void 0)
|
|
657
|
+
throw new o("BasicInput value property is required", {
|
|
658
|
+
component: "BasicInput",
|
|
659
|
+
suggestion: "Provide a value for the input field",
|
|
660
|
+
example: {
|
|
661
|
+
wrong: 'BasicInput({ placeholder: "Enter text" })',
|
|
662
|
+
correct: 'BasicInput({ value: textSignal, placeholder: "Enter text" })'
|
|
663
|
+
}
|
|
664
|
+
});
|
|
665
|
+
},
|
|
666
|
+
// BasicForm Component (Core)
|
|
667
|
+
validateBasicForm(e) {
|
|
668
|
+
if (!s() || !r.packages.core) return;
|
|
669
|
+
if (e.length === 0)
|
|
670
|
+
throw new o("BasicForm component requires children array", {
|
|
671
|
+
component: "BasicForm",
|
|
672
|
+
suggestion: "Add children: BasicForm([formFields])",
|
|
673
|
+
documentation: "https://docs.tachui.dev/components/basicform",
|
|
674
|
+
example: {
|
|
675
|
+
wrong: "BasicForm()",
|
|
676
|
+
correct: 'BasicForm([BasicInput({}), Button("Submit")])'
|
|
677
|
+
}
|
|
678
|
+
});
|
|
679
|
+
const [t, n] = e;
|
|
680
|
+
if (!Array.isArray(t))
|
|
681
|
+
throw new o("BasicForm requires children array as first parameter", {
|
|
682
|
+
component: "BasicForm",
|
|
683
|
+
suggestion: "Pass an array of form components as first parameter",
|
|
684
|
+
example: {
|
|
685
|
+
wrong: "BasicForm(BasicInput({}))",
|
|
686
|
+
correct: "BasicForm([BasicInput({})])"
|
|
687
|
+
}
|
|
688
|
+
});
|
|
689
|
+
if (n && typeof n != "object")
|
|
690
|
+
throw new o("BasicForm props must be an object", {
|
|
691
|
+
component: "BasicForm",
|
|
692
|
+
suggestion: "Pass props as second parameter object",
|
|
693
|
+
example: {
|
|
694
|
+
wrong: 'BasicForm([], "invalid")',
|
|
695
|
+
correct: "BasicForm([], { onSubmit: handleSubmit })"
|
|
696
|
+
}
|
|
697
|
+
});
|
|
698
|
+
},
|
|
699
|
+
// Helper method for props object validation
|
|
700
|
+
validatePropsObject(e, t, n) {
|
|
701
|
+
if (t.length === 0)
|
|
702
|
+
throw new o(`${e} component requires a props object`, {
|
|
703
|
+
component: e,
|
|
704
|
+
suggestion: `Add props: ${e}({ /* props */ })`,
|
|
705
|
+
documentation: n,
|
|
706
|
+
example: {
|
|
707
|
+
wrong: `${e}()`,
|
|
708
|
+
correct: `${e}({ /* appropriate props */ })`
|
|
709
|
+
}
|
|
710
|
+
});
|
|
711
|
+
const [i] = t;
|
|
712
|
+
if (i != null && typeof i != "object")
|
|
713
|
+
throw new o(`${e} requires a props object`, {
|
|
714
|
+
component: e,
|
|
715
|
+
suggestion: "Pass a props object",
|
|
716
|
+
example: {
|
|
717
|
+
wrong: `${e}("invalid")`,
|
|
718
|
+
correct: `${e}({ /* props */ })`
|
|
719
|
+
}
|
|
720
|
+
});
|
|
721
|
+
}
|
|
722
|
+
}, A = {
|
|
723
|
+
/**
|
|
724
|
+
* Validate plugin component
|
|
725
|
+
*/
|
|
726
|
+
validatePluginComponent(e, t, n) {
|
|
727
|
+
if (!s() || !r.packages.plugins) return;
|
|
728
|
+
const { getComponentValidator: i } = require("./plugin-registration"), c = i(e, t);
|
|
729
|
+
if (c)
|
|
730
|
+
try {
|
|
731
|
+
c.validate(n);
|
|
732
|
+
} catch (a) {
|
|
733
|
+
throw a instanceof o && (a.context.package || (a.context.package = e)), a;
|
|
734
|
+
}
|
|
735
|
+
else if (r.strictMode)
|
|
736
|
+
throw new o(`No validator registered for ${t}`, {
|
|
737
|
+
component: t,
|
|
738
|
+
package: e,
|
|
739
|
+
suggestion: "Ensure the plugin has registered its validator",
|
|
740
|
+
documentation: "https://docs.tachui.dev/plugins/validation"
|
|
741
|
+
});
|
|
742
|
+
}
|
|
743
|
+
}, v = {
|
|
744
|
+
/**
|
|
745
|
+
* Validate modifier usage with package awareness
|
|
746
|
+
*/
|
|
747
|
+
validateModifier(e, t, n, i = []) {
|
|
748
|
+
if (!s() || e !== "core" && !r.packages[e])
|
|
749
|
+
return;
|
|
750
|
+
const a = {
|
|
751
|
+
textShadow: {
|
|
752
|
+
suggestion: "Use shadow() instead",
|
|
753
|
+
example: '.shadow({ x: 2, y: 2, radius: 4, color: "rgba(0,0,0,0.25)" })'
|
|
754
|
+
},
|
|
755
|
+
id: {
|
|
756
|
+
suggestion: 'Use setAttribute("id", value) instead',
|
|
757
|
+
example: '.setAttribute("id", "my-element")'
|
|
758
|
+
},
|
|
759
|
+
className: {
|
|
760
|
+
suggestion: 'Use css() or setAttribute("class", value) instead',
|
|
761
|
+
example: '.css({ className: "my-class" })'
|
|
762
|
+
},
|
|
763
|
+
style: {
|
|
764
|
+
suggestion: "Use css() for custom styles instead",
|
|
765
|
+
example: '.css({ backgroundColor: "red" })'
|
|
766
|
+
}
|
|
767
|
+
}[n];
|
|
768
|
+
if (a) {
|
|
769
|
+
const l = new o(`Modifier ${n} does not exist`, {
|
|
770
|
+
component: t,
|
|
771
|
+
package: e,
|
|
772
|
+
suggestion: a.suggestion,
|
|
773
|
+
example: a.example ? {
|
|
774
|
+
wrong: `.${n}()`,
|
|
775
|
+
correct: a.example
|
|
776
|
+
} : void 0
|
|
777
|
+
});
|
|
778
|
+
if (r.errorLevel === "error")
|
|
779
|
+
throw l;
|
|
780
|
+
console.warn(l.getFormattedMessage());
|
|
781
|
+
return;
|
|
782
|
+
}
|
|
783
|
+
if ((/* @__PURE__ */ new Set(["clipped", "resizable"])).has(n) && i.length > 0) {
|
|
784
|
+
const l = new o(`${n}() takes no parameters`, {
|
|
785
|
+
component: t,
|
|
786
|
+
package: e,
|
|
787
|
+
suggestion: `Use ${n}() without arguments`,
|
|
788
|
+
example: {
|
|
789
|
+
wrong: `.${n}(someValue)`,
|
|
790
|
+
correct: `.${n}()`
|
|
791
|
+
}
|
|
792
|
+
});
|
|
793
|
+
if (r.errorLevel === "error")
|
|
794
|
+
throw l;
|
|
795
|
+
console.warn(l.getFormattedMessage());
|
|
796
|
+
}
|
|
797
|
+
const u = /* @__PURE__ */ new Set(["font", "fontSize", "fontWeight", "textAlign", "lineHeight", "letterSpacing"]), d = /* @__PURE__ */ new Set(["disabled", "onTap", "cursor"]);
|
|
798
|
+
if (u.has(n) && !["Text", "Button"].includes(t)) {
|
|
799
|
+
const l = `${n} modifier is only valid for Text/Button components`;
|
|
800
|
+
if (r.errorLevel === "error")
|
|
801
|
+
throw new o(l, {
|
|
802
|
+
component: t,
|
|
803
|
+
package: e,
|
|
804
|
+
suggestion: `Use ${n} modifier on Text or Button components only`
|
|
805
|
+
});
|
|
806
|
+
r.errorLevel === "warn" && console.warn(`â ī¸ [${e}] ${l}`);
|
|
807
|
+
}
|
|
808
|
+
if (d.has(n) && !["Button", "Toggle", "Slider"].includes(t)) {
|
|
809
|
+
const l = `${n} modifier is only valid for interactive components`;
|
|
810
|
+
r.errorLevel === "warn" && console.warn(`â ī¸ [${e}] ${l}`);
|
|
811
|
+
}
|
|
812
|
+
const { getComponentValidator: w } = require("./plugin-registration"), m = w(e, t);
|
|
813
|
+
m && m.validateModifier && m.validateModifier(n, i);
|
|
814
|
+
}
|
|
815
|
+
}, B = {
|
|
816
|
+
/**
|
|
817
|
+
* Enable validation
|
|
818
|
+
*/
|
|
819
|
+
enable(e = !0) {
|
|
820
|
+
g({ enabled: e });
|
|
821
|
+
},
|
|
822
|
+
/**
|
|
823
|
+
* Enable strict mode
|
|
824
|
+
*/
|
|
825
|
+
enableStrictMode() {
|
|
826
|
+
g({ strictMode: !0 }), console.info("đ¨ TachUI Strict validation mode enabled");
|
|
827
|
+
},
|
|
828
|
+
/**
|
|
829
|
+
* Set error level
|
|
830
|
+
*/
|
|
831
|
+
setErrorLevel(e) {
|
|
832
|
+
g({ errorLevel: e });
|
|
833
|
+
},
|
|
834
|
+
/**
|
|
835
|
+
* Configure package validation
|
|
836
|
+
*/
|
|
837
|
+
configurePackages(e) {
|
|
838
|
+
g({
|
|
839
|
+
packages: { ...r.packages, ...e }
|
|
840
|
+
});
|
|
841
|
+
},
|
|
842
|
+
/**
|
|
843
|
+
* Test validation system
|
|
844
|
+
*/
|
|
845
|
+
test() {
|
|
846
|
+
if (!s()) {
|
|
847
|
+
console.info("âšī¸ Validation is disabled in production mode");
|
|
848
|
+
return;
|
|
849
|
+
}
|
|
850
|
+
console.group("đ TachUI Comprehensive Validation System Test");
|
|
851
|
+
try {
|
|
852
|
+
console.info("â
Core component validation: enabled"), console.info("â
Plugin component validation: enabled"), console.info("â
Modifier validation: enabled");
|
|
853
|
+
const { getValidationStats: e } = require("./plugin-registration"), t = e();
|
|
854
|
+
console.info(`â
Registered plugin validators: ${t.totalValidators}`), console.info("â
Comprehensive validation system is working correctly");
|
|
855
|
+
} catch (e) {
|
|
856
|
+
console.error("â Validation test failed:", e);
|
|
857
|
+
}
|
|
858
|
+
console.groupEnd();
|
|
859
|
+
},
|
|
860
|
+
/**
|
|
861
|
+
* Get validation stats
|
|
862
|
+
*/
|
|
863
|
+
getStats() {
|
|
864
|
+
const { getValidationStats: e } = require("./plugin-registration"), t = e();
|
|
865
|
+
return {
|
|
866
|
+
enabled: s(),
|
|
867
|
+
config: r,
|
|
868
|
+
coreComponents: Object.keys(f).filter((n) => n.startsWith("validate")).length,
|
|
869
|
+
pluginValidators: t.totalValidators,
|
|
870
|
+
packages: {
|
|
871
|
+
core: r.packages.core,
|
|
872
|
+
forms: r.packages.forms,
|
|
873
|
+
navigation: r.packages.navigation,
|
|
874
|
+
symbols: r.packages.symbols,
|
|
875
|
+
plugins: r.packages.plugins
|
|
876
|
+
},
|
|
877
|
+
pluginStats: t.packages
|
|
878
|
+
};
|
|
879
|
+
}
|
|
880
|
+
};
|
|
881
|
+
function q(e, t, n, i = "core") {
|
|
882
|
+
return function(...a) {
|
|
883
|
+
t(a);
|
|
884
|
+
const p = e.apply(this, a);
|
|
885
|
+
return "modifier" in p && typeof p.modifier == "object" ? b(p, n, i) : p;
|
|
886
|
+
};
|
|
887
|
+
}
|
|
888
|
+
function b(e, t, n) {
|
|
889
|
+
return s() ? new Proxy(e, {
|
|
890
|
+
get(i, c) {
|
|
891
|
+
const a = i[c];
|
|
892
|
+
return c === "modifier" ? x(a, t, n) : a;
|
|
893
|
+
}
|
|
894
|
+
}) : e;
|
|
895
|
+
}
|
|
896
|
+
function x(e, t, n) {
|
|
897
|
+
return e && new Proxy(e, {
|
|
898
|
+
get(i, c) {
|
|
899
|
+
const a = String(c), p = i[c];
|
|
900
|
+
return a === "build" || a === "addModifier" || a === "responsive" ? p : typeof p == "function" ? function(...d) {
|
|
901
|
+
return v.validateModifier(n, t, a, d), p.apply(i, d);
|
|
902
|
+
} : p;
|
|
903
|
+
}
|
|
904
|
+
});
|
|
905
|
+
}
|
|
906
|
+
export {
|
|
907
|
+
f as CoreComponentValidation,
|
|
908
|
+
v as ModifierValidation,
|
|
909
|
+
A as PluginComponentValidation,
|
|
910
|
+
o as TachUIValidationError,
|
|
911
|
+
B as ValidationUtils,
|
|
912
|
+
g as configureValidation,
|
|
913
|
+
q as createValidatedComponent,
|
|
914
|
+
s as isValidationEnabled
|
|
915
|
+
};
|
|
916
|
+
//# sourceMappingURL=comprehensive.js.map
|