@appscode/design-system 2.0.63 → 2.0.64
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
CHANGED
|
@@ -31,5 +31,5 @@ withDefaults(defineProps<Props>(), {
|
|
|
31
31
|
</template>
|
|
32
32
|
|
|
33
33
|
<style lang="scss">
|
|
34
|
-
@import "../../../vue-components/styles/components/form-fields/_check-radio.scss";
|
|
34
|
+
@import "../../../vue-components/styles/components/form-fields/_check-radio-switch.scss";
|
|
35
35
|
</style>
|
|
@@ -28,48 +28,4 @@ withDefaults(defineProps<Props>(), {
|
|
|
28
28
|
/>
|
|
29
29
|
<label :for="name">{{ label }}</label>
|
|
30
30
|
</div>
|
|
31
|
-
<!--
|
|
32
|
-
<div class="field">
|
|
33
|
-
<input
|
|
34
|
-
id="switchRoundedSuccess"
|
|
35
|
-
type="checkbox"
|
|
36
|
-
name="switchRoundedSuccess"
|
|
37
|
-
class="switch is-rounded is-success"
|
|
38
|
-
checked="checked"
|
|
39
|
-
/>
|
|
40
|
-
<label for="switchRoundedSuccess">Switch rounded success</label>
|
|
41
|
-
</div>
|
|
42
|
-
|
|
43
|
-
<div class="field">
|
|
44
|
-
<input
|
|
45
|
-
id="switchRoundedWarning"
|
|
46
|
-
type="checkbox"
|
|
47
|
-
name="switchRoundedWarning"
|
|
48
|
-
class="switch is-rounded is-warning"
|
|
49
|
-
checked="checked"
|
|
50
|
-
/>
|
|
51
|
-
<label for="switchRoundedWarning">Switch rounded warning</label>
|
|
52
|
-
</div>
|
|
53
|
-
|
|
54
|
-
<div class="field">
|
|
55
|
-
<input
|
|
56
|
-
id="switchRoundedDanger"
|
|
57
|
-
type="checkbox"
|
|
58
|
-
name="switchRoundedDanger"
|
|
59
|
-
class="switch is-rounded is-danger"
|
|
60
|
-
checked="checked"
|
|
61
|
-
/>
|
|
62
|
-
<label for="switchRoundedDanger">Switch rounded danger</label>
|
|
63
|
-
</div>
|
|
64
|
-
|
|
65
|
-
<div class="field">
|
|
66
|
-
<input
|
|
67
|
-
id="switchRoundedInfo"
|
|
68
|
-
type="checkbox"
|
|
69
|
-
name="switchRoundedInfo"
|
|
70
|
-
class="switch is-rounded is-info"
|
|
71
|
-
checked="checked"
|
|
72
|
-
/>
|
|
73
|
-
<label for="switchRoundedInfo">Switch rounded info</label>
|
|
74
|
-
</div> -->
|
|
75
31
|
</template>
|