@retailcrm/embed-ui-v1-components 0.9.14 → 0.9.15
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/AGENTS.md +126 -0
- package/README.md +24 -0
- package/assets/stylesheets/palette.less +11 -6
- package/bin/embed-ui-v1-components.mjs +209 -0
- package/bin/postinstall.mjs +37 -0
- package/dist/host.cjs +1899 -590
- package/dist/host.css +659 -6
- package/dist/host.d.ts +2374 -50
- package/dist/host.js +1900 -591
- package/dist/remote.cjs +610 -33
- package/dist/remote.d.ts +729 -48
- package/dist/remote.js +612 -35
- package/docs/AI.md +106 -0
- package/docs/COMPONENTS.md +96 -0
- package/docs/FORMAT.md +248 -0
- package/docs/PROFILES.md +64 -0
- package/docs/README.md +65 -0
- package/docs/STYLING.md +156 -0
- package/docs/profiles/UiAddButton.yml +45 -0
- package/docs/profiles/UiAlert.yml +36 -0
- package/docs/profiles/UiAvatar.yml +36 -0
- package/docs/profiles/UiAvatarList.yml +30 -0
- package/docs/profiles/UiButton.yml +221 -0
- package/docs/profiles/UiCalendar.yml +36 -0
- package/docs/profiles/UiCheckbox.yml +41 -0
- package/docs/profiles/UiCollapse.yml +28 -0
- package/docs/profiles/UiCollapseBox.yml +39 -0
- package/docs/profiles/UiCollapseGroup.yml +27 -0
- package/docs/profiles/UiCopyButton.yml +40 -0
- package/docs/profiles/UiDate.yml +26 -0
- package/docs/profiles/UiDatePicker.yml +47 -0
- package/docs/profiles/UiError.yml +20 -0
- package/docs/profiles/UiField.yml +229 -0
- package/docs/profiles/UiImage.yml +27 -0
- package/docs/profiles/UiInfobox.yml +33 -0
- package/docs/profiles/UiLink.yml +39 -0
- package/docs/profiles/UiLoader.yml +26 -0
- package/docs/profiles/UiMenuItem.yml +45 -0
- package/docs/profiles/UiMenuItemGroup.yml +38 -0
- package/docs/profiles/UiModalSidebar.yml +34 -0
- package/docs/profiles/UiModalWindow.yml +32 -0
- package/docs/profiles/UiModalWindowSurface.yml +29 -0
- package/docs/profiles/UiNumberStepper.yml +40 -0
- package/docs/profiles/UiPageHeader.yml +240 -0
- package/docs/profiles/UiPopper.yml +197 -0
- package/docs/profiles/UiPopperConnector.yml +109 -0
- package/docs/profiles/UiPopperTarget.yml +112 -0
- package/docs/profiles/UiRadio.yml +26 -0
- package/docs/profiles/UiRadioSwitch.yml +224 -0
- package/docs/profiles/UiRadioSwitchOption.yml +113 -0
- package/docs/profiles/UiScrollBox.yml +19 -0
- package/docs/profiles/UiSelect.yml +318 -0
- package/docs/profiles/UiSelectOption.yml +32 -0
- package/docs/profiles/UiSelectOptionGroup.yml +26 -0
- package/docs/profiles/UiSlider.yml +26 -0
- package/docs/profiles/UiSwitch.yml +25 -0
- package/docs/profiles/UiTab.yml +114 -0
- package/docs/profiles/UiTabGroup.yml +233 -0
- package/docs/profiles/UiTable.yml +148 -0
- package/docs/profiles/UiTableBodyCell.yml +35 -0
- package/docs/profiles/UiTableColumn.yml +38 -0
- package/docs/profiles/UiTableFooterButton.yml +32 -0
- package/docs/profiles/UiTableFooterSection.yml +26 -0
- package/docs/profiles/UiTableHeadCell.yml +32 -0
- package/docs/profiles/UiTableSorter.yml +33 -0
- package/docs/profiles/UiTag.yml +29 -0
- package/docs/profiles/UiTextbox.yml +388 -0
- package/docs/profiles/UiTimePicker.yml +34 -0
- package/docs/profiles/UiToolbarButton.yml +25 -0
- package/docs/profiles/UiToolbarLink.yml +20 -0
- package/docs/profiles/UiTooltip.yml +31 -0
- package/docs/profiles/UiTransition.yml +15 -0
- package/docs/profiles/UiYandexMap.yml +17 -0
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@retailcrm/embed-ui-v1-components",
|
|
3
|
+
"bin": "./bin/embed-ui-v1-components.mjs",
|
|
3
4
|
"type": "module",
|
|
4
|
-
"version": "0.9.
|
|
5
|
+
"version": "0.9.15",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"author": "RetailDriverLLC <integration@retailcrm.ru>",
|
|
7
8
|
"repository": "git@github.com:retailcrm/embed-ui.git",
|
|
@@ -37,8 +38,11 @@
|
|
|
37
38
|
}
|
|
38
39
|
},
|
|
39
40
|
"files": [
|
|
41
|
+
"AGENTS.md",
|
|
40
42
|
"assets",
|
|
43
|
+
"bin",
|
|
41
44
|
"dist",
|
|
45
|
+
"docs",
|
|
42
46
|
"index.cjs",
|
|
43
47
|
"index.js",
|
|
44
48
|
"README.md"
|
|
@@ -47,6 +51,7 @@
|
|
|
47
51
|
"build": "yarn build:host && yarn build:remote",
|
|
48
52
|
"build:host": "vite build -c ./vite.config.host.ts",
|
|
49
53
|
"build:remote": "vite build -c ./vite.config.remote.ts && sh -c 'cp dist/remote/* dist/ && rm -rf dist/remote'",
|
|
54
|
+
"postinstall": "node ./bin/postinstall.mjs",
|
|
50
55
|
"test:e2e": "yarn exec vitest --run --config ./vitest.config.playwright.ts",
|
|
51
56
|
"test:playwright": "yarn exec vitest --run --config ./vitest.config.playwright.ts",
|
|
52
57
|
"storybook:build": "storybook build -c storybook -o ./storybook/dist",
|
|
@@ -57,7 +62,7 @@
|
|
|
57
62
|
"vue": "^3.5"
|
|
58
63
|
},
|
|
59
64
|
"dependencies": {
|
|
60
|
-
"@omnicajs/vue-remote": "^0.2.
|
|
65
|
+
"@omnicajs/vue-remote": "^0.2.23",
|
|
61
66
|
"@remote-ui/rpc": "^1.4.7",
|
|
62
67
|
"@retailcrm/image-preview": "^1.0.2",
|
|
63
68
|
"date-fns": "^4.1.0",
|