@proj-airi/ui 0.6.1 → 0.7.0-beta.1
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/package.json +5 -10
- package/src/components/Animations/TransitionHorizontal.vue +36 -0
- package/src/components/Animations/index.ts +1 -0
- package/src/components/Form/Combobox/Combobox.vue +128 -0
- package/src/components/Form/Combobox/index.ts +1 -0
- package/src/components/Form/Field/FieldCheckbox.vue +6 -2
- package/src/components/Form/Field/FieldInput.vue +7 -3
- package/src/components/Form/Field/FieldKeyValues.vue +6 -2
- package/src/components/Form/Field/FieldRange.vue +13 -6
- package/src/components/Form/Field/FieldSelect.vue +54 -0
- package/src/components/Form/Field/FieldValues.vue +6 -2
- package/src/components/Form/Field/index.ts +1 -0
- package/src/components/Form/Input/BasicInputFile.vue +43 -0
- package/src/components/Form/Input/Input.vue +1 -1
- package/src/components/Form/Input/index.ts +1 -0
- package/src/components/Form/Range/ColorHueRange.vue +8 -8
- package/src/components/Form/Range/Range.vue +47 -20
- package/src/components/Form/Range/RoundRange.vue +277 -0
- package/src/components/Form/Range/index.ts +1 -0
- package/src/components/Form/Select/Option.vue +29 -0
- package/src/components/Form/Select/Select.vue +15 -86
- package/src/components/Form/Select/index.ts +1 -0
- package/src/components/Form/Textarea/Basic.vue +8 -0
- package/src/components/Form/index.ts +1 -0
- package/dist/Animations-DeJoVt_I.mjs +0 -153
- package/dist/Form-BXVt-kFc.css +0 -336
- package/dist/Form-Cy7H3Deq.mjs +0 -1237
- package/dist/components/animations.mjs +0 -4
- package/dist/components/form.mjs +0 -4
- package/dist/export-helper-WDd986Km.mjs +0 -9
- package/dist/index.mjs +0 -5
- package/tsdown.config.ts +0 -29
- package/uno.config.ts +0 -8
package/dist/components/form.mjs
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import "../export-helper-WDd986Km.mjs";
|
|
2
|
-
import { Basic_default, Checkbox_default, ColorHueRange_default, FieldCheckbox_default, FieldInput_default, FieldKeyValues_default, FieldRange_default, FieldValues_default, InputFile_default, InputKeyValue_default, Input_default, Radio_default, Range_default, Select_default, Textarea_default } from "../Form-Cy7H3Deq.mjs";
|
|
3
|
-
|
|
4
|
-
export { Basic_default as BasicTextarea, Checkbox_default as Checkbox, ColorHueRange_default as ColorHueRange, FieldCheckbox_default as FieldCheckbox, FieldInput_default as FieldInput, FieldKeyValues_default as FieldKeyValues, FieldRange_default as FieldRange, FieldValues_default as FieldValues, Input_default as Input, InputFile_default as InputFile, InputKeyValue_default as InputKeyValue, Radio_default as Radio, Range_default as Range, Select_default as Select, Textarea_default as Textarea };
|
package/dist/index.mjs
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { TransitionVertical_default } from "./Animations-DeJoVt_I.mjs";
|
|
2
|
-
import "./export-helper-WDd986Km.mjs";
|
|
3
|
-
import { Basic_default, Checkbox_default, ColorHueRange_default, FieldCheckbox_default, FieldInput_default, FieldKeyValues_default, FieldRange_default, FieldValues_default, InputFile_default, InputKeyValue_default, Input_default, Radio_default, Range_default, Select_default, Textarea_default } from "./Form-Cy7H3Deq.mjs";
|
|
4
|
-
|
|
5
|
-
export { Basic_default as BasicTextarea, Checkbox_default as Checkbox, ColorHueRange_default as ColorHueRange, FieldCheckbox_default as FieldCheckbox, FieldInput_default as FieldInput, FieldKeyValues_default as FieldKeyValues, FieldRange_default as FieldRange, FieldValues_default as FieldValues, Input_default as Input, InputFile_default as InputFile, InputKeyValue_default as InputKeyValue, Radio_default as Radio, Range_default as Range, Select_default as Select, Textarea_default as Textarea, TransitionVertical_default as TransitionVertical };
|
package/tsdown.config.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { env } from 'node:process'
|
|
2
|
-
|
|
3
|
-
import { defineConfig } from 'tsdown'
|
|
4
|
-
import Raw from 'unplugin-raw/rolldown'
|
|
5
|
-
import Vue from 'unplugin-vue/rolldown'
|
|
6
|
-
|
|
7
|
-
export default defineConfig({
|
|
8
|
-
entry: {
|
|
9
|
-
'index': './src/index.ts',
|
|
10
|
-
'components/form': './src/components/Form/index.ts',
|
|
11
|
-
'components/animations': './src/components/Animations/index.ts',
|
|
12
|
-
},
|
|
13
|
-
define: {
|
|
14
|
-
'import.meta.DEV': JSON.stringify(!!env.DEV),
|
|
15
|
-
},
|
|
16
|
-
exports: {
|
|
17
|
-
devExports: true,
|
|
18
|
-
all: true,
|
|
19
|
-
},
|
|
20
|
-
fixedExtension: true,
|
|
21
|
-
plugins: [
|
|
22
|
-
Vue(),
|
|
23
|
-
Raw({
|
|
24
|
-
transform: {
|
|
25
|
-
options: { minifyWhitespace: true },
|
|
26
|
-
},
|
|
27
|
-
}),
|
|
28
|
-
],
|
|
29
|
-
})
|