@rankingcoach/vanguard 1.9.0 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index-Accordion2.js +1 -1
- package/dist/index-Bullets.js +12 -10
- package/dist/index-Bullets.module.scss.js +6 -4
- package/dist/index-CalendarPicker.js +1 -1
- package/dist/index-MonthPicker.js +1 -1
- package/dist/index-Parser2.js +3 -2
- package/dist/index-PhotoCarouselModal.js +26 -25
- package/dist/index-PhotoCarouselModal.module.scss.js +6 -4
- package/dist/index-SelectInput2.js +1 -1
- package/dist/index-SlideCarousel.js +117 -138
- package/dist/index-SlideCarousel.module.scss.js +22 -14
- package/dist/index-Switch.js +17 -22
- package/dist/index-Text.js +158 -131
- package/dist/index-TextHighlighted.js +11 -136
- package/dist/index-Tooltip.js +1 -1
- package/dist/index-YearPicker.js +1 -1
- package/dist/index-_virtual19.js +2 -5
- package/dist/index-_virtual20.js +5 -2
- package/dist/index-cjs.js +1 -1
- package/dist/index-dist4.js +1 -1
- package/dist/index-generate-error-boundary-data.js +13 -11
- package/dist/index-http.store.js +1 -1
- package/dist/index-lib5.js +1 -1
- package/dist/index-regex.js +1 -1
- package/dist/index-use-carousel-movement.js +138 -0
- package/dist/index-useAutocomplete.js +1 -1
- package/dist/index-useControlled.js +26 -2
- package/dist/index-useControlled2.js +2 -26
- package/dist/index-useSlider.js +1 -1
- package/dist/index-useViews.js +1 -1
- package/dist/index.js +57 -55
- package/dist/types/core/SlideCarousel/Bullets/Bullets.d.ts +2 -0
- package/dist/types/core/SlideCarousel/SlideCarousel.d.ts +6 -0
- package/dist/types/core/SlideCarousel/hooks/use-carousel-movement.d.ts +27 -0
- package/dist/types/core/SlideCarousel/index.d.ts +2 -0
- package/dist/types/core/SlideCarousel/stories/SlideCarouselAutoPlay.story.d.ts +2 -0
- package/dist/types/core/SlideCarousel/stories/SlideCarouselBasic.story.d.ts +2 -0
- package/dist/types/core/SlideCarousel/stories/SlideCarouselBulletsBelow.story.d.ts +2 -0
- package/dist/types/core/SlideCarousel/stories/SlideCarouselControlled.story.d.ts +2 -0
- package/dist/types/core/SlideCarousel/stories/SlideCarouselCustomArrows.story.d.ts +2 -0
- package/dist/types/core/SlideCarousel/stories/SlideCarouselCustomBullets.story.d.ts +2 -0
- package/dist/types/core/SlideCarousel/stories/SlideCarouselMultipleSlidesAtOnce.story.d.ts +2 -0
- package/dist/types/core/SlideCarousel/stories/SlideCarouselOutsideArrows.story.d.ts +2 -0
- package/dist/types/core/SlideCarousel/stories/SlideCarouselWithArrows.story.d.ts +2 -0
- package/dist/types/core/SlideCarousel/stories/SlideCarouselWithArrowsAndBullets.story.d.ts +2 -0
- package/dist/types/core/SlideCarousel/stories/SlideCarouselWithBullets.story.d.ts +2 -0
- package/dist/types/core/SlideCarousel/stories/_SlideCarousel.default.d.ts +13 -0
- package/dist/types/core/Switch/stories/SwitchChecked.story.d.ts +2 -0
- package/dist/types/core/Switch/stories/SwitchDefault.story.d.ts +2 -0
- package/dist/types/core/Switch/stories/SwitchDisabled.story.d.ts +2 -0
- package/dist/types/core/Switch/stories/SwitchLabelLeft.story.d.ts +2 -0
- package/dist/types/core/Switch/stories/SwitchLoading.story.d.ts +2 -0
- package/dist/types/core/Switch/stories/SwitchSizes.story.d.ts +2 -0
- package/dist/types/core/Switch/stories/_Switch.default.d.ts +32 -0
- package/dist/types/core/Text/Text.types.d.ts +4 -0
- package/dist/types/core/Text/stories/stories/HighlightCaseInsensitive.story.d.ts +3 -0
- package/dist/types/core/Text/stories/stories/HighlightDefault.story.d.ts +2 -0
- package/dist/types/core/Text/stories/stories/HighlightModeBackground.story.d.ts +2 -0
- package/dist/types/core/Text/stories/stories/HighlightModeBold.story.d.ts +2 -0
- package/dist/types/core/Text/stories/stories/HighlightModeText.story.d.ts +2 -0
- package/dist/types/core/Text/stories/stories/HighlightWithEmphasis.story.d.ts +2 -0
- package/dist/types/core/TextHighlighted/TextHighlighted.d.ts +4 -1
- package/dist/types/index.d.ts +2 -0
- package/dist/vanguard-asset-analysis.json +1 -1
- package/dist/vanguard.css +1 -1
- package/dist-wordpress/index.js +17669 -17639
- package/dist-wordpress/types/core/TextHighlighted/TextHighlighted.d.ts +4 -1
- package/dist-wordpress/vanguard.css +1 -1
- package/package.json +8 -4
- package/dist/types/core/TextHighlighted/stories/TextHighlightedWithXSSAttackStory.story.d.ts +0 -2
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"author": "rankingCoach",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.11.0",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"module": "dist/index.js",
|
|
10
10
|
"types": "dist/types/index.d.ts",
|
|
@@ -25,12 +25,16 @@
|
|
|
25
25
|
"build:analyze": "npm run build-lib && echo '📊 Bundle analysis saved to dist/bundle-analysis.html'",
|
|
26
26
|
"build-app": "tsgo --project tsconfig.app.json && vite build --config vite.config.app.ts",
|
|
27
27
|
"generate-dts": "vite build --config vite.config.lib.ts",
|
|
28
|
+
"husky": "husky install",
|
|
28
29
|
"lint": "eslint src",
|
|
29
30
|
"preview": "vite preview",
|
|
30
|
-
"release": "
|
|
31
|
-
"
|
|
32
|
-
"release-
|
|
31
|
+
"release": "standard-version",
|
|
32
|
+
"release-dry-run": "standard-version --dry-run",
|
|
33
|
+
"release-beta": "standard-version --prerelease beta",
|
|
34
|
+
"release-beta-dry-run": "standard-version --prerelease beta --dry-run",
|
|
33
35
|
"publish-tags": "git push --follow-tags origin master",
|
|
36
|
+
"publish-beta": "npm publish --tag beta",
|
|
37
|
+
"deploy-master": "git push --follow-tags origin master && npm publish",
|
|
34
38
|
"storybook": "storybook dev -p 6006",
|
|
35
39
|
"build-storybook": "storybook build",
|
|
36
40
|
"serve-storybook": "npm run build-storybook && cd storybook-static && python3 -m http.server 8080",
|