@dxtmisha/wiki 0.57.6 → 0.59.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.
|
@@ -2365,8 +2365,8 @@ var e = [
|
|
|
2365
2365
|
en: "Two-way binding (v-model)",
|
|
2366
2366
|
ru: "Двусторонняя привязка (v-model)"
|
|
2367
2367
|
},
|
|
2368
|
-
setup: "\n return {\n radioValue: ref('
|
|
2369
|
-
template: "\n <div class=\"wiki-storybook-flex-column\">\n <div class=\"wiki-storybook-flex\">\n <span>Selected: {{ radioValue }}</span>\n </div>\n <div class=\"wiki-storybook-flex\">\n <button class=\"wiki-storybook-button\" @click=\"radioValue = '
|
|
2368
|
+
setup: "\n return {\n radioValue: ref('space')\n }\n ",
|
|
2369
|
+
template: "\n <div class=\"wiki-storybook-flex-column\">\n <div class=\"wiki-storybook-flex\">\n <span>Selected path: <strong>{{ radioValue }}</strong></span>\n </div>\n <div class=\"wiki-storybook-flex\">\n <button class=\"wiki-storybook-button\" @click=\"radioValue = 'space'\">To the Stars</button>\n <button class=\"wiki-storybook-button\" @click=\"radioValue = 'ocean'\">Into the Deep</button>\n <button class=\"wiki-storybook-button\" @click=\"radioValue = ''\">Reset choice</button>\n </div>\n <DesignComponent\n v-model:selected=\"radioValue\"\n value-variant=\"space\"\n label=\"Space Exploration\"\n description=\"Journey to the edge of the galaxy\"\n />\n <DesignComponent\n v-model:selected=\"radioValue\"\n value-variant=\"ocean\"\n label=\"Ocean Exploration\"\n description=\"Discover the secrets of the abyss\"\n />\n </div>\n "
|
|
2370
2370
|
},
|
|
2371
2371
|
{
|
|
2372
2372
|
id: "RadioSkeleton",
|
|
@@ -2387,7 +2387,7 @@ var e = [
|
|
|
2387
2387
|
}
|
|
2388
2388
|
],
|
|
2389
2389
|
documentation: {
|
|
2390
|
-
body: "\n<StorybookDescriptions componentName={'Radio'} type={'radio'}/>\n\n<StorybookDescriptions componentName={'
|
|
2390
|
+
body: "\n<StorybookDescriptions componentName={'Radio'} type={'radio'}/>\n\n<StorybookDescriptions componentName={'Checkbox'} type={'value'}/>\n<StorybookDescriptions componentName={'Checkbox'} type={'selected'}/>\n<StorybookDescriptions componentName={'Value'} type={'v-model'}/>\n<Canvas of={Component.RadioVModel}/>\n\n<StorybookDescriptions componentName={'Style'} type={'isSkeleton'}/>\n<Canvas of={Component.RadioSkeleton}/>\n ",
|
|
2391
2391
|
events: "\n<StorybookDescriptions componentName={'Event'} type={'input'}/>\n<StorybookDescriptions componentName={'Event'} type={'change'}/>\n ",
|
|
2392
2392
|
expose: "\n<StorybookDescriptions componentName={'Expose'} type={'value'}/>\n<StorybookDescriptions componentName={'Expose'} type={'checkValidity'}/>\n<StorybookDescriptions componentName={'Expose'} type={'validationMessage'}/>\n ",
|
|
2393
2393
|
slots: "\n<Canvas of={Component.RadioSlots}/>\n<StorybookDescriptions componentName={'Slot'} type={'label'}/>\n<StorybookDescriptions componentName={'Slot'} type={'description'}/>\n "
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxtmisha/wiki",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.59.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Wiki documentation and storybook utilities for DXT UI design system",
|
|
7
7
|
"keywords": [
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
"./functional/*": "./src/media/functional/*.mdx",
|
|
52
52
|
"./media": {
|
|
53
53
|
"import": "./dist/media.js",
|
|
54
|
-
"types": "./dist/media.d.ts"
|
|
54
|
+
"types": "./dist/src/media.d.ts"
|
|
55
55
|
},
|
|
56
56
|
"./storybook": {
|
|
57
57
|
"import": "./dist/storybook.js",
|
|
58
|
-
"types": "./dist/storybook.d.ts"
|
|
58
|
+
"types": "./dist/src/storybook.d.ts"
|
|
59
59
|
},
|
|
60
60
|
"./storybook/styles": "./src/styles/storybookStyle.scss"
|
|
61
61
|
},
|