@ozdao/martyrs 0.2.577 → 0.2.578
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/builder.js +33 -33
- package/dist/martyrs/src/components/BottomSheet/BottomSheet.vue.js +1 -1
- package/dist/martyrs/src/components/BottomSheet/BottomSheet.vue.js.map +1 -1
- package/dist/martyrs/src/components/Menu/{Menu.vue2.js → Menu.vue.js} +2 -2
- package/dist/martyrs/src/components/Menu/Menu.vue.js.map +1 -0
- package/dist/martyrs/src/components/SelectMulti/{SelectMulti.vue.js → SelectMulti.vue2.js} +2 -2
- package/dist/martyrs/src/components/SelectMulti/SelectMulti.vue2.js.map +1 -0
- package/dist/martyrs/src/components/Tab/{Tab.vue2.js → Tab.vue.js} +2 -2
- package/dist/martyrs/src/components/Tab/Tab.vue.js.map +1 -0
- package/dist/martyrs/src/components/Upload/{Upload.vue.js → Upload.vue2.js} +2 -2
- package/dist/martyrs/src/components/Upload/Upload.vue2.js.map +1 -0
- package/dist/martyrs/src/modules/auth/views/components/pages/EnterPassword.vue.js +1 -1
- package/dist/martyrs/src/modules/auth/views/components/pages/Invite.vue.js +1 -1
- package/dist/martyrs/src/modules/auth/views/components/pages/Profile.vue.js +1 -1
- package/dist/martyrs/src/modules/auth/views/components/pages/ProfileBlogposts.vue.js +1 -1
- package/dist/martyrs/src/modules/auth/views/components/pages/ResetPassword.vue.js +1 -1
- package/dist/martyrs/src/modules/auth/views/components/pages/SignIn.vue.js +1 -1
- package/dist/martyrs/src/modules/auth/views/components/pages/SignUp.vue.js +1 -1
- package/dist/martyrs/src/modules/backoffice/components/partials/Sidebar.vue.js +1 -1
- package/dist/martyrs/src/modules/constructor/components/elements/Audio.vue.js +1 -1
- package/dist/martyrs/src/modules/constructor/components/elements/Video.vue.js +1 -1
- package/dist/martyrs/src/modules/constructor/components/elements/VideoPlayer.vue.js +1 -1
- package/dist/martyrs/src/modules/core/views/components/sections/SectionPageTitle.vue.js +1 -1
- package/dist/martyrs/src/modules/events/components/pages/EditEvent.vue.js +2 -2
- package/dist/martyrs/src/modules/events/components/pages/EventsBackoffice.vue.js +1 -1
- package/dist/martyrs/src/modules/gallery/components/sections/BackofficeGallery.vue.js +1 -1
- package/dist/martyrs/src/modules/music/components/forms/TrackForm.vue.js +1 -1
- package/dist/martyrs/src/modules/notifications/components/pages/Notifications.vue.js +1 -1
- package/dist/martyrs/src/modules/orders/components/pages/OrderCreateBackoffice.vue.js +1 -1
- package/dist/martyrs/src/modules/orders/components/pages/Orders.vue.js +1 -1
- package/dist/martyrs/src/modules/organizations/components/pages/Organization.vue.js +1 -1
- package/dist/martyrs/src/modules/organizations/components/pages/OrganizationBackoffice.vue.js +2 -2
- package/dist/martyrs/src/modules/organizations/components/pages/OrganizationEdit.vue.js +2 -2
- package/dist/martyrs/src/modules/organizations/components/pages/Organizations.vue.js +1 -1
- package/dist/martyrs/src/modules/organizations/components/sections/Organizations.vue.js +1 -1
- package/dist/martyrs/src/modules/products/components/pages/Product.vue.js +1 -1
- package/dist/martyrs/src/modules/products/components/pages/ProductEdit.vue.js +2 -2
- package/dist/martyrs/src/modules/products/components/pages/Products.vue.js +1 -1
- package/dist/martyrs/src/modules/products/components/sections/SectionProduct.vue.js +1 -1
- package/dist/martyrs/src/modules/rents/views/components/pages/Gant/GanttToolbar.vue.js +1 -1
- package/dist/martyrs/src/modules/rents/views/components/pages/Rents.vue.js +1 -1
- package/dist/martyrs/src/modules/spots/components/pages/SpotEdit.vue.js +1 -1
- package/dist/martyrs.css +1 -1
- package/package.json +17 -17
- package/src/components/BottomSheet/BottomSheet.vue +1 -1
- package/src/jit/rules.js +42 -41
- package/src/modules/governance/reactcode/package-lock.json +4229 -0
- package/src/styles/layout.scss +0 -3
- package/src/styles/reset.scss +5 -2
- package/dist/martyrs/src/components/Menu/Menu.vue2.js.map +0 -1
- package/dist/martyrs/src/components/SelectMulti/SelectMulti.vue.js.map +0 -1
- package/dist/martyrs/src/components/Tab/Tab.vue2.js.map +0 -1
- package/dist/martyrs/src/components/Upload/Upload.vue.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ozdao/martyrs",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.578",
|
|
4
4
|
"description": "Fullstack framework focused on user experience and ease of development.",
|
|
5
5
|
"author": "OZ DAO <hello@ozdao.dev>",
|
|
6
6
|
"license": "GPL-3.0-or-later",
|
|
@@ -56,6 +56,21 @@
|
|
|
56
56
|
"import": "./dist/martyrs/src/modules/*/*.client.js"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"preinstall": "npx only-allow pnpm",
|
|
61
|
+
"clean": "rimraf dist",
|
|
62
|
+
"build": "pnpm run clean && pnpm run build:builder && pnpm run build:components && pnpm run build:client && pnpm run build:server",
|
|
63
|
+
"build:components": "vite build --config vite.components.config.js",
|
|
64
|
+
"build:client": "vite build --config vite.modules.client.config.js",
|
|
65
|
+
"build:server": "vite build --config vite.modules.server.config.js",
|
|
66
|
+
"build:builder": "vite build --config vite.builder.config.js",
|
|
67
|
+
"build:rspack": "pnpm run clean && pnpm run build:builder:rspack && pnpm run build:components:rspack && pnpm run build:client:rspack && pnpm run build:theme:rspack && pnpm run build:server:rspack",
|
|
68
|
+
"build:components:rspack": "rspack --config rspack.components.config.js",
|
|
69
|
+
"build:theme:rspack": "rspack --config rspack.theme.config.js",
|
|
70
|
+
"build:client:rspack": "rspack --config rspack.client.config.js && FORMAT=cjs rspack --config rspack.client.config.js",
|
|
71
|
+
"build:server:rspack": "rspack --config rspack.server.config.js && FORMAT=esm rspack --config rspack.server.config.js",
|
|
72
|
+
"build:builder:rspack": "rspack --config rspack.builder.config.js"
|
|
73
|
+
},
|
|
59
74
|
"dependencies": {
|
|
60
75
|
"@capacitor/core": "7.4.4",
|
|
61
76
|
"@capacitor/preferences": "7.0.2",
|
|
@@ -101,20 +116,5 @@
|
|
|
101
116
|
},
|
|
102
117
|
"bugs": {
|
|
103
118
|
"url": "https://github.com/oz-digital/martyrs/issues"
|
|
104
|
-
},
|
|
105
|
-
"scripts": {
|
|
106
|
-
"preinstall": "npx only-allow pnpm",
|
|
107
|
-
"clean": "rimraf dist",
|
|
108
|
-
"build": "pnpm run clean && pnpm run build:builder && pnpm run build:components && pnpm run build:client && pnpm run build:server",
|
|
109
|
-
"build:components": "vite build --config vite.components.config.js",
|
|
110
|
-
"build:client": "vite build --config vite.modules.client.config.js",
|
|
111
|
-
"build:server": "vite build --config vite.modules.server.config.js",
|
|
112
|
-
"build:builder": "vite build --config vite.builder.config.js",
|
|
113
|
-
"build:rspack": "pnpm run clean && pnpm run build:builder:rspack && pnpm run build:components:rspack && pnpm run build:client:rspack && pnpm run build:theme:rspack && pnpm run build:server:rspack",
|
|
114
|
-
"build:components:rspack": "rspack --config rspack.components.config.js",
|
|
115
|
-
"build:theme:rspack": "rspack --config rspack.theme.config.js",
|
|
116
|
-
"build:client:rspack": "rspack --config rspack.client.config.js && FORMAT=cjs rspack --config rspack.client.config.js",
|
|
117
|
-
"build:server:rspack": "rspack --config rspack.server.config.js && FORMAT=esm rspack --config rspack.server.config.js",
|
|
118
|
-
"build:builder:rspack": "rspack --config rspack.builder.config.js"
|
|
119
119
|
}
|
|
120
|
-
}
|
|
120
|
+
}
|
package/src/jit/rules.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
const sizeVars = ['extra', 'big', 'semi', 'medium', 'regular', 'small', 'thin', 'micro', 'nano'];
|
|
9
|
-
|
|
9
|
+
const colorVariants = ['extra', 'big', 'semi', 'medium', 'regular', 'small', 'thin', 'micro', 'nano'];
|
|
10
10
|
// Цвета для bg-*, t-*, fill-*, stroke-*
|
|
11
11
|
const colorNames = [
|
|
12
12
|
'main', 'second', 'third', 'fourth', 'fifth',
|
|
@@ -14,7 +14,47 @@ const colorNames = [
|
|
|
14
14
|
'red', 'red-nice', 'green', 'green-nice', 'orange', 'orange-nice', 'yellow', 'yellow-nice',
|
|
15
15
|
'youtube', 'telegram', 'twitter', 'instagram', 'reddit', 'transparent'
|
|
16
16
|
];
|
|
17
|
-
|
|
17
|
+
|
|
18
|
+
const dir = { t: 'top', r: 'right', b: 'bottom', l: 'left' };
|
|
19
|
+
|
|
20
|
+
// Easing functions map
|
|
21
|
+
const easings = {
|
|
22
|
+
'linear': 'linear',
|
|
23
|
+
'ease': 'ease',
|
|
24
|
+
'ease-in': 'ease-in',
|
|
25
|
+
'ease-out': 'ease-out',
|
|
26
|
+
'ease-in-out': 'ease-in-out',
|
|
27
|
+
// Standard easings
|
|
28
|
+
'sine-in': 'cubic-bezier(0.12,0,0.39,0)',
|
|
29
|
+
'sine-out': 'cubic-bezier(0.61,1,0.88,1)',
|
|
30
|
+
'sine-in-out': 'cubic-bezier(0.37,0,0.63,1)',
|
|
31
|
+
'quad-in': 'cubic-bezier(0.11,0,0.5,0)',
|
|
32
|
+
'quad-out': 'cubic-bezier(0.5,1,0.89,1)',
|
|
33
|
+
'quad-in-out': 'cubic-bezier(0.45,0,0.55,1)',
|
|
34
|
+
'cubic': 'cubic-bezier(0.65,0,0.35,1)',
|
|
35
|
+
'cubic-in': 'cubic-bezier(0.32,0,0.67,0)',
|
|
36
|
+
'cubic-out': 'cubic-bezier(0.33,1,0.68,1)',
|
|
37
|
+
'cubic-in-out': 'cubic-bezier(0.65,0,0.35,1)',
|
|
38
|
+
'quart-in': 'cubic-bezier(0.5,0,0.75,0)',
|
|
39
|
+
'quart-out': 'cubic-bezier(0.25,1,0.5,1)',
|
|
40
|
+
'quart-in-out': 'cubic-bezier(0.76,0,0.24,1)',
|
|
41
|
+
'quint-in': 'cubic-bezier(0.64,0,0.78,0)',
|
|
42
|
+
'quint-out': 'cubic-bezier(0.22,1,0.36,1)',
|
|
43
|
+
'quint-in-out': 'cubic-bezier(0.83,0,0.17,1)',
|
|
44
|
+
'expo-in': 'cubic-bezier(0.7,0,0.84,0)',
|
|
45
|
+
'expo-out': 'cubic-bezier(0.16,1,0.3,1)',
|
|
46
|
+
'expo-in-out': 'cubic-bezier(0.87,0,0.13,1)',
|
|
47
|
+
'circ-in': 'cubic-bezier(0.55,0,1,0.45)',
|
|
48
|
+
'circ-out': 'cubic-bezier(0,0.55,0.45,1)',
|
|
49
|
+
'circ-in-out': 'cubic-bezier(0.85,0,0.15,1)',
|
|
50
|
+
'back-in': 'cubic-bezier(0.36,0,0.66,-0.56)',
|
|
51
|
+
'back-out': 'cubic-bezier(0.34,1.56,0.64,1)',
|
|
52
|
+
'back-in-out': 'cubic-bezier(0.68,-0.6,0.32,1.6)',
|
|
53
|
+
'elastic': 'cubic-bezier(0.17,0.67,0.33,0.94)',
|
|
54
|
+
'spring': 'cubic-bezier(0.23,1,0.32,1.01)',
|
|
55
|
+
'bounce': 'cubic-bezier(0.71,-0.46,0.88,0.6)',
|
|
56
|
+
};
|
|
57
|
+
|
|
18
58
|
|
|
19
59
|
// Проверяет цвет и возвращает CSS значение
|
|
20
60
|
function resolveColor(name) {
|
|
@@ -65,45 +105,6 @@ export function resolveValue(value, jit) {
|
|
|
65
105
|
return null;
|
|
66
106
|
}
|
|
67
107
|
|
|
68
|
-
const dir = { t: 'top', r: 'right', b: 'bottom', l: 'left' };
|
|
69
|
-
|
|
70
|
-
// Easing functions map
|
|
71
|
-
const easings = {
|
|
72
|
-
'linear': 'linear',
|
|
73
|
-
'ease': 'ease',
|
|
74
|
-
'ease-in': 'ease-in',
|
|
75
|
-
'ease-out': 'ease-out',
|
|
76
|
-
'ease-in-out': 'ease-in-out',
|
|
77
|
-
// Standard easings
|
|
78
|
-
'sine-in': 'cubic-bezier(0.12,0,0.39,0)',
|
|
79
|
-
'sine-out': 'cubic-bezier(0.61,1,0.88,1)',
|
|
80
|
-
'sine-in-out': 'cubic-bezier(0.37,0,0.63,1)',
|
|
81
|
-
'quad-in': 'cubic-bezier(0.11,0,0.5,0)',
|
|
82
|
-
'quad-out': 'cubic-bezier(0.5,1,0.89,1)',
|
|
83
|
-
'quad-in-out': 'cubic-bezier(0.45,0,0.55,1)',
|
|
84
|
-
'cubic': 'cubic-bezier(0.65,0,0.35,1)',
|
|
85
|
-
'cubic-in': 'cubic-bezier(0.32,0,0.67,0)',
|
|
86
|
-
'cubic-out': 'cubic-bezier(0.33,1,0.68,1)',
|
|
87
|
-
'cubic-in-out': 'cubic-bezier(0.65,0,0.35,1)',
|
|
88
|
-
'quart-in': 'cubic-bezier(0.5,0,0.75,0)',
|
|
89
|
-
'quart-out': 'cubic-bezier(0.25,1,0.5,1)',
|
|
90
|
-
'quart-in-out': 'cubic-bezier(0.76,0,0.24,1)',
|
|
91
|
-
'quint-in': 'cubic-bezier(0.64,0,0.78,0)',
|
|
92
|
-
'quint-out': 'cubic-bezier(0.22,1,0.36,1)',
|
|
93
|
-
'quint-in-out': 'cubic-bezier(0.83,0,0.17,1)',
|
|
94
|
-
'expo-in': 'cubic-bezier(0.7,0,0.84,0)',
|
|
95
|
-
'expo-out': 'cubic-bezier(0.16,1,0.3,1)',
|
|
96
|
-
'expo-in-out': 'cubic-bezier(0.87,0,0.13,1)',
|
|
97
|
-
'circ-in': 'cubic-bezier(0.55,0,1,0.45)',
|
|
98
|
-
'circ-out': 'cubic-bezier(0,0.55,0.45,1)',
|
|
99
|
-
'circ-in-out': 'cubic-bezier(0.85,0,0.15,1)',
|
|
100
|
-
'back-in': 'cubic-bezier(0.36,0,0.66,-0.56)',
|
|
101
|
-
'back-out': 'cubic-bezier(0.34,1.56,0.64,1)',
|
|
102
|
-
'back-in-out': 'cubic-bezier(0.68,-0.6,0.32,1.6)',
|
|
103
|
-
'elastic': 'cubic-bezier(0.17,0.67,0.33,0.94)',
|
|
104
|
-
'spring': 'cubic-bezier(0.23,1,0.32,1.01)',
|
|
105
|
-
'bounce': 'cubic-bezier(0.71,-0.46,0.88,0.6)',
|
|
106
|
-
};
|
|
107
108
|
|
|
108
109
|
function handleNegative(val, jit) {
|
|
109
110
|
const isNeg = val.endsWith('-negative');
|